mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 10:25:33 +00:00
video: overlay-composition: fix rectangle and composition cast macros
Closing parenthesis was missing in two cases. https://bugzilla.gnome.org/show_bug.cgi?id=756893
This commit is contained in:
parent
3592d3c0e5
commit
8051434c03
1 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ G_BEGIN_DECLS
|
|||
#define GST_TYPE_VIDEO_OVERLAY_RECTANGLE \
|
||||
(gst_video_overlay_rectangle_get_type ())
|
||||
#define GST_VIDEO_OVERLAY_RECTANGLE_CAST(obj) \
|
||||
((GstVideoOverlayRectangle *)(obj)
|
||||
((GstVideoOverlayRectangle *)(obj))
|
||||
#define GST_VIDEO_OVERLAY_RECTANGLE(obj) \
|
||||
(GST_VIDEO_OVERLAY_RECTANGLE_CAST(obj))
|
||||
#define GST_IS_VIDEO_OVERLAY_RECTANGLE(obj) \
|
||||
|
@ -190,7 +190,7 @@ void gst_video_overlay_rectangle_set_global_alpha
|
|||
#define GST_TYPE_VIDEO_OVERLAY_COMPOSITION \
|
||||
(gst_video_overlay_composition_get_type ())
|
||||
#define GST_VIDEO_OVERLAY_COMPOSITION_CAST(obj) \
|
||||
((GstVideoOverlayComposition *)(obj)
|
||||
((GstVideoOverlayComposition *)(obj))
|
||||
#define GST_VIDEO_OVERLAY_COMPOSITION(obj) \
|
||||
(GST_VIDEO_OVERLAY_COMPOSITION_CAST(obj))
|
||||
#define GST_IS_VIDEO_OVERLAY_COMPOSITION(obj) \
|
||||
|
|
Loading…
Reference in a new issue