You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
qsv: Move down the implementation query
The plugin loaded may not match the general implementation capability wise.
This commit is contained in:
@@ -101,22 +101,6 @@ int ff_qsv_init_internal_session(AVCodecContext *avctx, mfxSession *session,
|
|||||||
return ff_qsv_error(ret);
|
return ff_qsv_error(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
MFXQueryIMPL(*session, &impl);
|
|
||||||
|
|
||||||
switch (MFX_IMPL_BASETYPE(impl)) {
|
|
||||||
case MFX_IMPL_SOFTWARE:
|
|
||||||
desc = "software";
|
|
||||||
break;
|
|
||||||
case MFX_IMPL_HARDWARE:
|
|
||||||
case MFX_IMPL_HARDWARE2:
|
|
||||||
case MFX_IMPL_HARDWARE3:
|
|
||||||
case MFX_IMPL_HARDWARE4:
|
|
||||||
desc = "hardware accelerated";
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
desc = "unknown";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (load_plugins && *load_plugins) {
|
if (load_plugins && *load_plugins) {
|
||||||
while (*load_plugins) {
|
while (*load_plugins) {
|
||||||
mfxPluginUID uid;
|
mfxPluginUID uid;
|
||||||
@@ -156,6 +140,22 @@ load_plugin_fail:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MFXQueryIMPL(*session, &impl);
|
||||||
|
|
||||||
|
switch (MFX_IMPL_BASETYPE(impl)) {
|
||||||
|
case MFX_IMPL_SOFTWARE:
|
||||||
|
desc = "software";
|
||||||
|
break;
|
||||||
|
case MFX_IMPL_HARDWARE:
|
||||||
|
case MFX_IMPL_HARDWARE2:
|
||||||
|
case MFX_IMPL_HARDWARE3:
|
||||||
|
case MFX_IMPL_HARDWARE4:
|
||||||
|
desc = "hardware accelerated";
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
desc = "unknown";
|
||||||
|
}
|
||||||
|
|
||||||
av_log(avctx, AV_LOG_VERBOSE,
|
av_log(avctx, AV_LOG_VERBOSE,
|
||||||
"Initialized an internal MFX session using %s implementation\n",
|
"Initialized an internal MFX session using %s implementation\n",
|
||||||
desc);
|
desc);
|
||||||
|
Reference in New Issue
Block a user