mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-28 11:55:39 +00:00
Update plugin docs and add more plugins
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-vaapi/-/merge_requests/344>
This commit is contained in:
parent
4b2f7a188d
commit
bf7d4bda49
5 changed files with 510 additions and 5 deletions
File diff suppressed because it is too large
Load diff
|
@ -894,6 +894,9 @@ gst_vaapi_encoder_jpeg_class_init (GstVaapiEncoderJpegClass * klass)
|
|||
|
||||
g_object_class_install_properties (object_class, ENCODER_JPEG_N_PROPERTIES,
|
||||
properties);
|
||||
|
||||
gst_type_mark_as_plugin_api (g_class_data.rate_control_get_type (), 0);
|
||||
gst_type_mark_as_plugin_api (g_class_data.encoder_tune_get_type (), 0);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -922,6 +922,9 @@ gst_vaapi_encoder_mpeg2_class_init (GstVaapiEncoderMpeg2Class * klass)
|
|||
|
||||
g_object_class_install_properties (object_class, ENCODER_MPEG2_N_PROPERTIES,
|
||||
properties);
|
||||
|
||||
gst_type_mark_as_plugin_api (g_class_data.rate_control_get_type (), 0);
|
||||
gst_type_mark_as_plugin_api (g_class_data.encoder_tune_get_type (), 0);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -681,6 +681,9 @@ gst_vaapi_encoder_vp8_class_init (GstVaapiEncoderVP8Class * klass)
|
|||
|
||||
g_object_class_install_properties (object_class, ENCODER_VP8_N_PROPERTIES,
|
||||
properties);
|
||||
|
||||
gst_type_mark_as_plugin_api (g_class_data.rate_control_get_type (), 0);
|
||||
gst_type_mark_as_plugin_api (g_class_data.encoder_tune_get_type (), 0);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -745,6 +745,9 @@ gst_vaapi_encoder_vp9_class_init (GstVaapiEncoderVP9Class * klass)
|
|||
|
||||
g_object_class_install_properties (object_class, ENCODER_VP9_N_PROPERTIES,
|
||||
properties);
|
||||
|
||||
gst_type_mark_as_plugin_api (g_class_data.rate_control_get_type (), 0);
|
||||
gst_type_mark_as_plugin_api (g_class_data.encoder_tune_get_type (), 0);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue