Remove useless '#' for functions in document 18/305718/3 accepted/tizen/unified/20240212.170157 accepted/tizen/unified/x/20240214.051936
authorhjkim <backto.kim@samsung.com>
Wed, 7 Feb 2024 01:02:45 +0000 (10:02 +0900)
committerhjkim <backto.kim@samsung.com>
Thu, 8 Feb 2024 08:11:43 +0000 (17:11 +0900)
Change-Id: Ic543e65d1f1cb248ba326e7d47a14ead7a6fbefc

doc/media_controller_doc.h
packaging/capi-media-controller.spec

index 46145a16d2bf6b9fb9d00bff18812b4c3d6e4301..a2ae36f8c6b04b2051b4975b465db0e00bc60239 100755 (executable)
@@ -39,7 +39,7 @@
  *
  * @section CAPI_MEDIA_CONTROLLER_OVERVIEW Overview
  * The @ref CAPI_MEDIA_CONTROLLER_MODULE API provides a set of functions to an effective communication between the server and the client for delivering the latest server information. It helps to transfer the information like playback info, shuffle mode, or the metadata of the latest server.  \n
- * To programming the interface, first, create a handler via #mc_client_create() or #mc_server_create(). And then, the client request the necessary information to the server by using #mc_client_set_server_updated_cb(), or #mc_client_set_playback_updated_cb(). The server provides the requested information to the client by the callback.
+ * To programming the interface, first, create a handler via mc_client_create() or mc_server_create(). And then, the client request the necessary information to the server by using mc_client_set_server_updated_cb(), or mc_client_set_playback_updated_cb(). The server provides the requested information to the client by the callback.
  *
  */
 
@@ -51,8 +51,8 @@
 *      \#include <media_controller_server.h>
 *
 * @section CAPI_MEDIA_CONTROLLER_SERVER_MODULE_OVERVIEW Overview
-* The @ref CAPI_MEDIA_CONTROLLER_SERVER_MODULE API allows you to send the playback info (#mc_server_set_playback_state(), #mc_server_set_playback_position(), #mc_server_set_playlist_item_info()), the metadata (#mc_server_set_metadata() and playlist (#mc_server_set_playlist_item_info(), #mc_server_create_playlist()). and to receive the custom command (#mc_server_set_custom_cmd_received_cb()), to update the status information on the latest server (#mc_server_update_playback_info(), #mc_server_update_metadata(). \n
-* Before doing those things you should create handle(#mc_server_create()). And if you don't use handle anymore, you have to destroy it(#mc_server_destroy()).
+* The @ref CAPI_MEDIA_CONTROLLER_SERVER_MODULE API allows you to send the playback info (mc_server_set_playback_state(), mc_server_set_playback_position(), mc_server_set_playlist_item_info()), the metadata (mc_server_set_metadata() and playlist (mc_server_set_playlist_item_info(), mc_server_create_playlist()). and to receive the custom command (mc_server_set_custom_cmd_received_cb()), to update the status information on the latest server (mc_server_update_playback_info(), mc_server_update_metadata(). \n
+* Before doing those things you should create handle(mc_server_create()). And if you don't use handle anymore, you have to destroy it(mc_server_destroy()).
 *
 */
 
 *      \#include <media_controller_client.h>
 *
 * @section CAPI_MEDIA_CONTROLLER_CLIENT_MODULE_OVERVIEW Overview
-* The @ref CAPI_MEDIA_CONTROLLER_CLIENT_MODULE API allows you to check the activated server status (#mc_client_set_server_updated_cb()), the playback info (#mc_client_set_playback_updated_cb()), the metadata (#mc_client_set_metadata_updated_cb()) or the playlist(#mc_client_set_playlist_updated_cb()). \n
-* And client can send the custom command to server(#mc_client_send_custom_cmd()). \n
-* Before doing those things you should create handle(#mc_client_create()). And if you don't use handle anymore, you have to destroy it(#mc_client_destroy()).
-* If there is no the activated server, you can get the latest server information by using #mc_client_get_latest_server_info().
+* The @ref CAPI_MEDIA_CONTROLLER_CLIENT_MODULE API allows you to check the activated server status (mc_client_set_server_updated_cb()), the playback info (mc_client_set_playback_updated_cb()), the metadata (mc_client_set_metadata_updated_cb()) or the playlist(mc_client_set_playlist_updated_cb()). \n
+* And client can send the custom command to server(mc_client_send_custom_cmd()). \n
+* Before doing those things you should create handle(mc_client_create()). And if you don't use handle anymore, you have to destroy it(mc_client_destroy()).
+* If there is no the activated server, you can get the latest server information by using mc_client_get_latest_server_info().
 *
 */
 
@@ -79,8 +79,8 @@
 *      \#include <media_controller_playlist.h>
 *
 * @section CAPI_MEDIA_CONTROLLER_PLAYLIST_MODULE_OVERVIEW Overview
-* The @ref CAPI_MEDIA_CONTROLLER_PLAYLIST_MODULE API allows you to get playlist name and its items (#mc_playlist_get_name() and #mc_playlist_foreach_item()). \n
-* You can copy the playlist by using #mc_playlist_clone(). And if you don't use handle anymore, you have to destroy it(#mc_playlist_destroy()).
+* The @ref CAPI_MEDIA_CONTROLLER_PLAYLIST_MODULE API allows you to get playlist name and its items (mc_playlist_get_name() and mc_playlist_foreach_item()). \n
+* You can copy the playlist by using mc_playlist_clone(). And if you don't use handle anymore, you have to destroy it(mc_playlist_destroy()).
 *
 */
 
@@ -92,8 +92,8 @@
 *      \#include <media_controller_metadata.h>
 *
 * @section CAPI_MEDIA_CONTROLLER_METADAT_MODULE_OVERVIEW Overview
-* The @ref CAPI_MEDIA_CONTROLLER_METADATA_MODULE API allows you to get metadata (#mc_metadata_get()). \n
-* You can copy the metadata by using #mc_metadata_clone(). And if you don't use handle anymore, you have to destroy it(#mc_metadata_destroy()).
+* The @ref CAPI_MEDIA_CONTROLLER_METADATA_MODULE API allows you to get metadata (mc_metadata_get()). \n
+* You can copy the metadata by using mc_metadata_clone(). And if you don't use handle anymore, you have to destroy it(mc_metadata_destroy()).
 *
 */
 
 *      \#include <media_controller_metadata.h>
 *
 * @section CAPI_MEDIA_CONTROLLER_ABILITY_MODULE_OVERVIEW Overview
-* The @ref CAPI_MEDIA_CONTROLLER_ABILITY_MODULE API allows you to get playback action ability (#mc_playback_action_is_supported()). \n
-* You can copy the ability by using #mc_playback_ability_clone(). And if you don't use handle anymore, you have to destroy it(#mc_playback_ability_destroy()).
+* The @ref CAPI_MEDIA_CONTROLLER_ABILITY_MODULE API allows you to get playback action ability (mc_playback_action_is_supported()). \n
+* You can copy the ability by using mc_playback_ability_clone(). And if you don't use handle anymore, you have to destroy it(mc_playback_ability_destroy()).
 *
 */
 
 *      \#include <media_controller_metadata.h>
 *
 * @section CAPI_MEDIA_CONTROLLER_SEARCH_MODULE_OVERVIEW Overview
-* The @ref CAPI_MEDIA_CONTROLLER_SEARCH_MODULE API allows you to create handle for searching (#mc_search_create()). \n
-* You can set and get search conditions (#mc_search_set_condition() and #mc_search_foreach_condition()). \n
-* And copy the search by using #mc_search_clone(). And if you don't use handle anymore, you have to destroy it(#mc_search_destroy()).
+* The @ref CAPI_MEDIA_CONTROLLER_SEARCH_MODULE API allows you to create handle for searching (mc_search_create()). \n
+* You can set and get search conditions (mc_search_set_condition() and mc_search_foreach_condition()). \n
+* And copy the search by using mc_search_clone(). And if you don't use handle anymore, you have to destroy it(mc_search_destroy()).
 *
 */
 
index 14e309d1cc2ddc89901d7a73581e37644139ec8d..bd023b2485224490c5fa446bd1161c9d9e943c42 100644 (file)
@@ -1,6 +1,6 @@
 Name:       capi-media-controller
 Summary:    A media controller library in Tizen Native API
-Version:    0.2.39
+Version:    0.2.40
 Release:    1
 Group:      Multimedia/API
 License:    Apache-2.0