| OLD | NEW |
| (Empty) | |
| 1 diff -rpu -N orig/configure ffmpeg-mt/configure |
| 2 --- orig/configure 2010-07-28 14:53:40.212277500 -0700 |
| 3 +++ ffmpeg-mt/configure 2010-07-28 14:53:54.825738700 -0700 |
| 4 @@ -2657,8 +2657,8 @@ enabled libschroedinger && add_cflags $( |
| 5 enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspee
x |
| 6 enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheo
raenc -ltheoradec -logg |
| 7 enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -l
vorbisenc -lvorbis -logg |
| 8 -enabled libvpx && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_de
c_init_ver -lvpx && |
| 9 - check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" vpx_codec_en
c_init_ver -lvpx || |
| 10 +# only check decoder version to allow linking with libvpx built with --enable-v
p8-decoder |
| 11 +enabled libvpx && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_de
c_init_ver -lvpx || |
| 12 die "ERROR: libvpx version must be >=0.9.1"; } |
| 13 enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 && |
| 14 { check_cpp_condition x264.h "X264_BUILD >= 98" || |
| OLD | NEW |