diff options
author | Clément Bœsch <clement@stupeflix.com> | 2016-06-21 15:36:43 +0200 |
---|---|---|
committer | Clément Bœsch <clement@stupeflix.com> | 2016-06-21 15:36:43 +0200 |
commit | d12cce3fb25e6bb3b7a2b3874fd576a786ccc6b6 (patch) | |
tree | a14e358ba30363ae39cf96bfff7c4ee8a1bc1430 /libavcodec/vaapi_h264.c | |
parent | 14762dd3f3bb8c38a47033ce054058bcf9d30b08 (diff) | |
parent | 5f1c3cbd524728317bf460259aa8f3ef5ec935c6 (diff) | |
download | ffmpeg-d12cce3fb25e6bb3b7a2b3874fd576a786ccc6b6.tar.gz |
Merge commit '5f1c3cbd524728317bf460259aa8f3ef5ec935c6'
* commit '5f1c3cbd524728317bf460259aa8f3ef5ec935c6':
vaapi: Drop pointless debug output
Merged-by: Clément Bœsch <clement@stupeflix.com>
Diffstat (limited to 'libavcodec/vaapi_h264.c')
-rw-r--r-- | libavcodec/vaapi_h264.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/vaapi_h264.c b/libavcodec/vaapi_h264.c index 91ee2d60c7..92efb26a01 100644 --- a/libavcodec/vaapi_h264.c +++ b/libavcodec/vaapi_h264.c @@ -233,8 +233,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. */ @@ -299,7 +297,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; @@ -325,9 +322,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(vactx, buffer, size); if (!slice_param) |