[FFmpeg-cvslog] h264: Drop broken trace debug output

Diego Biurrun git at videolan.org
Tue Jun 21 15:38:51 CEST 2016


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Tue May  3 14:32:08 2016 +0200| [c11c693accaad65d3f4afa44c27f2338a2e3bf8f] | committer: Diego Biurrun

h264: Drop broken trace debug output

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c11c693accaad65d3f4afa44c27f2338a2e3bf8f
---

 libavcodec/h264_cabac.c |    1 -
 libavcodec/h264_cavlc.c |    1 -
 2 files changed, 2 deletions(-)

diff --git a/libavcodec/h264_cabac.c b/libavcodec/h264_cabac.c
index f831a68..d028696 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 10511fb..a4994dc 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) {



More information about the ffmpeg-cvslog mailing list