int player_set_media_stream_dynamic_resolution(player_h player, bool drc);
/**
- * @brief Sets the ecore wayland window video display.
+ * @brief Sets the ecore wayland video display.
* @since_tizen 3.0
* @remarks This API support PLAYER_DISPLAY_TYPE_OVERLAY type only.
* @param[in] player The handle to the media player
* @param[in] type The display type
* @param[in] ecore_wl_window The ecore wayland window handle
+ * @param[in] x the x coordinate of window
+ * @param[in] y the y coordinate of window
+ * @param[in] width the width of window
+ * @param[in] height the height of window
* @return @c 0 on success,
* otherwise a negative error value
* @retval #PLAYER_ERROR_NONE Successful
* @pre The player state must be one of #PLAYER_STATE_IDLE, #PLAYER_STATE_READY, #PLAYER_STATE_PLAYING, or #PLAYER_STATE_PAUSED.
* @see player_set_display_rotation
*/
-int player_set_ecore_wl_win_display(player_h player, player_display_type_e type, void *ecore_wl_window);
+int player_set_ecore_wl_display(player_h player, player_display_type_e type, void *ecore_wl_window, int x, int y, int width, int height);
/**
* @brief Called when no free space in buffer.
return ret;
}
-int player_set_ecore_wl_win_display(player_h player, player_display_type_e type, void *ecore_wl_window)
+int player_set_ecore_wl_display(player_h player, player_display_type_e type, void *ecore_wl_window, int x, int y, int width, int height)
{
PLAYER_INSTANCE_CHECK(player);
int ret = PLAYER_ERROR_NONE;