Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Side by Side Diff: patches/to_upstream/13_libvpx_check_decoder_only.patch

Issue 3066011: ffmpeg configured with webm decode only to avoid postproc that pulls in unuse... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: '' Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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" ||
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698