diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-05-02 23:11:23 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-05-02 23:11:23 +0000 |
commit | e24465962da64b86c24e5e72579e0d47b0191866 (patch) | |
tree | 22a68cda1f069fd52dc1e7f968037280b2402b84 | |
parent | a4b120f32bc02d862544ce2f9f9970784e471eb1 (diff) | |
download | ffmpeg-e24465962da64b86c24e5e72579e0d47b0191866.tar.gz |
Remove unused variable.
Originally committed as revision 8878 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 40dbb96c90..f8f61d3744 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -5299,8 +5299,6 @@ decode_intra_mb: dct8x8_allowed = get_dct8x8_allowed(h); for(list=0; list<h->list_count; list++){ - const int ref_count= IS_REF0(mb_type) ? 1 : h->ref_count[list]; - for(i=0; i<4; i++){ if(IS_DIRECT(h->sub_mb_type[i])) { h->ref_cache[list][ scan8[4*i] ] = h->ref_cache[list][ scan8[4*i]+1 ]; |