diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-04-14 18:25:35 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-05-03 15:45:11 +0200 |
commit | 5f1c3cbd524728317bf460259aa8f3ef5ec935c6 (patch) | |
tree | 7dadd2bd1eb29a4b8e17f0796f99db6b6d2a3649 /libavcodec/vaapi_mpeg2.c | |
parent | 015c2d923902fcd562571993eaf1231ce388c7f0 (diff) | |
download | ffmpeg-5f1c3cbd524728317bf460259aa8f3ef5ec935c6.tar.gz |
vaapi: Drop pointless debug output
Diffstat (limited to 'libavcodec/vaapi_mpeg2.c')
-rw-r--r-- | libavcodec/vaapi_mpeg2.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/vaapi_mpeg2.c b/libavcodec/vaapi_mpeg2.c index cb8a782d9a..cb7774581d 100644 --- a/libavcodec/vaapi_mpeg2.c +++ b/libavcodec/vaapi_mpeg2.c @@ -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 */ @@ -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 */ |