1. Add new API - mm_camcorder_get_fps_list_by_resolution
[platform/core/multimedia/libmm-camcorder.git] / src / include / mm_camcorder.h
1 /*
2  * libmm-camcorder
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Jeongmo Yang <jm80.yang@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22 /**
23         @addtogroup CAMCORDER
24         @{
25
26         @par
27         This part describes the APIs with repect to Multimedia Camcorder.
28         Camcorder is for recording audio and video from audio and video input devices, capturing
29         still image from video input device, and audio recording from audio input
30         device.
31
32         @par
33         Camcorder can be reached by calling functions as shown in the following
34         figure, "The State of Camcorder".
35
36         @par
37         @image html     camcorder_state.png     "The State of Camcorder"        width=12cm
38         @image latex    camcorder_state.png     "The State of Camcorder"        width=12cm
39
40         @par
41         Between each states there is intermediate state, and in this state,
42         any function call which change the camcorder state will be failed.
43
44         @par
45         Recording state and paused state exists when the mode of camcorder is
46         video-capture or audio-capture mode. In case of image-capture mode, CAPTURING state will 
47         exsit.
48
49         @par
50 <div>
51 <table>
52         <tr>
53                 <td>FUNCTION</td>
54                 <td>PRE-STATE</td>
55                 <td>POST-STATE</td>
56                 <td>SYNC TYPE</td>
57         </tr>
58         <tr>
59                 <td>mm_camcorder_create()</td>
60                 <td>NONE</td>
61                 <td>NULL</td>
62                 <td>SYNC</td>
63         </tr>
64         <tr>
65                 <td>mm_camcorder_destroy()</td>
66                 <td>NULL</td>
67                 <td>NONE</td>
68                 <td>SYNC</td>
69         </tr>
70         <tr>
71                 <td>mm_camcorder_realize()</td>
72                 <td>NULL</td>
73                 <td>READY</td>
74                 <td>SYNC</td>
75         </tr>
76         <tr>
77                 <td>mm_camcorder_unrealize()</td>
78                 <td>READY</td>
79                 <td>NULL</td>
80                 <td>SYNC</td>
81         </tr>
82         <tr>
83                 <td>mm_camcorder_start()</td>
84                 <td>READY</td>
85                 <td>PREPARED</td>
86                 <td>SYNC</td>
87         </tr>
88         <tr>
89                 <td>mm_camcorder_stop()</td>
90                 <td>PREPARED</td>
91                 <td>READY</td>
92                 <td>SYNC</td>
93         </tr>
94         <tr>
95                 <td>mm_camcorder_capture_start()</td>
96                 <td>PREPARED</td>
97                 <td>CAPTURING</td>
98                 <td>SYNC</td>
99         </tr>
100         <tr>
101                 <td>mm_camcorder_capture_stop()</td>
102                 <td>CAPTURING</td>
103                 <td>PREPARED</td>
104                 <td>SYNC</td>
105         </tr>
106         <tr>
107                 <td>mm_camcorder_record()</td>
108                 <td>PREPARED/PAUSED</td>
109                 <td>RECORDING</td>
110                 <td>SYNC</td>
111         </tr>
112         <tr>
113                 <td>mm_camcorder_pause()</td>
114                 <td>RECORDING</td>
115                 <td>PAUSED</td>
116                 <td>SYNC</td>
117         </tr>
118         <tr>
119                 <td>mm_camcorder_commit()</td>
120                 <td>RECORDING/PAUSED</td>
121                 <td>PREPARED</td>
122                 <td>SYNC</td>
123         </tr>
124         <tr>
125                 <td>mm_camcorder_cancel()</td>
126                 <td>RECORDING/PAUSED</td>
127                 <td>PREPARED</td>
128                 <td>SYNC</td>
129         </tr>
130         <tr>
131                 <td>mm_camcorder_set_message_callback()</td>
132                 <td>N/A</td>
133                 <td>N/A</td>
134                 <td>SYNC</td>
135         </tr>
136         <tr>
137                 <td>mm_camcorder_set_video_stream_callback()</td>
138                 <td>N/A</td>
139                 <td>N/A</td>
140                 <td>SYNC</td>
141         </tr>
142         <tr>
143                 <td>mm_camcorder_set_video_capture_callback()</td>
144                 <td>N/A</td>
145                 <td>N/A</td>
146                 <td>SYNC</td>
147         </tr>
148         <tr>
149                 <td>mm_camcorder_get_state()</td>
150                 <td>N/A</td>
151                 <td>N/A</td>
152                 <td>SYNC</td>
153         </tr>
154         <tr>
155                 <td>mm_camcorder_get_attributes()</td>
156                 <td>N/A</td>
157                 <td>N/A</td>
158                 <td>SYNC</td>
159         </tr>
160         <tr>
161                 <td>mm_camcorder_set_attributes()</td>
162                 <td>N/A</td>
163                 <td>N/A</td>
164                 <td>SYNC</td>
165         </tr>
166         <tr>
167                 <td>mm_camcorder_get_attribute_info()</td>
168                 <td>N/A</td>
169                 <td>N/A</td>
170                 <td>SYNC</td>
171         </tr>
172         <tr>
173                 <td>mm_camcorder_init_focusing()</td>
174                 <td>N/A</td>
175                 <td>N/A</td>
176                 <td>SYNC</td>
177         </tr>
178         <tr>
179                 <td>mm_camcorder_start_focusing()</td>
180                 <td>N/A</td>
181                 <td>N/A</td>
182                 <td>SYNC</td>
183         </tr>
184         <tr>
185                 <td>mm_camcorder_stop_focusing()</td>
186                 <td>N/A</td>
187                 <td>N/A</td>
188                 <td>SYNC</td>
189         </tr>
190 </table>
191 </div>
192
193         @par
194         * Attribute @n
195         Attribute system is an interface to operate camcorder. Depending on each attribute, camcorder behaves differently.
196         Attribute system provides get/set functions. Setting proper attributes, a user can control camcorder as he want. (mm_camcorder_set_attributes())
197         Also, a user can comprehend current status of the camcorder, calling getter function(mm_camcorder_get_attributes()). 
198         Beware, arguments of mm_camcorder_set_attributes() and mm_camcorder_get_attributes() should be finished with 'NULL'.
199         This is a rule for the variable argument.
200         @par
201         Besides its value, each Attribute also has 'type' and 'validity type'. 'type' describes variable type that the attribute can get.
202         If you input a value that has wrong type, camcorder will not work properly or be crashed. 'validity' describes array or
203         range of values that are able to set to the attribute. 'validity type' defines type of the 'validity'.
204         @par
205         A user can retrieve these values using mm_camcorder_get_attribute_info().
206         Following tables have 'Attribute name', 'Attribute macro', 'Type', and 'Validity type'. You can refer '#MMCamAttrsType' and '#MMCamAttrsValidType'
207         for discerning 'Type' and 'Validity type'.
208
209
210         @par
211         Following are the attributes which should be set before initialization (#mm_camcorder_realize):
212
213         @par
214 <div>
215 <table>
216         <tr>
217                 <td><center><b>Attribute</b></center></td>
218                 <td><center><b>Description</b></center></td>
219         </tr>
220         <tr>
221                 <td>#MMCAM_MODE</td>
222                 <td>Mode of camcorder ( still/video/audio )</td>
223         </tr>
224         <tr>
225                 <td>#MMCAM_AUDIO_DEVICE</td>
226                 <td>Audio device ID for capturing audio stream</td>
227         </tr>
228         <tr>
229                 <td>#MMCAM_CAMERA_DEVICE_COUNT</td>
230                 <td>Video device count</td>
231         </tr>
232         <tr>
233                 <td>#MMCAM_AUDIO_ENCODER</td>
234                 <td>Audio codec for encoding audio stream</td>
235         </tr>
236         <tr>
237                 <td>#MMCAM_VIDEO_ENCODER</td>
238                 <td>Video codec for encoding video stream</td>
239         </tr>
240         <tr>
241                 <td>#MMCAM_IMAGE_ENCODER</td>
242                 <td>Image codec for capturing still-image</td>
243         </tr>
244         <tr>
245                 <td>#MMCAM_FILE_FORMAT</td>
246                 <td>File format for recording media stream</td>
247         </tr>
248         <tr>
249                 <td>#MMCAM_AUDIO_SAMPLERATE</td>
250                 <td>Sampling rate of audio stream ( This is an integer field )</td>
251         </tr>
252         <tr>
253                 <td>#MMCAM_AUDIO_FORMAT</td>
254                 <td>Audio format of each sample</td>
255         </tr>
256         <tr>
257                 <td>#MMCAM_AUDIO_CHANNEL</td>
258                 <td>Channels of each sample ( This is an integer field )</td>
259         </tr>
260         <tr>
261                 <td>#MMCAM_AUDIO_INPUT_ROUTE(deprecated)</td>
262                 <td>Set audio input route</td>
263         </tr>
264         <tr>
265                 <td>#MMCAM_CAMERA_FORMAT</td>
266                 <td>Format of video stream. This is an integer field</td>
267         </tr>
268         <tr>
269                 <td>#MMCAM_CAMERA_FPS</td>
270                 <td>Frames per second ( This is an integer field )</td>
271         </tr>
272         <tr>
273                 <td>#MMCAM_CAMERA_WIDTH</td>
274                 <td>Width of input video stream</td>
275         </tr>
276         <tr>
277                 <td>#MMCAM_CAMERA_HEIGHT</td>
278                 <td>Height of input video stream</td>
279         </tr>
280         <tr>
281                 <td>#MMCAM_CAMERA_FPS_AUTO</td>
282                 <td>FPS Auto. When you set true to this attribute, FPS will vary depending on the amount of the light.</td>
283         </tr>
284         <tr>
285                 <td>#MMCAM_DISPLAY_HANDLE</td>
286                 <td>Pointer of display buffer or ID of xwindow</td>
287         </tr>
288         <tr>
289                 <td>#MMCAM_DISPLAY_DEVICE</td>
290                 <td>Device of display</td>
291         </tr>
292         <tr>
293                 <td>#MMCAM_DISPLAY_SURFACE</td>
294                 <td>Surface of display</td>
295         </tr>
296         <tr>
297                 <td>#MMCAM_DISPLAY_SOURCE_X</td>
298                 <td>X position of source rectangle. When you want to crop the source, you can set the area with this value.</td>
299         </tr>
300         <tr>
301                 <td>#MMCAM_DISPLAY_SOURCE_Y</td>
302                 <td>Y position of source rectangle. When you want to crop the source, you can set the area with this value.</td>
303         </tr>
304         <tr>
305                 <td>#MMCAM_DISPLAY_SOURCE_WIDTH</td>
306                 <td>Width of source rectangle. When you want to crop the source, you can set the area with this value.</td>
307         </tr>
308         <tr>
309                 <td>#MMCAM_DISPLAY_SOURCE_HEIGHT</td>
310                 <td>Height of source rectangle. When you want to crop the source, you can set the area with this value.</td>
311         </tr>
312         <tr>
313                 <td>#MMCAM_DISPLAY_ROTATION</td>
314                 <td>Rotation of display</td>
315         </tr>
316         <tr>
317                 <td>#MMCAM_DISPLAY_VISIBLE</td>
318                 <td>Visible of display</td>
319         </tr>
320         <tr>
321                 <td>#MMCAM_DISPLAY_SCALE</td>
322                 <td>A scale of displayed image</td>
323         </tr>
324         <tr>
325                 <td>#MMCAM_DISPLAY_GEOMETRY_METHOD</td>
326                 <td>A method that describes a form of geometry for display</td>
327         </tr>
328 </table>
329 </div>
330
331         @par
332         Following are the attributes which should be set before recording (mm_camcorder_record()):
333
334         @par
335 <div>
336 <table>
337         <tr>
338                 <td><center><b>Attribute</b></center></td>
339                 <td><center><b>Description</b></center></td>
340         </tr>
341         <tr>
342                 <td>#MMCAM_AUDIO_ENCODER_BITRATE</td>
343                 <td>Bitrate of Audio Encoder</td>
344         </tr>
345         <tr>
346                 <td>#MMCAM_VIDEO_ENCODER_BITRATE</td>
347                 <td>Bitrate of Video Encoder</td>
348         </tr>
349         <tr>
350                 <td>#MMCAM_TARGET_FILENAME</td>
351                 <td>Target filename. Only used in Audio/Video recording. This is not used for capturing.</td>
352         </tr>
353         <tr>
354                 <td>#MMCAM_TARGET_MAX_SIZE</td>
355                 <td>Maximum size of recording file(Kbyte). If the size of file reaches this value.</td>
356         </tr>
357         <tr>
358                 <td>#MMCAM_TARGET_TIME_LIMIT</td>
359                 <td>Time limit of recording file. If the elapsed time of recording reaches this value.</td>
360         </tr>
361 </table>
362 </div>
363
364         @par
365         Following are the attributes which should be set before capturing (mm_camcorder_capture_start()):
366
367         @par
368 <div>
369 <table>
370         <tr>
371                 <td><center><b>Attribute</b></center></td>
372                 <td><center><b>Description</b></center></td>
373         </tr>
374         <tr>
375                 <td>#MMCAM_IMAGE_ENCODER_QUALITY</td>
376                 <td>Encoding quality of Image codec</td>
377         </tr>
378         <tr>
379                 <td>#MMCAM_CAPTURE_FORMAT</td>
380                 <td>Pixel format that you want to capture</td>
381         </tr>
382         <tr>
383                 <td>#MMCAM_CAPTURE_WIDTH</td>
384                 <td>Width of the image that you want to capture</td>
385         </tr>
386         <tr>
387                 <td>#MMCAM_CAPTURE_HEIGHT</td>
388                 <td>Height of the image that you want to capture</td>
389         </tr>
390         <tr>
391                 <td>#MMCAM_CAPTURE_COUNT</td>
392                 <td>Total count of capturing</td>
393         </tr>
394         <tr>
395                 <td>#MMCAM_CAPTURE_INTERVAL</td>
396                 <td>Interval between each capturing on Multishot ( MMCAM_CAPTURE_COUNT > 1 )</td>
397         </tr>
398 </table>
399 </div>
400
401         @par
402         Following are the attributes which can be set anytime:
403
404         @par
405 <div>
406 <table>
407         <tr>
408                 <td><center><b>Attribute</b></center></td>
409                 <td><center><b>Description</b></center></td>
410         </tr>
411         <tr>
412                 <td>#MMCAM_AUDIO_VOLUME</td>
413                 <td>Input volume of audio source ( double value )</td>
414         </tr>
415         <tr>
416                 <td>#MMCAM_CAMERA_DIGITAL_ZOOM</td>
417                 <td>Digital zoom level</td>
418         </tr>
419         <tr>
420                 <td>#MMCAM_CAMERA_OPTICAL_ZOOM</td>
421                 <td>Optical zoom level</td>
422         </tr>
423         <tr>
424                 <td>#MMCAM_CAMERA_FOCUS_MODE</td>
425                 <td>Focus mode</td>
426         </tr>
427         <tr>
428                 <td>#MMCAM_CAMERA_AF_SCAN_RANGE</td>
429                 <td>AF Scan range</td>
430         </tr>
431         <tr>
432                 <td>#MMCAM_CAMERA_AF_TOUCH_X</td>
433                 <td>X coordinate of touching position</td>
434         </tr>
435         <tr>
436                 <td>#MMCAM_CAMERA_AF_TOUCH_Y</td>
437                 <td>Y coordinate of touching position</td>
438         </tr>
439         <tr>
440                 <td>#MMCAM_CAMERA_AF_TOUCH_WIDTH</td>
441                 <td>Width of touching area</td>
442         </tr>
443         <tr>
444                 <td>#MMCAM_CAMERA_AF_TOUCH_HEIGHT</td>
445                 <td>Height of touching area</td>
446         </tr>
447         <tr>
448                 <td>#MMCAM_CAMERA_EXPOSURE_MODE</td>
449                 <td>Exposure mode</td>
450         </tr>
451         <tr>
452                 <td>#MMCAM_CAMERA_EXPOSURE_VALUE</td>
453                 <td>Exposure value</td>
454         </tr>
455         <tr>
456                 <td>#MMCAM_CAMERA_F_NUMBER</td>
457                 <td>f number of camera</td>
458         </tr>
459         <tr>
460                 <td>#MMCAM_CAMERA_SHUTTER_SPEED</td>
461                 <td>Shutter speed</td>
462         </tr>
463         <tr>
464                 <td>#MMCAM_CAMERA_ISO</td>
465                 <td>ISO of capturing image</td>
466         </tr>
467         <tr>
468                 <td>#MMCAM_CAMERA_WDR</td>
469                 <td>Wide dynamic range</td>
470         </tr>
471         <tr>
472                 <td>#MMCAM_CAMERA_ANTI_HANDSHAKE</td>
473                 <td>Anti Handshake</td>
474         </tr>
475         <tr>
476                 <td>#MMCAM_CAMERA_FOCAL_LENGTH</td>
477                 <td>Focal length of camera lens</td>
478         </tr>
479         <tr>
480                 <td>#MMCAM_FILTER_BRIGHTNESS</td>
481                 <td>Brightness level</td>
482         </tr>
483         <tr>
484                 <td>#MMCAM_FILTER_CONTRAST</td>
485                 <td>Contrast level</td>
486         </tr>
487         <tr>
488                 <td>#MMCAM_FILTER_WB</td>
489                 <td>White balance</td>
490         </tr>
491         <tr>
492                 <td>#MMCAM_FILTER_COLOR_TONE</td>
493                 <td>Color tone (Color effect)</td>
494         </tr>
495         <tr>
496                 <td>#MMCAM_FILTER_SCENE_MODE</td>
497                 <td>Scene mode (Program mode)</td>
498         </tr>
499         <tr>
500                 <td>#MMCAM_FILTER_SATURATION</td>
501                 <td>Saturation level</td>
502         </tr>
503         <tr>
504                 <td>#MMCAM_FILTER_HUE</td>
505                 <td>Hue level</td>
506         </tr>
507         <tr>
508                 <td>#MMCAM_FILTER_SHARPNESS</td>
509                 <td>Sharpness level</td>
510         </tr>
511         <tr>
512                 <td>#MMCAM_CAPTURE_BREAK_CONTINUOUS_SHOT</td>
513                 <td>Set this as true when you want to stop multishot immediately</td>
514         </tr>
515         <tr>
516                 <td>#MMCAM_DISPLAY_RECT_X</td>
517                 <td>X position of display rectangle (This is only available when MMCAM_DISPLAY_GEOMETRY_METHOD is MM_CAMCORDER_CUSTOM_ROI)</td>
518         </tr>
519         <tr>
520                 <td>#MMCAM_DISPLAY_RECT_Y</td>
521                 <td>Y position of display rectangle (This is only available when MMCAM_DISPLAY_GEOMETRY_METHOD is MM_CAMCORDER_CUSTOM_ROI)</td>
522         </tr>
523         <tr>
524                 <td>#MMCAM_DISPLAY_RECT_WIDTH</td>
525                 <td>Width of display rectangle (This is only available when MMCAM_DISPLAY_GEOMETRY_METHOD is MM_CAMCORDER_CUSTOM_ROI)</td>
526         </tr>
527         <tr>
528                 <td>#MMCAM_DISPLAY_RECT_HEIGHT</td>
529                 <td>Height of display rectangle (This is only available when MMCAM_DISPLAY_GEOMETRY_METHOD is MM_CAMCORDER_CUSTOM_ROI)</td>
530         </tr>
531         <tr>
532                 <td>#MMCAM_TAG_ENABLE</td>
533                 <td>Enable to write tags (If this value is FALSE, none of tag information will be written to captured file)</td>
534         </tr>
535         <tr>
536                 <td>#MMCAM_TAG_IMAGE_DESCRIPTION</td>
537                 <td>Image description</td>
538         </tr>
539         <tr>
540                 <td>#MMCAM_TAG_ORIENTATION</td>
541                 <td>Orientation of captured image</td>
542         </tr>
543         <tr>
544                 <td>#MMCAM_TAG_VIDEO_ORIENTATION</td>
545                 <td>Orientation of encoded video</td>
546         </tr>
547         <tr>
548                 <td>#MMCAM_TAG_SOFTWARE</td>
549                 <td>software name and version</td>
550         </tr>
551         <tr>
552                 <td>#MMCAM_TAG_LATITUDE</td>
553                 <td>Latitude of captured postion (GPS information)</td>
554         </tr>
555         <tr>
556                 <td>#MMCAM_TAG_LONGITUDE</td>
557                 <td>Longitude of captured postion (GPS information)</td>
558         </tr>
559         <tr>
560                 <td>#MMCAM_TAG_ALTITUDE</td>
561                 <td>Altitude of captured postion (GPS information)</td>
562         </tr>
563         <tr>
564                 <td>#MMCAM_STROBE_CONTROL</td>
565                 <td>Strobe control</td>
566         </tr>
567         <tr>
568                 <td>#MMCAM_STROBE_MODE</td>
569                 <td>Operation Mode of strobe</td>
570         </tr>
571         <tr>
572                 <td>#MMCAM_DETECT_MODE</td>
573                 <td>Detection mode</td>
574         </tr>
575         <tr>
576                 <td>#MMCAM_DETECT_NUMBER</td>
577                 <td>Total number of detected object</td>
578         </tr>
579         <tr>
580                 <td>#MMCAM_DETECT_FOCUS_SELECT</td>
581                 <td>Select one of detected objects</td>
582         </tr>
583 </table>
584 </div>
585  */
586
587
588
589 #ifndef __MM_CAMCORDER_H__
590 #define __MM_CAMCORDER_H__
591
592
593 /*=======================================================================================
594 | INCLUDE FILES                                                                         |
595 ========================================================================================*/
596 #include <glib.h>
597
598 #include <mm_types.h>
599 #include <mm_error.h>
600 #include <mm_message.h>
601
602 #ifdef __cplusplus
603 extern "C" {
604 #endif
605
606 /*=======================================================================================
607 | GLOBAL DEFINITIONS AND DECLARATIONS FOR CAMCORDER                                     |
608 ========================================================================================*/
609
610 /*=======================================================================================
611 | MACRO DEFINITIONS                                                                     |
612 ========================================================================================*/
613 /**
614  * Get numerator. Definition for fraction setting, such as MMCAM_CAMERA_SHUTTER_SPEED and MMCAM_CAMERA_EXPOSURE_VALUE.
615  */
616 #define MM_CAMCORDER_GET_NUMERATOR(x)                                   ((int)(((int)(x) >> 16) & 0xFFFF))
617 /**
618  * Get denominator. Definition for fraction setting, such as MMCAM_CAMERA_SHUTTER_SPEED and MMCAM_CAMERA_EXPOSURE_VALUE.
619  */
620 #define MM_CAMCORDER_GET_DENOMINATOR(x)                                 ((int)(((int)(x)) & 0xFFFF))
621 /**
622  * Set fraction value. Definition for fraction setting, such as MMCAM_CAMERA_SHUTTER_SPEED and MMCAM_CAMERA_EXPOSURE_VALUE.
623  */
624 #define MM_CAMCORDER_SET_FRACTION(numerator,denominator)        ((int)((((int)(numerator)) << 16) | (int)(denominator)))
625
626 /* Attributes Macros */
627 /**
628  * Mode of camcorder (still/video/audio).
629  * @see         MMCamcorderModeType
630  */
631 #define MMCAM_MODE                              "mode"
632
633 /**
634  * Audio device ID for capturing audio stream.
635  * @see         MMAudioDeviceType (in mm_types.h)
636  */
637 #define MMCAM_AUDIO_DEVICE                      "audio-device"
638
639 /**
640  * Video device count.
641  */
642 #define MMCAM_CAMERA_DEVICE_COUNT               "camera-device-count"
643
644 /**
645  * Facing direction of camera device.
646  * @see         MMCamcorderCameraFacingDirection
647  */
648 #define MMCAM_CAMERA_FACING_DIRECTION           "camera-facing-direction"
649
650 /**
651  * Audio codec for encoding audio stream.
652  * @see         MMAudioCodecType  (in mm_types.h)
653  */
654 #define MMCAM_AUDIO_ENCODER                     "audio-encoder"
655
656 /**
657  * Video codec for encoding video stream.
658  * @see         MMVideoCodecType (in mm_types.h)
659  */
660 #define MMCAM_VIDEO_ENCODER                     "video-encoder"
661
662 /**
663  * Image codec for capturing still-image.
664  * @see         MMImageCodecType (in mm_types.h)
665  */
666 #define MMCAM_IMAGE_ENCODER                     "image-encoder"
667
668 /**
669  * File format for recording media stream.
670  * @see         MMFileFormatType (in mm_types.h)
671  */
672 #define MMCAM_FILE_FORMAT                       "file-format"
673
674 /**
675  * Sampling rate of audio stream. This is an integer field.
676  */
677 #define MMCAM_AUDIO_SAMPLERATE                  "audio-samplerate"
678
679 /**
680  * Audio format of each sample.
681  * @see         MMCamcorderAudioFormat
682  */
683 #define MMCAM_AUDIO_FORMAT                      "audio-format"
684
685 /**
686  * Channels of each sample. This is an integer field.
687  */
688 #define MMCAM_AUDIO_CHANNEL                     "audio-channel"
689
690 /**
691  * Input volume of audio source. Double value.
692  */
693 #define MMCAM_AUDIO_VOLUME                      "audio-volume"
694
695 /**
696  * Disable Audio stream when record.
697  */
698 #define MMCAM_AUDIO_DISABLE                     "audio-disable"
699
700 /**
701  * Set audio input route
702  * @remarks     Deprecated. This will be removed soon.
703  * @see         MMAudioRoutePolicy (in mm_types.h)
704  */
705 #define MMCAM_AUDIO_INPUT_ROUTE                 "audio-input-route"
706
707 /**
708  * Format of video stream. This is an integer field
709  * @see         MMPixelFormatType (in mm_types.h)
710  */
711 #define MMCAM_CAMERA_FORMAT                     "camera-format"
712
713 /**
714  * Slow motion rate when video recording
715  * @remarks     Deprecated
716  */
717 #define MMCAM_CAMERA_SLOW_MOTION_RATE           "camera-slow-motion-rate"
718
719 /**
720  * Motion rate when video recording
721  * @remarks     This should be bigger than 0(zero).
722  *              Default value is 1 and it's for normal video recording.
723  *              If the value is smaller than 1, recorded file will be played slower,
724  *              otherwise, recorded file will be played faster.
725  */
726 #define MMCAM_CAMERA_RECORDING_MOTION_RATE      "camera-recording-motion-rate"
727
728 /**
729  * Frames per second. This is an integer field
730  *
731  */
732 #define MMCAM_CAMERA_FPS                        "camera-fps"
733
734 /**
735  * Width of preview stream.
736  */
737 #define MMCAM_CAMERA_WIDTH                      "camera-width"
738
739 /**
740  * Height of preview stream.
741  */
742 #define MMCAM_CAMERA_HEIGHT                     "camera-height"
743
744 /**
745  * Width of video stream.
746  */
747 #define MMCAM_VIDEO_WIDTH                       "video-width"
748
749 /**
750  * Height of video stream.
751  */
752 #define MMCAM_VIDEO_HEIGHT                      "video-height"
753
754 /**
755  * Digital zoom level.
756  */
757 #define MMCAM_CAMERA_DIGITAL_ZOOM               "camera-digital-zoom"
758
759 /**
760  * Optical zoom level.
761  */
762 #define MMCAM_CAMERA_OPTICAL_ZOOM               "camera-optical-zoom"
763
764 /**
765  * Focus mode
766  * @see         MMCamcorderFocusMode
767  */
768 #define MMCAM_CAMERA_FOCUS_MODE                 "camera-focus-mode"
769
770 /**
771  * AF Scan range
772  * @see         MMCamcorderAutoFocusType
773  */
774 #define MMCAM_CAMERA_AF_SCAN_RANGE              "camera-af-scan-range"
775
776 /**
777  * X coordinate of touching position. Only available when you set '#MM_CAMCORDER_AUTO_FOCUS_TOUCH' to '#MMCAM_CAMERA_AF_SCAN_RANGE'.
778  * @see         MMCamcorderAutoFocusType
779  */
780 #define MMCAM_CAMERA_AF_TOUCH_X                 "camera-af-touch-x"
781
782 /**
783  * Y coordinate of touching position. Only available when you set '#MM_CAMCORDER_AUTO_FOCUS_TOUCH' to '#MMCAM_CAMERA_AF_SCAN_RANGE'.
784  * @see         MMCamcorderAutoFocusType
785  */
786 #define MMCAM_CAMERA_AF_TOUCH_Y                 "camera-af-touch-y"
787
788 /**
789  * Width of touching area. Only available when you set '#MM_CAMCORDER_AUTO_FOCUS_TOUCH' to '#MMCAM_CAMERA_AF_SCAN_RANGE'.
790  * @see         MMCamcorderAutoFocusType
791  */
792 #define MMCAM_CAMERA_AF_TOUCH_WIDTH             "camera-af-touch-width"
793
794 /**
795  * Height of touching area. Only available when you set '#MM_CAMCORDER_AUTO_FOCUS_TOUCH' to '#MMCAM_CAMERA_AF_SCAN_RANGE'.
796  * @see         MMCamcorderAutoFocusType
797  */
798 #define MMCAM_CAMERA_AF_TOUCH_HEIGHT            "camera-af-touch-height"
799
800 /**
801  * Exposure mode
802  * @see         MMCamcorderAutoExposureType
803  */
804 #define MMCAM_CAMERA_EXPOSURE_MODE              "camera-exposure-mode"
805
806 /**
807  * Exposure value
808  */
809 #define MMCAM_CAMERA_EXPOSURE_VALUE             "camera-exposure-value"
810
811 /**
812  * f number of camera
813  */
814 #define MMCAM_CAMERA_F_NUMBER                   "camera-f-number"
815
816 /**
817  * Shutter speed
818  */
819 #define MMCAM_CAMERA_SHUTTER_SPEED              "camera-shutter-speed"
820
821 /**
822  * ISO of capturing image
823  * @see         MMCamcorderISOType
824  */
825 #define MMCAM_CAMERA_ISO                        "camera-iso"
826
827 /**
828  * Wide dynamic range.
829  * @see         MMCamcorderWDRMode
830  */
831 #define MMCAM_CAMERA_WDR                        "camera-wdr"
832
833 /**
834  * Focal length of camera lens.
835  */
836 #define MMCAM_CAMERA_FOCAL_LENGTH               "camera-focal-length"
837
838 /**
839  * Anti Handshake
840  * @see         MMCamcorderAHSMode
841  */
842 #define MMCAM_CAMERA_ANTI_HANDSHAKE             "camera-anti-handshake"
843
844 /**
845  * Video Stabilization
846  * @see         MMCamcorderVideoStabilizationMode
847  */
848 #define MMCAM_CAMERA_VIDEO_STABILIZATION        "camera-video-stabilization"
849
850 /**
851  * FPS Auto. When you set true to this attribute, FPS will vary depending on the amount of the light.
852  */
853 #define MMCAM_CAMERA_FPS_AUTO                   "camera-fps-auto"
854
855 /**
856  * Rotation angle of video input stream.
857  * @see         MMVideoInputRotationType (in mm_types.h)
858  */
859 #define MMCAM_CAMERA_ROTATION                   "camera-rotation"
860
861 /**
862  * HDR(High Dynamic Range) Capture mode
863  * @see         MMCamcorderHDRMode
864  */
865 #define MMCAM_CAMERA_HDR_CAPTURE                "camera-hdr-capture"
866
867 /**
868  * Bitrate of Audio Encoder
869  */
870 #define MMCAM_AUDIO_ENCODER_BITRATE             "audio-encoder-bitrate"
871
872 /**
873  * Bitrate of Video Encoder
874  */
875 #define MMCAM_VIDEO_ENCODER_BITRATE             "video-encoder-bitrate"
876
877 /**
878  * Encoding quality of Image codec
879  */
880 #define MMCAM_IMAGE_ENCODER_QUALITY             "image-encoder-quality"
881
882 /**
883  * Brightness level
884  */
885 #define MMCAM_FILTER_BRIGHTNESS                 "filter-brightness"
886
887 /**
888  * Contrast level
889  */
890 #define MMCAM_FILTER_CONTRAST                   "filter-contrast"
891
892 /**
893  * White balance
894  * @see         MMCamcorderWhiteBalanceType
895  */
896 #define MMCAM_FILTER_WB                         "filter-wb"
897
898 /**
899  * Color tone. (Color effect)
900  * @see         MMCamcorderColorToneType
901  */
902 #define MMCAM_FILTER_COLOR_TONE                 "filter-color-tone"
903
904 /**
905  * Scene mode (Program mode)
906  * @see         MMCamcorderSceneModeType
907  */
908 #define MMCAM_FILTER_SCENE_MODE                 "filter-scene-mode"
909
910 /**
911  * Saturation  level
912  */
913 #define MMCAM_FILTER_SATURATION                 "filter-saturation"
914
915 /**
916  * Hue  level
917  */
918 #define MMCAM_FILTER_HUE                        "filter-hue"
919
920 /**
921  * Sharpness  level
922  */
923 #define MMCAM_FILTER_SHARPNESS                  "filter-sharpness"
924
925 /**
926  * Pixel format that you want to capture. If you set MM_PIXEL_FORMAT_ENCODED, 
927  * the result will be encoded by image codec specified in #MMCAM_IMAGE_ENCODER.
928  * If not, the result will be raw data.
929  *
930  * @see         MMPixelFormatType (in mm_types.h)
931  */
932 #define MMCAM_CAPTURE_FORMAT                    "capture-format"
933
934 /**
935  * Width of the image that you want to capture
936  */
937 #define MMCAM_CAPTURE_WIDTH                     "capture-width"
938
939 /**
940  * Height of the image that you want to capture
941
942  */
943 #define MMCAM_CAPTURE_HEIGHT                    "capture-height"
944
945 /**
946  * Total count of capturing. If you set this, it will caputre multiple time.
947  */
948 #define MMCAM_CAPTURE_COUNT                     "capture-count"
949
950 /**
951  * Interval between each capturing on Multishot.
952  */
953 #define MMCAM_CAPTURE_INTERVAL                  "capture-interval"
954
955 /**
956  * Set this when you want to stop multishot immediately.
957  */
958 #define MMCAM_CAPTURE_BREAK_CONTINUOUS_SHOT     "capture-break-cont-shot"
959
960 /**
961  * Raw data of captured image which resolution is same as preview.
962  * This is READ-ONLY attribute and only available in capture callback.
963  * This should be used after casted as MMCamcorderCaptureDataType.
964  */
965 #define MMCAM_CAPTURED_SCREENNAIL               "captured-screennail"
966
967 /**
968  * Raw data of EXIF. This is READ-ONLY attribute and only available in capture callback.
969  */
970 #define MMCAM_CAPTURED_EXIF_RAW_DATA            "captured-exif-raw-data"
971
972 /**
973  * Pointer of display buffer or ID of xwindow.
974  */
975 #define MMCAM_DISPLAY_HANDLE                    "display-handle"
976
977 /**
978  * Device of display.
979  * @see         MMDisplayDeviceType (in mm_types.h)
980  */
981 #define MMCAM_DISPLAY_DEVICE                    "display-device"
982
983 /**
984  * Surface of display.
985  * @see         MMDisplaySurfaceType (in mm_types.h)
986  */
987 #define MMCAM_DISPLAY_SURFACE                    "display-surface"
988
989 /**
990  * Mode of display.
991  * @see         MMDisplayModeType (in mm_types.h)
992  */
993 #define MMCAM_DISPLAY_MODE                       "display-mode"
994
995 /**
996  * X position of display rectangle.
997  * This is only available when #MMCAM_DISPLAY_GEOMETRY_METHOD is MM_CAMCORDER_CUSTOM_ROI.
998  * @see         MMCamcorderGeometryMethod
999  */
1000 #define MMCAM_DISPLAY_RECT_X                    "display-rect-x"
1001
1002 /**
1003  * Y position of display rectangle
1004  * This is only available when #MMCAM_DISPLAY_GEOMETRY_METHOD is MM_CAMCORDER_CUSTOM_ROI.
1005  * @see         MMCamcorderGeometryMethod
1006  */
1007 #define MMCAM_DISPLAY_RECT_Y                    "display-rect-y"
1008
1009 /**
1010  * Width of display rectangle
1011  * This is only available when #MMCAM_DISPLAY_GEOMETRY_METHOD is MM_CAMCORDER_CUSTOM_ROI.
1012  * @see         MMCamcorderGeometryMethod
1013  */
1014 #define MMCAM_DISPLAY_RECT_WIDTH                "display-rect-width"
1015
1016 /**
1017  * Height of display rectangle
1018  * This is only available when #MMCAM_DISPLAY_GEOMETRY_METHOD is MM_CAMCORDER_CUSTOM_ROI.
1019  * @see         MMCamcorderGeometryMethod
1020  */
1021 #define MMCAM_DISPLAY_RECT_HEIGHT               "display-rect-height"
1022
1023 /**
1024  * X position of source rectangle. When you want to crop the source, you can set the area with this value.
1025  */
1026 #define MMCAM_DISPLAY_SOURCE_X                  "display-src-x"
1027
1028 /**
1029  * Y position of source rectangle. When you want to crop the source, you can set the area with this value.
1030  */
1031 #define MMCAM_DISPLAY_SOURCE_Y                  "display-src-y"
1032
1033 /**
1034  * Width of source rectangle. When you want to crop the source, you can set the area with this value.
1035  */
1036 #define MMCAM_DISPLAY_SOURCE_WIDTH              "display-src-width"
1037
1038 /**
1039  * Height of source rectangle. When you want to crop the source, you can set the area with this value.
1040  */
1041 #define MMCAM_DISPLAY_SOURCE_HEIGHT             "display-src-height"
1042
1043 /**
1044  * Rotation angle of display.
1045  * @see         MMDisplayRotationType (in mm_types.h)
1046  */
1047 #define MMCAM_DISPLAY_ROTATION                  "display-rotation"
1048
1049 /**
1050  * Flip of display.
1051  * @see         MMFlipType (in mm_types.h)
1052  */
1053 #define MMCAM_DISPLAY_FLIP                      "display-flip"
1054
1055 /**
1056  * Visible of display.
1057  */
1058 #define MMCAM_DISPLAY_VISIBLE                   "display-visible"
1059
1060 /**
1061  * A scale of displayed image. Available value is like below.
1062  * @see         MMDisplayScaleType (in mm_types.h)
1063  */
1064 #define MMCAM_DISPLAY_SCALE                     "display-scale"
1065
1066 /**
1067  * A method that describes a form of geometry for display.
1068  * @see         MMCamcorderGeometryMethod
1069  */
1070 #define MMCAM_DISPLAY_GEOMETRY_METHOD           "display-geometry-method"
1071
1072 /**
1073  * A videosink name of evas surface.
1074  * This is READ-ONLY attribute.
1075  */
1076 #define MMCAM_DISPLAY_EVAS_SURFACE_SINK         "display-evas-surface-sink"
1077
1078 /**
1079  * This attribute is only available if value of MMCAM_DISPLAY_EVAS_SURFACE_SINK "evaspixmapsink"
1080  */
1081 #define MMCAM_DISPLAY_EVAS_DO_SCALING           "display-evas-do-scaling"
1082
1083 /**
1084  * Target filename. Only used in Audio/Video recording. This is not used for capturing.
1085  */
1086 #define MMCAM_TARGET_FILENAME                   "target-filename"
1087
1088 /**
1089  * Maximum size(Kbyte) of recording file. If the size of file reaches this value,
1090  * camcorder will send 'MM_MESSAGE_CAMCORDER_MAX_SIZE' message.
1091  */
1092 #define MMCAM_TARGET_MAX_SIZE                   "target-max-size"
1093
1094 /**
1095  * Time limit(Second) of recording file. If the elapsed time of recording reaches this value, 
1096  * camcorder will send 'MM_MESSAGE_CAMCORDER_TIME_LIMIT' message.
1097  */
1098 #define MMCAM_TARGET_TIME_LIMIT                 "target-time-limit"
1099
1100 /**
1101  * Enable to write tags. If this value is FALSE, none of tag information will be written to captured file.
1102  */
1103 #define MMCAM_TAG_ENABLE                        "tag-enable"
1104
1105 /**
1106  * Image description.
1107  */
1108 #define MMCAM_TAG_IMAGE_DESCRIPTION             "tag-image-description"
1109
1110 /**
1111  * Orientation of captured image
1112  * @see         MMCamcorderTagOrientation
1113  */
1114 #define MMCAM_TAG_ORIENTATION                   "tag-orientation"
1115
1116 /**
1117  * Orientation of captured video
1118  * @see         MMCamcorderTagVideoOrientation
1119  */
1120 #define MMCAM_TAG_VIDEO_ORIENTATION            "tag-video-orientation"
1121
1122 /**
1123  * software name and version
1124  */
1125 #define MMCAM_TAG_SOFTWARE                      "tag-software"
1126
1127 /**
1128  * Enable to write tags related to GPS. If this value is TRUE, tags related GPS information will be written to captured file.
1129  */
1130 #define MMCAM_TAG_GPS_ENABLE                    "tag-gps-enable"
1131
1132 /**
1133  * Latitude of captured postion. GPS information.
1134  */
1135 #define MMCAM_TAG_LATITUDE                      "tag-latitude"
1136
1137 /**
1138  * Longitude of captured postion. GPS information.
1139  */
1140 #define MMCAM_TAG_LONGITUDE                     "tag-longitude"
1141
1142 /**
1143  * Altitude of captured postion. GPS information.
1144  */
1145 #define MMCAM_TAG_ALTITUDE                      "tag-altitude"
1146
1147 /**
1148  * Strobe control
1149  * @see         MMCamcorderStrobeControl
1150  */
1151 #define MMCAM_STROBE_CONTROL                    "strobe-control"
1152
1153 /**
1154  * Operation Mode of strobe
1155  * @see         MMCamcorderStrobeMode
1156  */
1157 #define MMCAM_STROBE_MODE                       "strobe-mode"
1158
1159 /**
1160  * Detection mode
1161  * @see         MMCamcorderDetectMode
1162  */
1163 #define MMCAM_DETECT_MODE                       "detect-mode"
1164
1165 /**
1166  * Total number of detected object
1167  */
1168 #define MMCAM_DETECT_NUMBER                     "detect-number"
1169
1170 /**
1171  * You can use this attribute to select one of detected objects.
1172  */
1173 #define MMCAM_DETECT_FOCUS_SELECT               "detect-focus-select"
1174
1175 /**
1176  * Recommend preview format for capture
1177  */
1178 #define MMCAM_RECOMMEND_PREVIEW_FORMAT_FOR_CAPTURE     "recommend-preview-format-for-capture"
1179
1180 /**
1181  * Recommend preview format for recording
1182  */
1183 #define MMCAM_RECOMMEND_PREVIEW_FORMAT_FOR_RECORDING   "recommend-preview-format-for-recording"
1184
1185 /**
1186  * Recommend rotation of display
1187  */
1188 #define MMCAM_RECOMMEND_DISPLAY_ROTATION        "recommend-display-rotation"
1189
1190 /**
1191  * Recommend width of camera preview.
1192  * This attribute can be used with #mm_camcorder_get_attribute_info and #MMCamcorderPreviewType.
1193  * @see         mm_camcorder_get_attribute_info, MMCamcorderPreviewType
1194  */
1195 #define MMCAM_RECOMMEND_CAMERA_WIDTH            "recommend-camera-width"
1196
1197 /**
1198  * Recommend height of camera preview
1199  * This attribute can be used with #mm_camcorder_get_attribute_info and #MMCamcorderPreviewType.
1200  * @see         mm_camcorder_get_attribute_info, MMCamcorderPreviewType
1201  */
1202 #define MMCAM_RECOMMEND_CAMERA_HEIGHT           "recommend-camera-height"
1203
1204 /**
1205  * Flip of video input stream.
1206  * @see         MMFlipType (in mm_types.h)
1207  */
1208 #define MMCAM_CAMERA_FLIP                       "camera-flip"
1209
1210 /**
1211  * Support Zero Shutter Lag capture
1212  */
1213 #define MMCAM_SUPPORT_ZSL_CAPTURE               "support-zsl-capture"
1214
1215 /**
1216 * Support zero copy format
1217 */
1218 #define MMCAM_SUPPORT_ZERO_COPY_FORMAT          "support-zero-copy-format"
1219
1220 /**
1221 * Support media packet callback
1222 */
1223 #define MMCAM_SUPPORT_MEDIA_PACKET_PREVIEW_CB   "support-media-packet-preview-cb"
1224
1225 /**
1226  * Enable to write tags for recorded file
1227  */
1228 #define MMCAM_RECORDER_TAG_ENABLE               "recorder-tag-enable"
1229
1230 /*=======================================================================================
1231 | ENUM DEFINITIONS                                                                      |
1232 ========================================================================================*/
1233 /**
1234  * An enumeration for camcorder states.
1235  */
1236 typedef enum {
1237         MM_CAMCORDER_STATE_NONE,                /**< Camcorder is not created yet */
1238         MM_CAMCORDER_STATE_NULL,                /**< Camcorder is created, but not initialized yet */
1239         MM_CAMCORDER_STATE_READY,               /**< Camcorder is ready to capture */
1240         MM_CAMCORDER_STATE_PREPARE,             /**< Camcorder is prepared to capture (Preview) */
1241         MM_CAMCORDER_STATE_CAPTURING,           /**< Camcorder is now capturing still images */
1242         MM_CAMCORDER_STATE_RECORDING,           /**< Camcorder is now recording */
1243         MM_CAMCORDER_STATE_PAUSED,              /**< Camcorder is paused while recording */
1244         MM_CAMCORDER_STATE_NUM,                 /**< Number of camcorder states */
1245 } MMCamcorderStateType;
1246
1247 /**
1248  * An enumeration for camcorder mode.
1249  */
1250 typedef enum {
1251         MM_CAMCORDER_MODE_VIDEO_CAPTURE = 0,    /**< Video recording and Image capture mode */
1252         MM_CAMCORDER_MODE_AUDIO,                /**< Audio recording mode */
1253 } MMCamcorderModeType;
1254
1255 /**
1256  * An enumeration for facing direction.
1257  */
1258 typedef enum {
1259         MM_CAMCORDER_CAMERA_FACING_DIRECTION_REAR = 0, /**< Facing direction of camera is REAR */
1260         MM_CAMCORDER_CAMERA_FACING_DIRECTION_FRONT,    /**< Facing direction of camera is FRONT */
1261 } MMCamcorderCameraFacingDirection;
1262
1263
1264 /**
1265  * An enumeration of Audio Format.
1266  */
1267 typedef enum
1268 {
1269         MM_CAMCORDER_AUDIO_FORMAT_PCM_U8 = 0,           /**< unsigned 8bit audio */
1270         MM_CAMCORDER_AUDIO_FORMAT_PCM_S16_LE = 2,       /**< signed 16bit audio. Little endian. */
1271 } MMCamcorderAudioFormat;
1272
1273
1274 /**
1275  * An enumeration for color tone. Color tone provides an impression of
1276  * seeing through a tinted glass.
1277  */
1278 enum MMCamcorderColorToneType {
1279         MM_CAMCORDER_COLOR_TONE_NONE = 0,               /**< None */
1280         MM_CAMCORDER_COLOR_TONE_MONO,                   /**< Mono */
1281         MM_CAMCORDER_COLOR_TONE_SEPIA,                  /**< Sepia */
1282         MM_CAMCORDER_COLOR_TONE_NEGATIVE,               /**< Negative */
1283         MM_CAMCORDER_COLOR_TONE_BLUE,                   /**< Blue */
1284         MM_CAMCORDER_COLOR_TONE_GREEN,                  /**< Green */
1285         MM_CAMCORDER_COLOR_TONE_AQUA,                   /**< Aqua */
1286         MM_CAMCORDER_COLOR_TONE_VIOLET,                 /**< Violet */
1287         MM_CAMCORDER_COLOR_TONE_ORANGE,                 /**< Orange */
1288         MM_CAMCORDER_COLOR_TONE_GRAY,                   /**< Gray */
1289         MM_CAMCORDER_COLOR_TONE_RED,                    /**< Red */
1290         MM_CAMCORDER_COLOR_TONE_ANTIQUE,                /**< Antique */
1291         MM_CAMCORDER_COLOR_TONE_WARM,                   /**< Warm */
1292         MM_CAMCORDER_COLOR_TONE_PINK,                   /**< Pink */
1293         MM_CAMCORDER_COLOR_TONE_YELLOW,                 /**< Yellow */
1294         MM_CAMCORDER_COLOR_TONE_PURPLE,                 /**< Purple */
1295         MM_CAMCORDER_COLOR_TONE_EMBOSS,                 /**< Emboss */
1296         MM_CAMCORDER_COLOR_TONE_OUTLINE,                /**< Outline */
1297         MM_CAMCORDER_COLOR_TONE_SOLARIZATION,           /**< Solarization */
1298         MM_CAMCORDER_COLOR_TONE_SKETCH,                 /**< Sketch */
1299         MM_CAMCORDER_COLOR_TONE_WASHED,                 /**< Washed */
1300         MM_CAMCORDER_COLOR_TONE_VINTAGE_WARM,           /**< Vintage warm */
1301         MM_CAMCORDER_COLOR_TONE_VINTAGE_COLD,           /**< Vintage cold */
1302         MM_CAMCORDER_COLOR_TONE_POSTERIZATION,          /**< Posterization */
1303         MM_CAMCORDER_COLOR_TONE_CARTOON,                /**< Cartoon */
1304         MM_CAMCORDER_COLOR_TONE_SELECTIVE_RED,          /**< Selective color - Red */
1305         MM_CAMCORDER_COLOR_TONE_SELECTIVE_GREEN,        /**< Selective color - Green */
1306         MM_CAMCORDER_COLOR_TONE_SELECTIVE_BLUE,         /**< Selective color - Blue */
1307         MM_CAMCORDER_COLOR_TONE_SELECTIVE_YELLOW,       /**< Selective color - Yellow */
1308         MM_CAMCORDER_COLOR_TONE_SELECTIVE_RED_YELLOW,   /**< Selective color - Red and Yellow */
1309 };
1310
1311
1312 /**
1313  * An enumeration for white balance. White Balance is the control that adjusts
1314  * the camcorder's color sensitivity to match the prevailing color of white
1315  * outdoor light, yellower indoor light, or (sometimes) greenish fluorescent
1316  * light. White balance may be set either automatically or manually. White balance
1317  * may be set "incorrectly" on purpose to achieve special effects.
1318  */
1319 enum MMCamcorderWhiteBalanceType {
1320         MM_CAMCORDER_WHITE_BALANCE_NONE = 0,            /**< None */
1321         MM_CAMCORDER_WHITE_BALANCE_AUTOMATIC,           /**< Automatic */
1322         MM_CAMCORDER_WHITE_BALANCE_DAYLIGHT,            /**< Daylight */
1323         MM_CAMCORDER_WHITE_BALANCE_CLOUDY,              /**< Cloudy */
1324         MM_CAMCORDER_WHITE_BALANCE_FLUOROSCENT,         /**< Fluorescent */
1325         MM_CAMCORDER_WHITE_BALANCE_INCANDESCENT,        /**< Incandescent */
1326         MM_CAMCORDER_WHITE_BALANCE_SHADE,               /**< Shade */
1327         MM_CAMCORDER_WHITE_BALANCE_HORIZON,             /**< Horizon */
1328         MM_CAMCORDER_WHITE_BALANCE_FLASH,               /**< Flash */
1329         MM_CAMCORDER_WHITE_BALANCE_CUSTOM,              /**< Custom */
1330 };
1331
1332
1333 /**
1334  * An enumeration for scene mode. Scene mode gives the environment condition
1335  * for operating camcorder. The mode of operation can be in daylight, night and
1336  * backlight. It can be an automatic setting also.
1337  */
1338 enum MMCamcorderSceneModeType {
1339         MM_CAMCORDER_SCENE_MODE_NORMAL = 0,     /**< Normal */
1340         MM_CAMCORDER_SCENE_MODE_PORTRAIT,       /**< Portrait */
1341         MM_CAMCORDER_SCENE_MODE_LANDSCAPE,      /**< Landscape */
1342         MM_CAMCORDER_SCENE_MODE_SPORTS,         /**< Sports */
1343         MM_CAMCORDER_SCENE_MODE_PARTY_N_INDOOR, /**< Party & indoor */
1344         MM_CAMCORDER_SCENE_MODE_BEACH_N_INDOOR, /**< Beach & indoor */
1345         MM_CAMCORDER_SCENE_MODE_SUNSET,         /**< Sunset */
1346         MM_CAMCORDER_SCENE_MODE_DUSK_N_DAWN,    /**< Dusk & dawn */
1347         MM_CAMCORDER_SCENE_MODE_FALL_COLOR,     /**< Fall */
1348         MM_CAMCORDER_SCENE_MODE_NIGHT_SCENE,    /**< Night scene */
1349         MM_CAMCORDER_SCENE_MODE_FIREWORK,       /**< Firework */
1350         MM_CAMCORDER_SCENE_MODE_TEXT,           /**< Text */
1351         MM_CAMCORDER_SCENE_MODE_SHOW_WINDOW,    /**< Show window */
1352         MM_CAMCORDER_SCENE_MODE_CANDLE_LIGHT,   /**< Candle light */
1353         MM_CAMCORDER_SCENE_MODE_BACKLIGHT,      /**< Backlight */
1354         MM_CAMCORDER_SCENE_MODE_AQUA,           /**< Aqua */
1355 };
1356
1357
1358 /**
1359  * An enumeration for focusing .
1360  */
1361 enum MMCamcorderFocusMode {
1362         MM_CAMCORDER_FOCUS_MODE_NONE = 0,       /**< Focus mode is None */
1363         MM_CAMCORDER_FOCUS_MODE_PAN,            /**< Pan focus mode*/
1364         MM_CAMCORDER_FOCUS_MODE_AUTO,           /**< Autofocus mode*/
1365         MM_CAMCORDER_FOCUS_MODE_MANUAL,         /**< Manual focus mode*/
1366         MM_CAMCORDER_FOCUS_MODE_TOUCH_AUTO,     /**< Touch Autofocus mode*/
1367         MM_CAMCORDER_FOCUS_MODE_CONTINUOUS,     /**< Continuous Autofocus mode*/
1368 };
1369
1370
1371 /**
1372  * An enumeration for auto focus scan range (af scan range)
1373  */
1374 enum MMCamcorderAutoFocusType {
1375         MM_CAMCORDER_AUTO_FOCUS_NONE = 0,       /**< Scan autofocus is not set */
1376         MM_CAMCORDER_AUTO_FOCUS_NORMAL,         /**< Scan autofocus normally*/
1377         MM_CAMCORDER_AUTO_FOCUS_MACRO,          /**< Scan autofocus in macro mode(close distance)*/
1378         MM_CAMCORDER_AUTO_FOCUS_FULL,           /**< Scan autofocus in full mode(all range scan, limited by dev spec)*/
1379 };
1380
1381
1382 /**
1383  * An enumeration for focus state.
1384  * When 'MM_MESSAGE_CAMCORDER_FOCUS_CHANGED' is delievered through 'MMMessageCallback',
1385  * this enumeration will be set to 'code' of MMMessageParamType.
1386  */
1387 enum MMCamcorderFocusStateType {
1388         MM_CAMCORDER_FOCUS_STATE_RELEASED = 0,  /**< Focus released.*/
1389         MM_CAMCORDER_FOCUS_STATE_ONGOING,       /**< Focus in pregress*/
1390         MM_CAMCORDER_FOCUS_STATE_FOCUSED,       /**< Focus success*/
1391         MM_CAMCORDER_FOCUS_STATE_FAILED,        /**< Focus failed*/
1392 };
1393
1394
1395 /**
1396  * An enumeration for ISO.
1397  */
1398 enum MMCamcorderISOType {
1399         MM_CAMCORDER_ISO_AUTO = 0,              /**< ISO auto mode*/
1400         MM_CAMCORDER_ISO_50,                    /**< ISO 50*/
1401         MM_CAMCORDER_ISO_100,                   /**< ISO 100*/
1402         MM_CAMCORDER_ISO_200,                   /**< ISO 200*/
1403         MM_CAMCORDER_ISO_400,                   /**< ISO 400*/
1404         MM_CAMCORDER_ISO_800,                   /**< ISO 800*/
1405         MM_CAMCORDER_ISO_1600,                  /**< ISO 1600*/
1406         MM_CAMCORDER_ISO_3200,                  /**< ISO 3200*/
1407         MM_CAMCORDER_ISO_6400,                  /**< ISO 6400*/
1408         MM_CAMCORDER_ISO_12800,                 /**< ISO 12800*/
1409 };
1410
1411 /**
1412  * An enumeration for Automatic exposure.
1413  */
1414 enum MMCamcorderAutoExposureType {
1415         MM_CAMCORDER_AUTO_EXPOSURE_OFF = 0,     /**< AE off*/
1416         MM_CAMCORDER_AUTO_EXPOSURE_ALL,         /**< AE on, XXX mode*/
1417         MM_CAMCORDER_AUTO_EXPOSURE_CENTER_1,    /**< AE on, XXX mode*/
1418         MM_CAMCORDER_AUTO_EXPOSURE_CENTER_2,    /**< AE on, XXX mode*/
1419         MM_CAMCORDER_AUTO_EXPOSURE_CENTER_3,    /**< AE on, XXX mode*/
1420         MM_CAMCORDER_AUTO_EXPOSURE_SPOT_1,      /**< AE on, XXX mode*/
1421         MM_CAMCORDER_AUTO_EXPOSURE_SPOT_2,      /**< AE on, XXX mode*/
1422         MM_CAMCORDER_AUTO_EXPOSURE_CUSTOM_1,    /**< AE on, XXX mode*/
1423         MM_CAMCORDER_AUTO_EXPOSURE_CUSTOM_2,    /**< AE on, XXX mode*/
1424 };
1425
1426
1427 /**
1428  * An enumeration for WDR mode .
1429  */
1430 enum MMCamcorderWDRMode {
1431         MM_CAMCORDER_WDR_OFF = 0,               /**< WDR OFF*/
1432         MM_CAMCORDER_WDR_ON,                    /**< WDR ON*/
1433         MM_CAMCORDER_WDR_AUTO,                  /**< WDR AUTO*/
1434 };
1435
1436
1437 /**
1438  * An enumeration for HDR capture mode
1439  */
1440 enum MMCamcorderHDRMode {
1441         MM_CAMCORDER_HDR_OFF = 0,               /**< HDR OFF */
1442         MM_CAMCORDER_HDR_ON,                    /**< HDR ON and no original data - capture callback will be come once */
1443         MM_CAMCORDER_HDR_ON_AND_ORIGINAL,       /**< HDR ON and original data - capture callback will be come twice(1st:Original, 2nd:HDR) */
1444 };
1445
1446
1447 /**
1448  * An enumeration for Anti-handshake mode .
1449  */
1450 enum MMCamcorderAHSMode {
1451         MM_CAMCORDER_AHS_OFF = 0,               /**< AHS OFF*/
1452         MM_CAMCORDER_AHS_ON,                    /**< AHS ON*/
1453         MM_CAMCORDER_AHS_AUTO,                  /**< AHS AUTO*/
1454         MM_CAMCORDER_AHS_MOVIE,                 /**< AHS MOVIE*/
1455 };
1456
1457
1458 /**
1459  * An enumeration for Video stabilization mode
1460  */
1461 enum MMCamcorderVideoStabilizationMode {
1462         MM_CAMCORDER_VIDEO_STABILIZATION_OFF = 0,       /**< Video Stabilization OFF*/
1463         MM_CAMCORDER_VIDEO_STABILIZATION_ON,            /**< Video Stabilization ON*/
1464 };
1465
1466
1467 /**
1468  * Geometry method for camcorder display.
1469  */
1470 enum MMCamcorderGeometryMethod {
1471         MM_CAMCORDER_LETTER_BOX = 0,            /**< Letter box*/
1472         MM_CAMCORDER_ORIGIN_SIZE,               /**< Origin size*/
1473         MM_CAMCORDER_FULL,                      /**< full-screen*/
1474         MM_CAMCORDER_CROPPED_FULL,              /**< Cropped full-screen*/
1475         MM_CAMCORDER_ORIGIN_OR_LETTER,          /**< Origin size or Letter box*/
1476         MM_CAMCORDER_CUSTOM_ROI,                /**< Explicitely described destination ROI*/
1477 };
1478
1479
1480 /**
1481  * An enumeration for orientation values of tag .
1482  */
1483 enum MMCamcorderTagOrientation {
1484         MM_CAMCORDER_TAG_ORT_NONE =0,           /**< No Orientation.*/
1485         MM_CAMCORDER_TAG_ORT_0R_VT_0C_VL,       /**< The 0th row is at the visual top of the image, and the 0th column is the visual left-hand side.*/
1486         MM_CAMCORDER_TAG_ORT_0R_VT_0C_VR,       /**< The 0th row is at the visual top of the image, and the 0th column is the visual right-hand side.*/
1487         MM_CAMCORDER_TAG_ORT_0R_VB_0C_VR,       /**< The 0th row is at the visual bottom of the image, and the 0th column is the visual right-hand side.*/
1488         MM_CAMCORDER_TAG_ORT_0R_VB_0C_VL,       /**< The 0th row is at the visual bottom of the image, and the 0th column is the visual left-hand side.*/
1489         MM_CAMCORDER_TAG_ORT_0R_VL_0C_VT,       /**< The 0th row is the visual left-hand side of the image, and the 0th column is the visual top.*/
1490         MM_CAMCORDER_TAG_ORT_0R_VR_0C_VT,       /**< The 0th row is the visual right-hand side of the image, and the 0th column is the visual top.*/
1491         MM_CAMCORDER_TAG_ORT_0R_VR_0C_VB,       /**< The 0th row is the visual right-hand side of the image, and the 0th column is the visual bottom.*/
1492         MM_CAMCORDER_TAG_ORT_0R_VL_0C_VB,       /**< The 0th row is the visual left-hand side of the image, and the 0th column is the visual bottom.*/
1493 };
1494
1495 /**
1496  * An enumeration for captured video orientation values of tag .
1497  */
1498 enum MMCamcorderTagVideoOrientation {
1499         MM_CAMCORDER_TAG_VIDEO_ORT_NONE =0,     /**< No Orientation.*/
1500         MM_CAMCORDER_TAG_VIDEO_ORT_90,          /**< 90 degree */
1501         MM_CAMCORDER_TAG_VIDEO_ORT_180, /**< 180 degree */
1502         MM_CAMCORDER_TAG_VIDEO_ORT_270, /**< 270 degree */
1503 };
1504
1505
1506
1507 /**
1508  * An enumeration for Strobe mode.
1509  */
1510 enum MMCamcorderStrobeMode {
1511         MM_CAMCORDER_STROBE_MODE_OFF = 0,               /**< Always off */
1512         MM_CAMCORDER_STROBE_MODE_ON,                    /**< Always splashes */
1513         MM_CAMCORDER_STROBE_MODE_AUTO,                  /**< Depending on intensity of light, strobe starts to flash. */
1514         MM_CAMCORDER_STROBE_MODE_REDEYE_REDUCTION,      /**< Red eye reduction. Multiple flash before capturing. */
1515         MM_CAMCORDER_STROBE_MODE_SLOW_SYNC,             /**< Slow sync. A type of curtain synchronization. */
1516         MM_CAMCORDER_STROBE_MODE_FRONT_CURTAIN,         /**< Front curtain. A type of curtain synchronization. */
1517         MM_CAMCORDER_STROBE_MODE_REAR_CURTAIN,          /**< Rear curtain. A type of curtain synchronization. */
1518         MM_CAMCORDER_STROBE_MODE_PERMANENT,             /**< keep turned on until turning off */
1519 };
1520
1521
1522 /**
1523  * An enumeration for Strobe Control.
1524  */
1525 enum MMCamcorderStrobeControl {
1526         MM_CAMCORDER_STROBE_CONTROL_OFF = 0,    /**< turn off the flash light */
1527         MM_CAMCORDER_STROBE_CONTROL_ON,         /**< turn on the flash light */
1528         MM_CAMCORDER_STROBE_CONTROL_CHARGE,     /**< charge the flash light */
1529 };
1530
1531
1532 /**
1533  * An enumeration for Detection mode.
1534  */
1535 enum MMCamcorderDetectMode {
1536         MM_CAMCORDER_DETECT_MODE_OFF = 0,       /**< turn detection off */
1537         MM_CAMCORDER_DETECT_MODE_ON,            /**< turn detection on */
1538 };
1539
1540
1541 /**
1542  * An enumeration for recommended preview resolution.
1543  */
1544 enum MMCamcorderPreviewType {
1545         MM_CAMCORDER_PREVIEW_TYPE_NORMAL = 0,   /**< normal ratio like 4:3 */
1546         MM_CAMCORDER_PREVIEW_TYPE_WIDE,         /**< wide ratio like 16:9 */
1547         MM_CAMCORDER_PREVIEW_TYPE_SQUARE,       /**< square ratio like 1:1 */
1548 };
1549
1550
1551 /**********************************
1552 *          Attribute info         *
1553 **********************************/
1554 /**
1555  * An enumeration for attribute values types.
1556  */
1557 typedef enum{
1558         MM_CAM_ATTRS_TYPE_INVALID = -1,         /**< Type is invalid */
1559         MM_CAM_ATTRS_TYPE_INT,                  /**< Integer type attribute */
1560         MM_CAM_ATTRS_TYPE_DOUBLE,               /**< Double type attribute */
1561         MM_CAM_ATTRS_TYPE_STRING,               /**< UTF-8 String type attribute */
1562         MM_CAM_ATTRS_TYPE_DATA,                 /**< Pointer type attribute */
1563 }MMCamAttrsType;
1564
1565
1566 /**
1567  * An enumeration for attribute validation type.
1568  */
1569 typedef enum {
1570         MM_CAM_ATTRS_VALID_TYPE_INVALID = -1,   /**< Invalid validation type */
1571         MM_CAM_ATTRS_VALID_TYPE_NONE,           /**< Do not check validity */
1572         MM_CAM_ATTRS_VALID_TYPE_INT_ARRAY,      /**< validity checking type of integer array */
1573         MM_CAM_ATTRS_VALID_TYPE_INT_RANGE,      /**< validity checking type of integer range */
1574         MM_CAM_ATTRS_VALID_TYPE_DOUBLE_ARRAY,   /**< validity checking type of double array */
1575         MM_CAM_ATTRS_VALID_TYPE_DOUBLE_RANGE,   /**< validity checking type of double range */
1576 } MMCamAttrsValidType;
1577
1578
1579 /**
1580  * An enumeration for attribute access flag.
1581  */
1582 typedef enum {
1583         MM_CAM_ATTRS_FLAG_DISABLED = 0,         /**< None flag is set. This means the attribute is not allowed to use.  */
1584         MM_CAM_ATTRS_FLAG_READABLE = 1 << 0,    /**< Readable */
1585         MM_CAM_ATTRS_FLAG_WRITABLE = 1 << 1,    /**< Writable */
1586         MM_CAM_ATTRS_FLAG_MODIFIED = 1 << 2,    /**< Modified */
1587         MM_CAM_ATTRS_FLAG_RW = MM_CAM_ATTRS_FLAG_READABLE | MM_CAM_ATTRS_FLAG_WRITABLE, /**< Readable and Writable */
1588 } MMCamAttrsFlag;
1589
1590
1591 /**********************************
1592 *          Stream data            *
1593 **********************************/
1594 /**
1595  * An enumeration for stream data type.
1596  */
1597 typedef enum {
1598         MM_CAM_STREAM_DATA_YUV420 = 0,          /**< YUV420 Packed type - 1 plane */
1599         MM_CAM_STREAM_DATA_YUV422,              /**< YUV422 Packed type - 1 plane */
1600         MM_CAM_STREAM_DATA_YUV420SP,            /**< YUV420 SemiPlannar type - 2 planes */
1601         MM_CAM_STREAM_DATA_YUV420P,             /**< YUV420 Plannar type - 3 planes */
1602         MM_CAM_STREAM_DATA_YUV422P,             /**< YUV422 Plannar type - 3 planes */
1603         MM_CAM_STREAM_DATA_ENCODED              /**< Encoded data type - 1 plane */
1604 } MMCamStreamData;
1605
1606
1607 /*=======================================================================================
1608 | STRUCTURE DEFINITIONS                                                                 |
1609 ========================================================================================*/
1610 /**
1611  * A structure for attribute information
1612  */
1613 typedef struct {
1614         MMCamAttrsType type;
1615         MMCamAttrsFlag flag;
1616         MMCamAttrsValidType validity_type;
1617
1618         /**
1619          * A union that describes validity of the attribute.
1620          * Only when type is 'MM_CAM_ATTRS_TYPE_INT' or 'MM_CAM_ATTRS_TYPE_DOUBLE',
1621          * the attribute can have validity.
1622          */
1623         union {
1624                 /**
1625                  * Validity structure for integer array.
1626                  */
1627                  struct {
1628                         int *array;             /**< a pointer of array */
1629                         int count;              /**< size of array */
1630                         int def;                /**< default value. Real value not index of array */
1631                 } int_array;
1632
1633                 /**
1634                  * Validity structure for integer range.
1635                  */
1636                 struct {
1637                         int min;                /**< minimum range */
1638                         int max;                /**< maximum range */
1639                         int def;                /**< default value */
1640                 } int_range;
1641
1642                 /**
1643                  * Validity structure for double array.
1644                  */
1645                  struct {
1646                         double *array;          /**< a pointer of array */
1647                         int count;              /**< size of array */
1648                         double def;             /**< default value. Real value not index of array */
1649                 } double_array;
1650
1651                 /**
1652                  * Validity structure for double range.
1653                  */
1654                 struct {
1655                         double min;             /**< minimum range */
1656                         double max;             /**< maximum range */
1657                         double def;             /**< default value */
1658                 } double_range;
1659         };
1660 } MMCamAttrsInfo;
1661
1662
1663 /* General Structure */
1664 /**
1665  * Structure for capture data.
1666  */
1667 typedef struct {
1668         void *data;                     /**< pointer of captured image */
1669         unsigned int length;            /**< length of captured image (in byte)*/
1670         MMPixelFormatType format;       /**< image format */
1671         int width;                      /**< width of captured image */
1672         int height;                     /**< height of captured image */
1673         int encoder_type;               /**< encoder type */
1674 } MMCamcorderCaptureDataType;
1675
1676
1677 /**
1678  * Structure for video stream data.
1679  */
1680 #define BUFFER_MAX_PLANE_NUM 4
1681
1682 typedef struct {
1683         union {
1684                 struct {
1685                         unsigned char *yuv;
1686                         unsigned int length_yuv;
1687                 } yuv420, yuv422;
1688                 struct {
1689                         unsigned char *y;
1690                         unsigned int length_y;
1691                         unsigned char *uv;
1692                         unsigned int length_uv;
1693                 } yuv420sp;
1694                 struct {
1695                         unsigned char *y;
1696                         unsigned int length_y;
1697                         unsigned char *u;
1698                         unsigned int length_u;
1699                         unsigned char *v;
1700                         unsigned int length_v;
1701                 } yuv420p, yuv422p;
1702                 struct {
1703                         unsigned char *data;
1704                         unsigned int length_data;
1705                 } encoded;
1706         } data;                         /**< pointer of captured stream */
1707         MMCamStreamData data_type;      /**< data type */
1708         unsigned int length_total;      /**< total length of stream buffer (in byte)*/
1709         unsigned int num_planes;        /**< number of planes */
1710         MMPixelFormatType format;       /**< image format */
1711         int width;                      /**< width of video buffer */
1712         int height;                     /**< height of video buffer */
1713         unsigned int timestamp;         /**< timestamp of stream buffer (msec)*/
1714         void *bo[BUFFER_MAX_PLANE_NUM]; /**< TBM buffer object */
1715         void *internal_buffer;          /**< Internal buffer pointer */
1716         int stride[BUFFER_MAX_PLANE_NUM];    /**< Stride of each plane */
1717         int elevation[BUFFER_MAX_PLANE_NUM]; /**< Elevation of each plane */
1718 } MMCamcorderVideoStreamDataType;
1719
1720
1721 /**
1722  * Structure for audio stream data.
1723  */
1724 typedef struct {
1725         void *data;                             /**< pointer of captured stream */
1726         unsigned int length;                    /**< length of stream buffer (in byte)*/
1727         MMCamcorderAudioFormat format;          /**< audio format */
1728         int channel;                            /**< number of channel of the stream */
1729         unsigned int timestamp;                 /**< timestamp of stream buffer (msec)*/
1730         float volume_dB;                        /**< dB value of audio stream */
1731 } MMCamcorderAudioStreamDataType;
1732
1733
1734 /**
1735   * Prerequisite information for mm_camcorder_create()
1736   * The information to set prior to create.
1737   */
1738 typedef struct {
1739         enum MMVideoDeviceType videodev_type;   /**< Video device type */
1740         /* For future use */
1741         int reserved[4];                        /**< reserved fields */
1742 } MMCamPreset;
1743
1744
1745 /**
1746  * Report structure of recording file
1747  */
1748 typedef struct {
1749         char *recording_filename;               /**< File name of stored recording file. Please free after using. */
1750 } MMCamRecordingReport; /**< report structure definition of recording file */
1751
1752
1753 /**
1754  * Face detect defailed information
1755  */
1756 typedef struct _MMCamFaceInfo {
1757         int id;                                 /**< id of each face */
1758         int score;                              /**< score of each face */
1759         MMRectType rect;                        /**< area of face */
1760 } MMCamFaceInfo;
1761
1762 /**
1763  * Face detect information
1764  */
1765 typedef struct _MMCamFaceDetectInfo {
1766         int num_of_faces;                       /**< number of detected faces */
1767         MMCamFaceInfo *face_info;               /**< face information, this should be freed after use it. */
1768 } MMCamFaceDetectInfo;
1769
1770 #ifdef HAVE_WAYLAND
1771 /**
1772  * Wayland information
1773  */
1774 typedef struct _MMCamWaylandInfo {
1775         void *evas_obj;
1776         void *window;
1777         void *surface;
1778         void *display;
1779         int window_x;
1780         int window_y;
1781         int window_width;
1782         int window_height;
1783 } MMCamWaylandInfo;
1784 #endif /* HAVE_WAYLAND */
1785
1786 /*=======================================================================================
1787 | TYPE DEFINITIONS                                                                      |
1788 ========================================================================================*/
1789 /**
1790  *      Function definition for video stream callback.
1791  *  Be careful! In this function, you can't call functions that change the state of camcorder such as mm_camcorder_stop(), 
1792  *  mm_camcorder_unrealize(), mm_camcorder_record(), mm_camcorder_commit(), and mm_camcorder_cancel(), etc.
1793  *  Please don't hang this function long. It may cause low performance of preview or occur timeout error from video source. 
1794  *  Also, you're not allowed to call mm_camcorder_stop() even in other context, while you're hanging this function. 
1795  *  I recommend to you releasing this function ASAP.
1796  *
1797  *      @param[in]      stream                  Reference pointer to video stream data
1798  *      @param[in]      user_param              User parameter which is received from user when callback function was set
1799  *      @return         This function returns true on success, or false on failure.
1800  *      @remarks                This function is issued in the context of gstreamer (video sink thread).
1801  */
1802 typedef gboolean (*mm_camcorder_video_stream_callback)(MMCamcorderVideoStreamDataType *stream, void *user_param);
1803
1804
1805 /**
1806  *      Function definition for audio stream callback.
1807  *  Be careful! In this function, you can't call functions that change the state of camcorder such as mm_camcorder_stop(),
1808  *  mm_camcorder_unrealize(), mm_camcorder_record(), mm_camcorder_commit(), and mm_camcorder_cancel(), etc.
1809  *  Please don't hang this function long. It may cause low performance of camcorder or occur timeout error from audio source.
1810  *  I recommend to you releasing this function ASAP.
1811  *
1812  *      @param[in]      stream                  Reference pointer to audio stream data
1813  *      @param[in]      user_param              User parameter which is received from user when callback function was set
1814  *      @return         This function returns true on success, or false on failure.
1815  *      @remarks
1816  */
1817 typedef gboolean (*mm_camcorder_audio_stream_callback)(MMCamcorderAudioStreamDataType *stream, void *user_param);
1818
1819
1820 /**
1821  *      Function definition for video capture callback.
1822  *  Like '#mm_camcorder_video_stream_callback', you can't call mm_camcorder_stop() while you are hanging this function.
1823  *
1824  *      @param[in]      frame                   Reference pointer to captured data
1825  *      @param[in]      thumbnail               Reference pointer to thumbnail data
1826  *      @param[in]      user_param              User parameter which is received from user when callback function was set
1827  *      @return         This function returns true on success, or false on failure.
1828  *      @remarks                This function is issued in the context of gstreamer (video src thread).
1829  */
1830 typedef gboolean (*mm_camcorder_video_capture_callback)(MMCamcorderCaptureDataType *frame, MMCamcorderCaptureDataType *thumbnail, void *user_param);
1831
1832
1833 /*=======================================================================================
1834 | GLOBAL FUNCTION PROTOTYPES                                                            |
1835 ========================================================================================*/
1836 /**
1837  *    mm_camcorder_create:\n
1838  *  Create camcorder object. This is the function that an user who wants to use mm_camcorder calls first. 
1839  *  This function creates handle structure and initialize mutex, attributes, gstreamer.
1840  *  When this function success, it will return  a handle of newly created object. 
1841  *  A user have to put the handle when he calls every function of mm_camcorder. \n
1842  *  Second argument of this function is the field to decribe pre-setting information of mm_camcorder such as which camera device it will use.
1843  *  Normally, MM_VIDEO_DEVICE_CAMERA0 is for Main camera(or Mega camera, Back camera), 
1844  *  and MM_VIDEO_DEVICE_CAMERA1 is for VGA camera (or Front camera). If you want audio recording,
1845  *  please set MM_VIDEO_DEVICE_NONE. (No camera device is needed.)
1846  *
1847  *      @param[out]     camcorder       A handle of camcorder.
1848  *      @param[in]      info            Information for camera device. Depending on this information,
1849  *                                      camcorder opens different camera devices.
1850  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
1851  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
1852  *      @see            mm_camcorder_destroy
1853  *      @pre            None
1854  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_NULL
1855  *      @remarks        You can create multiple handles on a context at the same time. However,
1856  *                      camcorder cannot guarantee proper operation because of limitation of resources, such as
1857  *                      camera device, audio device, and display device.
1858  *      @par example
1859  *      @code
1860
1861 #include <mm_camcorder.h>
1862
1863 gboolean initialize_camcorder()
1864 {
1865         int err;
1866         MMCamPreset cam_info;
1867 #if 1
1868         cam_info.videodev_type = MM_VIDEO_DEVICE_CAMERA0;
1869 #else
1870         // when you want to record audio only, enable this.
1871         cam_info.videodev_type = MM_VIDEO_DEVICE_NONE;
1872 #endif
1873
1874         err = mm_camcorder_create(&hcam, &cam_info);
1875
1876         if (err != MM_ERROR_NONE) {
1877                 printf("Fail to call mm_camcorder_create = %x\n", err);
1878                 return FALSE;
1879         }
1880
1881         return TRUE;
1882 }
1883
1884  *      @endcode
1885  */
1886 int mm_camcorder_create(MMHandleType *camcorder, MMCamPreset *info);
1887
1888
1889 /**
1890  *    mm_camcorder_destroy:\n
1891  *  Destroy camcorder object. Release handle and all of the resources that were created in mm_camcorder_create().\n
1892  *  This is the finalizing function of mm_camcorder. If this function is not called or fails to call, the handle isn't released fully.
1893  *  This function releases attributes, mutexes, sessions, and handle itself. This function also removes all of remaining messages.
1894  *  So if your application should wait a certain message of mm_camcorder, please wait to call this function till getting the message.
1895  *      
1896  *
1897  *      @param[in]      camcorder       A handle of camcorder.
1898  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
1899  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
1900  *      @see            mm_camcorder_create
1901  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_NULL
1902  *      @post           Because the handle is not valid, you can't check the state.
1903  *      @remarks        None
1904  *      @par example
1905  *      @code
1906
1907 #include <mm_camcorder.h>
1908
1909 gboolean destroy_camcorder()
1910 {
1911         int err;
1912
1913         //Destroy camcorder handle
1914         err = mm_camcorder_destroy(hcam);
1915         if (err < 0) {
1916                 printf("Fail to call mm_camcorder_destroy  = %x\n", err);
1917                 return FALSE;
1918         }
1919
1920         return TRUE;
1921 }
1922
1923  *      @endcode
1924  */
1925 int mm_camcorder_destroy(MMHandleType camcorder);
1926
1927
1928 /**
1929  *    mm_camcorder_realize:\n
1930  *  Allocate resources for camcorder and initialize it.
1931  *  This also creates streamer pipeline. So you have to set attributes that are pivotal to create
1932  *  the pipeline before calling this function. This function also takes a roll to manage confliction
1933  *  between different applications which use camcorder. For example, if you try to use camcorder when
1934  *  other application that is more important such as call application, this function will return
1935  *  'MM_ERROR_POLICY_BLOCKED'. On the contrary, if your application that uses camcorder starts to launch
1936  *  while another application that uses speaker and has lower priority, your application will kick
1937  *  another application.
1938  *
1939  *      @param[in]      camcorder       A handle of camcorder.
1940  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
1941  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
1942  *      @see            mm_camcorder_unrealize
1943  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_NULL
1944  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_READY
1945  *      @remarks        None
1946  *      @par example
1947  *      @code
1948
1949 #include <mm_camcorder.h>
1950
1951 //For image capturing
1952 gboolean initialize_image_capture()
1953 {
1954         int err;
1955         MMCamPreset cam_info;
1956         char *err_attr_name = NULL;
1957         void * hdisplay = NULL;
1958         int hsize = 0;
1959
1960         //Set video device as 'camera0' (main camera device)
1961         cam_info.videodev_type = MM_VIDEO_DEVICE_CAMERA0;
1962
1963         err = mm_camcorder_create(&hcam, &cam_info);
1964
1965         if (err != MM_ERROR_NONE) {
1966                 printf("Fail to call mm_camcorder_create = %x\n", err);
1967                 return FALSE;
1968         }
1969
1970         mm_camcorder_set_message_callback(hcam,(MMMessageCallback)msg_callback, (void*)hcam);
1971         mm_camcorder_set_video_capture_callback(hcam,(mm_camcorder_video_capture_callback)camcordertest_video_capture_cb, (void*)hcam);
1972
1973         hdisplay = &ad.xid;             //xid of xwindow. This value can be different depending on your environment.
1974         hsize = sizeof(ad.xid);         //size of xid structure.
1975
1976         // camcorder attribute setting
1977         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,
1978                                           MMCAM_MODE, MM_CAMCORDER_MODE_IMAGE,
1979                                           MMCAM_IMAGE_ENCODER, MM_IMAGE_CODEC_JPEG,
1980                                           MMCAM_CAMERA_WIDTH, 640,
1981                                           MMCAM_CAMERA_HEIGHT, 480,
1982                                           MMCAM_CAMERA_FORMAT, MM_PIXEL_FORMAT_YUYV,
1983                                           MMCAM_CAMERA_FPS, 30,
1984                                           MMCAM_DISPLAY_ROTATION, MM_DISPLAY_ROTATION_270,
1985                                           MMCAM_DISPLAY_HANDLE, (void*) hdisplay,          hsize,
1986                                           MMCAM_CAPTURE_FORMAT, MM_PIXEL_FORMAT_ENCODED,
1987                                           MMCAM_CAPTURE_WIDTH, 640,
1988                                           MMCAM_CAPTURE_HEIGHT, 480,
1989                                           NULL);
1990
1991         if (err < 0) {
1992                 printf("Set attrs fail. (%s:%x)\n", err_attr_name, err);
1993                 if (err_attr_name) {
1994                         free(err_attr_name);
1995                         err_attr_name = NULL;
1996                         return FALSE;
1997                 }
1998         }
1999
2000         err =  mm_camcorder_realize(hcam);
2001         if (err < 0) {
2002                 printf("Fail to call mm_camcorder_realize  = %x\n", err);
2003                 return FALSE;
2004         }
2005
2006         return TRUE;
2007 }
2008
2009 //For A/V capturing
2010 gboolean initialize_video_capture()
2011 {
2012         int err;
2013         MMCamPreset cam_info;
2014         char *err_attr_name = NULL;
2015         void * hdisplay = NULL;
2016         int hsize = 0;
2017
2018         //Set video device as 'camera0' (main camera device)
2019         cam_info.videodev_type = MM_VIDEO_DEVICE_CAMERA0;
2020
2021         err = mm_camcorder_create(&hcam, &cam_info);
2022
2023         if (err != MM_ERROR_NONE) {
2024                 printf("Fail to call mm_camcorder_create = %x\n", err);
2025                 return FALSE;
2026         }
2027
2028         mm_camcorder_set_message_callback(hcam,(MMMessageCallback)msg_callback, hcam);
2029
2030         hdisplay = &ad.xid;             //xid of xwindow. This value can be different depending on your environment.
2031         hsize = sizeof(ad.xid);         //size of xid structure.
2032
2033         // camcorder attribute setting
2034         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,
2035                                           MMCAM_MODE, MM_CAMCORDER_MODE_VIDEO,
2036                                           MMCAM_AUDIO_DEVICE, MM_AUDIO_DEVICE_MIC,
2037                                           MMCAM_AUDIO_ENCODER, MM_AUDIO_CODEC_AAC,
2038                                           MMCAM_VIDEO_ENCODER, MM_VIDEO_CODEC_MPEG4,
2039                                           MMCAM_FILE_FORMAT, MM_FILE_FORMAT_3GP,
2040                                           MMCAM_CAMERA_WIDTH, 1280,
2041                                           MMCAM_CAMERA_HEIGHT, 720,
2042                                           MMCAM_CAMERA_FORMAT, MM_PIXEL_FORMAT_NV12,
2043                                           MMCAM_CAMERA_FPS, 30,
2044                                           MMCAM_AUDIO_SAMPLERATE, 44100,
2045                                           MMCAM_AUDIO_FORMAT, MM_CAMCORDER_AUDIO_FORMAT_PCM_S16_LE,
2046                                           MMCAM_AUDIO_CHANNEL, 2,
2047                                           MMCAM_DISPLAY_ROTATION, MM_DISPLAY_ROTATION_270,
2048                                           MMCAM_DISPLAY_HANDLE, (void*) hdisplay,               hsize,
2049                                           MMCAM_TARGET_FILENAME, TARGET_FILENAME, strlen(TARGET_FILENAME),
2050                                           NULL);
2051
2052         if (err < 0) {
2053                 printf("Set attrs fail. (%s:%x)\n", err_attr_name, err);
2054                 if (err_attr_name) {
2055                         free(err_attr_name);
2056                         err_attr_name = NULL;
2057                         return FALSE;
2058                 }
2059         }
2060
2061         err =  mm_camcorder_realize(hcam);
2062         if (err < 0) {
2063                 printf("Fail to call mm_camcorder_realize  = %x\n", err);
2064                 return FALSE;
2065         }
2066
2067         return TRUE;
2068 }
2069
2070 //For audio(only) capturing
2071 gboolean initialize_audio_capture()
2072 {
2073         int err;
2074         MMCamPreset cam_info;
2075         char *err_attr_name = NULL;
2076         void * hdisplay = NULL;
2077         int hsize = 0;
2078
2079         //Set no video device, because audio recording doesn't need video input.
2080         cam_info.videodev_type = MM_VIDEO_DEVICE_NONE;
2081
2082         err = mm_camcorder_create(&hcam, &cam_info);
2083
2084         if (err != MM_ERROR_NONE) {
2085                 printf("Fail to call mm_camcorder_create = %x\n", err);
2086                 return FALSE;
2087         }
2088
2089         mm_camcorder_set_message_callback(hcam,(MMMessageCallback)msg_callback, (void*)hcam);
2090
2091         hdisplay = &ad.xid;             //xid of xwindow. This value can be different depending on your environment.
2092         hsize = sizeof(ad.xid);         //size of xid structure.
2093
2094         // camcorder attribute setting
2095         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,
2096                                           MMCAM_MODE, MM_CAMCORDER_MODE_AUDIO,
2097                                           MMCAM_AUDIO_DEVICE, MM_AUDIO_DEVICE_MIC,
2098                                           MMCAM_AUDIO_ENCODER, MM_AUDIO_CODEC_AAC,
2099                                           MMCAM_FILE_FORMAT, MM_FILE_FORMAT_3GP,
2100                                           MMCAM_AUDIO_SAMPLERATE, 44100,
2101                                           MMCAM_AUDIO_FORMAT, MM_CAMCORDER_AUDIO_FORMAT_PCM_S16_LE,
2102                                           MMCAM_AUDIO_CHANNEL, 2,
2103                                           MMCAM_TARGET_FILENAME, TARGET_FILENAME, strlen(TARGET_FILENAME),
2104                                           MMCAM_TARGET_TIME_LIMIT, 360000,
2105                                           NULL);
2106
2107         if (err < 0) {
2108                 printf("Set attrs fail. (%s:%x)\n", err_attr_name, err);
2109                 if (err_attr_name) {
2110                         free(err_attr_name);
2111                         err_attr_name = NULL;
2112                         return FALSE;
2113                 }
2114         }
2115
2116         err =  mm_camcorder_realize(hcam);
2117         if (err < 0) {
2118                 printf("Fail to call mm_camcorder_realize  = %x\n", err);
2119                 return FALSE;
2120         }
2121
2122         return TRUE;
2123 }
2124  *      @endcode
2125  */
2126 int mm_camcorder_realize(MMHandleType camcorder);
2127
2128
2129 /**
2130  *    mm_camcorder_unrealize:\n
2131  *  Uninitialize camcoder resources and free allocated memory.
2132  *  Most important resource that is released here is gstreamer pipeline of mm_camcorder.
2133  *  Because most of resources, such as camera device, video display device, and audio I/O device, are operating on the gstreamer pipeline, 
2134  *  this function should be called to release its resources.
2135  *  Moreover, mm_camcorder is controlled by audio session manager. If an user doesn't call this function when he want to release mm_camcorder,
2136  *  other multimedia frameworks may face session problem. For more detail information, please refer mm_session module.
2137  *
2138  *      @param[in]      camcorder       A handle of camcorder.
2139  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2140  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2141  *      @see            mm_camcorder_realize
2142  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_READY
2143  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_NULL
2144  *      @remarks        None
2145  *      @par example
2146  *      @code
2147
2148 #include <mm_camcorder.h>
2149
2150 gboolean unrealize_camcorder()
2151 {
2152         int err;
2153
2154         //Release all resources of camcorder handle
2155         err =  mm_camcorder_unrealize(hcam);
2156         if (err < 0) {
2157                 printf("Fail to call mm_camcorder_unrealize  = %x\n", err);
2158                 return FALSE;
2159         }
2160
2161         return TRUE;
2162 }
2163
2164  *      @endcode
2165  */
2166 int mm_camcorder_unrealize(MMHandleType camcorder);
2167
2168
2169 /**
2170  *      mm_camcorder_start:\n
2171  *   Start previewing. (Image/Video mode)
2172  *  'mm_camcorder_video_stream_callback' is activated after calling this function.
2173  *
2174  *      @param[in]      camcorder       A handle of camcorder.
2175  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2176  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2177  *      @see            mm_camcorder_stop
2178  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_READY
2179  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_PREPARE
2180  *      @remarks        None
2181  *      @par example
2182  *      @code
2183
2184 #include <mm_camcorder.h>
2185
2186 //For image capturing
2187 gboolean initialize_image_capture()
2188 {
2189         int err;
2190         MMCamPreset cam_info;
2191         char *err_attr_name = NULL;
2192         void * hdisplay = NULL;
2193         int hsize = 0;
2194
2195         //Set video device as 'camera0' (main camera device)
2196         cam_info.videodev_type = MM_VIDEO_DEVICE_CAMERA0;
2197
2198         err = mm_camcorder_create(&hcam, &cam_info);
2199
2200         if (err != MM_ERROR_NONE) {
2201                         printf("Fail to call mm_camcorder_create = %x\n", err);
2202                         return FALSE;
2203         }
2204
2205         mm_camcorder_set_message_callback(hcam,(MMMessageCallback)msg_callback, (void*)hcam);
2206         mm_camcorder_set_video_capture_callback(hcam,(mm_camcorder_video_capture_callback)camcordertest_video_capture_cb, (void*)hcam);
2207
2208         hdisplay = &ad.xid;             //xid of xwindow. This value can be different depending on your environment.
2209         hsize = sizeof(ad.xid);         //size of xid structure.
2210
2211         // camcorder attribute setting
2212         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,
2213                                           MMCAM_MODE, MM_CAMCORDER_MODE_IMAGE,
2214                                           MMCAM_IMAGE_ENCODER, MM_IMAGE_CODEC_JPEG,
2215                                           MMCAM_CAMERA_WIDTH, 640,
2216                                           MMCAM_CAMERA_HEIGHT, 480,
2217                                           MMCAM_CAMERA_FORMAT, MM_PIXEL_FORMAT_YUYV,
2218                                           MMCAM_CAMERA_FPS, 30,
2219                                           MMCAM_DISPLAY_ROTATION, MM_DISPLAY_ROTATION_270,
2220                                           MMCAM_DISPLAY_HANDLE, (void*) hdisplay,          hsize,
2221                                           MMCAM_CAPTURE_FORMAT, MM_PIXEL_FORMAT_ENCODED,
2222                                           MMCAM_CAPTURE_WIDTH, 640,
2223                                           MMCAM_CAPTURE_HEIGHT, 480,
2224                                           NULL);
2225
2226         if (err < 0) {
2227                 printf("Set attrs fail. (%s:%x)\n", err_attr_name, err);
2228                 if (err_attr_name) {
2229                         free(err_attr_name);
2230                         err_attr_name = NULL;
2231                         return FALSE;
2232                 }
2233         }
2234
2235         err =  mm_camcorder_realize(hcam);
2236         if (err < 0) {
2237                 printf("Fail to call mm_camcorder_realize  = %x\n", err);
2238                 return FALSE;
2239         }
2240
2241         // start camcorder
2242         err = mm_camcorder_start(hcam);
2243         if (err < 0) {
2244                 printf("Fail to call mm_camcorder_start  = %x\n", err);
2245                 return FALSE;
2246         }
2247
2248         return TRUE;
2249 }
2250
2251 //For A/V capturing
2252 gboolean initialize_video_capture()
2253 {
2254         int err;
2255         MMCamPreset cam_info;
2256         char *err_attr_name = NULL;
2257         void * hdisplay = NULL;
2258         int hsize = 0;
2259
2260         //Set video device as 'camera0' (main camera device)
2261         cam_info.videodev_type = MM_VIDEO_DEVICE_CAMERA0;
2262
2263         err = mm_camcorder_create(&hcam, &cam_info);
2264
2265         if (err != MM_ERROR_NONE) {
2266                         printf("Fail to call mm_camcorder_create = %x\n", err);
2267                         return FALSE;
2268         }
2269
2270         mm_camcorder_set_message_callback(hcam,(MMMessageCallback)msg_callback, hcam);
2271
2272         hdisplay = &ad.xid;             //xid of xwindow. This value can be different depending on your environment.
2273         hsize = sizeof(ad.xid);         //size of xid structure.
2274
2275         // camcorder attribute setting
2276         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,
2277                                           MMCAM_MODE, MM_CAMCORDER_MODE_VIDEO,
2278                                           MMCAM_AUDIO_DEVICE, MM_AUDIO_DEVICE_MIC,
2279                                           MMCAM_AUDIO_ENCODER, MM_AUDIO_CODEC_AAC,
2280                                           MMCAM_VIDEO_ENCODER, MM_VIDEO_CODEC_MPEG4,
2281                                           MMCAM_FILE_FORMAT, MM_FILE_FORMAT_3GP,
2282                                           MMCAM_CAMERA_WIDTH, 1280,
2283                                           MMCAM_CAMERA_HEIGHT, 720,
2284                                           MMCAM_CAMERA_FORMAT, MM_PIXEL_FORMAT_NV12,
2285                                           MMCAM_CAMERA_FPS, 30,
2286                                           MMCAM_AUDIO_SAMPLERATE, 44100,
2287                                           MMCAM_AUDIO_FORMAT, MM_CAMCORDER_AUDIO_FORMAT_PCM_S16_LE,
2288                                           MMCAM_AUDIO_CHANNEL, 2,
2289                                           MMCAM_DISPLAY_ROTATION, MM_DISPLAY_ROTATION_270,
2290                                           MMCAM_DISPLAY_HANDLE, (void*) hdisplay,               hsize,
2291                                           MMCAM_TARGET_FILENAME, TARGET_FILENAME, strlen(TARGET_FILENAME),
2292                                           NULL);
2293
2294         if (err < 0) {
2295                 printf("Set attrs fail. (%s:%x)\n", err_attr_name, err);
2296                 if (err_attr_name) {
2297                         free(err_attr_name);
2298                         err_attr_name = NULL;
2299                         return FALSE;
2300                 }
2301         }
2302
2303         err =  mm_camcorder_realize(hcam);
2304         if (err < 0) {
2305                 printf("Fail to call mm_camcorder_realize  = %x\n", err);
2306                 return FALSE;
2307         }
2308
2309         // start camcorder
2310         err = mm_camcorder_start(hcam);
2311         if (err < 0) {
2312                 printf("Fail to call mm_camcorder_start  = %x\n", err);
2313                 return FALSE;
2314         }
2315
2316         return TRUE;
2317 }
2318
2319 //For audio(only) capturing
2320 gboolean initialize_audio_capture()
2321 {
2322         int err;
2323         MMCamPreset cam_info;
2324         char *err_attr_name = NULL;
2325         void * hdisplay = NULL;
2326         int hsize = 0;
2327
2328         //Set no video device, because audio recording doesn't need video input.
2329         cam_info.videodev_type = MM_VIDEO_DEVICE_NONE;
2330
2331         err = mm_camcorder_create(&hcam, &cam_info);
2332
2333         if (err != MM_ERROR_NONE) {
2334                 printf("Fail to call mm_camcorder_create = %x\n", err);
2335                 return FALSE;
2336         }
2337
2338         mm_camcorder_set_message_callback(hcam,(MMMessageCallback)msg_callback, (void*)hcam);
2339
2340         hdisplay = &ad.xid;             //xid of xwindow. This value can be different depending on your environment.
2341         hsize = sizeof(ad.xid);         //size of xid structure.
2342
2343         // camcorder attribute setting
2344         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,
2345                                           MMCAM_MODE, MM_CAMCORDER_MODE_AUDIO,
2346                                           MMCAM_AUDIO_DEVICE, MM_AUDIO_DEVICE_MIC,
2347                                           MMCAM_AUDIO_ENCODER, MM_AUDIO_CODEC_AAC,
2348                                           MMCAM_FILE_FORMAT, MM_FILE_FORMAT_3GP,
2349                                           MMCAM_AUDIO_SAMPLERATE, 44100,
2350                                           MMCAM_AUDIO_FORMAT, MM_CAMCORDER_AUDIO_FORMAT_PCM_S16_LE,
2351                                           MMCAM_AUDIO_CHANNEL, 2,
2352                                           MMCAM_TARGET_FILENAME, TARGET_FILENAME, strlen(TARGET_FILENAME),
2353                                           MMCAM_TARGET_TIME_LIMIT, 360000,
2354                                           NULL);
2355
2356         if (err < 0) {
2357                 printf("Set attrs fail. (%s:%x)\n", err_attr_name, err);
2358                 if (err_attr_name) {
2359                         free(err_attr_name);
2360                         err_attr_name = NULL;
2361                         return FALSE;
2362                 }
2363         }
2364
2365         err =  mm_camcorder_realize(hcam);
2366         if (err < 0) {
2367                 printf("Fail to call mm_camcorder_realize  = %x\n", err);
2368                 return FALSE;
2369         }
2370
2371         // start camcorder
2372         err = mm_camcorder_start(hcam);
2373         if (err < 0) {
2374                 printf("Fail to call mm_camcorder_start  = %x\n", err);
2375                 return FALSE;
2376         }
2377
2378         return TRUE;
2379 }
2380  *      @endcode
2381  */
2382 int mm_camcorder_start(MMHandleType camcorder);
2383
2384
2385 /**
2386  *    mm_camcorder_stop:\n
2387  *  Stop previewing. (Image/Video mode)
2388  *  This function will change the status of pipeline. If an application doesn't return callbacks
2389  *  of camcorder, this function can be locked. For example, if your application still
2390  *  holds '#mm_camcorder_video_capture_callback' or '#mm_camcorder_video_stream_callback',
2391  *  this function could be hung. So users have to return every callback before calling this function.
2392  *
2393  *      @param[in]      camcorder       A handle of camcorder.
2394  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2395  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2396  *      @see            mm_camcorder_start
2397  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_PREPARE
2398  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_READY
2399  *      @remarks        None
2400  *      @par example
2401  *      @code
2402
2403 #include <mm_camcorder.h>
2404
2405 gboolean stop_camcorder()
2406 {
2407         int err;
2408
2409         //Stop preview
2410         err =  mm_camcorder_stop(hcam);
2411         if (err < 0) {
2412                 printf("Fail to call mm_camcorder_stop  = %x\n", err);
2413                 return FALSE;
2414         }
2415
2416         return TRUE;
2417 }
2418
2419  *      @endcode
2420  */
2421 int mm_camcorder_stop(MMHandleType camcorder);
2422
2423
2424 /**
2425  *    mm_camcorder_capture_start:\n
2426  *  Start capturing of still images. (Image mode only)
2427  *  Captured image will be delievered through 'mm_camcorder_video_capture_callback'.
2428  *  So basically, the operation is working asynchronously. \n
2429  *  When a user call this function, MSL will stop to retrieving preview from camera device.
2430  *  Then set capture resolution, pixel format, and encoding type to camera driver. After resuming,
2431  *  camera can get still image.  A user will be notified by
2432  *  'MM_MESSAGE_CAMCORDER_CAPTURED' message when capturing succeed. When a user sets
2433  *  multishot (by setting multiple number to MMCAM_CAPTURE_COUNT), the message
2434  *  will be called multiple time. You can get the number of image from 'code' of
2435  *  'MMMessageParamType'.
2436  *
2437  *      @param[in]      camcorder       A handle of camcorder.
2438  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2439  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2440  *      @see            mm_camcorder_capture_stop
2441  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_PREPARE
2442  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_CAPTURING
2443  *      @remarks        To call this function, preview should be started successfully.\n
2444  *                      This function is a pair of mm_camcorder_capture_stop(). 
2445  *                      So user should call mm_camcorder_capture_stop() after getting captured image.
2446  *      @par example
2447  *      @code
2448
2449 #include <mm_camcorder.h>
2450
2451 gboolean capturing_picture()
2452 {
2453         int err;
2454
2455         err =  mm_camcorder_capture_start(hcam);
2456         if (err < 0) 
2457         {
2458                 printf("Fail to call mm_camcorder_capture_start  = %x\n", err);
2459                 return FALSE;
2460         }
2461
2462         //mm_camcorder_capture_stop should be called after getting
2463         //MM_MESSAGE_CAMCORDER_CAPTURED message.
2464
2465         return TRUE;
2466 }
2467
2468
2469  *      @endcode
2470  */
2471 int mm_camcorder_capture_start(MMHandleType camcorder);
2472
2473
2474 /**
2475  *    mm_camcorder_capture_stop:\n
2476  *  Stop capturing of still images. (Image mode only)
2477  *  This function notifies the end of capturing and launch preview again.
2478  *  Just as mm_camcorder_capture_start(), this funciton stops still image stream and set preview information such as
2479  *  resolution, pixel format, and framerate to camera driver. Then it command to start preview.
2480  *  If you don't call this, preview will not be displayed even though capturing was finished.
2481  *
2482  *      @param[in]      camcorder       A handle of camcorder.
2483  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2484  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2485  *      @see            mm_camcorder_capture_start
2486  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_CAPTURING
2487  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_PREPARE
2488  *      @remarks        To call this function, a user has to call mm_camcorder_capture_start() first.\n
2489  *                      This is not a function to stop multishot in the middle of operation. For that,
2490  *                      please use '#MMCAM_CAPTURE_BREAK_CONTINUOUS_SHOT' instead.
2491  *      @par example
2492  *      @code
2493
2494 #include <mm_camcorder.h>
2495
2496 gboolean capturing_picture_stop()
2497 {
2498         int err;
2499
2500         err =  mm_camcorder_capture_stop(hcam);
2501         if (err < 0) {
2502                 printf("Fail to call mm_camcorder_capture_stop  = %x\n", err);
2503                 return FALSE;
2504         }
2505
2506         //After calling upper function, preview will start.
2507
2508         return TRUE;
2509 }
2510
2511  *      @endcode
2512  */
2513 int mm_camcorder_capture_stop(MMHandleType camcorder);
2514
2515
2516 /**
2517  *    mm_camcorder_record:\n
2518  *  Start recording. (Audio/Video mode only)
2519  *  Camcorder starts to write a file when you call this function. You can specify the name of file
2520  *  using '#MMCAM_TARGET_FILENAME'. Beware, if you fail to call mm_camcorder_commit() or mm_camcorder_cancel(),
2521  *  the recorded file is still on the storage.
2522  *
2523  *      @param[in]      camcorder       A handle of camcorder.
2524  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2525  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2526  *      @see            mm_camcorder_pause
2527  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_PREPARE
2528  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_RECORDING
2529  *      @remarks        None
2530  *      @par example
2531  *      @code
2532
2533 #include <mm_camcorder.h>
2534
2535 gboolean record_and_cancel_video_file()
2536 {
2537         int err;
2538
2539         // Start recording
2540         err =  mm_camcorder_record(hcam);
2541         if (err < 0) {
2542                 printf("Fail to call mm_camcorder_record  = %x\n", err);
2543                 return FALSE;
2544         }
2545
2546         return TRUE;
2547 }
2548
2549  *      @endcode
2550  */
2551 int mm_camcorder_record(MMHandleType camcorder);
2552
2553
2554 /**
2555  *    mm_camcorder_pause:\n
2556  *  Pause A/V recording or Audio recording. (Audio/Video mode only)
2557  *  On video recording, you can see preview while on pausing. So mm_camcorder cuts video stream path to encoder and keep the flow to preview.
2558  *  If you call mm_camcorder_commit() while on pausing, the recorded file only has Audio and Video stream which were generated before pause().
2559  *
2560  *      @param[in]      camcorder       A handle of camcorder.
2561  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2562  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2563  *      @see            mm_camcorder_record
2564  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_RECORDING
2565  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_PAUSED
2566  *      @remarks        Even though this function is for pausing recording, small amount of buffers could be recorded after pause().
2567  *                      Because the buffers which are existed in the queue were created before pause(), the buffers should be recorded.
2568  *      @par example
2569  *      @code
2570
2571 #include <mm_camcorder.h>
2572
2573 gboolean record_pause_and_resume_recording()
2574 {
2575         int err;
2576
2577         // Start recording
2578         err =  mm_camcorder_record(hcam);
2579         if (err < 0) {
2580                 printf("Fail to call mm_camcorder_record  = %x\n", err);
2581                 return FALSE;
2582         }
2583
2584         // Wait while recording...
2585
2586         // Pause
2587         err =  mm_camcorder_pause(hcam);
2588         if (err < 0) {
2589                 printf("Fail to call mm_camcorder_pause  = %x\n", err);
2590                 return FALSE;
2591         }
2592
2593         // Pausing...
2594
2595         // Resume
2596         err =  mm_camcorder_record(hcam);
2597         if (err < 0) {
2598                 printf("Fail to call mm_camcorder_record  = %x\n", err);
2599                 return FALSE;
2600         }
2601
2602         return TRUE;
2603 }
2604
2605
2606  *      @endcode
2607  */
2608 int mm_camcorder_pause(MMHandleType camcorder);
2609
2610
2611 /**
2612  *    mm_camcorder_commit:\n
2613  *  Stop recording and save results.  (Audio/Video mode only)\n
2614  *  After starting recording, encoded data frame will be stored in the location specified in MMCAM_TARGET_FILENAME.
2615  *  Some encoder or muxer require a certain type of finalizing such as adding some information to header.
2616  *  This function takes that roll. So if you don't call this function after recording, the result file may not be playable.\n
2617  *  After committing successfully, camcorder resumes displaying preview (video recording case).
2618  *  Because this is the function for saving the recording result, the operation is available 
2619  *  only when the mode of camcorder is MM_CAMCORDER_MODE_AUDIO or MM_CAMCORDER_MODE_VIDEO. 
2620  *
2621  *      @param[in]      camcorder       A handle of camcorder.
2622  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2623  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2624  *      @see            mm_camcorder_cancel
2625  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_RECORDING
2626  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_PREPARE
2627  *      @remarks        This function can take a few second when recording time is long.
2628  *                      and if there are only quite few input buffer from video src or audio src,
2629  *                      committing could be failed.
2630  *      @par example
2631  *      @code
2632
2633 #include <mm_camcorder.h>
2634
2635 gboolean record_and_save_video_file()
2636 {
2637         int err;
2638
2639         // Start recording
2640         err =  mm_camcorder_record(hcam);
2641         if (err < 0) {
2642                 printf("Fail to call mm_camcorder_record  = %x\n", err);
2643                 return FALSE;
2644         }
2645
2646         // Wait while recording for test...
2647         // In normal case, mm_camcorder_record() and mm_camcorder_commit() aren't called in the same function.
2648
2649         // Save file
2650         err =  mm_camcorder_commit(hcam);
2651         if (err < 0) {
2652                 printf("Fail to call mm_camcorder_commit  = %x\n", err);
2653                 return FALSE;
2654         }
2655
2656         return TRUE;
2657 }
2658
2659  *      @endcode
2660  */
2661 int mm_camcorder_commit(MMHandleType camcorder);
2662
2663
2664 /**
2665  *      mm_camcorder_cancel:\n
2666  *    Stop recording and discard the result. (Audio/Video mode only)
2667  *      When a user want to finish recording without saving the result file, this function can be used.
2668  *      Like mm_camcorder_commit(), this function also stops recording, release related resources(like codec) ,and goes back to preview status.
2669  *      However, instead of saving file, this function unlinks(delete) the result.\n
2670  *      Because this is the function for canceling recording, the operation is available 
2671  *      only when mode is MM_CAMCORDER_MODE_AUDIO or MM_CAMCORDER_MODE_VIDEO. 
2672  *
2673  *      @param[in]      camcorder       A handle of camcorder.
2674  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2675  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2676  *      @see            mm_camcorder_commit
2677  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_RECORDING
2678  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_PREPARE
2679  *      @remarks        None
2680  *      @par example
2681  *      @code
2682
2683 #include <mm_camcorder.h>
2684
2685 gboolean record_and_cancel_video_file()
2686 {
2687         int err;
2688
2689         // Start recording
2690         err =  mm_camcorder_record(hcam);
2691         if (err < 0) {
2692                 printf("Fail to call mm_camcorder_record  = %x\n", err);
2693                 return FALSE;
2694         }
2695
2696         // Wait while recording...
2697
2698         // Cancel recording
2699         err =  mm_camcorder_cancel(hcam);
2700         if (err < 0) {
2701                 printf("Fail to call mm_camcorder_cancel  = %x\n", err);
2702                 return FALSE;
2703         }
2704
2705         return TRUE;
2706 }
2707
2708  *      @endcode
2709  */
2710 int mm_camcorder_cancel(MMHandleType camcorder);
2711
2712
2713 /**
2714  *    mm_camcorder_set_message_callback:\n
2715  *  Set callback for receiving messages from camcorder. Through this callback function, camcorder
2716  *  sends various message including status changes, asynchronous error, capturing, and limitations.
2717  *  One thing you have to know is that message callback is working on the main loop of application.
2718  *  So until releasing the main loop, message callback will not be called.
2719  *
2720  *      @param[in]      camcorder       A handle of camcorder.
2721  *      @param[in]      callback        Function pointer of callback function. Please refer 'MMMessageCallback'.
2722  *      @param[in]      user_data       User parameter for passing to callback function.
2723  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2724  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2725  *      @see            MMMessageCallback
2726  *      @pre            None
2727  *      @post           None
2728  *      @remarks        registered 'callback' is called on main loop of the application. So until the main loop is released, 'callback' will not be called.
2729  *      @par example
2730  *      @code
2731
2732 #include <mm_camcorder.h>
2733
2734 gboolean setting_msg_callback()
2735 {
2736         //set callback
2737         mm_camcorder_set_message_callback(hcam,(MMMessageCallback)msg_callback, (void*)hcam);
2738
2739         return TRUE;
2740 }
2741
2742
2743  *      @endcode
2744  */
2745 int mm_camcorder_set_message_callback(MMHandleType camcorder, MMMessageCallback callback, void *user_data);
2746
2747
2748 /**
2749  *    mm_camcorder_set_video_stream_callback:\n
2750  *  Set callback for user defined video stream callback function.
2751  *  Users can retrieve video frame using registered callback. 
2752  *  The callback function holds the same buffer that will be drawed on the display device.
2753  *  So if an user change the buffer, it will be displayed on the device.
2754  *
2755  *      @param[in]      camcorder       A handle of camcorder.
2756  *      @param[in]      callback        Function pointer of callback function.
2757  *      @param[in]      user_data       User parameter for passing to callback function.
2758  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2759  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2760  *      @see            mm_camcorder_video_stream_callback
2761  *      @pre            None
2762  *      @post           None
2763  *      @remarks        registered 'callback' is called on internal thread of camcorder. Regardless of the status of main loop, this function will be called.
2764  *      @par example
2765  *      @code
2766
2767 #include <mm_camcorder.h>
2768
2769 gboolean setting_video_stream_callback()
2770 {
2771         //set callback
2772         mm_camcorder_set_video_stream_callback(hcam, (mm_camcorder_video_stream_callback)camcordertest_video_stream_cb, (void*)hcam);
2773
2774         return TRUE;
2775 }
2776  *      @endcode
2777  */
2778 int mm_camcorder_set_video_stream_callback(MMHandleType camcorder, mm_camcorder_video_stream_callback callback, void *user_data);
2779
2780
2781 /**
2782  *    mm_camcorder_set_video_capture_callback:\n
2783  *  Set callback for user defined video capture callback function.  (Image mode only)
2784  *  mm_camcorder deliever captured image through the callback.\n
2785  *  Normally, this function provides main captured image and thumnail image. But depending on the environment,
2786  *  thumnail would not be available. Information related with main captured image and thumnail image is also included
2787  *  in the argument of the callback function. 
2788  *  For more detail information of callback, please refer 'mm_camcorder_video_capture_callback'.
2789  *
2790  *      @param[in]      camcorder       A handle of camcorder.
2791  *      @param[in]      callback        Function pointer of callback function.
2792  *      @param[in]      user_data       User parameter for passing to callback function.
2793  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2794  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2795  *      @see            mm_camcorder_video_capture_callback
2796  *      @pre            None
2797  *      @post           None
2798  *      @remarks        registered 'callback' is called on internal thread of camcorder. Regardless of the status of main loop, this function will be called.
2799  *      @par example
2800  *      @code
2801
2802 #include <mm_camcorder.h>
2803
2804 gboolean setting_capture_callback()
2805 {
2806         //set callback
2807         mm_camcorder_set_video_capture_callback(hcam,(mm_camcorder_video_capture_callback)camcordertest_video_capture_cb, (void*)hcam);
2808
2809         return TRUE;
2810 }
2811  *      @endcode
2812  */
2813 int mm_camcorder_set_video_capture_callback(MMHandleType camcorder, mm_camcorder_video_capture_callback callback, void *user_data);
2814
2815
2816 /**
2817  *    mm_camcorder_set_audio_stream_callback:\n
2818  *  Set callback for user defined audio stream callback function.
2819  *  Users can retrieve audio data using registered callback.
2820  *  The callback function holds the same buffer that will be recorded.
2821  *  So if an user change the buffer, the result file will has the buffer.
2822  *
2823  *      @param[in]      camcorder       A handle of camcorder.
2824  *      @param[in]      callback        Function pointer of callback function.
2825  *      @param[in]      user_data       User parameter for passing to callback function.
2826  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2827  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2828  *      @see            mm_camcorder_audio_stream_callback
2829  *      @pre            None
2830  *      @post           None
2831  *      @remarks        registered 'callback' is called on internal thread of camcorder. Regardless of the status of main loop, this function will be called.
2832  *      @par example
2833  *      @code
2834
2835 #include <mm_camcorder.h>
2836
2837 gboolean setting_audio_stream_callback()
2838 {
2839         //set callback
2840         mm_camcorder_set_audio_stream_callback(hcam, (mm_camcorder_audio_stream_callback)camcordertest_audio_stream_cb, (void*)hcam);
2841
2842         return TRUE;
2843 }
2844  *      @endcode
2845  */
2846 int mm_camcorder_set_audio_stream_callback(MMHandleType camcorder, mm_camcorder_audio_stream_callback callback, void *user_data);
2847
2848
2849 /**
2850  *    mm_camcorder_get_state:\n
2851  *  Get the current state of camcorder.
2852  *  mm_camcorder is working on the base of its state. An user should check the state of mm_camcorder before calling its functions.
2853  *  If the handle is avaiable, user can retrieve the value.
2854  *
2855  *      @param[in]      camcorder       A handle of camcorder.
2856  *      @param[out]     state           On return, it contains current state of camcorder.
2857  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2858  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2859  *      @see            MMCamcorderStateType
2860  *      @pre            None
2861  *      @post           None
2862  *      @remarks        None
2863  *      @par example
2864  *      @code
2865
2866 #include <mm_camcorder.h>
2867
2868 gboolean get_state_of_camcorder()
2869 {
2870         MMCamcorderStateType state;
2871
2872         //Get state of camcorder
2873         mm_camcorder_get_state(hcam, &state);
2874         printf("Current status is %d\n", state);
2875
2876         return TRUE;
2877 }
2878
2879  *      @endcode
2880  */
2881 int mm_camcorder_get_state(MMHandleType camcorder, MMCamcorderStateType *state);
2882
2883
2884 /**
2885  *    mm_camcorder_get_attributes:\n
2886  *  Get attributes of camcorder with given attribute names. This function can get multiple attributes
2887  *  simultaneously. If one of attribute fails, this function will stop at the point. 
2888  *  'err_attr_name' let you know the name of the attribute.
2889  *
2890  *      @param[in]      camcorder       Specifies the camcorder  handle.
2891  *      @param[out]     err_attr_name   Specifies the name of attributes that made an error. If the function doesn't make an error, this will be null. @n
2892  *                                      Free this variable after using.
2893  *      @param[in]      attribute_name  attribute name that user want to get.
2894  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2895  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2896  *      @pre            None
2897  *      @post           None
2898  *      @remarks        You can retrieve multiple attributes at the same time.  @n
2899  *                      This function must finish with 'NULL' argument.  @n
2900  *                      ex) mm_camcorder_get_attributes(....... , NULL);
2901  *      @see            mm_camcorder_set_attributes
2902  *      @par example
2903  *      @code
2904
2905 #include <mm_camcorder.h>
2906
2907 gboolean getting_attribute()
2908 {
2909         int err;
2910         MMCamPreset cam_info;
2911         char *err_attr_name = NULL;
2912         void * hdisplay = NULL;
2913         int hsize = 0;
2914
2915         hdisplay = &ad.xid;             //xid of xwindow. This value can be different depending on your environment.
2916         hsize = sizeof(ad.xid);         //size of xid structure.
2917
2918         // camcorder attribute setting
2919         err = mm_camcorder_get_attributes(hcamcorder, NULL,     //The second is the argument for debugging. But you can skip this.
2920                                           MMCAM_MODE,  &mode,   //You have to input a pointer instead of variable itself.
2921                                           NULL);                //mm_camcorder_set_attributes() should be finished with a NULL argument.
2922
2923         return TRUE;
2924 }
2925
2926  *      @endcode
2927  */
2928 int mm_camcorder_get_attributes(MMHandleType camcorder,  char **err_attr_name, const char *attribute_name, ...) G_GNUC_NULL_TERMINATED;
2929
2930
2931
2932 /**
2933  *    mm_camcorder_set_attributes:\n
2934  *  Set attributes of camcorder with given attribute names. This function can set multiple attributes
2935  *  simultaneously. If one of attribute fails, this function will stop at the point. 
2936  *  'err_attr_name' let you know the name of the attribute.
2937  *
2938  *      @param[in]      camcorder       Specifies the camcorder  handle.
2939  *      @param[out]     err_attr_name   Specifies the name of attributes that made an error. If the function doesn't make an error, this will be null. @n
2940  *                                      Free this variable after using.
2941  *      @param[in]      attribute_name  attribute name that user want to set.
2942  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2943  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2944  *      @pre            None
2945  *      @post           None
2946  *      @remarks        You can put multiple attributes to camcorder at the same time.  @n
2947  *                      This function must finish with 'NULL' argument.  @n
2948  *                      ex) mm_camcorder_set_attributes(....... , NULL);
2949  *      @see            mm_camcorder_get_attributes
2950  *      @par example
2951  *      @code
2952
2953 #include <mm_camcorder.h>
2954
2955 gboolean setting_attribute()
2956 {
2957         int err;
2958         MMCamPreset cam_info;
2959         char *err_attr_name = NULL;
2960         void * hdisplay = NULL;
2961         int hsize = 0;
2962
2963         hdisplay = &ad.xid;             //xid of xwindow. This value can be different depending on your environment.
2964         hsize = sizeof(ad.xid);         //size of xid structure.
2965
2966         // camcorder attribute setting
2967         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,           //The second is the argument for debugging.
2968                                           MMCAM_MODE, MM_CAMCORDER_MODE_IMAGE,
2969                                           MMCAM_IMAGE_ENCODER, MM_IMAGE_CODEC_JPEG,
2970                                           MMCAM_CAMERA_WIDTH, 640,
2971                                           MMCAM_CAMERA_HEIGHT, 480,
2972                                           MMCAM_CAMERA_FORMAT, MM_PIXEL_FORMAT_YUYV,
2973                                           MMCAM_CAMERA_FPS, 30,
2974                                           MMCAM_DISPLAY_ROTATION, MM_DISPLAY_ROTATION_270,
2975                                           MMCAM_DISPLAY_HANDLE, (void*) hdisplay,          hsize,               //Beware some types require 'size' value, too. (STRING, DATA type attributes)
2976                                           MMCAM_CAPTURE_FORMAT, MM_PIXEL_FORMAT_ENCODED,
2977                                           MMCAM_CAPTURE_WIDTH, 640,
2978                                           MMCAM_CAPTURE_HEIGHT, 480,
2979                                           NULL);                //mm_camcorder_set_attributes() should be finished with a NULL argument.
2980
2981         if (err < 0) {
2982                 printf("Set attrs fail. (%s:%x)\n", err_attr_name, err);                //When the function failed, 'err_attr_name' has the name of attr that made the error.
2983                 if (err_attr_name) {
2984                         free(err_attr_name);                    //Please free 'err_attr_name', after using the argument.
2985                         err_attr_name = NULL;
2986                         return FALSE;
2987                 }
2988         }
2989
2990         return TRUE;
2991 }
2992  *      @endcode
2993  */
2994 int mm_camcorder_set_attributes(MMHandleType camcorder,  char **err_attr_name, const char *attribute_name, ...) G_GNUC_NULL_TERMINATED;
2995
2996
2997 /**
2998  *    mm_camcorder_get_attribute_info:\n
2999  *  Get detail information of the attribute. To manager attributes, an user may want to know the exact character of the attribute,
3000  *  such as type, flag, and validity. This is the function to provide such information.
3001  *  Depending on the 'validity_type', validity union would be different. To know about the type of union, please refer 'MMCamAttrsInfo'.
3002  *
3003  *      @param[in]      camcorder       Specifies the camcorder  handle.
3004  *      @param[in]      attribute_name  attribute name that user want to get information.
3005  *      @param[out]     info            a structure that holds information related with the attribute.
3006  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3007  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3008  *      @pre            None
3009  *      @post           None
3010  *      @remarks        If the function succeeds, 'info' holds detail information about the attribute, such as type,
3011  *                      flag, validity_type, validity_values, and default values.
3012  *      @see            mm_camcorder_get_attributes, mm_camcorder_set_attributes
3013  *      @par example
3014  *      @code
3015
3016 #include <mm_camcorder.h>
3017
3018 gboolean getting_info_from_attribute()
3019 {
3020         MMCamAttrsInfo info;
3021         int err;
3022
3023         err = mm_camcorder_get_attribute_info(handle, MMCAM_CAPTURE_HEIGHT, &info);
3024         if (err < 0) {
3025                 printf("Fail to call mm_camcorder_get_attribute_info()");
3026                 return FALSE;
3027         }
3028
3029         //Now 'info' has many information about 'MMCAM_CAPTURE_HEIGHT'
3030
3031         return TRUE;
3032 }
3033  *      @endcode
3034  */
3035 int mm_camcorder_get_attribute_info(MMHandleType camcorder, const char *attribute_name, MMCamAttrsInfo *info);
3036
3037
3038 /**
3039  *    mm_camcorder_get_fps_list_by_resolution:\n
3040  *  Get detail information of the fps configure. To manager fps, an user may want to know the supported fps list by the current preview resolution,
3041  *  Gives attribute information structure, from the configure data.
3042  *  Depending on the 'validity_type', validity union would be different. To know about the type of union, please refer 'MMCamAttrsInfo'.
3043  *
3044  *      @param[in]      camcorder       Specifies the camcorder  handle.
3045  *      @param[in]      width   width value of the current Preview resolution.
3046  *      @param[in]      height  height value of the current Preview resolution.
3047  *      @param[out]     fps_info                a structure that holds information related with the attribute.
3048  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3049  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3050  *      @pre            None
3051  *      @post           None
3052  *      @remarks        If the function succeeds, 'info' holds detail information about the attribute, such as type,
3053  *                      flag, validity_type, validity_values, and default values.
3054  *      @see            mm_camcorder_get_attributes, mm_camcorder_set_attributes
3055  *      @par example
3056  *      @code
3057
3058 #include <mm_camcorder.h>
3059
3060 gboolean getting_info_from_attribute()
3061 {
3062         MMCamAttrsInfo info;
3063         int err;
3064
3065         err = mm_camcorder_get_fps_list_by_resolution(handle, width, height, &info);
3066         if (err < 0) {
3067                 printf("Fail to call mm_camcorder_get_attribute_info()");
3068                 return FALSE;
3069         }
3070
3071         //Now 'info' has many information about 'MMCAM_CAPTURE_HEIGHT'
3072
3073         return TRUE;
3074 }
3075  *      @endcode
3076  */
3077 int mm_camcorder_get_fps_list_by_resolution(MMHandleType camcorder, int width, int height, MMCamAttrsInfo *fps_info);
3078
3079
3080 /**
3081  *    mm_camcorder_init_focusing:\n
3082  *  Initialize focusing. \n
3083  *  This function stops focusing action and adjust the camera lens to initial position.
3084  *  Some camera applciation requires to initialize its lens position after releasing half shutter. In that case,
3085  *  this should be a good choice. Comparing with mm_camcorder_stop_focusing, this function not only stops focusing,
3086  *  but also initialize the lens. Preview image might be out-focused after calling this function.
3087  *      @param[in]      camcorder  A handle of camcorder.
3088  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3089  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3090  *      @pre            The status of camcorder should be MM_CAMCORDER_STATE_PREPARE, MM_CAMCORDER_STATE_RECORDING, or MM_CAMCORDER_STATE_PAUSED.
3091  *      @post           None
3092  *      @remarks        None
3093  *      @see            mm_camcorder_start_focusing, mm_camcorder_stop_focusing
3094  *      @par example
3095  *      @code
3096
3097 #include <mm_camcorder.h>
3098
3099 gboolean start_autofocus()
3100 {
3101         int err;
3102         char * err_attr_name = NULL;
3103
3104         // Set focus mode to 'AUTO' and scan range to 'AF Normal'.
3105         //You just need to set these values one time. After that, just call mm_camcorder_start_focusing().
3106         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,
3107                                           MMCAM_CAMERA_FOCUS_MODE, MM_CAMCORDER_FOCUS_MODE_AUTO,
3108                                           MMCAM_CAMERA_AF_SCAN_RANGE, MM_CAMCORDER_AUTO_FOCUS_NORMAL,
3109                                           NULL);
3110
3111         if (err < 0) {
3112                 printf("Set attrs fail. (%s:%x)\n", err_attr_name, err);
3113                 if (err_attr_name) {
3114                         free(err_attr_name);
3115                         err_attr_name = NULL;
3116                         return FALSE;
3117                 }
3118         }
3119
3120         mm_camcorder_init_focusing(hcam);
3121         mm_camcorder_start_focusing(hcam);
3122         printf("Waiting for adjusting focus\n");
3123
3124         // Waiting for 'MM_MESSAGE_CAMCORDER_FOCUS_CHANGED'
3125
3126         return TRUE;
3127 }
3128
3129  *      @endcode
3130  */
3131 int mm_camcorder_init_focusing(MMHandleType camcorder);
3132
3133
3134 /**
3135  *    mm_camcorder_start_focusing:\n
3136  *  Start focusing. \n
3137  *  This function command to start focusing opeartion. Because focusing operation depends on mechanic or electric module,
3138  *  it may take small amount of time. (For ex, 500ms ~ 3sec). \n
3139  *  This function works asynchronously. When an user call this function,  it will return immediately. 
3140  *  However, focusing operation will continue until it gets results. 
3141  *  After finishing operation, you can get 'MM_MESSAGE_CAMCORDER_FOCUS_CHANGED' message.
3142  *  'param.code' of the message structure describes the fucusing was success or not.
3143  *
3144  *      @param[in]      camcorder       A handle of camcorder.
3145  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3146  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3147  *      @pre            None
3148  *      @post           None
3149  *      @remarks        None
3150  *      @see            mm_camcorder_init_focusing, mm_camcorder_stop_focusing
3151  *      @par example
3152  *      @code
3153
3154 #include <mm_camcorder.h>
3155
3156 gboolean start_autofocus()
3157 {
3158         int err;
3159         char * err_attr_name = NULL;
3160
3161         // Set focus mode to 'AUTO' and scan range to 'AF Normal'.
3162         //You just need to set these values one time. After that, just call mm_camcorder_start_focusing().
3163         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,
3164                                           MMCAM_CAMERA_FOCUS_MODE, MM_CAMCORDER_FOCUS_MODE_AUTO,
3165                                           MMCAM_CAMERA_AF_SCAN_RANGE, MM_CAMCORDER_AUTO_FOCUS_NORMAL,
3166                                           NULL);
3167
3168         if (err < 0) {
3169                 printf("Set attrs fail. (%s:%x)\n", err_attr_name, err);
3170                 if (err_attr_name) {
3171                         free(err_attr_name);
3172                         err_attr_name = NULL;
3173                         return FALSE;
3174                 }
3175         }
3176
3177         mm_camcorder_init_focusing(hcam);
3178         mm_camcorder_start_focusing(hcam);
3179         printf("Waiting for adjusting focus\n");
3180
3181         // Waiting for 'MM_MESSAGE_CAMCORDER_FOCUS_CHANGED'
3182
3183         return TRUE;
3184 }
3185
3186  *      @endcode
3187  */
3188 int mm_camcorder_start_focusing(MMHandleType camcorder);
3189
3190
3191 /**
3192  *    mm_camcorder_stop_focusing:\n
3193  *  Stop focusing. This function halts focusing operation.\n
3194  *  This is the function to stop focusing in the middle of the operation. So if focusing is already finished or not started yet,
3195  *  this function will do nothing.
3196  *
3197  *      @param[in]      camcorder       A handle of camcorder.
3198  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3199  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3200  *      @see            mm_camcorder_init_focusing, mm_camcorder_start_focusing
3201  *      @pre            mm_camcorder_start_focusing() should be called before calling this function. 
3202  *      @post           None
3203  *      @remarks        None
3204  *      @par example
3205  *      @code
3206
3207 #include <mm_camcorder.h>
3208
3209 gboolean stop_autofocus()
3210 {
3211         int err;
3212
3213         //Stop focusing
3214         mm_camcorder_stop_focusing(hcam);
3215
3216         return TRUE;
3217 }
3218
3219  *      @endcode
3220  */
3221 int mm_camcorder_stop_focusing(MMHandleType camcorder);
3222
3223 /**
3224         @}
3225  */
3226
3227 #ifdef __cplusplus
3228 }
3229 #endif
3230
3231 #endif /* __MM_CAMCORDER_H__ */