source: roaraudio/roard/include/codecfilter.h @ 1224:d66ef0e2143d

Last change on this file since 1224:d66ef0e2143d was 1224:d66ef0e2143d, checked in by phi, 15 years ago

start of stream ctl implementation

File size: 4.3 KB
RevLine 
[169]1//codecfilter.h:
2
[668]3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
5 *
6 *  This file is part of roard a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
[169]25#ifndef _CODECFILTER_H_
26#define _CODECFILTER_H_
27
28#include <roaraudio.h>
29
[170]30#define CODECFILTER_USERDATA_T void *
31
[195]32struct roar_stream_server;
[170]33
[612]34#define ROAR_CODECFILTER_NONE  0
35#define ROAR_CODECFILTER_READ  1
36#define ROAR_CODECFILTER_WRITE 2
37
[170]38struct roar_codecfilter {
[176]39 int    codec;
[170]40 char * name;
41 char * desc;
[171]42 char * options;
[612]43 int    flags;
[193]44 int (*open )(CODECFILTER_USERDATA_T * inst, int codec,
[171]45                                             struct roar_stream_server * info,
46                                             struct roar_codecfilter   * filter);
[170]47 int (*close)(CODECFILTER_USERDATA_T   inst);
48 int (*pause)(CODECFILTER_USERDATA_T   inst, int newstate);
49 int (*write)(CODECFILTER_USERDATA_T   inst, char * buf, int len);
50 int (*read )(CODECFILTER_USERDATA_T   inst, char * buf, int len);
51 int (*flush)(CODECFILTER_USERDATA_T   inst);
[1144]52 int (*delay)(CODECFILTER_USERDATA_T   inst, uint_least32_t * delay);
[1223]53 int (*ctl  )(CODECFILTER_USERDATA_T   inst, int cmd, void * data);
[170]54};
55
[172]56
57#include "codecfilter_cmd.h"
[561]58#include "codecfilter_wave.h"
59
60
[204]61#ifdef ROAR_HAVE_LIBVORBISFILE
62#include "codecfilter_vorbis.h"
63#endif
[172]64
[323]65#ifdef ROAR_HAVE_LIBCELT
66#include "codecfilter_celt.h"
67#endif
[172]68
[371]69#ifdef ROAR_HAVE_LIBSPEEX
70#include "codecfilter_speex.h"
71#endif
72
[851]73#ifdef ROAR_HAVE_LIBSNDFILE
74#include "codecfilter_sndfile.h"
75#endif
76
[992]77#ifdef ROAR_HAVE_LIBFISHSOUND
78#include "codecfilter_fishsound.h"
79#endif
80
81//cf alaw/mulaw:
[783]82#include <libroardsp/libroardsp.h>
83
[170]84void print_codecfilterlist (void);
85
86int codecfilter_open (CODECFILTER_USERDATA_T * inst,
87                 int * codecfilter_id, char * codecfilter /* NOTE: this is not part of struct roar_codecfilter's def! */,
[193]88                 int codec, struct roar_stream_server * info);
[170]89int codecfilter_close(CODECFILTER_USERDATA_T   inst, int codecfilter);
90int codecfilter_pause(CODECFILTER_USERDATA_T   inst, int codecfilter, int newstate);
91int codecfilter_write(CODECFILTER_USERDATA_T   inst, int codecfilter, char * buf, int len);
92int codecfilter_read (CODECFILTER_USERDATA_T   inst, int codecfilter, char * buf, int len);
93int codecfilter_flush(CODECFILTER_USERDATA_T   inst, int codecfilter);
[1144]94int codecfilter_delay(CODECFILTER_USERDATA_T   inst, int codecfilter, uint_least32_t * delay);
[1224]95int codecfilter_ctl  (CODECFILTER_USERDATA_T   inst, int codecfilter, int_least32_t cmd, void * data);
[1144]96
97int codecfilter_delay_fulldyn(CODECFILTER_USERDATA_T   inst, uint_least32_t * delay);
98
[170]99
[736]100// codecfilter without a own .h:
101int cf_alaw_open(CODECFILTER_USERDATA_T * inst, int codec,
102                                            struct roar_stream_server * info,
103                                            struct roar_codecfilter   * filter);
104
105int cf_alaw_close(CODECFILTER_USERDATA_T   inst);
106
107int cf_alaw_read(CODECFILTER_USERDATA_T   inst, char * buf, int len);
108int cf_alaw_write(CODECFILTER_USERDATA_T   inst, char * buf, int len);
[1144]109int cf_alaw_delay(CODECFILTER_USERDATA_T   inst, uint_least32_t * delay);
[170]110
[922]111int cf_mulaw_open(CODECFILTER_USERDATA_T * inst, int codec,
112                                            struct roar_stream_server * info,
113                                            struct roar_codecfilter   * filter);
114
115int cf_mulaw_close(CODECFILTER_USERDATA_T   inst);
116
117int cf_mulaw_read(CODECFILTER_USERDATA_T   inst, char * buf, int len);
118int cf_mulaw_write(CODECFILTER_USERDATA_T   inst, char * buf, int len);
[1144]119// cf_mulaw_delay() would be exactly the same as cf_alaw_delay() so it is just used by mulaw, too.
[922]120
[169]121#endif
122
123//ll
Note: See TracBrowser for help on using the repository browser.