source: roaraudio/include/libroar/stream.h @ 82:395b9657ca85

Last change on this file since 82:395b9657ca85 was 82:395b9657ca85, checked in by phi, 16 years ago

added roar_simple_new_stream()

File size: 1.4 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" : "unknown" )
14
15int roar_stream_connect (struct roar_connection * con, struct roar_stream * s, int dir);
16
17int roar_stream_new     (struct roar_stream * s, unsigned int rate, unsigned int channels, unsigned int bits, unsigned int codec);
18
19int roar_stream_exec    (struct roar_connection * con, struct roar_stream * s);
20int roar_stream_connect_to (struct roar_connection * con, struct roar_stream * s, int type, char * host, int port);
21int roar_stream_connect_to_ask (struct roar_connection * con, struct roar_stream * s, int type, char * host, int port);
22
23int roar_stream_add_data (struct roar_connection * con, struct roar_stream * s, char * data, size_t len);
24
25int roar_stream_s2m     (struct roar_stream * s, struct roar_message * m);
26int roar_stream_m2s     (struct roar_stream * s, struct roar_message * m);
27
28#endif
29
30//ll
Note: See TracBrowser for help on using the repository browser.