video-overlay: change input param data type for setting wl_surface_id
authorHyunil <hyunil46.park@samsung.com>
Tue, 23 Jul 2019 04:42:51 +0000 (13:42 +0900)
committerHyunil <hyunil46.park@samsung.com>
Tue, 23 Jul 2019 04:42:51 +0000 (13:42 +0900)
Change-Id: Id6d2baaecac07673a28a9046bcc1ac2ed255d51a
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
gst-libs/gst/video/videooverlay.c
gst-libs/gst/video/videooverlay.h

index ba22b5f..2039f01 100644 (file)
@@ -335,7 +335,7 @@ gst_video_overlay_get_type (void)
 */
 void
 gst_video_overlay_set_wl_window_wl_surface_id (GstVideoOverlay * overlay,
-    guintptr wl_surface_id)
+    gint wl_surface_id)
 {
   GstVideoOverlayInterface *iface;
 
index 4654dc9..ac60eb7 100644 (file)
@@ -67,7 +67,7 @@ struct _GstVideoOverlayInterface {
 
   void (*set_window_handle)    (GstVideoOverlay *overlay, guintptr handle);
 
-  void (*set_wl_window_wl_surface_id)   (GstVideoOverlay * overlay, guintptr wl_surface_id);
+  void (*set_wl_window_wl_surface_id)   (GstVideoOverlay * overlay, gint wl_surface_id);
 
   void (*set_display_roi_area) (GstVideoOverlay *overlay,
                                 gint x, gint y,
@@ -105,7 +105,7 @@ void            gst_video_overlay_prepare_window_handle (GstVideoOverlay * overl
 gboolean        gst_is_video_overlay_prepare_window_handle_message (GstMessage * msg);
 
 void gst_video_overlay_set_wl_window_wl_surface_id (GstVideoOverlay * overlay,
-    guintptr wl_surface_id);
+    gint wl_surface_id);
 
 gboolean gst_video_overlay_set_display_roi_area         (GstVideoOverlay * overlay,
                                                          gint x, gint y,