From 51cea49ab453755b55b07000c879749bc1b8a406 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 8 Apr 2007 13:42:44 +0000 Subject: [PATCH] Fix compilation when Theora decoder is disabled, but VP3 is enabled. Originally committed as revision 8682 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vp3.c | 2 ++ 1 file changed, 2 insertions(+) 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 -- GitLab