Changeset 323:60282fdc8511 in roaraudio


Ignore:
Timestamp:
07/25/08 02:18:31 (16 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added basic strcuture for rw codecfilter CELT

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • include/roaraudio/config.h.OLD

    r316 r323  
    99#define ROAR_HAVE_LIBVORBISFILE 
    1010 
     11#define ROAR_HAVE_LIBCELT 
     12 
    1113#define ROAR_HAVE_SAFE_OVERFLOW 
    1214 
  • roard/Makefile

    r265 r323  
    33OBJ=roard.o driver.o mixer.o output.o signals.o loop.o clients.o streams.o network.o commands.o req.o sources.o sample.o meta.o codecfilter.o midi.o lib.o 
    44DRV=driver_esd.o driver_ao.o driver_roar.o driver_raw.o 
    5 CF=codecfilter_cmd.o codecfilter_vorbis.o 
     5CF=codecfilter_cmd.o codecfilter_vorbis.o codecfilter_celt.o 
    66 
     7CELT_PREFIX=/home/phi/superhome/xiph/celt-test/ 
    78#DEFINES        = -DDEBUG 
    89#DEFINES        = -DMONITOR_LATENCY 
    910INCLUDE = -I../include -I./include 
    10 CFLAGS  = -g -Wall -O2 $(DEFINES) $(INCLUDE) 
    11 LDFLAGS = -g -L../lib/ -lroar -lesd -lao -lvorbisfile -lm 
     11CFLAGS  = -g -Wall -O2 $(DEFINES) $(INCLUDE) -I$(CELT_PREFIX)/include 
     12LDFLAGS = -g -L../lib/ -lroar -lesd -lao -lvorbisfile -lm -L$(CELT_PREFIX)/lib -lcelt 
    1213 
    1314all: ${TARGETS} 
  • roard/include/codecfilter.h

    r204 r323  
    3131#endif 
    3232 
     33#ifdef ROAR_HAVE_LIBCELT 
     34#include "codecfilter_celt.h" 
     35#endif 
    3336 
    3437void print_codecfilterlist (void); 
Note: See TracChangeset for help on using the changeset viewer.