video-overlay: change input param data type for setting wl_surface_id 21/210621/1 accepted/tizen_5.5_unified_mobile_hotfix tizen_5.5_mobile_hotfix accepted/tizen/5.5/unified/20191031.005830 accepted/tizen/5.5/unified/mobile/hotfix/20201027.062934 accepted/tizen/unified/20190725.220536 submit/tizen/20190724.035455 submit/tizen_5.5/20191031.000006 submit/tizen_5.5_mobile_hotfix/20201026.185106 tizen_5.5.m2_release
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,