Add to return error for media_info_create_thumbnail in media_thumbnail_completed_cb
[platform/core/api/media-content.git] / include / media_content_type.h
1 /*
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17
18 #ifndef __TIZEN_MEDIA_CONTENT_TYPE_H__
19 #define __TIZEN_MEDIA_CONTENT_TYPE_H__
20
21 #include <time.h>
22 #include <tizen.h>
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif /* __cplusplus */
27
28 /**
29  * @file media_content_type.h
30  * @brief This file contains API related to media-content enumerations for media data types, groups, orientations, \n
31  *        classes of errors and definitions of media-data. \n
32  *        Listed APIs are called when iterating over lists of album, group, bookmark and other media,  \n
33  *        when media items and burst shot are inserted completely and when notification of media DB change is subscribed.
34  */
35
36 /**
37 * @addtogroup CAPI_MEDIA_CONTENT_MODULE
38  * @{
39  */
40
41 /**
42  * @ingroup CAPI_MEDIA_CONTENT_MODULE
43  * @brief Enumeration for the media file format.
44  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
45  */
46 typedef enum {
47         MEDIA_CONTENT_TYPE_IMAGE                = 0,    /**<The type of an image */
48         MEDIA_CONTENT_TYPE_VIDEO                = 1,    /**<The type of a video */
49         MEDIA_CONTENT_TYPE_SOUND        = 2,    /**<The type of sound */
50         MEDIA_CONTENT_TYPE_MUSIC                = 3,    /**<The type of music */
51         MEDIA_CONTENT_TYPE_OTHERS       = 4,    /**<The type of other */
52 } media_content_type_e;
53
54 /**
55  * @ingroup CAPI_CONTENT_MEDIA_CONTENT_MODULE
56  * @brief Enumeration for the storage type.
57  * @details This information is used to establish where the folder is.
58  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
59  */
60 typedef enum {
61         MEDIA_CONTENT_STORAGE_INTERNAL  = 0,    /**< The device's internal storage */
62         MEDIA_CONTENT_STORAGE_EXTERNAL  = 1,    /**< The device's external storage like sd card*/
63         MEDIA_CONTENT_STORAGE_EXTERNAL_USB = 2, /**< The external USB storage (Since @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) */
64         MEDIA_CONTENT_STORAGE_CLOUD     = 100,  /**< The Cloud storage (Since @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) */
65 } media_content_storage_e;
66
67 /**
68  * @ingroup CAPI_MEDIA_CONTENT_MODULE
69  * @brief Enumeration for media content DB update items.
70  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
71  */
72 typedef enum {
73         MEDIA_ITEM_FILE         = 0,            /**< File type, an item updated to DB */
74         MEDIA_ITEM_DIRECTORY    = 1,            /**< Directory type, an item updated to DB */
75 } media_content_db_update_item_type_e;
76
77 /**
78  * @ingroup CAPI_MEDIA_CONTENT_MODULE
79  * @brief Enumeration for media content DB update types.
80  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
81  */
82 typedef enum {
83         MEDIA_CONTENT_INSERT            = 0,            /**< Insert, the type of DB update */
84         MEDIA_CONTENT_DELETE            = 1,            /**< Delete, The type of DB update */
85         MEDIA_CONTENT_UPDATE    = 2,            /**< Update, The type of DB update */
86 } media_content_db_update_type_e;
87
88 /**
89  * @ingroup CAPI_CONTENT_MEDIA_INFO_MODULE
90  * @brief Enumeration for orientation types.
91  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
92  */
93 typedef enum {
94         MEDIA_CONTENT_ORIENTATION_NOT_AVAILABLE  = 0,       /**< Not available*/
95         MEDIA_CONTENT_ORIENTATION_NORMAL         = 1,       /**< Normal*/
96         MEDIA_CONTENT_ORIENTATION_HFLIP          = 2,       /**< Flip horizontal*/
97         MEDIA_CONTENT_ORIENTATION_ROT_180        = 3,       /**< Rotate 180 degrees*/
98         MEDIA_CONTENT_ORIENTATION_VFLIP          = 4,       /**< Flip vertical*/
99         MEDIA_CONTENT_ORIENTATION_TRANSPOSE      = 5,       /**< Transpose*/
100         MEDIA_CONTENT_ORIENTATION_ROT_90         = 6,       /**< Rotate 90 degrees*/
101         MEDIA_CONTENT_ORIENTATION_TRANSVERSE     = 7,       /**< Transverse*/
102         MEDIA_CONTENT_ORIENTATION_ROT_270        = 8,       /**< Rotate 270 degrees*/
103 } media_content_orientation_e;
104
105 /**
106  * @ingroup CAPI_MEDIA_CONTENT_MODULE
107  * @brief Enumeration for ordering.
108  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
109  */
110 typedef enum {
111         MEDIA_CONTENT_ORDER_ASC   = 0,      /**< Ascending order*/
112         MEDIA_CONTENT_ORDER_DESC  = 1,      /**< Descending order*/
113         MEDIA_CONTENT_ORDER_OTHER = 2,          /** order by order key**/
114 } media_content_order_e;
115
116 /**
117  * @ingroup CAPI_MEDIA_CONTENT_MODULE
118  * @brief Enumeration for collations.
119  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
120  */
121 typedef enum {
122         MEDIA_CONTENT_COLLATE_DEFAULT   = 0,        /**< Default collation BINARY */
123         MEDIA_CONTENT_COLLATE_NOCASE    = 1,        /**< Collation NOCASE, not case sensitive */
124         MEDIA_CONTENT_COLLATE_RTRIM     = 2,        /**< Collation RTRIM, trailing space characters are ignored */
125         MEDIA_CONTENT_COLLATE_LOCALIZED = 3,        /**< Collation LOCALIZATION, NOCASE also applied */
126 } media_content_collation_e;
127
128 #define MEDIA_CONTENT_ERROR_CLASS                               TIZEN_ERROR_MEDIA_CONTENT
129
130 /**
131  * @ingroup CAPI_MEDIA_CONTENT_MODULE
132  * @brief Enumeration for a media content error.
133  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
134  */
135 typedef enum {
136         MEDIA_CONTENT_ERROR_NONE                    = TIZEN_ERROR_NONE,                    /**< Successful */
137         MEDIA_CONTENT_ERROR_INVALID_PARAMETER       = TIZEN_ERROR_INVALID_PARAMETER,       /**< Invalid parameter */
138         MEDIA_CONTENT_ERROR_OUT_OF_MEMORY           = TIZEN_ERROR_OUT_OF_MEMORY,           /**< Out of memory */
139         MEDIA_CONTENT_ERROR_INVALID_OPERATION       = TIZEN_ERROR_INVALID_OPERATION,       /**< Invalid Operation */
140         MEDIA_CONTENT_FILE_NO_SPACE_ON_DEVICE       = TIZEN_ERROR_FILE_NO_SPACE_ON_DEVICE, /**< No space left on device */
141         MEDIA_CONTENT_ERROR_PERMISSION_DENIED             = TIZEN_ERROR_PERMISSION_DENIED,                /**< Permission denied */
142         MEDIA_CONTENT_ERROR_DB_FAILED               = MEDIA_CONTENT_ERROR_CLASS | 0x01,    /**< DB operation failed */
143         MEDIA_CONTENT_ERROR_DB_BUSY                 = MEDIA_CONTENT_ERROR_CLASS | 0x02,    /**< DB operation BUSY */
144         MEDIA_CONTENT_ERROR_NETWORK                 = MEDIA_CONTENT_ERROR_CLASS | 0x03,    /**< Network Fail */
145         MEDIA_CONTENT_ERROR_UNSUPPORTED_CONTENT     = MEDIA_CONTENT_ERROR_CLASS | 0x04,    /**< Unsupported Content */
146         MEDIA_CONTENT_ERROR_NOT_SUPPORTED           = TIZEN_ERROR_NOT_SUPPORTED,           /**< Not supported */
147 } media_content_error_e;
148
149 /**
150  * @ingroup CAPI_MEDIA_CONTENT_MODULE
151  * @brief Enumeration for a media group.
152  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
153  */
154 typedef enum {
155         MEDIA_CONTENT_GROUP_DISPLAY_NAME = 0,    /**< Media group ID for display name */
156         MEDIA_CONTENT_GROUP_TYPE,                /**< Media group ID for a media type */
157         MEDIA_CONTENT_GROUP_MIME_TYPE,           /**< Media group ID for a mime type */
158         MEDIA_CONTENT_GROUP_SIZE,                /**< Media group ID for content size */
159         MEDIA_CONTENT_GROUP_ADDED_TIME,          /**< Media group ID for the added time */
160         MEDIA_CONTENT_GROUP_MODIFIED_TIME,       /**< Media group ID for the modified time */
161         MEDIA_CONTENT_GROUP_TITLE,               /**< Media group ID for a content title */
162         MEDIA_CONTENT_GROUP_ARTIST,              /**< Media group ID for an artist*/
163         MEDIA_CONTENT_GROUP_ALBUM_ARTIST,        /**< Media group ID for an album artist */
164         MEDIA_CONTENT_GROUP_GENRE,               /**< Media group ID for a genre*/
165         MEDIA_CONTENT_GROUP_COMPOSER,            /**< Media group ID for a composer*/
166         MEDIA_CONTENT_GROUP_YEAR,                /**< Media group ID for a year*/
167         MEDIA_CONTENT_GROUP_RECORDED_DATE,       /**< Media group ID for the recorded date*/
168         MEDIA_CONTENT_GROUP_COPYRIGHT,           /**< Media group ID for the copyright*/
169         MEDIA_CONTENT_GROUP_TRACK_NUM,           /**< Media group ID for a track number*/
170         MEDIA_CONTENT_GROUP_DESCRIPTION,         /**< Media group ID for a description */
171         MEDIA_CONTENT_GROUP_LONGITUDE,           /**< Media group ID for the longitude*/
172         MEDIA_CONTENT_GROUP_LATITUDE,            /**< Media group ID for the latitude*/
173         MEDIA_CONTENT_GROUP_ALTITUDE,            /**< Media group ID for the altitude*/
174         MEDIA_CONTENT_GROUP_BURST_IMAGE,         /**< Media group ID for the burst shot*/
175         MEDIA_CONTENT_GROUP_RATING,              /**< Media group ID for a rating*/
176         MEDIA_CONTENT_GROUP_AUTHOR,              /**< Media group ID for an author*/
177         MEDIA_CONTENT_GROUP_PROVIDER,            /**< Media group ID for a provider*/
178         MEDIA_CONTENT_GROUP_CONTENT_NAME,        /**< Media group ID for the content name*/
179         MEDIA_CONTENT_GROUP_CATEGORY,            /**< Media group ID for a category*/
180         MEDIA_CONTENT_GROUP_LOCATION_TAG,        /**< Media group ID for a location tag*/
181         MEDIA_CONTENT_GROUP_AGE_RATING,          /**< Media group ID for an age rating*/
182         MEDIA_CONTENT_GROUP_KEYWORD,             /**< Media group ID for a keyword*/
183         MEDIA_CONTENT_GROUP_WEATHER,             /**< Media group ID for the weather*/
184         MEDIA_CONTENT_GROUP_MAX                  /**< Invalid media group ID*/
185 } media_group_e;
186
187 /**
188  * @ingroup CAPI_CONTENT_MEDIA_INFO_MODULE
189  * @brief The structure type for the Media info handle.
190  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
191  */
192 typedef struct media_info_s *media_info_h;
193
194 /**
195  * @ingroup CAPI_CONTENT_MEDIA_FOLDER_MODULE
196  * @brief The structure type for the Media folder handle.
197  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
198  */
199 typedef struct media_folder_s *media_folder_h;
200
201 /**
202  * @ingroup CAPI_CONTENT_MEDIA_PLAYLIST_MODULE
203  * @brief The structure type for the Media playlist handle.
204  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
205  */
206 typedef struct media_playlist_s *media_playlist_h;
207
208 /**
209  * @ingroup CAPI_CONTENT_MEDIA_TAG_MODULE
210  * @brief The structure type for the Media tag handle.
211  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
212  */
213 typedef struct media_tag_s *media_tag_h;
214
215 /**
216  * @ingroup CAPI_CONTENT_MEDIA_BOOKMARK_MODULE
217  * @brief The structure type for the Media bookmark handle.
218  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
219  */
220 typedef struct media_bookmark_s *media_bookmark_h;
221
222 /**
223  * @ingroup CAPI_CONTENT_MEDIA_ALBUM_MODULE
224  * @brief The structure type for the Media album handle.
225  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
226  */
227 typedef struct media_album_s *media_album_h;
228
229 /**
230  * @ingroup CAPI_CONTENT_MEDIA_IMAGE_MODULE
231  * @brief The structure type for the Image metadata handle.
232  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
233  */
234 typedef struct image_meta_s *image_meta_h;
235
236 /**
237  * @ingroup CAPI_CONTENT_MEDIA_VIDEO_META_MODULE
238  * @brief The structure type for the Video metadata handle.
239  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
240  */
241 typedef struct video_meta_s *video_meta_h;
242
243 /**
244  * @ingroup CAPI_CONTENT_MEDIA_AUDIO_META_MODULE
245  * @brief The structure type for the Audio metadata handle.
246  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
247  */
248 typedef struct audio_meta_s *audio_meta_h;
249
250 /**
251  * @ingroup CAPI_CONTENT_MEDIA_FILTER_MODULE
252  * @brief The structure type for the Media filter handle.
253  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
254  */
255 typedef struct filter_s *filter_h;
256
257 /**
258  * @ingroup CAPI_CONTENT_MEDIA_STORAGE_MODULE
259  * @brief The structure type for the Media storage handle.
260  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
261  */
262 typedef void *media_storage_h;
263
264 /**
265  * @ingroup CAPI_CONTENT_MEDIA_FACE_MODULE
266  * @brief The structure type for the Media face handle.
267  * @since_tizen 3.0
268  */
269 typedef void *media_face_h;
270
271 /**
272  * @ingroup CAPI_CONTENT_MEDIA_CONTENT_MODULE
273  * @brief The structure type for the Media content noti handle.
274  * @since_tizen 3.0
275  */
276 typedef void *media_content_noti_h;
277
278 /**
279  * @ingroup CAPI_MEDIA_CONTENT_MODULE
280  * @brief Called when the media scanning is finished.
281  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
282  * @remarks The callback is called in a separate thread(not in the main loop).
283  *
284  * @param[in] error     The error code
285  * @param[in] user_data The user data passed from the foreach function
286  *
287  * @pre media_content_scan().
288  *
289  * @see media_content_scan()
290  *
291  */
292 typedef void (*media_scan_completed_cb)(media_content_error_e error, void * user_data);
293
294 /**
295  * @ingroup CAPI_MEDIA_CONTENT_MODULE
296  * @brief Called when the notification of the media DB change is subscribed.
297  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
298  *
299  * @remarks The callback is called in a separate thread(not in the main loop).
300  *
301  * @param[in] error       The error code
302  * @param[in] pid         The PID which publishes notification
303  * @param[in] update_item The update item of notification
304  * @param[in] update_type The update type of notification
305  * @param[in] media_type  The type of the media content (#media_content_type_e)
306  * @param[in] uuid        The UUID of media or directory, which is updated
307  * @param[in] path        The path of the media or directory
308  * @param[in] mime_type   The mime type of the media info
309  * @param[in] user_data   The user data passed from the foreach function
310  *
311  * @pre media_content_db_update_subscribe().
312  * @see media_content_db_update_subscribe()
313  */
314 typedef void (*media_content_db_update_cb)(
315                                 media_content_error_e error,
316                                 int pid,
317                                 media_content_db_update_item_type_e update_item,
318                                 media_content_db_update_type_e update_type,
319                                 media_content_type_e media_type,
320                                 char *uuid,
321                                 char *path,
322                                 char *mime_type,
323                                 void *user_data);
324
325
326 /**
327  * @ingroup CAPI_CONTENT_MEDIA_INFO_MODULE
328  * @brief Called for every available media info.
329  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
330  *
331  * @details Iterates over a list of media info.
332  *
333  * @remarks To use the @a media outside this function, copy the handle with media_info_clone() function. \n
334  *                  The callback is called in the main loop.
335  *
336  * @param[in] media     The handle to the media info
337  * @param[in] user_data The user data passed from the foreach function
338  *
339  * @return @c true to continue with the next iteration of the loop,
340  *         otherwise @c false to break out of the loop
341  *
342  * @pre media_tag_foreach_media_from_db(), media_playlist_foreach_media_from_db(), media_genre_foreach_media_from_db(),
343  *      media_info_foreach_media_from_db(), media_folder_foreach_media_from_db() will invoke this function.
344  *
345  * @see media_info_clone()
346  * @see media_album_foreach_media_from_db()
347  * @see media_playlist_foreach_media_from_db()
348  * @see media_tag_foreach_media_from_db()
349  * @see media_info_foreach_media_from_db()
350  * @see media_folder_foreach_media_from_db()
351  */
352 typedef bool (*media_info_cb)(media_info_h media, void *user_data);
353
354
355 /**
356  * @ingroup CAPI_CONTENT_MEDIA_INFO_MODULE
357  * @brief Called when media items are inserted completely.
358  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
359  *
360  * @remarks The callback is called in a separate thread(not in the main loop).
361  *
362  * @param[in] media     The handle to the media info
363  * @param[in] user_data The user data passed from the foreach function
364  *
365  * @pre media_info_insert_batch_to_db()
366  *
367  * @see media_info_insert_batch_to_db()
368  */
369 typedef void (*media_insert_completed_cb)(media_content_error_e error, void * user_data);
370
371
372 /**
373  * @ingroup CAPI_CONTENT_MEDIA_INFO_MODULE
374  * @brief Called when the burst shot is inserted completely.
375  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
376  *
377  * @remarks The callback is called in a separate thread(not in the main loop).
378  *
379  * @param[in] media     The handle to the media info
380  * @param[in] user_data The user data passed from the foreach function
381  *
382  * @pre media_info_insert_burst_shot_to_db()
383  *
384  * @see media_info_insert_burst_shot_to_db()
385  *
386  */
387 typedef void (*media_insert_burst_shot_completed_cb)(media_content_error_e error, void * user_data);
388
389
390 /**
391  * @ingroup CAPI_CONTENT_MEDIA_INFO_MODULE
392  * @brief Called when creating a thumbnail image.
393  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
394  *
395  * @details This callback is called for completion of generating the thumbnail image.
396  *         The following error codes can be delivered. \n
397  *         #MEDIA_CONTENT_ERROR_NONE, \n
398  *         #MEDIA_CONTENT_ERROR_INVALID_PARAMETER, \n
399  *         #MEDIA_CONTENT_ERROR_INVALID_OPERATION, \n
400  *         #MEDIA_CONTENT_ERROR_PERMISSION_DENIED, \n
401  *         #MEDIA_CONTENT_ERROR_DB_FAILED, \n
402  *         #MEDIA_CONTENT_ERROR_UNSUPPORTED_CONTENT
403  *
404  * @remarks The callback is called in a separate thread(not in the main loop).
405  *
406  * @param[in] error     The error code
407  * @param[in] path      The path of the thumbnail which is generated
408  * @param[in] user_data The user data passed from the foreach function
409  *
410  * @pre media_info_create_thumbnail()
411  *
412  * @see media_info_create_thumbnail()
413  */
414 typedef void (*media_thumbnail_completed_cb)(media_content_error_e error, const char *path, void *user_data);
415
416 /**
417  * @ingroup CAPI_CONTENT_MEDIA_FACE_DETECTION_MODULE
418  * @brief Called when face detection on the image is completed.
419  *
420  * @details The following error codes can be delivered. \n
421  *         #MEDIA_CONTENT_ERROR_NONE, \n
422  *         #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY, \n
423  *         #MEDIA_CONTENT_ERROR_INVALID_OPERATION, \n
424  *         #MEDIA_CONTENT_ERROR_DB_FAILED, \n
425  *         #MEDIA_CONTENT_ERROR_DB_BUSY, \n
426  *         #MEDIA_CONTENT_ERROR_UNSUPPORTED_CONTENT
427  *
428  * @since_tizen 3.0
429  *
430  * @remarks The callback is called in a separate thread(not in the main loop).
431  *
432  * @param[in] error     The error code
433  * @param[in] face_count      The number of all detected faces
434  * @param[in] user_data The user data passed from the foreach function
435  *
436  * @pre media_info_start_face_detection()
437  *
438  * @see media_info_start_face_detection()
439  */
440 typedef void (*media_face_detection_completed_cb)(media_content_error_e error, const int face_count, void *user_data);
441
442
443 /**
444  * @ingroup CAPI_CONTENT_MEDIA_FOLDER_MODULE
445  * @brief Called for every available media folder.
446  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
447  *
448  * @details Iterates over a list of folders.
449  *
450  * @remarks To use the @a folder outside this function, copy the handle with the media_folder_clone() function. \n
451  *                  The callback is called in the main loop.
452  *
453  * @param[in] folder    The handle to the media folder
454  * @param[in] user_data The user data passed from the foreach function
455  *
456  * @return @c true to continue with the next iteration of the loop,
457  *         otherwise @c false to break out of the loop
458  *
459  * @pre media_folder_foreach_folder_from_db() will invoke this function.
460  * @see media_folder_clone()
461  * @see media_folder_foreach_folder_from_db()
462  */
463 typedef bool (*media_folder_cb)(media_folder_h folder, void *user_data);
464
465 /**
466  * @ingroup CAPI_CONTENT_MEDIA_PLAYLIST_MODULE
467  * @brief Called for every playlist in the obtained list of playlists.
468  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
469  *
470  * @details Iterates over a playlist list.
471  *
472  * @remarks To use the @a playlist outside this function, copy the handle with the media_playlist_clone() function. \n
473  *                  The callback is called in the main loop.
474  *
475  * @param[in] playlist  The handle to the media playlist
476  * @param[in] user_data The user data passed from the foreach function
477  *
478  * @return @c true to continue with the next iteration of the loop,
479  *         otherwise @c false to break out of the loop
480  *
481  * @pre media_playlist_foreach_playlist_from_db() will invoke this function.
482  *
483  * @see media_playlist_clone()
484  * @see media_playlist_foreach_playlist_from_db()
485  */
486 typedef bool (*media_playlist_cb)(media_playlist_h playlist, void *user_data);
487
488 /**
489  * @ingroup CAPI_CONTENT_MEDIA_PLAYLIST_MODULE
490  * @brief Called for every media info with playlist member ID in the obtained list of media info.
491  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
492  *
493  * @details Iterates over playlist members.
494  *
495  * @remarks To use the @a media outside this function, copy the handle with the media_info_clone() function. \n
496  *                  The callback is called in the main loop.
497  *
498  * @param[in] playlist_member_id The ID to member of the playlist
499  * @param[in] media              The handle to the media info
500  * @param[in] user_data          The user data passed from the foreach function
501  *
502  * @return @c true to continue with the next iteration of the loop,
503  *         otherwise @c false to break out of the loop
504  *
505  * @pre media_playlist_foreach_media_from_db() will invoke this function.
506  *
507  * @see media_info_clone()
508  * @see media_playlist_foreach_media_from_db()
509  */
510 typedef bool (*playlist_member_cb)(int playlist_member_id, media_info_h media, void *user_data);
511
512 /**
513  * @ingroup CAPI_CONTENT_MEDIA_TAG_MODULE
514  * @brief Called for every tag in the obtained list of tags.
515  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
516  *
517  * @details Iterates over a list of tags.
518  *
519  * @remarks To use the @a tag outside this function, copy the handle with the media_tag_clone() function. \n
520  *                  The callback is called in the main loop.
521  *
522  * @param[in] tag       The handle to the media tag
523  * @param[in] user_data The user data passed from the foreach function
524  *
525  * @return @c true to continue with the next iteration of the loop,
526  *         otherwise @c false to break out of the loop
527  *
528  * @pre media_tag_foreach_tag_from_db(), media_info_foreach_tag_from_db() will invoke this function.
529  *
530  * @see media_tag_clone()
531  * @see media_tag_foreach_tag_from_db()
532  * @see media_info_foreach_tag_from_db()
533  */
534 typedef bool (*media_tag_cb)(media_tag_h tag, void *user_data);
535
536 /**
537  * @ingroup CAPI_CONTENT_MEDIA_BOOKMARK_MODULE
538  * @brief Called for every bookmark in the obtained list of bookmarks.
539  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
540  *
541  * @details Iterates over a bookmark list.
542  *
543  * @remarks To use the @a bookmark outside this function, copy the handle with the media_bookmark_clone() function. \n
544  *                  The callback is called in the main loop.
545  *
546  * @param[in] bookmark  The handle to the video bookmark
547  * @param[in] user_data The user data passed from the foreach function
548  *
549  * @return @c true to continue with the next iteration of the loop,
550  *         otherwise @c false to break out of the loop
551  *
552  * @pre media_info_foreach_bookmark_from_db() will invoke this function.
553  *
554  * @see media_info_foreach_bookmark_from_db()
555  */
556 typedef bool (*media_bookmark_cb)(media_bookmark_h bookmark, void *user_data);
557
558 /**
559  * @ingroup CAPI_CONTENT_MEDIA_ALBUM_MODULE
560  * @brief Called for every album in the obtained list of groups.
561  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
562  *
563  * @details Iterates over an album list.
564  *
565  * @remarks To use the @a album outside this function, copy the handle with the media_album_clone() function. \n
566  *                  The callback is called in the main loop.
567  *
568  * @param[in] album     The handle to the media album
569  * @param[in] user_data The user data passed from the foreach function
570  *
571  * @return @c true to continue with the next iteration of the loop,
572  *         otherwise @c false to break out of the loop
573  *
574  * @pre media_album_foreach_album_from_db() will invoke this function.
575  *
576  * @see media_album_clone()
577  * @see media_album_foreach_album_from_db()
578  */
579 typedef bool (*media_album_cb)(media_album_h album, void *user_data);
580
581 /**
582  * @ingroup CAPI_CONTENT_MEDIA_GROUP_MODULE
583  * @brief Called for every group in the obtained list of groups.
584  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
585  *
586  * @details Iterates over a media group list.
587  *
588  * @remarks You should not free @a group_name returned by this function. \n
589  *                  The callback is called in the main loop.
590  *
591  * @param[in] group_name The name of the media group
592  * @param[in] user_data  The user data passed from the foreach function
593  *
594  * @return @c true to continue with the next iteration of the loop,
595  *         otherwise @c false to break out of the loop
596  *
597  * @pre media_group_foreach_group_from_db() will invoke this function.
598  *
599  * @see media_group_foreach_group_from_db()
600  */
601 typedef bool (*media_group_cb)(const char *group_name, void *user_data);
602
603 /**
604  * @ingroup CAPI_CONTENT_MEDIA_STORAGE_MODULE
605  * @brief Called for every storage in the obtained list of storages.
606  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
607  *
608  * @details Iterates over a media storage list.
609  *
610  * @remarks You should not destroy @a storage returned by this function. \n
611  *                  The callback is called in the main loop.
612  *
613  * @param[in] storage     The handle of the media storage
614  * @param[in] user_data  The user data passed from the foreach function
615  *
616  * @return @c true to continue with the next iteration of the loop,
617  *         otherwise @c false to break out of the loop
618  *
619  * @pre media_storage_foreach_storage_from_db() will invoke this function.
620  *
621  * @see media_storage_foreach_storage_from_db()
622  */
623 typedef bool (*media_storage_cb)(media_storage_h storage, void *user_data);
624
625 /**
626  * @ingroup CAPI_CONTENT_MEDIA_FACE_MODULE
627  * @brief Called for every face in the obtained list of face.
628  * @since_tizen 3.0
629  *
630  * @details Iterates over a media face list.
631  *
632  * @remarks You should not destroy @a face returned by this function. \n
633  *                  The callback is called in the main loop.
634  *
635  * @param[in] face     The handle of the media face
636  * @param[in] user_data  The user data passed from the foreach function
637  *
638  * @return @c true to continue with the next iteration of the loop,
639  *         otherwise @c false to break out of the loop
640  *
641  * @pre media_info_foreach_face_from_db() will invoke this function.
642  *
643  * @see media_info_foreach_face_from_db()
644  */
645 typedef bool (*media_face_cb)(media_face_h face, void *user_data);
646
647 /**
648  * @}
649  */
650
651 /**
652  * @addtogroup CAPI_CONTENT_MEDIA_FILTER_MODULE
653  * @{
654  */
655
656  /**
657  * @brief You can use above define to set the condition of media filter and order keyword.
658  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
659  *
660  */
661 #define MEDIA_ID "MEDIA_ID" /**< Media ID */
662
663 /**
664  * @brief You can use above define to set the condition of media filter and order keyword.
665  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
666  *
667  */
668 #define MEDIA_PATH "MEDIA_PATH"  /**< Media full path */
669
670 /**
671  * @brief You can use above define to set the condition of media filter and order keyword.
672  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
673  *
674  */
675 #define MEDIA_DISPLAY_NAME "MEDIA_DISPLAY_NAME"  /**< Media base name */
676
677 /**
678  * @brief You can use above define to set the condition of media filter and order keyword.
679  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
680  *
681  */
682 #define MEDIA_TYPE "MEDIA_TYPE"  /**< Media type: 0-image, 1-video, 2-sound, 3-music, 4-other*/
683
684 /**
685  * @brief You can use above define to set the condition of media filter and order keyword.
686  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
687  *
688  */
689 #define MEDIA_MIME_TYPE "MEDIA_MIME_TYPE"  /**< Media MIME type */
690
691
692 /**
693  * @brief You can use above define to set the condition of media filter and order keyword.
694  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
695  *
696  */
697 #define MEDIA_SIZE "MEDIA_SIZE"  /**< Media MIME size */
698
699 /**
700  * @brief You can use above define to set the condition of media filter and order keyword.
701  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
702  *
703  */
704 #define MEDIA_ADDED_TIME "MEDIA_ADDED_TIME"  /**< Media added time */
705
706 /**
707  * @brief You can use above define to set the condition of media filter and order keyword.
708  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
709  *
710  */
711 #define MEDIA_MODIFIED_TIME "MEDIA_MODIFIED_TIME"  /**< Media modified time */
712
713 /**
714  * @brief You can use above define to set the condition of media filter and order keyword.
715  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
716  *
717  */
718 #define MEDIA_TIMELINE "MEDIA_TIMELINE"  /**< Media modified time */
719
720 /**
721  * @brief You can use above define to set the condition of media filter and order keyword.
722  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
723  *
724  */
725 #define MEDIA_THUMBNAIL_PATH "MEDIA_THUMBNAIL_PATH"  /**< Media thumbnail path */
726
727 /**
728  * @brief You can use above define to set the condition of media filter and order keyword.
729  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
730  *
731  */
732 #define MEDIA_TITLE "MEDIA_TITLE"  /**< Media title get from tag or file name */
733
734 /**
735  * @brief You can use above define to set the condition of media filter and order keyword.
736  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
737  *
738  */
739 #define MEDIA_ALBUM "MEDIA_ALBUM"  /**< Media album name*/
740
741 /**
742  * @brief You can use above define to set the condition of media filter and order keyword.
743  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
744  *
745  */
746 #define MEDIA_ARTIST "MEDIA_ARTIST"  /**< Media artist*/
747
748 /**
749  * @brief You can use above define to set the condition of media filter and order keyword.
750  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
751  *
752  */
753 #define MEDIA_ALBUM_ARTIST "MEDIA_ALBUM_ARTIST"  /**< Media album_artist*/
754
755 /**
756  * @brief You can use above define to set the condition of media filter and order keyword.
757  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
758  *
759  */
760 #define MEDIA_GENRE "MEDIA_GENRE"  /**< Media genre*/
761
762 /**
763  * @brief You can use above define to set the condition of media filter and order keyword.
764  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
765  *
766  */
767 #define MEDIA_COMPOSER "MEDIA_COMPOSER"  /**< Media composer*/
768
769 /**
770  * @brief You can use above define to set the condition of media filter and order keyword.
771  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
772  *
773  */
774 #define MEDIA_YEAR "MEDIA_YEAR"  /**< Media year*/
775
776 /**
777  * @brief You can use above define to set the condition of media filter and order keyword.
778  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
779  *
780  */
781 #define MEDIA_RECORDED_DATE "MEDIA_RECORDED_DATE"  /**< Media recorded date*/
782
783 /**
784  * @brief You can use above define to set the condition of media filter and order keyword.
785  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
786  *
787  */
788 #define MEDIA_COPYRIGHT "MEDIA_COPYRIGHT"  /**< Media copyright*/
789
790 /**
791  * @brief You can use above define to set the condition of media filter and order keyword.
792  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
793  *
794  */
795 #define MEDIA_TRACK_NUM "MEDIA_TRACK_NUM"  /**< Media track number*/
796
797 /**
798  * @brief You can use above define to set the condition of media filter and order keyword.
799  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
800  *
801  */
802 #define MEDIA_DESCRIPTION "MEDIA_DESCRIPTION"  /**< Media description*/
803
804 /**
805  * @brief You can use above define to set the condition of media filter and order keyword.
806  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
807  *
808  */
809 #define MEDIA_BITRATE "MEDIA_BITRATE"  /**< Media bitrate*/
810
811 /**
812  * @brief You can use above define to set the condition of media filter and order keyword.
813  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
814  *
815  */
816 #define MEDIA_BITPERSAMPLE "MEDIA_BITPERSAMPLE"  /**< Media bit per sample*/
817
818 /**
819  * @brief You can use above define to set the condition of media filter and order keyword.
820  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
821  *
822  */
823 #define MEDIA_SAMPLERATE "MEDIA_SAMPLERATE"  /**< Media sample rate*/
824
825 /**
826  * @brief You can use above define to set the condition of media filter and order keyword.
827  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
828  *
829  */
830 #define MEDIA_CHANNEL "MEDIA_CHANNEL"  /**< Media channel*/
831
832 /**
833  * @brief You can use above define to set the condition of media filter and order keyword.
834  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
835  *
836  */
837 #define MEDIA_DURATION "MEDIA_DURATION"  /**< Media duration */
838
839 /**
840  * @brief You can use above define to set the condition of media filter and order keyword.
841  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
842  *
843  */
844 #define MEDIA_LONGITUDE "MEDIA_LONGITUDE"  /**< Media longitude */
845
846 /**
847  * @brief You can use above define to set the condition of media filter and order keyword.
848  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
849  *
850  */
851 #define MEDIA_LATITUDE "MEDIA_LATITUDE"  /**< Media latitude */
852
853 /**
854  * @brief You can use above define to set the condition of media filter and order keyword.
855  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
856  *
857  */
858 #define MEDIA_ALTITUDE "MEDIA_ALTITUDE"  /**< Media altitude */
859
860 /**
861  * @brief You can use above define to set the condition of media filter and order keyword.
862  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
863  *
864  */
865 #define MEDIA_WIDTH "MEDIA_WIDTH"  /**< Media width*/
866
867 /**
868  * @brief You can use above define to set the condition of media filter and order keyword.
869  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
870  *
871  */
872 #define MEDIA_HEIGHT "MEDIA_HEIGHT"  /**< Media height*/
873
874 /**
875  * @brief You can use above define to set the condition of media filter and order keyword.
876  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
877  *
878  */
879 #define MEDIA_DATETAKEN "MEDIA_DATETAKEN"  /**< Media datetaken*/
880
881 /**
882  * @brief You can use above define to set the condition of media filter and order keyword.
883  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
884  *
885  */
886 #define MEDIA_ORIENTATION "MEDIA_ORIENTATION"  /**< Media orientation*/
887
888 /**
889  * @brief You can use above define to set the condition of media filter and order keyword.
890  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
891  *
892  */
893 #define MEDIA_BURST_ID "BURST_ID"  /**< Media burst ID*/
894
895 /**
896  * @brief You can use above define to set the condition of media filter and order keyword.
897  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
898  *
899  */
900 #define MEDIA_PLAYED_COUNT "MEDIA_PLAYED_COUNT"  /**< Media playedcount*/
901
902 /**
903  * @brief You can use above define to set the condition of media filter and order keyword.
904  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
905  *
906  */
907 #define MEDIA_LAST_PLAYED_TIME "MEDIA_LAST_PLAYED_TIME"  /**< Media last played time*/
908
909 /**
910  * @brief You can use above define to set the condition of media filter and order keyword.
911  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
912  *
913  */
914 #define MEDIA_LAST_PLAYED_POSITION "MEDIA_LAST_PLAYED_POSITION"  /**< Media last played position of file*/
915
916 /**
917  * @brief You can use above define to set the condition of media filter and order keyword.
918  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
919  *
920  */
921 #define MEDIA_RATING "MEDIA_RATING"  /**< Media rating*/
922
923 /**
924  * @brief You can use above define to set the condition of media filter and order keyword.
925  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
926  *
927  */
928 #define MEDIA_FAVOURITE "MEDIA_FAVOURITE"  /**< The time to register favourite*/
929
930 /**
931  * @brief You can use above define to set the condition of media filter and order keyword.
932  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
933  *
934  */
935 #define MEDIA_AUTHOR "MEDIA_AUTHOR"  /**< Media authore*/
936
937 /**
938  * @brief You can use above define to set the condition of media filter and order keyword.
939  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
940  *
941  */
942 #define MEDIA_PROVIDER "MEDIA_PROVIDER"  /**< Media provider*/
943
944 /**
945  * @brief You can use above define to set the condition of media filter and order keyword.
946  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
947  *
948  */
949 #define MEDIA_CONTENT_NAME "MEDIA_CONTENT_NAME"  /**< Media content name*/
950
951 /**
952  * @brief You can use above define to set the condition of media filter and order keyword.
953  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
954  *
955  */
956 #define MEDIA_CATEGORY "MEDIA_CATEGORY"  /**< Media category*/
957
958 /**
959  * @brief You can use above define to set the condition of media filter and order keyword.
960  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
961  *
962  */
963 #define MEDIA_LOCATION_TAG "MEDIA_LOCATION_TAG"  /**< Media location tag*/
964
965 /**
966  * @brief You can use above define to set the condition of media filter and order keyword.
967  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
968  *
969  */
970 #define MEDIA_AGE_RATING "MEDIA_AGE_RATING"  /**< Media age rating*/
971
972 /**
973  * @brief You can use above define to set the condition of media filter and order keyword.
974  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
975  *
976  */
977 #define MEDIA_KEYWORD "MEDIA_KEYWORD"  /**< Media keyword*/
978
979 /**
980  * @brief You can use above define to set the condition of media filter and order keyword.
981  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
982  *
983  */
984 #define MEDIA_WEATHER "MEDIA_WEATHER"  /**< Media weather*/
985
986 /**
987  * @brief You can use above define to set the condition of media filter and order keyword.
988  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
989  *
990  */
991 #define MEDIA_IS_DRM "MEDIA_IS_DRM"  /**< Is DRM. 0-not drm, 1-drm*/
992
993 /**
994  * @brief You can use above define to set the condition of media filter and order keyword.
995  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
996  *
997  */
998 #define MEDIA_STORAGE_TYPE "MEDIA_STORAGE_TYPE"  /**< Media storage. 0-internal storage, 1-external storage*/
999
1000 /**
1001  * @brief You can use above define to set the condition of media filter and order keyword.
1002  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
1003  *
1004  */
1005 #define MEDIA_EXPOSURE_TIME "MEDIA_EXPOSURE_TIME"       /**< media exposure_time*/
1006
1007 /**
1008  * @brief You can use above define to set the condition of media filter and order keyword.
1009  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
1010  *
1011  */
1012 #define MEDIA_FNUMBER "MEDIA_FNUMBER"   /**< media fnumber*/
1013
1014 /**
1015  * @brief You can use above define to set the condition of media filter and order keyword.
1016  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
1017  *
1018  */
1019 #define MEDIA_ISO "MEDIA_ISO"   /**< media iso*/
1020
1021 /**
1022  * @brief You can use above define to set the condition of media filter and order keyword.
1023  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
1024  *
1025  */
1026 #define MEDIA_MODEL "MEDIA_MODEL"       /**< media model*/
1027
1028 /**
1029  * @brief You can use above define to set the condition of media filter and order keyword.
1030  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1031  *
1032  */
1033 #define MEDIA_FILE_NAME_PINYIN "MEDIA_FILE_NAME_PINYIN"  /**< Media file name pinyin */
1034
1035 /**
1036  * @brief You can use above define to set the condition of media filter and order keyword.
1037  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1038  *
1039  */
1040 #define MEDIA_TITLE_PINYIN "MEDIA_TITLE_PINYIN"  /**< Media title pinyin */
1041
1042 /**
1043  * @brief You can use above define to set the condition of media filter and order keyword.
1044  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1045  *
1046  */
1047 #define MEDIA_ALBUM_PINYIN "MEDIA_ALBUM_PINYIN"  /**< Media album pinyin*/
1048
1049 /**
1050  * @brief You can use above define to set the condition of media filter and order keyword.
1051  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1052  *
1053  */
1054 #define MEDIA_ARTIST_PINYIN "MEDIA_ARTIST_PINYIN"  /**< Media artist pinyin*/
1055
1056 /**
1057  * @brief You can use above define to set the condition of media filter and order keyword.
1058  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1059  *
1060  */
1061 #define MEDIA_ALBUM_ARTIST_PINYIN "MEDIA_ALBUM_ARTIST_PINYIN"  /**< Media album_artist pinyin*/
1062
1063 /**
1064  * @brief You can use above define to set the condition of media filter and order keyword.
1065  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1066  *
1067  */
1068 #define MEDIA_GENRE_PINYIN "MEDIA_GENRE_PINYIN"  /**< Media genre pinyin*/
1069
1070 /**
1071  * @brief You can use above define to set the condition of media filter and order keyword.
1072  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1073  *
1074  */
1075 #define MEDIA_COMPOSER_PINYIN "MEDIA_COMPOSER_PINYIN"  /**< Media composer pinyin*/
1076
1077 /**
1078  * @brief You can use above define to set the condition of media filter and order keyword.
1079  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1080  *
1081  */
1082 #define MEDIA_COPYRIGHT_PINYIN "MEDIA_COPYRIGHT_PINYIN"  /**< Media copyright pinyin*/
1083
1084 /**
1085  * @brief You can use above define to set the condition of media filter and order keyword.
1086  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1087  *
1088  */
1089 #define MEDIA_DESCRIPTION_PINYIN "MEDIA_DESCRIPTION_PINYIN"  /**< Media description pinyin*/
1090
1091 /**
1092  * @brief You can use above define to set the condition of media filter and order keyword.
1093  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1094  *
1095  */
1096 #define MEDIA_AUTHOR_PINYIN "MEDIA_AUTHOR_PINYIN"  /**< Media authore pinyin*/
1097
1098 /**
1099  * @brief You can use above define to set the condition of media filter and order keyword.
1100  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1101  *
1102  */
1103 #define MEDIA_PROVIDER_PINYIN "MEDIA_PROVIDER_PINYIN"  /**< Media provider pinyin*/
1104
1105 /**
1106  * @brief You can use above define to set the condition of media filter and order keyword.
1107  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1108  *
1109  */
1110 #define MEDIA_CONTENT_NAME_PINYIN "MEDIA_CONTENT_NAME_PINYIN"  /**< Media content name pinyin*/
1111
1112 /**
1113  * @brief You can use above define to set the condition of media filter and order keyword.
1114  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1115  *
1116  */
1117 #define MEDIA_CATEGORY_PINYIN "MEDIA_CATEGORY_PINYIN"  /**< Media category pinyin*/
1118
1119 /**
1120  * @brief You can use above define to set the condition of media filter and order keyword.
1121  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1122  *
1123  */
1124 #define MEDIA_LOCATION_TAG_PINYIN "MEDIA_LOCATION_TAG_PINYIN"  /**< Media location tag pinyin*/
1125
1126 /**
1127  * @brief You can use above define to set the condition of media filter and order keyword.
1128  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1129  *
1130  */
1131 #define MEDIA_AGE_RATING_PINYIN "MEDIA_AGE_RATING_PINYIN"  /**< Media age rating pinyin*/
1132
1133 /**
1134  * @brief You can use above define to set the condition of media filter and order keyword.
1135  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1136  *
1137  */
1138 #define MEDIA_KEYWORD_PINYIN "MEDIA_KEYWORD_PINYIN"  /**< Media keyword pinyin*/
1139
1140 /**
1141  * @brief You can use above define to set the condition of media filter and order keyword.
1142  * @since_tizen 3.0
1143  *
1144  */
1145 #define MEDIA_360 "MEDIA_360"  /**< Virtual Reality content*/
1146
1147 /**
1148  * @}
1149  */
1150
1151
1152 /**
1153  * @addtogroup CAPI_CONTENT_MEDIA_FOLDER_MODULE
1154  * @{
1155  */
1156
1157  /**
1158  * @brief You can use above define to set the condition of folder filter and order keyword.
1159  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1160  */
1161 #define FOLDER_ID "FOLDER_ID"  /**< Folder ID */
1162
1163 /**
1164 * @brief You can use above define to set the condition of folder filter and order keyword.
1165 * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1166 */
1167 #define FOLDER_PATH "FOLDER_PATH"  /**< Folder full path */
1168
1169 /**
1170 * @brief You can use above define to set the condition of folder filter and order keyword.
1171 * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1172 */
1173 #define FOLDER_NAME "FOLDER_NAME"  /**< Folder base name */
1174
1175 /**
1176 * @brief You can use above define to set the condition of folder filter and order keyword.
1177 * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1178 */
1179 #define FOLDER_MODIFIED_TIME "FOLDER_MODIFIED_TIME"  /**< Folder modified time */
1180
1181 /**
1182 * @brief You can use above define to set the condition of folder filter and order keyword.
1183 * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1184 */
1185 #define FOLDER_STORAGE_TYPE "FOLDER_STORAGE_TYPE"  /**< Folder storage. 0-internal storage, 1-external storage*/
1186
1187 /**
1188 * @brief You can use above define to set the condition of folder filter and order keyword.
1189 * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1190 */
1191 #define FOLDER_NAME_PINYIN "FOLDER_NAME_PINYIN"  /**< Folder base name pinyin*/
1192
1193 /**
1194  * @brief You can use above define to set the condition of folder filter and order keyword.
1195  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
1196  */
1197 #define FOLDER_ORDER "FOLDER_ORDER"  /**< Folder order info */
1198
1199 /**
1200  * @brief You can use above define to set the condition of folder filter and order keyword.
1201  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
1202  */
1203 #define FOLDER_PARENT_FOLDER_ID "FOLDER_PARENT_FOLDER_ID"       /**< parent folder id */
1204
1205 /**
1206  * @}
1207  */
1208
1209 /**
1210  * @addtogroup CAPI_CONTENT_MEDIA_PLAYLIST_MODULE
1211  * @{
1212  * @brief You can use above define to set the condition of playlist filter and order keyword.
1213  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1214  */
1215 #define PLAYLIST_NAME "PLAYLIST_NAME"  /**< Playlist name */
1216
1217 /**
1218  * @brief You can use above define to set the condition of playlist filter and order keyword.
1219  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1220  */
1221 #define PLAYLIST_MEMBER_ORDER "PLAYLIST_MEMBER_ORDER"  /**< Playlist name */
1222
1223 /**
1224  * @brief You can use above define to set the condition of playlist filter and order keyword.
1225  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1226  */
1227 #define PLAYLIST_MEDIA_COUNT "PLAYLIST_MEDIA_COUNT"  /**< Media count in playlist view */
1228
1229 /**
1230  * @}
1231  */
1232
1233 /**
1234  * @addtogroup CAPI_CONTENT_MEDIA_TAG_MODULE
1235  * @{
1236  * @brief You can use above define to set the condition of tag filter and order keyword.
1237  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1238  */
1239 #define TAG_NAME "TAG_NAME"  /**< Tag name */
1240
1241 /**
1242  * @brief You can use above define to set the condition of tag filter and order keyword.
1243  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1244  */
1245 #define TAG_MEDIA_COUNT "TAG_MEDIA_COUNT"  /**< Media count in tag view */
1246
1247 /**
1248  * @}
1249  */
1250
1251 /**
1252  * @addtogroup CAPI_CONTENT_MEDIA_BOOKMARK_MODULE
1253  * @{
1254  * @brief You can use above define to set the condition of bookmark filter and order keyword.
1255  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
1256  */
1257 #define BOOKMARK_MARKED_TIME "BOOKMARK_MARKED_TIME"  /**< Bookmark marked time */
1258
1259 /**
1260  * @}
1261  */
1262
1263 /**
1264  * @addtogroup CAPI_CONTENT_MEDIA_STORAGE_MODULE
1265  * @{
1266  * @brief You can use above define to set the condition of storage filter and order keyword.
1267  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
1268  */
1269 #define MEDIA_STORAGE_ID                                        "STORAGE_ID"  /**< Storage ID */
1270
1271 /**
1272  * @brief You can use above define to set the condition of storage filter and order keyword.
1273  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
1274  */
1275 #define MEDIA_STORAGE_PATH                              "STORAGE_PATH"  /**< Storage path */
1276
1277 /**
1278  * @brief You can use above define to set the condition of face filter and order keyword.
1279  * @since_tizen 3.0
1280  */
1281 #define MEDIA_FACE_TAG                                          "MEDIA_FACE_TAG"        /**< face tag */
1282
1283 /**
1284  * @}
1285  */
1286
1287
1288 #ifdef __cplusplus
1289 }
1290 #endif /* __cplusplus */
1291
1292
1293 #endif /*__TIZEN_MEDIA_CONTENT_TYPE_H__*/