diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-02-15 04:34:28 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-02-15 04:34:28 +0100 |
commit | 5671aa4f0f5536de2fc58b6f89f01947f4f8f1c1 (patch) | |
tree | b1bddbfac8bd69c733faf734803e7f1842285e22 /libtoolame-dab/zmqoutput.h | |
parent | ba346d2469facf500cbcaa9cf9117ce04ea0b6da (diff) | |
download | ODR-AudioEnc-5671aa4f0f5536de2fc58b6f89f01947f4f8f1c1.tar.gz ODR-AudioEnc-5671aa4f0f5536de2fc58b6f89f01947f4f8f1c1.tar.bz2 ODR-AudioEnc-5671aa4f0f5536de2fc58b6f89f01947f4f8f1c1.zip |
Remove useless libtoolame-dab files
Diffstat (limited to 'libtoolame-dab/zmqoutput.h')
-rw-r--r-- | libtoolame-dab/zmqoutput.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/libtoolame-dab/zmqoutput.h b/libtoolame-dab/zmqoutput.h deleted file mode 100644 index 7f4eb59..0000000 --- a/libtoolame-dab/zmqoutput.h +++ /dev/null @@ -1,37 +0,0 @@ -#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 - |