diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-03-10 18:34:51 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-03-10 18:34:51 +0000 |
commit | f7287c42b2c56e4fbdf1ce56785dbfd9c75d1528 (patch) | |
tree | 9d994b3791d7f34246e6122374caf5cf6f0a0d5f | |
parent | f2651e7a6c7a9f492158a36af635eb4fb8ebac36 (diff) | |
download | ffmpeg-f7287c42b2c56e4fbdf1ce56785dbfd9c75d1528.tar.gz |
unused variable
Originally committed as revision 5135 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h263.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c index f7369c18d5..c0b5e35279 100644 --- a/libavcodec/h263.c +++ b/libavcodec/h263.c @@ -1480,7 +1480,7 @@ void ff_h263_loop_filter(MpegEncContext * s){ static int h263_pred_dc(MpegEncContext * s, int n, uint16_t **dc_val_ptr) { int x, y, wrap, a, c, pred_dc, scale; - int16_t *dc_val, *ac_val; + int16_t *dc_val; /* find prediction */ if (n < 4) { @@ -1488,14 +1488,12 @@ static int h263_pred_dc(MpegEncContext * s, int n, uint16_t **dc_val_ptr) y = 2 * s->mb_y + ((n & 2) >> 1); wrap = s->b8_stride; dc_val = s->dc_val[0]; - ac_val = s->ac_val[0][0]; scale = s->y_dc_scale; } else { x = s->mb_x; y = s->mb_y; wrap = s->mb_stride; dc_val = s->dc_val[n - 4 + 1]; - ac_val = s->ac_val[n - 4 + 1][0]; scale = s->c_dc_scale; } /* B C |