diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-05-03 14:32:08 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-05-03 15:45:11 +0200 |
commit | c11c693accaad65d3f4afa44c27f2338a2e3bf8f (patch) | |
tree | bd7f2e49c2a5db4c46e14c5d027fd4d918332796 /libavcodec | |
parent | 5f1c3cbd524728317bf460259aa8f3ef5ec935c6 (diff) | |
download | ffmpeg-c11c693accaad65d3f4afa44c27f2338a2e3bf8f.tar.gz |
h264: Drop broken trace debug output
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264_cabac.c | 1 | ||||
-rw-r--r-- | libavcodec/h264_cavlc.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/h264_cabac.c b/libavcodec/h264_cabac.c index f831a68846..d0286960da 100644 --- a/libavcodec/h264_cabac.c +++ b/libavcodec/h264_cabac.c @@ -1917,7 +1917,6 @@ int ff_h264_decode_mb_cabac(const H264Context *h, H264SliceContext *sl) mb_xy = sl->mb_xy = sl->mb_x + sl->mb_y*h->mb_stride; - ff_tlog(h->avctx, "pic:%d mb:%d/%d\n", h->frame_num, sl->mb_x, sl->mb_y); if (sl->slice_type_nos != AV_PICTURE_TYPE_I) { int skip; /* a skipped mb needs the aff flag from the following mb */ diff --git a/libavcodec/h264_cavlc.c b/libavcodec/h264_cavlc.c index 10511fba05..a4994dc752 100644 --- a/libavcodec/h264_cavlc.c +++ b/libavcodec/h264_cavlc.c @@ -707,7 +707,6 @@ int ff_h264_decode_mb_cavlc(const H264Context *h, H264SliceContext *sl) mb_xy = sl->mb_xy = sl->mb_x + sl->mb_y*h->mb_stride; - ff_tlog(h->avctx, "pic:%d mb:%d/%d\n", h->frame_num, sl->mb_x, sl->mb_y); cbp = 0; /* avoid warning. FIXME: find a solution without slowing down the code */ if (sl->slice_type_nos != AV_PICTURE_TYPE_I) { |