diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-04-08 13:42:44 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-04-08 13:42:44 +0000 |
commit | 51cea49ab453755b55b07000c879749bc1b8a406 (patch) | |
tree | 864bfbffb0d1b83afdb48d5ae3b488abd5338a1f /libavcodec | |
parent | 0339fab8fc25d313c571d0959fba6657b7b7335a (diff) | |
download | ffmpeg-51cea49ab453755b55b07000c879749bc1b8a406.tar.gz |
Fix compilation when Theora decoder is disabled, but VP3 is enabled.
Originally committed as revision 8682 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vp3.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c index a1b1baccea..750952ff7d 100644 --- a/libavcodec/vp3.c +++ b/libavcodec/vp3.c @@ -2646,6 +2646,7 @@ AVCodec vp3_decoder = { NULL }; +#ifdef CONFIG_THEORA_DECODER AVCodec theora_decoder = { "theora", CODEC_TYPE_VIDEO, @@ -2658,3 +2659,4 @@ AVCodec theora_decoder = { 0, NULL }; +#endif |