summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorThomas Reufer <thomas@reufer.ch>2016-03-29 13:28:16 +0200
committerThomas Reufer <thomas@reufer.ch>2016-03-29 13:28:16 +0200
commit4f58ef78476716bea46d908918ea63d4ad90a824 (patch)
treeec3e1afbbc0ce60e9309d3c6e0f89332b8f45e1d /Makefile
parent5e28e4ccd7515de3f102538e5ea486d5d81b6fab (diff)
downloadvdr-plugin-rpihddevice-4f58ef78476716bea46d908918ea63d4ad90a824.tar.gz
vdr-plugin-rpihddevice-4f58ef78476716bea46d908918ea63d4ad90a824.tar.bz2
experimental support for AAC-LATM, use "make ENABLE_AAC_LATM=1" to enable
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 3d2167a..a0605b8 100644
--- a/Makefile
+++ b/Makefile
@@ -79,6 +79,11 @@ ifeq ($(DEBUG_BUFFERS), 1)
DEFINES += -DDEBUG_BUFFERS
endif
+ENABLE_AAC_LATM ?= 0
+ifeq ($(ENABLE_AAC_LATM), 1)
+ DEFINES += -DENABLE_AAC_LATM
+endif
+
# ffmpeg/libav configuration
ifdef EXT_LIBAV
LIBAV_PKGCFG = $(shell PKG_CONFIG_PATH=$(EXT_LIBAV)/lib/pkgconfig pkg-config $(1))