]> git.sesse.net Git - ffmpeg/commitdiff
h264: Drop broken trace debug output
authorDiego Biurrun <diego@biurrun.de>
Tue, 3 May 2016 12:32:08 +0000 (14:32 +0200)
committerDiego Biurrun <diego@biurrun.de>
Tue, 3 May 2016 13:45:11 +0000 (15:45 +0200)
libavcodec/h264_cabac.c
libavcodec/h264_cavlc.c

index f831a6884612e83fa58b6b9ed88906db65809398..d0286960dab74ca5ae548472fbed135c28164bc8 100644 (file)
@@ -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 */
index 10511fba056f2099965ae3e2c6d05927ba2ffb35..a4994dc7526b3ab388c13d846e6a50942fc3b5b1 100644 (file)
@@ -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) {