Replace dprintf with av_dlog
dprintf clashes with POSIX.1-2008
This commit is contained in:
@@ -47,7 +47,7 @@ static int vaapi_mpeg4_start_frame(AVCodecContext *avctx, av_unused const uint8_
|
||||
VAIQMatrixBufferMPEG4 *iq_matrix;
|
||||
int i;
|
||||
|
||||
dprintf(avctx, "vaapi_mpeg4_start_frame()\n");
|
||||
av_dlog(avctx, "vaapi_mpeg4_start_frame()\n");
|
||||
|
||||
vactx->slice_param_size = sizeof(VASliceParameterBufferMPEG4);
|
||||
|
||||
@@ -125,7 +125,7 @@ static int vaapi_mpeg4_decode_slice(AVCodecContext *avctx, const uint8_t *buffer
|
||||
MpegEncContext * const s = avctx->priv_data;
|
||||
VASliceParameterBufferMPEG4 *slice_param;
|
||||
|
||||
dprintf(avctx, "vaapi_mpeg4_decode_slice(): buffer %p, size %d\n", buffer, size);
|
||||
av_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
|
||||
|
Reference in New Issue
Block a user