# HG changeset patch # User michael # Date 1229569493 0 # Node ID 9c6512be76b497cb179dee5de07ef6741bfcbfb9 # Parent 63f491ce374b4f1832b4116a96dd45f2953dcd9a Remove redundant nnz variable. diff -r 63f491ce374b -r 9c6512be76b4 h264.c --- a/h264.c Thu Dec 18 02:56:44 2008 +0000 +++ b/h264.c Thu Dec 18 03:04:53 2008 +0000 @@ -2531,8 +2531,7 @@ if(transform_bypass){ const int di = IS_8x8DCT(mb_type) ? 4 : 1; for(i=0; i<16; i+=di){ - int nnz = h->non_zero_count_cache[ scan8[i] ]; - if(nnz){ + if(h->non_zero_count_cache[ scan8[i] ]){ idct_add(dest_y + block_offset[i], h->mb + i*16, linesize); } }