add related features section to overview 07/43407/2
authorHyunil Park <hyunil46.park@samsung.com>
Thu, 9 Jul 2015 02:00:49 +0000 (11:00 +0900)
committerHeechul Jeon <heechul.jeon@samsung.com>
Thu, 9 Jul 2015 05:57:37 +0000 (22:57 -0700)
Change-Id: I3f90ea9c8913bd3f34e24738582820b71fc276ed
Signed-off-by: Hyunil Park <hyunil46.park@samsung.com>
doc/player_doc.h
src/player.c

index 534a2f5..390172b 100644 (file)
 
  *</table></div>
  *
+ * @if WEARABLE
+ * @section CAPI_MEDIA_PLAYER_MODULE_FEATURE Related Features
+ * This API is related with the following features:
+ *  - http://tizen.org/feature/network.internet
+ *
+ * It is recommended to design feature related codes in your application for reliability.
+ * You can check if a device supports the related features for this API by using @ref CAPI_SYSTEM_SYSTEM_INFO_MODULE, thereby controlling the procedure of your application.
+ * To ensure your application is only running on the device with specific features, please define the features in your manifest file using the manifest editor in the SDK.
+ * More details on featuring your application can be found from <a href="../org.tizen.mobile.native.appprogramming/html/ide_sdk_tools/feature_element.htm"><b>Feature Element</b>.</a>
+ * @endif
  */
 
 
index fe862ad..8cd367a 100644 (file)
@@ -1487,6 +1487,8 @@ int player_set_sound_type(player_h player, sound_type_e type)
 
        PLAYER_STATE_CHECK(handle, PLAYER_STATE_IDLE);
 
+       LOGI("[%s] sound type = %d", __FUNCTION__, type);
+
        int ret = mm_player_set_attribute(handle->mm_handle, NULL,"sound_volume_type" , type, (char*)NULL);
        if(ret != MM_ERROR_NONE)
        {