Changeset 3683:b3b89de5ad9f in roaraudio


Ignore:
Timestamp:
04/13/10 19:35:03 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added symbols for RSound

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • include/roaraudio/client.h

    r3517 r3683  
    22 
    33/* 
    4  *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008 
     4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2010 
    55 * 
    66 *  This file is part of RoarAudio, 
     
    4343#define ROAR_PROTO_ICY              7 /* Nullsoft ICY */ 
    4444#define ROAR_PROTO_SIMPLE           8 /* PulseAudio Simple */ 
     45#define ROAR_PROTO_RSOUND           9 
    4546 
    4647#define ROAR_BYTEORDER_UNKNOWN      0x00 
  • libroar/ctl.c

    r3530 r3683  
    22 
    33/* 
    4  *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008 
     4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2010 
    55 * 
    66 *  This file is part of libroar a part of RoarAudio, 
     
    503503 } else if ( !strcasecmp(proto, "simple") ) { 
    504504  return ROAR_PROTO_SIMPLE; 
     505 } else if ( !strcasecmp(proto, "rsound") ) { 
     506  return ROAR_PROTO_RSOUND; 
    505507 } 
    506508 
     
    517519  case ROAR_PROTO_ICY:       return "ICY";       break; 
    518520  case ROAR_PROTO_SIMPLE:    return "Simple";    break; 
     521  case ROAR_PROTO_RSOUND:    return "RSound";    break; 
    519522  default: 
    520523    return "(unknown)"; 
Note: See TracChangeset for help on using the changeset viewer.