diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-03-25 15:41:19 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-03-25 15:41:19 +0100 |
commit | 968cfd27e659b42a0ca2b3c15265c8999086b45a (patch) | |
tree | 82f1cf8f9aaa0e2418ac11efc0a2244d86cef1f0 /src/utils.h | |
parent | e9e1b673a111366ad9071933f3469891a735243a (diff) | |
download | ODR-SourceCompanion-968cfd27e659b42a0ca2b3c15265c8999086b45a.tar.gz ODR-SourceCompanion-968cfd27e659b42a0ca2b3c15265c8999086b45a.tar.bz2 ODR-SourceCompanion-968cfd27e659b42a0ca2b3c15265c8999086b45a.zip |
Rename ZMQ_ENCODER_XYZ constants
Diffstat (limited to 'src/utils.h')
-rw-r--r-- | src/utils.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/utils.h b/src/utils.h index 83b3e4d..4ad3a7e 100644 --- a/src/utils.h +++ b/src/utils.h @@ -17,36 +17,6 @@ */ const char* level(int channel, int peak); -/*! This defines the on-wire representation of a ZMQ message header. - * It must be compatible with the definition in ODR-DabMux. - * - * The data follows right after this header */ -struct zmq_frame_header_t -{ - 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)); - -#define ZMQ_ENCODER_FDK 1 -#define ZMQ_ENCODER_TOOLAME 2 - -#define ZMQ_HEADER_SIZE sizeof(struct zmq_frame_header_t) - -/* The expected frame size incl data of the given frame */ -#define ZMQ_FRAME_SIZE(f) (sizeof(struct zmq_frame_header_t) + f->datasize) - -#define ZMQ_FRAME_DATA(f) ( ((uint8_t*)f)+sizeof(struct zmq_frame_header_t) ) - - size_t strlen_utf8(const char *s); #endif |