Changeset 6067:53fec3e5f6cf in roaraudio


Ignore:
Timestamp:
01/02/15 16:22:23 (9 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

updated copyright headers

Files:
11 edited

Legend:

Unmodified
Added
Removed
  • include/libroar/libroar.h

    r6061 r6067  
    22 
    33/* 
    4  *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2014 
     4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2015 
    55 * 
    66 *  This file is part of libroar a part of RoarAudio, 
  • include/roaraudio.h

    r6061 r6067  
    22 
    33/* 
    4  *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2014 
     4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2015 
    55 * 
    66 *  This file is part of RoarAudio, 
  • include/roaraudio/client.h

    r6056 r6067  
    6161#define ROAR_PROTO_RPLD            25 /* RoarAudio Playlist Daemon Protocol */ 
    6262#define ROAR_PROTO_MPD             26 /* Music Player Daemon */ 
    63 #define ROAR_PROTO_RTP             27 /* Real-time Transport Protocol */ 
    64 #define ROAR_PROTO_RTCP            28 /* RealTime Control Protocol */ 
    65 #define ROAR_PROTO_RTSP            29 /* Real-Time Streaming Protocol */ 
    66 #define ROAR_PROTO_SIP             30 /* Session Initiation Protocol */ 
    67  
    68 /* Dynamic defined protocols. 
    69  * Those IDs MUST NOT be used on wire, stored on disk or 
    70  * leave the process any other way. 
    71  */ 
    72 #define ROAR_PROTO_DYNAMIC0       208 
    73 #define ROAR_PROTO_DYNAMIC1       209 
    74 #define ROAR_PROTO_DYNAMIC2       210 
    75 #define ROAR_PROTO_DYNAMIC3       211 
    76 #define ROAR_PROTO_DYNAMIC4       212 
    77 #define ROAR_PROTO_DYNAMIC5       213 
    78 #define ROAR_PROTO_DYNAMIC6       214 
    79 #define ROAR_PROTO_DYNAMIC7       215 
    80 #define ROAR_PROTO_DYNAMIC8       216 
    81 #define ROAR_PROTO_DYNAMIC9       217 
    82 #define ROAR_PROTO_DYNAMIC10      218 
    83 #define ROAR_PROTO_DYNAMIC11      219 
    84 #define ROAR_PROTO_DYNAMIC12      220 
    85 #define ROAR_PROTO_DYNAMIC13      221 
    86 #define ROAR_PROTO_DYNAMIC14      222 
    87 #define ROAR_PROTO_DYNAMIC15      223 
    88  
    89 /* User defined protocols. 
    90  * IDs may be used on wire or stored on disk if meaning of them 
    91  * was agreed on before. This could e.g. be done using the CAPS command. 
    92  */ 
    93 #define ROAR_PROTO_USER0          224 
    94 #define ROAR_PROTO_USER1          225 
    95 #define ROAR_PROTO_USER2          226 
    96 #define ROAR_PROTO_USER3          227 
    97 #define ROAR_PROTO_USER4          228 
    98 #define ROAR_PROTO_USER5          229 
    99 #define ROAR_PROTO_USER6          230 
    100 #define ROAR_PROTO_USER7          231 
    101 #define ROAR_PROTO_USER8          232 
    102 #define ROAR_PROTO_USER9          233 
    103 #define ROAR_PROTO_USER10         234 
    104 #define ROAR_PROTO_USER11         235 
    105 #define ROAR_PROTO_USER12         236 
    106 #define ROAR_PROTO_USER13         237 
    107 #define ROAR_PROTO_USER14         238 
    108 #define ROAR_PROTO_USER15         239 
    109  
    11063 
    11164#define ROAR_BYTEORDER_UNKNOWN      0x00 
  • include/roaraudio/targethacks.h

    r6062 r6067  
    22 
    33/* 
    4  *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2014 
     4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2015 
    55 * 
    66 *  This file is part of RoarAudio, 
  • libroar/ctl.c

    r6057 r6067  
    631631 {ROAR_PROTO_RPLD,        "rpld"}, 
    632632 {ROAR_PROTO_MPD,         "mpd"}, 
    633  {ROAR_PROTO_RTP,         "rtp"}, 
    634  {ROAR_PROTO_RTCP,        "rtcp"}, 
    635  {ROAR_PROTO_RTSP,        "rtsp"}, 
    636  {ROAR_PROTO_SIP,         "sip"}, 
    637  {ROAR_PROTO_DYNAMIC0,    "dynamic0"}, 
    638  {ROAR_PROTO_DYNAMIC1,    "dynamic1"}, 
    639  {ROAR_PROTO_DYNAMIC2,    "dynamic2"}, 
    640  {ROAR_PROTO_DYNAMIC3,    "dynamic3"}, 
    641  {ROAR_PROTO_DYNAMIC4,    "dynamic4"}, 
    642  {ROAR_PROTO_DYNAMIC5,    "dynamic5"}, 
    643  {ROAR_PROTO_DYNAMIC6,    "dynamic6"}, 
    644  {ROAR_PROTO_DYNAMIC7,    "dynamic7"}, 
    645  {ROAR_PROTO_DYNAMIC8,    "dynamic8"}, 
    646  {ROAR_PROTO_DYNAMIC9,    "dynamic9"}, 
    647  {ROAR_PROTO_DYNAMIC10,   "dynamic10"}, 
    648  {ROAR_PROTO_DYNAMIC11,   "dynamic11"}, 
    649  {ROAR_PROTO_DYNAMIC12,   "dynamic12"}, 
    650  {ROAR_PROTO_DYNAMIC13,   "dynamic13"}, 
    651  {ROAR_PROTO_DYNAMIC14,   "dynamic14"}, 
    652  {ROAR_PROTO_DYNAMIC15,   "dynamic15"}, 
    653  {ROAR_PROTO_USER0,       "user0"}, 
    654  {ROAR_PROTO_USER1,       "user1"}, 
    655  {ROAR_PROTO_USER2,       "user2"}, 
    656  {ROAR_PROTO_USER3,       "user3"}, 
    657  {ROAR_PROTO_USER4,       "user4"}, 
    658  {ROAR_PROTO_USER5,       "user5"}, 
    659  {ROAR_PROTO_USER6,       "user6"}, 
    660  {ROAR_PROTO_USER7,       "user7"}, 
    661  {ROAR_PROTO_USER8,       "user8"}, 
    662  {ROAR_PROTO_USER9,       "user9"}, 
    663  {ROAR_PROTO_USER10,      "user10"}, 
    664  {ROAR_PROTO_USER11,      "user11"}, 
    665  {ROAR_PROTO_USER12,      "user12"}, 
    666  {ROAR_PROTO_USER13,      "user13"}, 
    667  {ROAR_PROTO_USER14,      "user14"}, 
    668  {ROAR_PROTO_USER15,      "user15"}, 
    669633 {-1, NULL} 
    670634}; 
  • libroar/memmgr.c

    r6058 r6067  
    191191 
    192192int    roar_mm_free(void *ptr) { 
    193  if ( ptr == NULL ) 
    194   return 0; 
    195193 
    196194 if ( ptr == _libroar_null_buffer ) { 
  • libroar/vio_stream.c

    r6066 r6067  
    22 
    33/* 
    4  *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2010-2014 
     4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2010-2015 
    55 * 
    66 *  This file is part of libroar a part of RoarAudio, 
  • libroaross/libroaross.c

    r6064 r6067  
    22 
    33/* 
    4  *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2010-2014 
     4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2010-2015 
    55 * 
    66 *  This file is part of libroar a part of RoarAudio, 
  • plugins/universal/tic-tac-toe.c

    r6065 r6067  
    22 
    33/* 
    4  *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2012-2014 
     4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2012-2015 
    55 * 
    66 *  This file is part of roard a part of RoarAudio, 
  • roarclients/roar-config.c

    r6060 r6067  
    22 
    33/* 
    4  *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2014 
     4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2015 
    55 * 
    66 *  This file is part of roarclients a part of RoarAudio, 
  • roarclients/roarlight.c

    r6059 r6067  
    213213    fprintf(stderr, "Error: can not send event\n"); 
    214214   } else { 
    215     printf("event sent\n"); 
     215    printf("event send\n"); 
    216216   } 
    217217 
Note: See TracChangeset for help on using the changeset viewer.