summaryrefslogtreecommitdiff
path: root/libavcodec/rv10.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-09-25 17:19:34 +0200
committerDiego Biurrun <diego@biurrun.de>2012-10-01 10:24:28 +0200
commit6f6b0311a339c748b7be5bc15bd496321b3261b2 (patch)
tree1e79ce99d60cc438d0ea6392ad6920a21f3a9efa /libavcodec/rv10.c
parent72eaba5e4ffeba16ec0a7ee7a042b3205840b1d1 (diff)
avcodec: Drop some silly commented-out av_log() invocations
Diffstat (limited to 'libavcodec/rv10.c')
-rw-r--r--libavcodec/rv10.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c
index a23684653e..e01742ffd5 100644
--- a/libavcodec/rv10.c
+++ b/libavcodec/rv10.c
@@ -373,7 +373,6 @@ static int rv20_decode_picture_header(RVDecContext *rv)
mb_pos = ff_h263_decode_mba(s);
-//av_log(s->avctx, AV_LOG_DEBUG, "%d\n", seq);
seq |= s->time &~0x7FFF;
if(seq - s->time > 0x4000) seq -= 0x8000;
if(seq - s->time < -0x4000) seq += 0x8000;
@@ -392,11 +391,7 @@ static int rv20_decode_picture_header(RVDecContext *rv)
ff_mpeg4_init_direct_mv(s);
}
}
-// printf("%d %d %d %d %d\n", seq, (int)s->time, (int)s->last_non_b_time, s->pp_time, s->pb_time);
-/*for(i=0; i<32; i++){
- av_log(s->avctx, AV_LOG_DEBUG, "%d", get_bits1(&s->gb));
-}
-av_log(s->avctx, AV_LOG_DEBUG, "\n");*/
+
s->no_rounding= get_bits1(&s->gb);
if(RV_GET_MINOR_VER(rv->sub_id) <= 1 && s->pict_type == AV_PICTURE_TYPE_B)