fix doxygen header issues 55/317655/1 accepted/tizen_unified_dev accepted/tizen/unified/20240919.163723 accepted/tizen/unified/dev/20240920.060412 accepted/tizen/unified/x/20240920.053150
authorhjkim <backto.kim@samsung.com>
Fri, 13 Sep 2024 02:07:16 +0000 (11:07 +0900)
committerhjkim <backto.kim@samsung.com>
Fri, 13 Sep 2024 02:07:16 +0000 (11:07 +0900)
Change-Id: Icd85f2a213fc6e6891f562c87243b90a6b9874d3

include/media_controller_client.h
include/media_controller_metadata.h
include/media_controller_server.h

index f7f1469c104b46b1b705e740ae3e3e6741a09c18..525df84a1419d836900b875f2a80a2ad1d2bd041 100644 (file)
@@ -352,7 +352,7 @@ typedef void (*mc_display_rotation_updated_cb)(const char *server_name, mc_displ
  * @privlevel public
  * @privilege %http://tizen.org/privilege/mediacontroller.client
  *
- * @remarks The @a client should be released using @c mc_client_destroy(). You can create only one client handle for each process.
+ * @remarks The @a client should be released using mc_client_destroy(). You can create only one client handle for each process.
  *
  * @param[out] client The handle of the media controller client
  * @return @c 0 on success,
@@ -1458,7 +1458,7 @@ int mc_client_get_latest_server_info(mc_client_h client, char **server_name, mc_
  * @privlevel public
  * @privilege %http://tizen.org/privilege/mediacontroller.client
  *
- * @remarks The @a playback should be released using @c mc_client_destroy_playback(). \n
+ * @remarks The @a playback should be released using mc_client_destroy_playback(). \n
  *                   If there is no playback info, return value of the playback is NULL.
  *
  * @param[in] client    The handle of the media controller client
@@ -1482,7 +1482,7 @@ int mc_client_get_server_playback_info(mc_client_h client, const char *server_na
  * @privlevel public
  * @privilege %http://tizen.org/privilege/mediacontroller.client
  *
- * @remarks The @a metadata should be released using @c mc_metadata_destroy(). \n
+ * @remarks The @a metadata should be released using mc_metadata_destroy(). \n
  *                   If there is no metadata, return value of the @a metadata is NULL.
  *
  * @param[in] client    The handle of the media controller client
@@ -1547,7 +1547,7 @@ int mc_client_get_server_repeat_mode(mc_client_h client, const char *server_name
  * @privlevel public
  * @privilege %http://tizen.org/privilege/mediacontroller.client
  *
- * @remarks The @a uri should be released using @c free(). \n
+ * @remarks The @a uri should be released using free(). \n
  *                   If there is no URI info, return value of the uri is NULL.
  *
  * @param[in] client The handle of the media controller client
@@ -1679,7 +1679,7 @@ int mc_client_get_server_display_rotation(mc_client_h client, const char *server
  * @privlevel public
  * @privilege %http://tizen.org/privilege/mediacontroller.client
  *
- * @remarks The @a ability should be released using @c mc_playback_ability_destroy().\n
+ * @remarks The @a ability should be released using mc_playback_ability_destroy().\n
  *              If the media controller server is deactivated, this function will return #MC_ABILITY_SUPPORTED_UNDECIDED.\n
  *
  * @param[in] client The handle of the media controller client
index 8ea0a2774b9cd776086be106ab7670272486b179..fe4f98bdaaeacc855dd59e387876419e76ac0d97 100644 (file)
@@ -43,7 +43,7 @@ extern "C" {
  *
  * @since_tizen 4.0
  *
- * @remarks The @a dst should be released using @c mc_metadata_destroy().
+ * @remarks The @a dst should be released using mc_metadata_destroy().
  *
  * @param[in] src The source handle of the media controller metadata
  * @param[out] dst The destination handle of the media controller metadata
@@ -98,7 +98,7 @@ int mc_metadata_destroy(mc_metadata_h metadata);
  * @retval #MEDIA_CONTROLLER_ERROR_OUT_OF_MEMORY Out of memory
  *
  * @pre Sets mc_client_set_metadata_updated_cb() function to get the metadata if you are media controller client. \n
- *         and also you can use this function when get the metadata when callback function invoked in @c mc_playlist_foreach_item().
+ *         and also you can use this function when get the metadata when callback function invoked in mc_playlist_foreach_item().
  *
  * @see mc_client_set_metadata_updated_cb()
  * @see mc_playlist_foreach_item()
@@ -286,7 +286,7 @@ int mc_metadata_decode_resolution(const char *encoded_resolution, unsigned int *
  *
  * @since_tizen 5.0
  *
- * @remarks The @a dst should be released using @c mc_playback_ability_destroy().
+ * @remarks The @a dst should be released using mc_playback_ability_destroy().
  *
  * @param[in] src The source handle of the playback ability
  * @param[out] dst The destination handle of the playback ability
@@ -383,7 +383,7 @@ typedef bool (*mc_search_condition_cb)(mc_content_type_e content_type, mc_search
  * @brief Creates a handle for searching media.
  * @since_tizen 5.0
  *
- * @remarks The @a search should be released using @c mc_search_destroy().
+ * @remarks The @a search should be released using mc_search_destroy().
  *
  * @param[out] search The handle of the media controller search
  * @return @c 0 on success,
@@ -481,7 +481,7 @@ int mc_search_foreach_condition(mc_search_h search, mc_search_condition_cb callb
  *
  * @since_tizen 5.0
  *
- * @remarks The @a dst should be released using @c mc_search_destroy().
+ * @remarks The @a dst should be released using mc_search_destroy().
  *
  * @param[in] src The source handle of the media controller search
  * @param[out] dst The destination handle of the media controller search
index e3ea48347ea24f41928cd8ae3d480151d6823fb2..e6d9c8278f457e42199a50f1193f5b7aa34b83fc 100644 (file)
@@ -1462,7 +1462,7 @@ int mc_server_destroy(mc_server_h server);
  * @retval #MEDIA_CONTROLLER_ERROR_OUT_OF_MEMORY Out of memory
  *
  * @pre Create a media controller server handle by calling mc_server_create().
- * @post You can call mc_server_add_item_to_playlist() if you have items to add in the playlist and should call @c mc_server_update_playlist_done() to register it.
+ * @post You can call mc_server_add_item_to_playlist() if you have items to add in the playlist and should call mc_server_update_playlist_done() to register it.
  * @see mc_server_create()
  * @see mc_server_destroy()
  * @see mc_server_add_item_to_playlist()
@@ -1499,7 +1499,7 @@ int mc_server_create_playlist(mc_server_h server, const char *playlist_name, mc_
  *
  * @pre Create a media controller server handle by calling mc_server_create().
  * @pre Create a media controller playlist handle by calling mc_server_create_playlist().
- * @post You should call @c mc_server_update_playlist_done() to register it.
+ * @post You should call mc_server_update_playlist_done() to register it.
  * @see mc_server_create()
  * @see mc_server_destroy()
  * @see mc_server_create_playlist()