X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include_product%2Fmedia_playlist.h;h=a81cc7745e07a90c0c14cd975f22ad24f61fa677;hb=84bf986fd703c8fce7ada5c53367299ecd9ec582;hp=6cbfe4ae2cd459fefcb5c3c24b22dc4f047a78a9;hpb=b97b386ccb7bd75323a4f2d809c415e3264e429d;p=platform%2Fcore%2Fapi%2Fmedia-content.git diff --git a/include_product/media_playlist.h b/include_product/media_playlist.h index 6cbfe4a..a81cc77 100755 --- a/include_product/media_playlist.h +++ b/include_product/media_playlist.h @@ -39,7 +39,7 @@ extern "C" { /** * @brief Gets the number of playlists for the passed @a filter from the media database. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @param[in] filter The handle to the media filter * @param[out] playlist_count The count of the media playlist @@ -64,7 +64,7 @@ int media_playlist_get_playlist_count_from_db(filter_h filter, int *playlist_cou * The callback function will be invoked for every retrieved media playlist. * If @c NULL is passed to the filter, no filtering is applied. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @param[in] filter The handle to the media filter * @param[in] callback The callback function to be invoked @@ -90,7 +90,7 @@ int media_playlist_foreach_playlist_from_db(filter_h filter, media_playlist_cb c /** * @brief Gets the number of the media info for the given playlist present in the media database. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @param[in] playlist_id The ID of the media playlist * @param[in] filter The handle to the media filter @@ -116,7 +116,7 @@ int media_playlist_get_media_count_from_db(int playlist_id, filter_h filter, int * meeting desired filter option and calls @a callback for * every retrieved media info. If @c NULL is passed to the @a filter, no filtering is applied. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @param[in] playlist_id The ID of the media playlist * @param[in] filter The handle to the media filter @@ -143,7 +143,7 @@ int media_playlist_foreach_media_from_db(int playlist_id, filter_h filter, playl /** * @brief Inserts a new playlist with the given name into the media database. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @privlevel public * @privilege %http://tizen.org/privilege/content.write @@ -174,7 +174,7 @@ int media_playlist_insert_to_db(const char *name, media_playlist_h *playlist); /** * @brief Deletes the given playlist from the media database. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @privlevel public * @privilege %http://tizen.org/privilege/content.write @@ -205,7 +205,7 @@ int media_playlist_delete_from_db(int playlist_id); * @details This function creates a new media playlist handle from the media database by the given @a playlist_id. * The media playlist will be created and will be filled with the playlist information. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @remarks The @a playlist should be released using media_playlist_destroy(). * @@ -234,7 +234,7 @@ int media_playlist_get_playlist_from_db(int playlist_id, media_playlist_h *playl * handle no longer can be used to perform any operations. A new handle has to * be created before next usage. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @param[in] playlist The handle to the media playlist * @@ -257,7 +257,7 @@ int media_playlist_destroy(media_playlist_h playlist); * media playlist foreach function such as media_playlist_foreach_playlist_from_db(). * To use this handle outside of these foreach functions, use this function. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @remarks The @a dst should be released using media_playlist_destroy(). * @@ -278,7 +278,7 @@ int media_playlist_clone(media_playlist_h *dst, media_playlist_h src); /** * @brief Gets the media playlist ID. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @param[in] playlist The handle to the media playlist * @param[out] playlist_id The ID of the media playlist @@ -293,7 +293,7 @@ int media_playlist_get_playlist_id(media_playlist_h playlist, int *playlist_id); /** * @brief Gets a name of the playlist. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @remarks The @a playlist_name should be released using free(). * @@ -311,7 +311,7 @@ int media_playlist_get_name(media_playlist_h playlist, char **playlist_name); /** * @brief Sets the name of the playlist. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @param[in] playlist The handle to the media playlist * @param[in] playlist_name The name of the media playlist @@ -330,7 +330,7 @@ int media_playlist_set_name(media_playlist_h playlist, const char *playlist_name /** * @brief Gets a thumbnail path of the playlist. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @remarks The @a path should be released using free(). * @@ -348,7 +348,7 @@ int media_playlist_get_thumbnail_path(media_playlist_h playlist, char **path); /** * @brief Sets the thumbnail path of the playlist. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @param[in] playlist The handle to the media playlist * @param[in] path The path of the thumbnail @@ -367,7 +367,7 @@ int media_playlist_set_thumbnail_path(media_playlist_h playlist, const char *pat /** * @brief Sets the playing order in the playlist. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @param[in] playlist The handle to the media playlist * @param[in] playlist_member_id The ID of the playlist member @@ -386,7 +386,7 @@ int media_playlist_set_play_order(media_playlist_h playlist, int playlist_member /** * @brief Adds a new media info to the playlist. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @param[in] playlist The handle to the media playlist * @param[in] media_id The media ID @@ -408,7 +408,7 @@ int media_playlist_add_media(media_playlist_h playlist, const char *media_id); /** * @brief Removes the playlist members related with the media from the given playlist. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @param[in] playlist The handle to the media playlist * @param[in] playlist_member_id The ID of the playlist member @@ -430,7 +430,7 @@ int media_playlist_remove_media(media_playlist_h playlist, int playlist_member_i /** * @brief Gets the played order of the playlist. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @param[in] playlist The handle to the media playlist * @param[in] playlist_member_id The ID of the playlist member @@ -453,7 +453,7 @@ int media_playlist_get_play_order(media_playlist_h playlist, int playlist_member * media_playlist_update_to_db() function should be called so as to update * the given playlist attributes in the media database. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @privlevel public * @privilege %http://tizen.org/privilege/content.write @@ -486,7 +486,7 @@ int media_playlist_update_to_db(media_playlist_h playlist); /** * @brief Imports the playlist from m3u playlist file. * @details This function reads a playlist from the m3u playlist file and insert into the db. - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * * @privlevel public * @privilege %http://tizen.org/privilege/content.write @@ -516,7 +516,7 @@ int media_playlist_import_from_file(const char *playlist_name, const char *path, /** * @brief Exports the playlist to m3u playlist file. - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * * @remarks %http://tizen.org/privilege/mediastorage is needed if input or output path are relevant to media storage. \n * %http://tizen.org/privilege/externalstorage is needed if input or output path are relevant to external storage.