diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-09-25 18:28:44 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-01 10:24:28 +0200 |
commit | 9c6cf7f2c9d326281e3eefa67673aabaa9d69940 (patch) | |
tree | 388e256a00cb56f6ed940feae9d1cf23ba1e4a5b /libavcodec/error_resilience.c | |
parent | 6f6b0311a339c748b7be5bc15bd496321b3261b2 (diff) | |
download | ffmpeg-9c6cf7f2c9d326281e3eefa67673aabaa9d69940.tar.gz |
avcodec: Drop silly and/or broken printf debug output
Diffstat (limited to 'libavcodec/error_resilience.c')
-rw-r--r-- | libavcodec/error_resilience.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/error_resilience.c b/libavcodec/error_resilience.c index 53e8bf971e..ae9ef68617 100644 --- a/libavcodec/error_resilience.c +++ b/libavcodec/error_resilience.c @@ -699,8 +699,6 @@ skip_last_mv: fixed[mb_xy] = MV_UNCHANGED; } } - - // printf(".%d/%d", changed, score_sum); fflush(stdout); } if (none_left) @@ -711,7 +709,6 @@ skip_last_mv: if (fixed[mb_xy]) fixed[mb_xy] = MV_FROZEN; } - // printf(":"); fflush(stdout); } } @@ -789,7 +786,6 @@ static int is_intra_more_likely(MpegEncContext *s) } } } - // printf("is_intra_likely: %d type:%d\n", is_intra_likely, s->pict_type); return is_intra_likely > 0; } |