diff mbox

[FFmpeg-devel,2/2] configure: use vpx_codec_vp8_dx/cx for libvpx-vp8 checking

Message ID 1551737358-22955-1-git-send-email-yejun.guo@intel.com
State Accepted
Commit d9b2668766e3e924d4ebb3c6531b449874e13666
Headers show

Commit Message

Guo, Yejun March 4, 2019, 10:09 p.m. UTC
Signed-off-by: Guo, Yejun <yejun.guo@intel.com>
---
 configure | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

James Zern March 6, 2019, 11:59 p.m. UTC | #1
On Mon, Mar 4, 2019 at 6:19 AM Guo, Yejun <yejun.guo@intel.com> wrote:
>
> Signed-off-by: Guo, Yejun <yejun.guo@intel.com>
> ---
>  configure | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>

lgtm. This is a remnant from when vp8 was the only codec in the library.
diff mbox

Patch

diff --git a/configure b/configure
index 4c39da1..a5cd279 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 $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 $pthreads_extralibs" ||
                 die "ERROR: libvpx encoder version must be >=1.4.0";
     }
     enabled libvpx_vp9_decoder && {