qsv: Add since marker to device-path property

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8774>
This commit is contained in:
Olivier Crête 2025-04-04 13:20:09 -04:00
parent ecf9a035eb
commit 50cebd3ba8
2 changed files with 14 additions and 0 deletions

View File

@ -169,6 +169,13 @@ gst_qsv_decoder_class_init (GstQsvDecoderClass * klass)
"DXGI Adapter LUID (Locally Unique Identifier) of created device",
G_MININT64, G_MAXINT64, 0, param_flags));
#else
/**
* GstQsvDecoder:device-path:
*
* DRM device path
*
* Since: 1.22
*/
g_object_class_install_property (object_class, PROP_DEVICE_PATH,
g_param_spec_string ("device-path", "Device Path",
"DRM device path", nullptr, param_flags));

View File

@ -219,6 +219,13 @@ gst_qsv_encoder_class_init (GstQsvEncoderClass * klass)
"DXGI Adapter LUID (Locally Unique Identifier) of created device",
G_MININT64, G_MAXINT64, 0, param_flags));
#else
/**
* GstQsvEncoder:device-path:
*
* DRM device path
*
* Since: 1.22
*/
g_object_class_install_property (object_class, PROP_DEVICE_PATH,
g_param_spec_string ("device-path", "Device Path",
"DRM device path", nullptr, param_flags));