Fix compilation when Theora decoder is disabled, but VP3 is enabled.

Originally committed as revision 8682 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2007-04-08 13:42:44 +00:00
parent 0339fab8fc
commit 51cea49ab4
1 changed files with 2 additions and 0 deletions

View File

@ -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