mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
libavcodec/qsvdec.c: Extended error messages for MFXVideoDECODE_Init() result
Reviewed-by: Hendrik Leppkes <h.leppkes@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
67db57ea12
commit
44857e7a36
@ -110,7 +110,13 @@ int ff_qsv_decode_init(AVCodecContext *avctx, QSVContext *q, AVPacket *avpkt)
|
||||
|
||||
ret = MFXVideoDECODE_Init(q->session, ¶m);
|
||||
if (ret < 0) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Error initializing the MFX video decoder\n");
|
||||
if (MFX_ERR_INVALID_VIDEO_PARAM==ret) {
|
||||
av_log(avctx, AV_LOG_ERROR,
|
||||
"Error initializing the MFX video decoder, unsupported video\n");
|
||||
} else {
|
||||
av_log(avctx, AV_LOG_ERROR,
|
||||
"Error initializing the MFX video decoder %d\n", ret);
|
||||
}
|
||||
return ff_qsv_error(ret);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user