diff options
author | David Conrad <lessen42@gmail.com> | 2009-11-23 18:18:21 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2009-11-23 18:18:21 +0000 |
commit | c261a5d927a2bb4288983e386f1513f8b1108e71 (patch) | |
tree | cda249955ab75e3420591878ad5724f573067e63 /configure | |
parent | b9c78bca269d75eb633f5cee494e2030e0064811 (diff) | |
download | ffmpeg-c261a5d927a2bb4288983e386f1513f8b1108e71.tar.gz |
libtheora: using the 1.0 API requires linking to both
libtheoraenc and libtheoradec; libtheora is the pre-1.0 library.
Documented at http://theora.org/doc/libtheora-1.0/
Fixes issue1564
Originally committed as revision 20588 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2375,7 +2375,7 @@ enabled libopenjpeg && require libopenjpeg openjpeg.h opj_version -lopenjpeg enabled libschroedinger && add_cflags $(pkg-config --cflags schroedinger-1.0) && require libschroedinger schroedinger/schro.h schro_init $(pkg-config --libs schroedinger-1.0) enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspeex -enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheora -logg +enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 -lm && { check_cpp_condition x264.h "X264_BUILD >= 78" || |