diff vp3.c @ 4825:3f32f0e5a77b libavcodec

cosmetics: Move one code block to save an #ifdef in the next commit.
author diego
date Sun, 08 Apr 2007 18:52:03 +0000
parents 128b2c9c1e04
children 9ca9a53a848b
line wrap: on
line diff
--- a/vp3.c	Sun Apr 08 18:50:18 2007 +0000
+++ b/vp3.c	Sun Apr 08 18:52:03 2007 +0000
@@ -2611,19 +2611,6 @@
     return 0;
 }
 
-AVCodec vp3_decoder = {
-    "vp3",
-    CODEC_TYPE_VIDEO,
-    CODEC_ID_VP3,
-    sizeof(Vp3DecodeContext),
-    vp3_decode_init,
-    NULL,
-    vp3_decode_end,
-    vp3_decode_frame,
-    0,
-    NULL
-};
-
 #ifdef CONFIG_THEORA_DECODER
 AVCodec theora_decoder = {
     "theora",
@@ -2638,3 +2625,16 @@
     NULL
 };
 #endif
+
+AVCodec vp3_decoder = {
+    "vp3",
+    CODEC_TYPE_VIDEO,
+    CODEC_ID_VP3,
+    sizeof(Vp3DecodeContext),
+    vp3_decode_init,
+    NULL,
+    vp3_decode_end,
+    vp3_decode_frame,
+    0,
+    NULL
+};