changeset 5096:1210710a6c6a libavcodec

fix error: indeo2.c:202:1: directives may not be used inside a macro argument, introduced when init_vlc was turned into a macro Patch by Christian Lohmaier %cloph A openoffice P org%
author gpoirier
date Mon, 04 Jun 2007 11:03:24 +0000
parents ed41cfae128d
children e9a0c447dc73
files indeo2.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/indeo2.c	Mon Jun 04 07:28:34 2007 +0000
+++ b/indeo2.c	Mon Jun 04 11:03:24 2007 +0000
@@ -197,11 +197,13 @@
     avctx->pix_fmt= PIX_FMT_YUV410P;
 
     if (!ir2_vlc.table)
+#ifdef ALT_BITSTREAM_READER_LE
         init_vlc(&ir2_vlc, CODE_VLC_BITS, IR2_CODES,
                  &ir2_codes[0][1], 4, 2,
-#ifdef ALT_BITSTREAM_READER_LE
                  &ir2_codes[0][0], 4, 2, INIT_VLC_USE_STATIC | INIT_VLC_LE);
 #else
+        init_vlc(&ir2_vlc, CODE_VLC_BITS, IR2_CODES,
+                 &ir2_codes[0][1], 4, 2,
                  &ir2_codes[0][0], 4, 2, INIT_VLC_USE_STATIC);
 #endif