Skip to content

Commit

Permalink
h264: Drop broken trace debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
DonDiego committed May 3, 2016
1 parent 5f1c3cb commit c11c693
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion libavcodec/h264_cabac.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
1 change: 0 additions & 1 deletion libavcodec/h264_cavlc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit c11c693

Please sign in to comment.