[FFmpeg-devel] [PATCH] configure: fix dependencies for mlp and truehd encoders

Moritz Barsnick barsnick at gmx.net
Tue Feb 12 18:51:26 EET 2019


Signed-off-by: Moritz Barsnick <barsnick at gmx.net>
---

Found with a minimal build using "--enable-encoder=truehd"

I reviewed other libavcodec sources makeing use of audio_frame_queue, and
their dependencies all seem to include this, but I didn't check which sub-
decoders are defined by these source files. (Like here: truehd_encoder is
provided by mlpenc.c.)

 configure | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure b/configure
index ac2d7ab402..bf40c1dcb9 100755
--- a/configure
+++ b/configure
@@ -2699,7 +2699,7 @@ mjpeg_decoder_select="blockdsp hpeldsp exif idctdsp jpegtables"
 mjpeg_encoder_select="jpegtables mpegvideoenc"
 mjpegb_decoder_select="mjpeg_decoder"
 mlp_decoder_select="mlp_parser"
-mlp_encoder_select="lpc"
+mlp_encoder_select="lpc audio_frame_queue"
 motionpixels_decoder_select="bswapdsp"
 mp1_decoder_select="mpegaudio"
 mp1float_decoder_select="mpegaudio"
@@ -2781,7 +2781,7 @@ thp_decoder_select="mjpeg_decoder"
 tiff_decoder_suggest="zlib lzma"
 tiff_encoder_suggest="zlib"
 truehd_decoder_select="mlp_parser"
-truehd_encoder_select="lpc"
+truehd_encoder_select="lpc audio_frame_queue"
 truemotion2_decoder_select="bswapdsp"
 truespeech_decoder_select="bswapdsp"
 tscc_decoder_deps="zlib"
-- 
2.20.1


More information about the ffmpeg-devel mailing list