diff options
author | Haihao Xiang <haihao.xiang@intel.com> | 2024-04-22 20:34:14 +0800 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-04-22 17:20:16 -0300 |
commit | 3032a74cac4f7979d6e70db80360634e48e13827 (patch) | |
tree | 58b7ef1788e0a176180b3b4746127345039529f9 /configure | |
parent | 2f3c1e1641af319b5c33e405e796f47e62cb0149 (diff) | |
download | ffmpeg-3032a74cac4f7979d6e70db80360634e48e13827.tar.gz |
configure: fix rpuenc typos
Otherwise there are link errors:
LD ffprobe_g
/usr/bin/ld: libavcodec/libavcodec.so: undefined reference to
`ff_dovi_rpu_generate'
/usr/bin/ld: libavcodec/libavcodec.so: undefined reference to
`ff_dovi_configure'
collect2: error: ld returned 1 exit status
Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
Reviewed-by: Jan Ekström <jeebjp@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3534,7 +3534,7 @@ libspeex_decoder_deps="libspeex" libspeex_encoder_deps="libspeex" libspeex_encoder_select="audio_frame_queue" libsvtav1_encoder_deps="libsvtav1" -libsvtav1_encoder_select="dovi_rpueenc" +libsvtav1_encoder_select="dovi_rpuenc" libtheora_encoder_deps="libtheora" libtwolame_encoder_deps="libtwolame" libuavs3d_decoder_deps="libuavs3d" @@ -3554,7 +3554,7 @@ libx264_encoder_select="atsc_a53 golomb" libx264rgb_encoder_deps="libx264" libx264rgb_encoder_select="libx264_encoder" libx265_encoder_deps="libx265" -libx265_encoder_select="atsc_a53 dovi_rpueenc" +libx265_encoder_select="atsc_a53 dovi_rpuenc" libxavs_encoder_deps="libxavs" libxavs2_encoder_deps="libxavs2" libxevd_decoder_deps="libxevd" |