Changeset 2188:e7fd12fd07b5 in roaraudio for libroardsp


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

added dummy functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroardsp/transcode_celt.c

    r2187 r2188  
    2727#ifdef ROAR_HAVE_LIBCELT 
    2828 
     29int roar_xcoder_celt_init       (struct roar_xcoder * state) { 
     30 return -1; 
     31} 
     32 
     33int roar_xcoder_celt_uninit     (struct roar_xcoder * state) { 
     34 return -1; 
     35} 
     36 
     37int roar_xcoder_celt_packet_size(struct roar_xcoder * state, int samples) { 
     38 return -1; 
     39} 
     40 
     41int roar_xcoder_celt_encode     (struct roar_xcoder * state, void * buf, size_t len) { 
     42 return -1; 
     43} 
     44 
     45int roar_xcoder_celt_decode     (struct roar_xcoder * state, void * buf, size_t len) { 
     46 return -1; 
     47} 
    2948 
    3049#endif 
Note: See TracChangeset for help on using the changeset viewer.