changeset 2758:a7925aaeea1e libavcodec

10l (dont read variables before they have been set)
author michael
date Sun, 05 Jun 2005 15:51:20 +0000
parents fa1c8955e291
children 3dc4bfdda4b3
files h264.c
diffstat 1 files changed, 12 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/h264.c	Sat Jun 04 15:49:54 2005 +0000
+++ b/h264.c	Sun Jun 05 15:51:20 2005 +0000
@@ -2998,18 +2998,6 @@
     s->low_delay= 1;
     avctx->pix_fmt= PIX_FMT_YUV420P;
 
-    if(s->dsp.h264_idct_add == ff_h264_idct_add_c){ //FIXME little ugly
-        memcpy(h->zigzag_scan, zigzag_scan, 16*sizeof(uint8_t));
-        memcpy(h-> field_scan,  field_scan, 16*sizeof(uint8_t));
-    }else{
-        int i;
-        for(i=0; i<16; i++){
-#define T(x) (x>>2) | ((x<<2) & 0xF)
-            h->zigzag_scan[i] = T(zigzag_scan[i]);
-            h-> field_scan[i] = T( field_scan[i]);
-        }
-    }
-
     decode_init_vlc(h);
     
     if(avctx->extradata_size > 0 && avctx->extradata &&
@@ -4173,6 +4161,18 @@
     if (!s->context_initialized) {
         if (MPV_common_init(s) < 0)
             return -1;
+            
+        if(s->dsp.h264_idct_add == ff_h264_idct_add_c){ //FIXME little ugly
+            memcpy(h->zigzag_scan, zigzag_scan, 16*sizeof(uint8_t));
+            memcpy(h-> field_scan,  field_scan, 16*sizeof(uint8_t));
+        }else{
+            int i;
+            for(i=0; i<16; i++){
+#define T(x) (x>>2) | ((x<<2) & 0xF)
+                h->zigzag_scan[i] = T(zigzag_scan[i]);
+                h-> field_scan[i] = T( field_scan[i]);
+            }
+        }
 
         alloc_tables(h);