source: roaraudio/roard/include/codecfilter.h @ 1238:3c0eaf049201

Last change on this file since 1238:3c0eaf049201 was 1238:3c0eaf049201, checked in by phi, 15 years ago

done a lot to support meta data updates on encoding vorbis streams with meta flag set :), need cleanup.

File size: 4.8 KB
Line 
1//codecfilter.h:
2
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
25#ifndef _CODECFILTER_H_
26#define _CODECFILTER_H_
27
28#include <roaraudio.h>
29
30#define CODECFILTER_USERDATA_T void *
31
32struct roar_stream_server;
33
34#define ROAR_CODECFILTER_NONE  0
35#define ROAR_CODECFILTER_READ  1
36#define ROAR_CODECFILTER_WRITE 2
37
38
39#define ROAR_CODECFILTER_CTL_NOOP            ROAR_STREAM_CTL_COMP_CF|0x0000 /* noop... */
40#define ROAR_CODECFILTER_CTL_BASE            ROAR_STREAM_CTL_COMP_CF|0x0000 /* Base ops... */
41#define ROAR_CODECFILTER_CTL_META            ROAR_STREAM_CTL_COMP_CF|0x1000 /* Meta data things... */
42
43#define ROAR_CODECFILTER_CTL_UPDATE          0x0001
44
45#define ROAR_CODECFILTER_CTL_META_UPDATE     ROAR_CODECFILTER_CTL_META|ROAR_CODECFILTER_CTL_UPDATE
46
47#define ROAR_CODECFILTER_CTL2CMD(x)          ((x) & (~ROAR_STREAM_CTL_COMP_CF))
48
49struct roar_codecfilter {
50 int    codec;
51 char * name;
52 char * desc;
53 char * options;
54 int    flags;
55 int (*open )(CODECFILTER_USERDATA_T * inst, int codec,
56                                             struct roar_stream_server * info,
57                                             struct roar_codecfilter   * filter);
58 int (*close)(CODECFILTER_USERDATA_T   inst);
59 int (*pause)(CODECFILTER_USERDATA_T   inst, int newstate);
60 int (*write)(CODECFILTER_USERDATA_T   inst, char * buf, int len);
61 int (*read )(CODECFILTER_USERDATA_T   inst, char * buf, int len);
62 int (*flush)(CODECFILTER_USERDATA_T   inst);
63 int (*delay)(CODECFILTER_USERDATA_T   inst, uint_least32_t * delay);
64 int (*ctl  )(CODECFILTER_USERDATA_T   inst, int cmd, void * data);
65};
66
67
68#include "codecfilter_cmd.h"
69#include "codecfilter_wave.h"
70
71
72#ifdef ROAR_HAVE_LIBVORBISFILE
73#include "codecfilter_vorbis.h"
74#endif
75
76#ifdef ROAR_HAVE_LIBCELT
77#include "codecfilter_celt.h"
78#endif
79
80#ifdef ROAR_HAVE_LIBSPEEX
81#include "codecfilter_speex.h"
82#endif
83
84#ifdef ROAR_HAVE_LIBSNDFILE
85#include "codecfilter_sndfile.h"
86#endif
87
88#ifdef ROAR_HAVE_LIBFISHSOUND
89#include "codecfilter_fishsound.h"
90#endif
91
92//cf alaw/mulaw:
93#include <libroardsp/libroardsp.h>
94
95void print_codecfilterlist (void);
96
97int codecfilter_open (CODECFILTER_USERDATA_T * inst,
98                 int * codecfilter_id, char * codecfilter /* NOTE: this is not part of struct roar_codecfilter's def! */,
99                 int codec, struct roar_stream_server * info);
100int codecfilter_close(CODECFILTER_USERDATA_T   inst, int codecfilter);
101int codecfilter_pause(CODECFILTER_USERDATA_T   inst, int codecfilter, int newstate);
102int codecfilter_write(CODECFILTER_USERDATA_T   inst, int codecfilter, char * buf, int len);
103int codecfilter_read (CODECFILTER_USERDATA_T   inst, int codecfilter, char * buf, int len);
104int codecfilter_flush(CODECFILTER_USERDATA_T   inst, int codecfilter);
105int codecfilter_delay(CODECFILTER_USERDATA_T   inst, int codecfilter, uint_least32_t * delay);
106int codecfilter_ctl  (CODECFILTER_USERDATA_T   inst, int codecfilter, int_least32_t cmd, void * data);
107
108int codecfilter_delay_fulldyn(CODECFILTER_USERDATA_T   inst, uint_least32_t * delay);
109
110
111// codecfilter without a own .h:
112int cf_alaw_open(CODECFILTER_USERDATA_T * inst, int codec,
113                                            struct roar_stream_server * info,
114                                            struct roar_codecfilter   * filter);
115
116int cf_alaw_close(CODECFILTER_USERDATA_T   inst);
117
118int cf_alaw_read(CODECFILTER_USERDATA_T   inst, char * buf, int len);
119int cf_alaw_write(CODECFILTER_USERDATA_T   inst, char * buf, int len);
120int cf_alaw_delay(CODECFILTER_USERDATA_T   inst, uint_least32_t * delay);
121
122int cf_mulaw_open(CODECFILTER_USERDATA_T * inst, int codec,
123                                            struct roar_stream_server * info,
124                                            struct roar_codecfilter   * filter);
125
126int cf_mulaw_close(CODECFILTER_USERDATA_T   inst);
127
128int cf_mulaw_read(CODECFILTER_USERDATA_T   inst, char * buf, int len);
129int cf_mulaw_write(CODECFILTER_USERDATA_T   inst, char * buf, int len);
130// cf_mulaw_delay() would be exactly the same as cf_alaw_delay() so it is just used by mulaw, too.
131
132#endif
133
134//ll
Note: See TracBrowser for help on using the repository browser.