[FFmpeg-cvslog] r24690 - trunk/libavcodec/vp8.c

darkshikari subversion
Wed Aug 4 03:40:58 CEST 2010


Author: darkshikari
Date: Wed Aug  4 03:40:58 2010
New Revision: 24690

Log:
Fix 100L in r24689
Accidentally committed some timing code.

Modified:
   trunk/libavcodec/vp8.c

Modified: trunk/libavcodec/vp8.c
==============================================================================
--- trunk/libavcodec/vp8.c	Wed Aug  4 03:38:08 2010	(r24689)
+++ trunk/libavcodec/vp8.c	Wed Aug  4 03:40:58 2010	(r24690)
@@ -910,9 +910,9 @@ void decode_mb_coeffs(VP8Context *s, VP5
     // 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;



More information about the ffmpeg-cvslog mailing list