mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
msdk: exclude the audio code for MFX version 2.0+
MFX version 2.0+ no longer supports audio functions, please refer to the links below for details https://spec.oneapi.com/versions/latest/elements/oneVPL/source/appendix/VPL_intel_media_sdk.html#msdk-full-name-feature-removals https://github.com/oneapi-src/oneVPL This is in preparation for oneVPL support Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1503>
This commit is contained in:
parent
e7b962d9b5
commit
73cd763b01
1 changed files with 4 additions and 0 deletions
|
@ -123,10 +123,12 @@ msdk_status_to_string (mfxStatus status)
|
|||
return "device operation failure";
|
||||
case MFX_ERR_MORE_BITSTREAM:
|
||||
return "expect more bitstream buffers at output";
|
||||
#if (MFX_VERSION < 2000)
|
||||
case MFX_ERR_INCOMPATIBLE_AUDIO_PARAM:
|
||||
return "incompatible audio parameters";
|
||||
case MFX_ERR_INVALID_AUDIO_PARAM:
|
||||
return "invalid audio parameters";
|
||||
#endif
|
||||
/* warnings >0 */
|
||||
case MFX_WRN_IN_EXECUTION:
|
||||
return "the previous asynchronous operation is in execution";
|
||||
|
@ -144,8 +146,10 @@ msdk_status_to_string (mfxStatus status)
|
|||
return "the value is out of valid range";
|
||||
case MFX_WRN_FILTER_SKIPPED:
|
||||
return "one of requested filters has been skipped";
|
||||
#if (MFX_VERSION < 2000)
|
||||
case MFX_WRN_INCOMPATIBLE_AUDIO_PARAM:
|
||||
return "incompatible audio parameters";
|
||||
#endif
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue