diff options
Diffstat (limited to 'libtoolame-dab/zmqoutput.h')
-rw-r--r-- | libtoolame-dab/zmqoutput.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/libtoolame-dab/zmqoutput.h b/libtoolame-dab/zmqoutput.h new file mode 100644 index 0000000..7f4eb59 --- /dev/null +++ b/libtoolame-dab/zmqoutput.h @@ -0,0 +1,37 @@ +#ifndef _ZMQOUTPUT_H_ +#define _ZMQOUTPUT_H_ + +#include <stdint.h> +#include "common.h" + +#define ZMQ_ENCODER_TOOLAME 2 + +struct zmq_frame_header +{ + uint16_t version; // we support version=1 now + uint16_t encoder; // see ZMQ_ENCODER_XYZ + + /* length of the 'data' field */ + uint32_t datasize; + + /* Audio level, peak, linear PCM */ + int16_t audiolevel_left; + int16_t audiolevel_right; + + /* Data follows this header */ +} __attribute__ ((packed)); + + +/* Open the zmq socket and connect it to all URIs in the list. + * The URIs are semicolon delimited + */ +int zmqoutput_open(Bit_stream_struc * bs, const char* uri_list); + +int zmqoutput_write_byte(Bit_stream_struc *bs, unsigned char data); + +void zmqoutput_close(Bit_stream_struc *bs); + +void zmqoutput_set_peaks(int left, int right); + +#endif + |