diff vp3.c @ 4823:cff8c7ecac71 libavcodec

Fix compilation when Theora decoder is disabled, but VP3 is enabled.
author diego
date Sun, 08 Apr 2007 13:42:44 +0000
parents 66ef3690d108
children 128b2c9c1e04
line wrap: on
line diff
--- a/vp3.c	Sun Apr 08 13:02:25 2007 +0000
+++ b/vp3.c	Sun Apr 08 13:42:44 2007 +0000
@@ -2646,6 +2646,7 @@
     NULL
 };
 
+#ifdef CONFIG_THEORA_DECODER
 AVCodec theora_decoder = {
     "theora",
     CODEC_TYPE_VIDEO,
@@ -2658,3 +2659,4 @@
     0,
     NULL
 };
+#endif