Mercurial > libavcodec.hg
changeset 12361:a66d6456df90 libavcodec
Fix 100L in r24689
Accidentally committed some timing code.
author | darkshikari |
---|---|
date | Wed, 04 Aug 2010 01:40:58 +0000 |
parents | 18117b5bb7dc |
children | 4dc177e736f6 |
files | vp8.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/vp8.c Wed Aug 04 01:38:08 2010 +0000 +++ b/vp8.c Wed Aug 04 01:40:58 2010 +0000 @@ -910,9 +910,9 @@ // luma blocks for (y = 0; y < 4; y++) for (x = 0; x < 4; x++) { - nnz_pred = l_nnz[y] + t_nnz[x];START_TIMER; + nnz_pred = l_nnz[y] + t_nnz[x]; nnz = decode_block_coeffs(c, s->block[y][x], s->prob->token[luma_ctx], luma_start, - nnz_pred, s->qmat[segment].luma_qmul);STOP_TIMER("test"); + nnz_pred, s->qmat[segment].luma_qmul); // nnz+block_dc may be one more than the actual last index, but we don't care s->non_zero_count_cache[y][x] = nnz + block_dc; t_nnz[x] = l_nnz[y] = !!nnz;