summaryrefslogtreecommitdiffstats
path: root/src/utils.h
diff options
context:
space:
mode:
authorStefan Pöschel <github@basicmaster.de>2016-04-24 22:18:56 +0200
committerStefan Pöschel <github@basicmaster.de>2016-04-24 22:18:56 +0200
commitc1599cb19601443c48c45c5ad8d1b0d40a6238bc (patch)
treea0be96f911a70b3b91654a4b44f998838afb1f22 /src/utils.h
parent42546c26517013fc0df6a47743c7734a1ea9ecf8 (diff)
downloadODR-AudioEnc-c1599cb19601443c48c45c5ad8d1b0d40a6238bc.tar.gz
ODR-AudioEnc-c1599cb19601443c48c45c5ad8d1b0d40a6238bc.tar.bz2
ODR-AudioEnc-c1599cb19601443c48c45c5ad8d1b0d40a6238bc.zip
DLS: add DL Plus support
- adds support for Dynamic Label Plus to mot-encoder through a new parameter block which prepends the DLS text within the regarding file - adds an option to add DL Plus data to the VLC input ICY text of dabplus-enc
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/utils.h b/src/utils.h
index a0ab1ae..e411963 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -3,6 +3,7 @@
#include <math.h>
#include <stdint.h>
+#include <stddef.h>
#define MIN(a,b) (((a)<(b))?(a):(b))
#define MAX(a,b) (((a)>(b))?(a):(b))
@@ -45,5 +46,7 @@ struct zmq_frame_header_t
#define ZMQ_FRAME_DATA(f) ( ((uint8_t*)f)+sizeof(struct zmq_frame_header_t) )
+size_t strlen_utf8(const char *s);
+
#endif