[FFmpeg-devel] [PATCH 2/2] configure: fix typo for libvpx-vp8
James Almer
jamrial at gmail.com
Mon Mar 4 15:54:37 EET 2019
On 3/4/2019 6:21 PM, Guo, Yejun wrote:
> Signed-off-by: Guo, Yejun <yejun.guo at intel.com>
> ---
> configure | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/configure b/configure
> index 1c0ba78..66e0113 100755
> --- a/configure
> +++ b/configure
> @@ -6226,12 +6226,12 @@ enabled libvorbis && require_pkg_config libvorbis vorbis vorbis/codec.h
> enabled libvpx && {
> enabled libvpx_vp8_decoder && {
> check_pkg_config libvpx_vp8_decoder "vpx >= 1.4.0" "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_vp8_dx ||
> - check_lib libvpx_vp8_decoder "vpx/vpx_decoder.h vpx/vp8dx.h" "vpx_codec_dec_init_ver VPX_IMG_FMT_HIGHBITDEPTH" -lvpx ||
> + check_lib libvpx_vp8_decoder "vpx/vpx_decoder.h vpx/vp8dx.h" "vpx_codec_vp8_dx VPX_IMG_FMT_HIGHBITDEPTH" "-lvpx $libm_extralibs -lpthread" ||
Like i mentioned in the other patch, it should be $pthreads_extralibs.
> die "ERROR: libvpx decoder version must be >=1.4.0";
> }
> enabled libvpx_vp8_encoder && {
> check_pkg_config libvpx_vp8_encoder "vpx >= 1.4.0" "vpx/vpx_encoder.h vpx/vp8cx.h" vpx_codec_vp8_cx ||
> - check_lib libvpx_vp8_encoder "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_enc_init_ver VPX_IMG_FMT_HIGHBITDEPTH" -lvpx ||
> + check_lib libvpx_vp8_encoder "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_vp8_cx VPX_IMG_FMT_HIGHBITDEPTH" "-lvpx $libm_extralibs -lpthread" ||
> die "ERROR: libvpx encoder version must be >=1.4.0";
> }
> enabled libvpx_vp9_decoder && {
>
More information about the ffmpeg-devel
mailing list