Changeset 2187:3aa9746560f4 in roaraudio


Ignore:
Timestamp:
07/26/09 22:03:39 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

startetd with CELT support in libroardsp

Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • include/libroardsp/libroardsp.h

    r2169 r2187  
    3737#include "remove.h" 
    3838#include "transcode.h" 
     39 
     40#ifdef ROAR_HAVE_LIBCELT 
     41#include "transcode_celt.h" 
     42#endif 
    3943 
    4044// defines 
  • libroardsp/Makefile

    r2179 r2187  
    77OLDROAR=midi.o 
    88FILTER=lowp.o highp.o amp.o quantify.o add.o clip.o downmix.o dcblock.o swap.o 
    9 TRANSCODERS=transcode_mualaw.o 
     9TRANSCODERS=transcode_mualaw.o transcode_celt.o 
    1010 
    1111ALLOBJS=$(OBJS) $(FILTER) $(TRANSCODERS) $(OLDROAR) 
     
    1515CFLAGS += -g -Wall -O2 $(DEFINES) $(INCLUDE) $(INCPATH) $(SHARED_CF) $(fPIC) 
    1616LDFLAGS = -g $(SHARED) -L../lib/ $(LDPATH) 
    17 LIBS    = $(lib_dnet) $(lib_m) -lroar 
     17 
     18CODECLIBS = $(lib_celt) 
     19LIBS      = $(lib_dnet) $(lib_m) -lroar $(CODECLIBS) 
    1820 
    1921all: ${TARGETS} 
Note: See TracChangeset for help on using the changeset viewer.