diff mpeg12.c @ 3304:25d315fcca5a libavcodec

remove unused variable
author bcoudurier
date Sat, 13 May 2006 15:43:51 +0000
parents 1eaa95d9e999
children ceb221c4eca7
line wrap: on
line diff
--- a/mpeg12.c	Sat May 13 10:45:26 2006 +0000
+++ b/mpeg12.c	Sat May 13 15:43:51 2006 +0000
@@ -94,7 +94,6 @@
 static uint8_t (*mv_penalty)[MAX_MV*2+1]= NULL;
 static uint8_t fcode_tab[MAX_MV*2+1];
 
-static uint32_t uni_mpeg1_ac_vlc_bits[64*64*2];
 static uint8_t  uni_mpeg1_ac_vlc_len [64*64*2];
 
 /* simple include everything table for dc, first byte is bits number next 3 are code*/
@@ -148,7 +147,7 @@
 }
 
 #ifdef CONFIG_ENCODERS
-static void init_uni_ac_vlc(RLTable *rl, uint32_t *uni_ac_vlc_bits, uint8_t *uni_ac_vlc_len){
+static void init_uni_ac_vlc(RLTable *rl, uint8_t *uni_ac_vlc_len){
     int i;
 
     for(i=0; i<128; i++){
@@ -188,7 +187,6 @@
                 }
             }
 
-            uni_ac_vlc_bits[UNI_AC_ENC_INDEX(run, i)]= bits;
             uni_ac_vlc_len [UNI_AC_ENC_INDEX(run, i)]= len;
         }
     }
@@ -775,7 +773,7 @@
                 mpeg1_index_run[0][i]= rl_mpeg1.index_run[0][i];
         }
 
-        init_uni_ac_vlc(&rl_mpeg1, uni_mpeg1_ac_vlc_bits, uni_mpeg1_ac_vlc_len);
+        init_uni_ac_vlc(&rl_mpeg1, uni_mpeg1_ac_vlc_len);
 
         /* build unified dc encoding tables */
         for(i=-255; i<256; i++)