summaryrefslogtreecommitdiff
path: root/libavcodec/vp8.c
diff options
context:
space:
mode:
authorJason Garrett-Glaser <darkshikari@gmail.com>2010-08-04 01:40:58 +0000
committerJason Garrett-Glaser <darkshikari@gmail.com>2010-08-04 01:40:58 +0000
commitffbf0794f9b7ca1b9c3038c5c1aed84fbf1f8529 (patch)
treee08086b1dd5afdacb1787f5a596393728dab8c75 /libavcodec/vp8.c
parentafb54a85c385d434dd96040069964a8156bcf7fd (diff)
Fix 100L in r24689
Accidentally committed some timing code. Originally committed as revision 24690 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp8.c')
-rw-r--r--libavcodec/vp8.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c
index 372d266114..ac12ad18e0 100644
--- a/libavcodec/vp8.c
+++ b/libavcodec/vp8.c
@@ -910,9 +910,9 @@ void decode_mb_coeffs(VP8Context *s, VP56RangeCoder *c, VP8Macroblock *mb,
// 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;