source: roaraudio/roard/codecfilter_speex.c @ 373:7c30708ecf0e

Last change on this file since 373:7c30708ecf0e was 373:7c30708ecf0e, checked in by phi, 16 years ago

added some dummy funcs for cf speex

File size: 574 bytes
Line 
1//codecfilter_speex.c:
2
3#include "roard.h"
4#ifdef ROAR_HAVE_LIBSPEEX
5
6int cf_speex_open(CODECFILTER_USERDATA_T * inst, int codec,
7                                            struct roar_stream_server * info,
8                                            struct roar_codecfilter   * filter) {
9 *inst = NULL;
10 return -1;
11}
12
13int cf_speex_close(CODECFILTER_USERDATA_T   inst) {
14 return -1;
15}
16
17int cf_speex_read(CODECFILTER_USERDATA_T   inst, char * buf, int len) {
18 return -1;
19}
20int cf_speex_write(CODECFILTER_USERDATA_T   inst, char * buf, int len) {
21 return -1;
22}
23
24#endif
25
26//ll
Note: See TracBrowser for help on using the repository browser.