Commit 51cea49a authored by Diego Biurrun's avatar Diego Biurrun

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

Originally committed as revision 8682 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 0339fab8
...@@ -2646,6 +2646,7 @@ AVCodec vp3_decoder = { ...@@ -2646,6 +2646,7 @@ AVCodec vp3_decoder = {
NULL NULL
}; };
#ifdef CONFIG_THEORA_DECODER
AVCodec theora_decoder = { AVCodec theora_decoder = {
"theora", "theora",
CODEC_TYPE_VIDEO, CODEC_TYPE_VIDEO,
...@@ -2658,3 +2659,4 @@ AVCodec theora_decoder = { ...@@ -2658,3 +2659,4 @@ AVCodec theora_decoder = {
0, 0,
NULL NULL
}; };
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment