diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-07 23:03:04 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-07 23:03:04 +0000 |
commit | 218a6022e7be21e1f1b78f6f8f06917769e916f4 (patch) | |
tree | 38f8da2e6f214c95793ac6fcbdbbc9b8e35a878a /libavcodec/h264.c | |
parent | ed09249c71adc66ed7bd5fdf7cbaa0dc54488281 (diff) | |
download | ffmpeg-218a6022e7be21e1f1b78f6f8f06917769e916f4.tar.gz |
Only #include svq3.c if the SVQ3 decoder is enabled.
Originally committed as revision 16487 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index ce926a3e17..eb0274e678 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -8036,4 +8036,6 @@ AVCodec h264_vdpau_decoder = { }; #endif +#ifdef CONFIG_SVQ3_DECODER #include "svq3.c" +#endif |