mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
d3d11compositor: Fix missing D3D11 prefix
Fix typo, no functional change Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2262>
This commit is contained in:
parent
c98fe5b7f9
commit
4872b41448
3 changed files with 4 additions and 4 deletions
|
@ -1346,7 +1346,7 @@ gst_d3d11_compositor_class_init (GstD3D11CompositorClass * klass)
|
|||
|
||||
g_object_class_install_property (gobject_class, PROP_BACKGROUND,
|
||||
g_param_spec_enum ("background", "Background", "Background type",
|
||||
GST_TYPE_COMPOSITOR_BACKGROUND,
|
||||
GST_TYPE_D3D11_COMPOSITOR_BACKGROUND,
|
||||
DEFAULT_BACKGROUND,
|
||||
(GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
|
||||
|
||||
|
@ -1391,7 +1391,7 @@ gst_d3d11_compositor_class_init (GstD3D11CompositorClass * klass)
|
|||
"Filter/Editor/Video/Compositor",
|
||||
"A Direct3D11 compositor", "Seungha Yang <seungha@centricular.com>");
|
||||
|
||||
gst_type_mark_as_plugin_api (GST_TYPE_COMPOSITOR_BACKGROUND,
|
||||
gst_type_mark_as_plugin_api (GST_TYPE_D3D11_COMPOSITOR_BACKGROUND,
|
||||
(GstPluginAPIFlags) 0);
|
||||
gst_type_mark_as_plugin_api (GST_TYPE_D3D11_COMPOSITOR_PAD,
|
||||
(GstPluginAPIFlags) 0);
|
||||
|
|
|
@ -76,7 +76,7 @@ typedef enum
|
|||
GST_D3D11_COMPOSITOR_BACKGROUND_TRANSPARENT,
|
||||
} GstD3D11CompositorBackground;
|
||||
|
||||
#define GST_TYPE_COMPOSITOR_BACKGROUND (gst_d3d11_compositor_background_get_type())
|
||||
#define GST_TYPE_D3D11_COMPOSITOR_BACKGROUND (gst_d3d11_compositor_background_get_type())
|
||||
GType gst_d3d11_compositor_background_get_type (void);
|
||||
|
||||
G_END_DECLS
|
||||
|
|
|
@ -665,7 +665,7 @@ gst_d3d11_compositor_bin_class_init (GstD3D11CompositorBinClass * klass)
|
|||
|
||||
g_object_class_install_property (gobject_class, PROP_BACKGROUND,
|
||||
g_param_spec_enum ("background", "Background", "Background type",
|
||||
GST_TYPE_COMPOSITOR_BACKGROUND,
|
||||
GST_TYPE_D3D11_COMPOSITOR_BACKGROUND,
|
||||
DEFAULT_BACKGROUND,
|
||||
(GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
|
||||
|
||||
|
|
Loading…
Reference in a new issue