Mercurial > mplayer.hg
changeset 33166:eb7c55923711
Update libvpx check: libvpx version must be >=0.9.6 now.
author | cehoyos |
---|---|
date | Tue, 12 Apr 2011 09:19:31 +0000 |
parents | 0c17a7d0f6ef |
children | 800353f84f4d |
files | configure |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Tue Apr 12 08:03:41 2011 +0000 +++ b/configure Tue Apr 12 09:19:31 2011 +0000 @@ -7146,7 +7146,7 @@ int main(void) { vpx_codec_dec_init(NULL, &vpx_codec_vp8_dx_algo, NULL, 0); vpx_codec_enc_init(NULL, &vpx_codec_vp8_dx_algo, NULL, 0); - return 0; + return VPX_CQ; } EOF cc_check -lvpx && _libvpx_lavc=yes && extra_ldflags="$extra_ldflags -lvpx"