Fix parameter direction [type] 80/236780/6 accepted/tizen_6.0_unified accepted/tizen_6.0_unified_hotfix tizen_6.0 tizen_6.0_hotfix accepted/tizen/6.0/unified/20201030.114523 accepted/tizen/6.0/unified/hotfix/20201103.003019 accepted/tizen/unified/20200824.134527 submit/tizen/20200623.023820 submit/tizen/20200818.094007 submit/tizen_6.0/20201029.205104 submit/tizen_6.0_hotfix/20201102.192504 submit/tizen_6.0_hotfix/20201103.114804 tizen_6.0.m2_release
authorHyunsoo Park <hance.park@samsung.com>
Mon, 22 Jun 2020 05:29:08 +0000 (14:29 +0900)
committerHyunsoo Park <hance.park@samsung.com>
Tue, 23 Jun 2020 02:20:32 +0000 (02:20 +0000)
Change-Id: Ic5a780995e43190674ed6112b7d3f65a5641c028
Signed-off-by: Hyunsoo Park <hance.park@samsung.com>
packaging/libmm-wfd.spec
src/include/mm_wfd_sink.h

index bdcae8d..8c5903c 100644 (file)
@@ -1,6 +1,6 @@
 Name:       libmm-wfd
 Summary:    Multimedia Framework Wifi-Display Library
-Version:    0.3.8
+Version:    0.3.9
 Release:    0
 Group:      System/Libraries
 License:    Apache-2.0
index 6e6f12a..e7a5f0c 100644 (file)
@@ -378,8 +378,8 @@ int mm_wfd_sink_set_attribute(MMHandleType wfd_sink_handle,  char **err_attr_nam
  * This function gets the width and height of video which is played by wi-fi display sink\n
  *
  * @param      wfd_sink_handle         [in]    Handle of wi-fi display sink
- * @param      width                           [in]    Width of video
- * @param      height                          [in]    Height of video
+ * @param      width                           [out]   Width of video
+ * @param      height                          [out]   Height of video
  *
  * @return     This function returns zero on success, or negative value with error code.
  * @pre                wi-fi display state should be MM_WFD_SINK_STATE_CONNECTED or MM_WFD_SINK_STATE_PLAYING. \n
@@ -400,7 +400,7 @@ int mm_wfd_sink_get_video_resolution(MMHandleType wfd_sink_handle, gint *width,
  * This function gets the width and height of video which is played by wi-fi display sink\n
  *
  * @param      wfd_sink_handle         [in]    Handle of wi-fi display sink
- * @param      framerate                       [in]    Framerate of video
+ * @param      framerate                       [out]   Framerate of video
  *
  * @return     This function returns zero on success, or negative value with error code.
  * @pre                wi-fi display state should be MM_WFD_SINK_STATE_CONNECTED or MM_WFD_SINK_STATE_PLAYING. \n
@@ -433,7 +433,7 @@ int mm_wfd_sink_set_resolution(MMHandleType wfd_sink_handle,  gint resolution);
  * This function gets the negotiated video codec for wi-fi display sink\n
  *
  * @param      wfd_sink_handle         [in]    Handle of wi-fi display sink
- * @param      codec                           [in]    video codec for wi-fi display sink
+ * @param      codec                           [out]   video codec for wi-fi display sink
  *
  * @return     This function returns zero on success, or negative value with error code.
  * @pre                wi-fi display state should be MM_WFD_SINK_STATE_CONNECTED, MM_WFD_SINK_STATE_PLAYING or MM_WFD_SINK_STATE_PAUSED. \n
@@ -445,8 +445,8 @@ int mm_wfd_sink_get_negotiated_video_codec(MMHandleType wfd_sink_handle,  gint *
  * This function gets the negotiated video resolution for wi-fi display sink\n
  *
  * @param      wfd_sink_handle         [in]    Handle of wi-fi display sink
- * @param      width                           [in]    video width for wi-fi display sink
- * @param      height                          [in]    video height for wi-fi display sink
+ * @param      width                           [out]   video width for wi-fi display sink
+ * @param      height                          [out]   video height for wi-fi display sink
  *
  * @return     This function returns zero on success, or negative value with error code.
  * @pre                wi-fi display state should be MM_WFD_SINK_STATE_CONNECTED, MM_WFD_SINK_STATE_PLAYING or MM_WFD_SINK_STATE_PAUSED. \n
@@ -458,7 +458,7 @@ int mm_wfd_sink_get_negotiated_video_resolution(MMHandleType wfd_sink_handle,  g
  * This function gets the negotiated video framerate for wi-fi display sink\n
  *
  * @param      wfd_sink_handle         [in]    Handle of wi-fi display sink
- * @param      framerate                       [in]    video framerate for wi-fi display sink
+ * @param      framerate                       [out]   video framerate for wi-fi display sink
  *
  * @return     This function returns zero on success, or negative value with error code.
  * @pre                wi-fi display state should be MM_WFD_SINK_STATE_CONNECTED, MM_WFD_SINK_STATE_PLAYING or MM_WFD_SINK_STATE_PAUSED. \n
@@ -470,7 +470,7 @@ int mm_wfd_sink_get_negotiated_video_frame_rate(MMHandleType wfd_sink_handle,  g
  * This function gets the negotiated audio codec for wi-fi display sink\n
  *
  * @param      wfd_sink_handle         [in]    Handle of wi-fi display sink
- * @param      codec                           [in]    audio codec for wi-fi display sink
+ * @param      codec                           [out]   audio codec for wi-fi display sink
  *
  * @return     This function returns zero on success, or negative value with error code.
  * @pre                wi-fi display state should be MM_WFD_SINK_STATE_CONNECTED, MM_WFD_SINK_STATE_PLAYING or MM_WFD_SINK_STATE_PAUSED. \n
@@ -482,7 +482,7 @@ int mm_wfd_sink_get_negotiated_audio_codec(MMHandleType wfd_sink_handle,  gint *
  * This function gets the negotiated audio channel for wi-fi display sink\n
  *
  * @param      wfd_sink_handle         [in]    Handle of wi-fi display sink
- * @param      channel                         [in]    audio channel for wi-fi display sink
+ * @param      channel                         [out]   audio channel for wi-fi display sink
  *
  * @return     This function returns zero on success, or negative value with error code.
  * @pre                wi-fi display state should be MM_WFD_SINK_STATE_CONNECTED, MM_WFD_SINK_STATE_PLAYING or MM_WFD_SINK_STATE_PAUSED. \n
@@ -494,7 +494,7 @@ int mm_wfd_sink_get_negotiated_audio_channel(MMHandleType wfd_sink_handle,  gint
  * This function gets the negotiated audio sample rate for wi-fi display sink\n
  *
  * @param      wfd_sink_handle         [in]    Handle of wi-fi display sink
- * @param      sample_rate                     [in]    audio sample rate for wi-fi display sink
+ * @param      sample_rate                     [out]   audio sample rate for wi-fi display sink
  *
  * @return     This function returns zero on success, or negative value with error code.
  * @pre                wi-fi display state should be MM_WFD_SINK_STATE_CONNECTED, MM_WFD_SINK_STATE_PLAYING or MM_WFD_SINK_STATE_PAUSED. \n
@@ -506,7 +506,7 @@ int mm_wfd_sink_get_negotiated_audio_sample_rate(MMHandleType wfd_sink_handle,
  * This function gets the negotiated audio bitwidth for wi-fi display sink\n
  *
  * @param      wfd_sink_handle         [in]    Handle of wi-fi display sink
- * @param      bitwidth                        [in]    audio bitwidth for wi-fi display sink
+ * @param      bitwidth                        [out]   audio bitwidth for wi-fi display sink
  *
  * @return     This function returns zero on success, or negative value with error code.
  * @pre                wi-fi display state should be MM_WFD_SINK_STATE_CONNECTED, MM_WFD_SINK_STATE_PLAYING or MM_WFD_SINK_STATE_PAUSED. \n