source: roaraudio/include/libroar/stream.h @ 539:79cc09e8d4f9

Last change on this file since 539:79cc09e8d4f9 was 539:79cc09e8d4f9, checked in by phi, 16 years ago

save orginal codec and send it via ROAR_CMD_GET_STREAM_PARA

File size: 1.8 KB
Line 
1//libroarstream.h:
2
3#ifndef _LIBROARSTREAM_H_
4#define _LIBROARSTREAM_H_
5
6#include "roaraudio.h"
7
8#define roar_dir2str(x)   ((x) == ROAR_DIR_PLAY   ? "play"   : (x) == ROAR_DIR_MONITOR ? "monitor" : \
9                           (x) == ROAR_DIR_FILTER ? "filter" : (x) == ROAR_DIR_RECORD  ? "record"  : \
10                           (x) == ROAR_DIR_OUTPUT ? "output" : "unknown")
11/*
12#define roar_codec2str(x) ((x) == ROAR_CODEC_PCM_S_LE  ? "pcm_s_le"  : (x) == ROAR_CODEC_PCM_S_BE  ? "pcm_s_be"  : \
13                           (x) == ROAR_CODEC_PCM_S_PDP ? "pcm_s_pdp" : (x) == ROAR_CODEC_MIDI_FILE ? "midi_file" : \
14                           "unknown" )
15*/
16
17struct roar_stream_info {
18 int block_size;
19 int pre_underruns;
20 int post_underruns;
21 int codec;
22};
23
24int roar_stream_connect (struct roar_connection * con, struct roar_stream * s, int dir);
25
26int roar_stream_new     (struct roar_stream * s, unsigned int rate, unsigned int channels, unsigned int bits, unsigned int codec);
27
28int roar_stream_exec    (struct roar_connection * con, struct roar_stream * s);
29int roar_stream_connect_to (struct roar_connection * con, struct roar_stream * s, int type, char * host, int port);
30int roar_stream_connect_to_ask (struct roar_connection * con, struct roar_stream * s, int type, char * host, int port);
31
32int roar_stream_add_data (struct roar_connection * con, struct roar_stream * s, char * data, size_t len);
33
34int roar_stream_send_data (struct roar_connection * con, struct roar_stream * s, char * data, size_t len);
35
36int roar_stream_get_info (struct roar_connection * con, struct roar_stream * s, struct roar_stream_info * info);
37
38int roar_stream_s2m     (struct roar_stream * s, struct roar_message * m);
39int roar_stream_m2s     (struct roar_stream * s, struct roar_message * m);
40
41int    roar_str2codec (char * codec);
42char * roar_codec2str (int    codec);
43
44#endif
45
46//ll
Note: See TracBrowser for help on using the repository browser.