Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Ekström <jeebjp@gmail.com>2018-02-10 17:59:54 +0300
committerJan Ekström <jeebjp@gmail.com>2018-02-10 19:20:18 +0300
commit063be4fe2cc631315fac028b5e5642e451304807 (patch)
treeb0a4cef63cb2afc67c28fe9ca728714c9a80f271 /libavformat/aptxdec.c
parent3e21f285ccdeb2bb64385a8019ac6635af7316bb (diff)
lavf/aptxdec: fix the limit on the APTX demuxer definition
Fixes breakage with --disable-muxers as it was originally limited to the muxer, and not the demuxer.
Diffstat (limited to 'libavformat/aptxdec.c')
-rw-r--r--libavformat/aptxdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/aptxdec.c b/libavformat/aptxdec.c
index 467bc3fd5a..a262cd9ebe 100644
--- a/libavformat/aptxdec.c
+++ b/libavformat/aptxdec.c
@@ -87,7 +87,7 @@ static const AVOption aptx_options[] = {
{ NULL },
};
-#if CONFIG_APTX_MUXER
+#if CONFIG_APTX_DEMUXER
static const AVClass aptx_demuxer_class = {
.class_name = "aptx demuxer",
.item_name = av_default_item_name,