Changeset 3255:970b81dc7c18 in roaraudio


Ignore:
Timestamp:
01/30/10 14:18:25 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

got PA simple protocol basicly to work

Location:
roard
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • roard/Makefile

    r2945 r3255  
    66CF_CODEC=codecfilter_cmd.o codecfilter_vorbis.o codecfilter_celt.o codecfilter_speex.o codecfilter_alaw.o codecfilter_mulaw.o codecfilter_sndfile.o codecfilter_fishsound.o 
    77CF_CONTAINER=codecfilter_wave.o codecfilter_raum.o 
    8 EMUL=emul_esd.o 
     8EMUL=emul_esd.o emul_simple.o 
    99 
    1010CF=${CF_CONTAINER} ${CF_CODEC} 
  • roard/clients.c

    r3063 r3255  
    183183  case ROAR_PROTO_ROARAUDIO: 
    184184  case ROAR_PROTO_ESOUND: 
     185  case ROAR_PROTO_SIMPLE: 
    185186    byteorder = ROAR_BYTEORDER_NETWORK; 
    186187   break; 
  • roard/include/roard.h

    r3253 r3255  
    9797#include "req.h" 
    9898#include "emul_esd.h" 
     99#include "emul_simple.h" 
    99100#include "sources.h" 
    100101#include "sample.h" 
  • roard/network.c

    r3253 r3255  
    159159#endif 
    160160  case ROAR_PROTO_SIMPLE: 
     161    if ( emul_simple_on_connect(client, lsock) == -1 ) 
     162     return -1; 
    161163   break; 
    162164#endif 
Note: See TracChangeset for help on using the changeset viewer.