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
@ -1346,7 +1346,7 @@ gst_d3d11_compositor_class_init (GstD3D11CompositorClass * klass)
|
|||||||
|
|
||||||
g_object_class_install_property (gobject_class, PROP_BACKGROUND,
|
g_object_class_install_property (gobject_class, PROP_BACKGROUND,
|
||||||
g_param_spec_enum ("background", "Background", "Background type",
|
g_param_spec_enum ("background", "Background", "Background type",
|
||||||
GST_TYPE_COMPOSITOR_BACKGROUND,
|
GST_TYPE_D3D11_COMPOSITOR_BACKGROUND,
|
||||||
DEFAULT_BACKGROUND,
|
DEFAULT_BACKGROUND,
|
||||||
(GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
|
(GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
|
||||||
|
|
||||||
@ -1391,7 +1391,7 @@ gst_d3d11_compositor_class_init (GstD3D11CompositorClass * klass)
|
|||||||
"Filter/Editor/Video/Compositor",
|
"Filter/Editor/Video/Compositor",
|
||||||
"A Direct3D11 compositor", "Seungha Yang <seungha@centricular.com>");
|
"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);
|
(GstPluginAPIFlags) 0);
|
||||||
gst_type_mark_as_plugin_api (GST_TYPE_D3D11_COMPOSITOR_PAD,
|
gst_type_mark_as_plugin_api (GST_TYPE_D3D11_COMPOSITOR_PAD,
|
||||||
(GstPluginAPIFlags) 0);
|
(GstPluginAPIFlags) 0);
|
||||||
|
@ -76,7 +76,7 @@ typedef enum
|
|||||||
GST_D3D11_COMPOSITOR_BACKGROUND_TRANSPARENT,
|
GST_D3D11_COMPOSITOR_BACKGROUND_TRANSPARENT,
|
||||||
} GstD3D11CompositorBackground;
|
} 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);
|
GType gst_d3d11_compositor_background_get_type (void);
|
||||||
|
|
||||||
G_END_DECLS
|
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_object_class_install_property (gobject_class, PROP_BACKGROUND,
|
||||||
g_param_spec_enum ("background", "Background", "Background type",
|
g_param_spec_enum ("background", "Background", "Background type",
|
||||||
GST_TYPE_COMPOSITOR_BACKGROUND,
|
GST_TYPE_D3D11_COMPOSITOR_BACKGROUND,
|
||||||
DEFAULT_BACKGROUND,
|
DEFAULT_BACKGROUND,
|
||||||
(GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
|
(GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user