comparison faxcompr.c @ 8484:6fdb5b053d4b libavcodec

Remove unused run_start variable.
author michael
date Fri, 26 Dec 2008 17:11:19 +0000
parents c8113e1e91c0
children 0ac984513c91
comparison
equal deleted inserted replaced
8483:c8113e1e91c0 8484:6fdb5b053d4b
158 static int decode_group3_2d_line(AVCodecContext *avctx, GetBitContext *gb, 158 static int decode_group3_2d_line(AVCodecContext *avctx, GetBitContext *gb,
159 int width, int *runs, const int *runend, const int *ref) 159 int width, int *runs, const int *runend, const int *ref)
160 { 160 {
161 int mode = 0, offs = 0, run = 0, saved_run = 0, t; 161 int mode = 0, offs = 0, run = 0, saved_run = 0, t;
162 int run_off = *ref++; 162 int run_off = *ref++;
163 int *run_start = runs;
164 163
165 runend--; // for the last written 0 164 runend--; // for the last written 0
166 165
167 while(offs < width){ 166 while(offs < width){
168 int cmode = get_vlc2(gb, ccitt_group3_2d_vlc.table, 9, 1); 167 int cmode = get_vlc2(gb, ccitt_group3_2d_vlc.table, 9, 1);