]> git.sesse.net Git - ffmpeg/commitdiff
lavf/aptxdec: fix the limit on the APTX demuxer definition
authorJan Ekström <jeebjp@gmail.com>
Sat, 10 Feb 2018 14:59:54 +0000 (16:59 +0200)
committerJan Ekström <jeebjp@gmail.com>
Sat, 10 Feb 2018 16:20:18 +0000 (18:20 +0200)
Fixes breakage with --disable-muxers as it was originally limited
to the muxer, and not the demuxer.

libavformat/aptxdec.c

index 467bc3fd5a834c12c4447aed485a54357c701d80..a262cd9ebea4093ce68e47a27681a10b0bb04f7c 100644 (file)
@@ -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,