diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-05-05 08:40:55 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-05-07 23:53:26 +0200 |
commit | 2e7bd08c4ca9130f64f8f8cdf757cc176abb91bb (patch) | |
tree | 3198b5ba27d45267dbd84f93a549541e80f0e15b | |
parent | 8b7f089e4beb532948e5d7bf6c44c7dd9a2e805a (diff) | |
download | ffmpeg-2e7bd08c4ca9130f64f8f8cdf757cc176abb91bb.tar.gz |
configure: Add wmv2dsp->qpeldsp dependency
It reuses e.g. ff_put_pixels8_l2_8() directly even though
it never initializes a QpelDSPContext.
Fixes standalone compilation of the wmv2 encoder (the decoder
already has a qpeldsp dependency via the h263 decoder).
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2874,6 +2874,7 @@ mpegvideoenc_select="aandcttables fdctdsp me_cmp mpegvideo pixblockdsp" msmpeg4dec_select="h263_decoder" msmpeg4enc_select="h263_encoder" vc1dsp_select="h264chroma qpeldsp startcode" +wmv2dsp_select="qpeldsp" # decoders / encoders aac_decoder_select="adts_header mpeg4audio sinewin" |