mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 11:49:48 +00:00
Merge commit '212556cd2144659dc6b9d121ddb38cd272bd10ae'
* commit '212556cd2144659dc6b9d121ddb38cd272bd10ae': qsv: Improve the log message of when initializing MFX_IMPL_HARDWARE{2, 3, 4} Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
e197dc04bb
@ -117,12 +117,19 @@ static int qsv_init_session(AVCodecContext *avctx, QSVContext *q, mfxSession ses
|
||||
|
||||
MFXQueryIMPL(q->internal_session, &impl);
|
||||
|
||||
if (impl & MFX_IMPL_SOFTWARE)
|
||||
switch (MFX_IMPL_BASETYPE(impl)) {
|
||||
case MFX_IMPL_SOFTWARE:
|
||||
desc = "software";
|
||||
else if (impl & MFX_IMPL_HARDWARE)
|
||||
break;
|
||||
case MFX_IMPL_HARDWARE:
|
||||
case MFX_IMPL_HARDWARE2:
|
||||
case MFX_IMPL_HARDWARE3:
|
||||
case MFX_IMPL_HARDWARE4:
|
||||
desc = "hardware accelerated";
|
||||
else
|
||||
break;
|
||||
default:
|
||||
desc = "unknown";
|
||||
}
|
||||
|
||||
av_log(avctx, AV_LOG_VERBOSE,
|
||||
"Initialized an internal MFX session using %s implementation\n",
|
||||
|
Loading…
Reference in New Issue
Block a user