diff options
author | Thomas Reufer <thomas@reufer.ch> | 2016-03-29 13:28:16 +0200 |
---|---|---|
committer | Thomas Reufer <thomas@reufer.ch> | 2016-03-29 13:28:16 +0200 |
commit | 4f58ef78476716bea46d908918ea63d4ad90a824 (patch) | |
tree | ec3e1afbbc0ce60e9309d3c6e0f89332b8f45e1d /Makefile | |
parent | 5e28e4ccd7515de3f102538e5ea486d5d81b6fab (diff) | |
download | vdr-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-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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)) |