GNOME Bugzilla – Bug 756893
video: Missing closing parenthesis in video overlay composition cast macros
Last modified: 2015-10-22 08:58:13 UTC
index 394d77d..ac787ea 100644 --- a/video-overlay-composition.h.orig +++ b/video-overlay-composition.h @@ -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) \
Thanks, could you provide a patch in git format-patch format please?
Created attachment 313835 [details] [review] Missing closing parenthesis patch
Thanks, pushed (including fix for same issue with the OVERLAY_COMPOSITION_CAST macro). commit 8051434c03bc98104f20789deb59884008e25946 Author: Pavel Bludov <pbludov@gmail.com> Date: Thu Oct 22 12:07:44 2015 +0800 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