source: roaraudio/include/libroar/stream.h @ 537:4c587d327dd8

Last change on this file since 537:4c587d327dd8 was 537:4c587d327dd8, checked in by phi, 16 years ago

added roar_str2codec() and roar_codec2str()

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};
22
23int roar_stream_connect (struct roar_connection * con, struct roar_stream * s, int dir);
24
25int roar_stream_new     (struct roar_stream * s, unsigned int rate, unsigned int channels, unsigned int bits, unsigned int codec);
26
27int roar_stream_exec    (struct roar_connection * con, struct roar_stream * s);
28int roar_stream_connect_to (struct roar_connection * con, struct roar_stream * s, int type, char * host, int port);
29int roar_stream_connect_to_ask (struct roar_connection * con, struct roar_stream * s, int type, char * host, int port);
30
31int roar_stream_add_data (struct roar_connection * con, struct roar_stream * s, char * data, size_t len);
32
33int roar_stream_send_data (struct roar_connection * con, struct roar_stream * s, char * data, size_t len);
34
35int roar_stream_get_info (struct roar_connection * con, struct roar_stream * s, struct roar_stream_info * info);
36
37int roar_stream_s2m     (struct roar_stream * s, struct roar_message * m);
38int roar_stream_m2s     (struct roar_stream * s, struct roar_message * m);
39
40int    roar_str2codec (char * codec);
41char * roar_codec2str (int    codec);
42
43#endif
44
45//ll
Note: See TracBrowser for help on using the repository browser.