Skip to content

Commit

Permalink
vaapi: Drop pointless debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
DonDiego committed May 3, 2016
1 parent 015c2d9 commit 5f1c3cb
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 20 deletions.
2 changes: 0 additions & 2 deletions libavcodec/vaapi.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,6 @@ void ff_vaapi_common_end_frame(AVCodecContext *avctx)
{
struct vaapi_context * const vactx = avctx->hwaccel_context;

ff_dlog(avctx, "ff_vaapi_common_end_frame()\n");

destroy_buffers(vactx->display, &vactx->pic_param_buf_id, 1);
destroy_buffers(vactx->display, &vactx->iq_matrix_buf_id, 1);
destroy_buffers(vactx->display, &vactx->bitplane_buf_id, 1);
Expand Down
6 changes: 0 additions & 6 deletions libavcodec/vaapi_h264.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,6 @@ static int vaapi_h264_start_frame(AVCodecContext *avctx,
VAPictureParameterBufferH264 *pic_param;
VAIQMatrixBufferH264 *iq_matrix;

ff_dlog(avctx, "vaapi_h264_start_frame()\n");

vactx->slice_param_size = sizeof(VASliceParameterBufferH264);

/* Fill in VAPictureParameterBufferH264. */
Expand Down Expand Up @@ -298,7 +296,6 @@ static int vaapi_h264_end_frame(AVCodecContext *avctx)
H264SliceContext *sl = &h->slice_ctx[0];
int ret;

ff_dlog(avctx, "vaapi_h264_end_frame()\n");
ret = ff_vaapi_commit_slices(vactx);
if (ret < 0)
goto finish;
Expand All @@ -323,9 +320,6 @@ static int vaapi_h264_decode_slice(AVCodecContext *avctx,
H264SliceContext *sl = &h->slice_ctx[0];
VASliceParameterBufferH264 *slice_param;

ff_dlog(avctx, "vaapi_h264_decode_slice(): buffer %p, size %d\n",
buffer, size);

/* Fill in VASliceParameterBufferH264. */
slice_param = (VASliceParameterBufferH264 *)ff_vaapi_alloc_slice(avctx->hwaccel_context, buffer, size);
if (!slice_param)
Expand Down
4 changes: 0 additions & 4 deletions libavcodec/vaapi_mpeg2.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ static int vaapi_mpeg2_start_frame(AVCodecContext *avctx, av_unused const uint8_
VAIQMatrixBufferMPEG2 *iq_matrix;
int i;

ff_dlog(avctx, "vaapi_mpeg2_start_frame()\n");

vactx->slice_param_size = sizeof(VASliceParameterBufferMPEG2);

/* Fill in VAPictureParameterBufferMPEG2 */
Expand Down Expand Up @@ -108,8 +106,6 @@ static int vaapi_mpeg2_decode_slice(AVCodecContext *avctx, const uint8_t *buffer
GetBitContext gb;
uint32_t quantiser_scale_code, intra_slice_flag, macroblock_offset;

ff_dlog(avctx, "vaapi_mpeg2_decode_slice(): buffer %p, size %d\n", buffer, size);

/* Determine macroblock_offset */
init_get_bits(&gb, buffer, 8 * size);
if (get_bits_long(&gb, 32) >> 8 != 1) /* start code */
Expand Down
4 changes: 0 additions & 4 deletions libavcodec/vaapi_mpeg4.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ static int vaapi_mpeg4_start_frame(AVCodecContext *avctx, av_unused const uint8_
VAIQMatrixBufferMPEG4 *iq_matrix;
int i;

ff_dlog(avctx, "vaapi_mpeg4_start_frame()\n");

vactx->slice_param_size = sizeof(VASliceParameterBufferMPEG4);

/* Fill in VAPictureParameterBufferMPEG4 */
Expand Down Expand Up @@ -124,8 +122,6 @@ static int vaapi_mpeg4_decode_slice(AVCodecContext *avctx, const uint8_t *buffer
MpegEncContext * const s = avctx->priv_data;
VASliceParameterBufferMPEG4 *slice_param;

ff_dlog(avctx, "vaapi_mpeg4_decode_slice(): buffer %p, size %d\n", buffer, size);

/* video_plane_with_short_video_header() contains all GOBs
* in-order, and this is what VA API (Intel backend) expects: only
* a single slice param. So fake macroblock_number for Libav so
Expand Down
4 changes: 0 additions & 4 deletions libavcodec/vaapi_vc1.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,6 @@ static int vaapi_vc1_start_frame(AVCodecContext *avctx, av_unused const uint8_t
struct vaapi_context * const vactx = avctx->hwaccel_context;
VAPictureParameterBufferVC1 *pic_param;

ff_dlog(avctx, "vaapi_vc1_start_frame()\n");

vactx->slice_param_size = sizeof(VASliceParameterBufferVC1);

/* Fill in VAPictureParameterBufferVC1 */
Expand Down Expand Up @@ -317,8 +315,6 @@ static int vaapi_vc1_decode_slice(AVCodecContext *avctx, const uint8_t *buffer,
MpegEncContext * const s = &v->s;
VASliceParameterBufferVC1 *slice_param;

ff_dlog(avctx, "vaapi_vc1_decode_slice(): buffer %p, size %d\n", buffer, size);

/* Current bit buffer is beyond any marker for VC-1, so skip it */
if (avctx->codec_id == AV_CODEC_ID_VC1 && IS_MARKER(AV_RB32(buffer))) {
buffer += 4;
Expand Down

0 comments on commit 5f1c3cb

Please sign in to comment.