Commit 30a742d1 authored by diego's avatar diego

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8682 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1f36b11b
...@@ -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