Remove unused function - mm_camcorder_get_focus_level()
[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 respect 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         exist.
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 position (GPS information)</td>
554         </tr>
555         <tr>
556                 <td>#MMCAM_TAG_LONGITUDE</td>
557                 <td>Longitude of captured position (GPS information)</td>
558         </tr>
559         <tr>
560                 <td>#MMCAM_TAG_ALTITUDE</td>
561                 <td>Altitude of captured position (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 #define MM_CAMCORDER_EXTRA_PREVIEW_STREAM_MAX   10          /**< The maximum number of extra preview stream */
610
611 /*=======================================================================================
612 | MACRO DEFINITIONS                                                                     |
613 ========================================================================================*/
614 /**
615  * Get numerator. Definition for fraction setting, such as MMCAM_CAMERA_SHUTTER_SPEED and MMCAM_CAMERA_EXPOSURE_VALUE.
616  */
617 #define MM_CAMCORDER_GET_NUMERATOR(x)                                   ((int)(((int)(x) >> 16) & 0xFFFF))
618 /**
619  * Get denominator. Definition for fraction setting, such as MMCAM_CAMERA_SHUTTER_SPEED and MMCAM_CAMERA_EXPOSURE_VALUE.
620  */
621 #define MM_CAMCORDER_GET_DENOMINATOR(x)                                 ((int)(((int)(x)) & 0xFFFF))
622 /**
623  * Set fraction value. Definition for fraction setting, such as MMCAM_CAMERA_SHUTTER_SPEED and MMCAM_CAMERA_EXPOSURE_VALUE.
624  */
625 #define MM_CAMCORDER_SET_FRACTION(numerator, denominator)       ((int)((((int)(numerator)) << 16) | (int)(denominator)))
626
627 /* Attributes Macros */
628 /**
629  * Mode of camcorder (still/video/audio).
630  * @see         MMCamcorderModeType
631  */
632 #define MMCAM_MODE                              "mode"
633
634 /**
635  * Audio device ID for capturing audio stream.
636  * @see         MMAudioDeviceType (in mm_types.h)
637  */
638 #define MMCAM_AUDIO_DEVICE                      "audio-device"
639
640 /**
641  * Video device count.
642  */
643 #define MMCAM_CAMERA_DEVICE_COUNT               "camera-device-count"
644
645 /**
646  * Facing direction of camera device.
647  * @see         MMCamcorderCameraFacingDirection
648  */
649 #define MMCAM_CAMERA_FACING_DIRECTION           "camera-facing-direction"
650
651 /**
652  * Audio codec for encoding audio stream.
653  * @see         MMAudioCodecType  (in mm_types.h)
654  */
655 #define MMCAM_AUDIO_ENCODER                     "audio-encoder"
656
657 /**
658  * Video codec for encoding video stream.
659  * @see         MMVideoCodecType (in mm_types.h)
660  */
661 #define MMCAM_VIDEO_ENCODER                     "video-encoder"
662
663 /**
664  * Image codec for capturing still-image.
665  * @see         MMImageCodecType (in mm_types.h)
666  */
667 #define MMCAM_IMAGE_ENCODER                     "image-encoder"
668
669 /**
670  * File format for recording media stream.
671  * @see         MMFileFormatType (in mm_types.h)
672  */
673 #define MMCAM_FILE_FORMAT                       "file-format"
674
675 /**
676  * Sampling rate of audio stream. This is an integer field.
677  */
678 #define MMCAM_AUDIO_SAMPLERATE                  "audio-samplerate"
679
680 /**
681  * Audio format of each sample.
682  * @see         MMCamcorderAudioFormat
683  */
684 #define MMCAM_AUDIO_FORMAT                      "audio-format"
685
686 /**
687  * Channels of each sample. This is an integer field.
688  */
689 #define MMCAM_AUDIO_CHANNEL                     "audio-channel"
690
691 /**
692  * Input volume of audio source. Double value.
693  */
694 #define MMCAM_AUDIO_VOLUME                      "audio-volume"
695
696 /**
697  * Disable Audio stream when record.
698  */
699 #define MMCAM_AUDIO_DISABLE                     "audio-disable"
700
701 /**
702  * Set audio input route
703  * @remarks     Deprecated. This will be removed soon.
704  * @see         MMAudioRoutePolicy (in mm_types.h)
705  */
706 #define MMCAM_AUDIO_INPUT_ROUTE                 "audio-input-route"
707
708 /**
709  * Format of video stream. This is an integer field
710  * @see         MMPixelFormatType (in mm_types.h)
711  */
712 #define MMCAM_CAMERA_FORMAT                     "camera-format"
713
714 /**
715  * Slow motion rate when video recording
716  * @remarks     Deprecated
717  */
718 #define MMCAM_CAMERA_SLOW_MOTION_RATE           "camera-slow-motion-rate"
719
720 /**
721  * Motion rate when video recording
722  * @remarks     This should be bigger than 0(zero).
723  *              Default value is 1 and it's for normal video recording.
724  *              If the value is smaller than 1, recorded file will be played slower,
725  *              otherwise, recorded file will be played faster.
726  */
727 #define MMCAM_CAMERA_RECORDING_MOTION_RATE      "camera-recording-motion-rate"
728
729 /**
730  * Frames per second. This is an integer field
731  *
732  */
733 #define MMCAM_CAMERA_FPS                        "camera-fps"
734
735 /**
736  * Width of preview stream.
737  */
738 #define MMCAM_CAMERA_WIDTH                      "camera-width"
739
740 /**
741  * Height of preview stream.
742  */
743 #define MMCAM_CAMERA_HEIGHT                     "camera-height"
744
745 /**
746  * Width of video stream.
747  */
748 #define MMCAM_VIDEO_WIDTH                       "video-width"
749
750 /**
751  * Height of video stream.
752  */
753 #define MMCAM_VIDEO_HEIGHT                      "video-height"
754
755 /**
756  * Digital zoom level.
757  */
758 #define MMCAM_CAMERA_DIGITAL_ZOOM               "camera-digital-zoom"
759
760 /**
761  * Optical zoom level.
762  */
763 #define MMCAM_CAMERA_OPTICAL_ZOOM               "camera-optical-zoom"
764
765 /**
766  * Focus mode
767  * @see         MMCamcorderFocusMode
768  */
769 #define MMCAM_CAMERA_FOCUS_MODE                 "camera-focus-mode"
770
771 /**
772  * Focus level
773  */
774 #define MMCAM_CAMERA_FOCUS_LEVEL                "camera-focus-level"
775
776 /**
777  * AF Scan range
778  * @see         MMCamcorderAutoFocusType
779  */
780 #define MMCAM_CAMERA_AF_SCAN_RANGE              "camera-af-scan-range"
781
782 /**
783  * X 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_X                 "camera-af-touch-x"
787
788 /**
789  * Y coordinate of touching position. 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_Y                 "camera-af-touch-y"
793
794 /**
795  * Width 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_WIDTH             "camera-af-touch-width"
799
800 /**
801  * Height of touching area. Only available when you set '#MM_CAMCORDER_AUTO_FOCUS_TOUCH' to '#MMCAM_CAMERA_AF_SCAN_RANGE'.
802  * @see         MMCamcorderAutoFocusType
803  */
804 #define MMCAM_CAMERA_AF_TOUCH_HEIGHT            "camera-af-touch-height"
805
806 /**
807  * Exposure mode
808  * @see         MMCamcorderAutoExposureType
809  */
810 #define MMCAM_CAMERA_EXPOSURE_MODE              "camera-exposure-mode"
811
812 /**
813  * Exposure value
814  */
815 #define MMCAM_CAMERA_EXPOSURE_VALUE             "camera-exposure-value"
816
817 /**
818  * f number of camera
819  */
820 #define MMCAM_CAMERA_F_NUMBER                   "camera-f-number"
821
822 /**
823  * Shutter speed
824  */
825 #define MMCAM_CAMERA_SHUTTER_SPEED              "camera-shutter-speed"
826
827 /**
828  * ISO of capturing image
829  * @see         MMCamcorderISOType
830  */
831 #define MMCAM_CAMERA_ISO                        "camera-iso"
832
833 /**
834  * Camera gain
835  */
836 #define MMCAM_CAMERA_GAIN                       "camera-gain"
837
838 /**
839  * Step of camera gain
840  */
841 #define MMCAM_CAMERA_GAIN_STEP                  "camera-gain-step"
842
843 /**
844  * Wide dynamic range.
845  * @see         MMCamcorderWDRMode
846  */
847 #define MMCAM_CAMERA_WDR                        "camera-wdr"
848
849 /**
850  * Focal length of camera lens.
851  */
852 #define MMCAM_CAMERA_FOCAL_LENGTH               "camera-focal-length"
853
854 /**
855  * Anti Handshake
856  * @see         MMCamcorderAHSMode
857  */
858 #define MMCAM_CAMERA_ANTI_HANDSHAKE             "camera-anti-handshake"
859
860 /**
861  * Video Stabilization
862  * @see         MMCamcorderVideoStabilizationMode
863  */
864 #define MMCAM_CAMERA_VIDEO_STABILIZATION        "camera-video-stabilization"
865
866 /**
867  * FPS Auto. When you set true to this attribute, FPS will vary depending on the amount of the light.
868  */
869 #define MMCAM_CAMERA_FPS_AUTO                   "camera-fps-auto"
870
871 /**
872  * Rotation angle of video input stream.
873  * @see         MMVideoInputRotationType (in mm_types.h)
874  */
875 #define MMCAM_CAMERA_ROTATION                   "camera-rotation"
876
877 /**
878  * HDR(High Dynamic Range) Capture mode
879  * @see         MMCamcorderHDRMode
880  */
881 #define MMCAM_CAMERA_HDR_CAPTURE                "camera-hdr-capture"
882
883 /**
884  * Bitrate of Audio Encoder
885  */
886 #define MMCAM_AUDIO_ENCODER_BITRATE             "audio-encoder-bitrate"
887
888 /**
889  * Bitrate of Video Encoder
890  */
891 #define MMCAM_VIDEO_ENCODER_BITRATE             "video-encoder-bitrate"
892
893 /**
894  * Encoding quality of Image codec
895  */
896 #define MMCAM_IMAGE_ENCODER_QUALITY             "image-encoder-quality"
897
898 /**
899  * Brightness level
900  */
901 #define MMCAM_FILTER_BRIGHTNESS                 "filter-brightness"
902
903 /**
904  * Contrast level
905  */
906 #define MMCAM_FILTER_CONTRAST                   "filter-contrast"
907
908 /**
909  * White balance
910  * @see         MMCamcorderWhiteBalanceType
911  */
912 #define MMCAM_FILTER_WB                         "filter-wb"
913
914 /**
915  * White balance temperature
916  */
917 #define MMCAM_FILTER_WB_TEMPERATURE             "filter-wb-temperature"
918
919 /**
920  * Step of white balance temperature
921  */
922 #define MMCAM_FILTER_WB_TEMPERATURE_STEP        "filter-wb-temperature-step"
923
924 /**
925  * Color tone. (Color effect)
926  * @see         MMCamcorderColorToneType
927  */
928 #define MMCAM_FILTER_COLOR_TONE                 "filter-color-tone"
929
930 /**
931  * Scene mode (Program mode)
932  * @see         MMCamcorderSceneModeType
933  */
934 #define MMCAM_FILTER_SCENE_MODE                 "filter-scene-mode"
935
936 /**
937  * Saturation  level
938  */
939 #define MMCAM_FILTER_SATURATION                 "filter-saturation"
940
941 /**
942  * Hue  level
943  */
944 #define MMCAM_FILTER_HUE                        "filter-hue"
945
946 /**
947  * Sharpness  level
948  */
949 #define MMCAM_FILTER_SHARPNESS                  "filter-sharpness"
950
951 /**
952  * Pixel format that you want to capture. If you set MM_PIXEL_FORMAT_ENCODED,
953  * the result will be encoded by image codec specified in #MMCAM_IMAGE_ENCODER.
954  * If not, the result will be raw data.
955  *
956  * @see         MMPixelFormatType (in mm_types.h)
957  */
958 #define MMCAM_CAPTURE_FORMAT                    "capture-format"
959
960 /**
961  * Width of the image that you want to capture
962  */
963 #define MMCAM_CAPTURE_WIDTH                     "capture-width"
964
965 /**
966  * Height of the image that you want to capture
967
968  */
969 #define MMCAM_CAPTURE_HEIGHT                    "capture-height"
970
971 /**
972  * Total count of capturing. If you set this, it will capture multiple time.
973  */
974 #define MMCAM_CAPTURE_COUNT                     "capture-count"
975
976 /**
977  * Interval between each capturing on Multishot.
978  */
979 #define MMCAM_CAPTURE_INTERVAL                  "capture-interval"
980
981 /**
982  * Set this when you want to stop multishot immediately.
983  */
984 #define MMCAM_CAPTURE_BREAK_CONTINUOUS_SHOT     "capture-break-cont-shot"
985
986 /**
987  * Raw data of captured image which resolution is same as preview.
988  * This is READ-ONLY attribute and only available in capture callback.
989  * This should be used after casted as MMCamcorderCaptureDataType.
990  */
991 #define MMCAM_CAPTURED_SCREENNAIL               "captured-screennail"
992
993 /**
994  * Raw data of EXIF. This is READ-ONLY attribute and only available in capture callback.
995  */
996 #define MMCAM_CAPTURED_EXIF_RAW_DATA            "captured-exif-raw-data"
997
998 /**
999  * Pointer of display buffer or ID of xwindow.
1000  */
1001 #define MMCAM_DISPLAY_HANDLE                    "display-handle"
1002
1003 /**
1004  * Device of display.
1005  * @see         MMDisplayDeviceType (in mm_types.h)
1006  */
1007 #define MMCAM_DISPLAY_DEVICE                    "display-device"
1008
1009 /**
1010  * Surface of display.
1011  * @see         MMDisplaySurfaceType (in mm_types.h)
1012  */
1013 #define MMCAM_DISPLAY_SURFACE                    "display-surface"
1014
1015 /**
1016  * Mode of display.
1017  * @see         MMDisplayModeType (in mm_types.h)
1018  */
1019 #define MMCAM_DISPLAY_MODE                       "display-mode"
1020
1021 /**
1022  * X position of display rectangle.
1023  * This is only available when #MMCAM_DISPLAY_GEOMETRY_METHOD is MM_CAMCORDER_CUSTOM_ROI.
1024  * @see         MMCamcorderGeometryMethod
1025  */
1026 #define MMCAM_DISPLAY_RECT_X                    "display-rect-x"
1027
1028 /**
1029  * Y position of display rectangle
1030  * This is only available when #MMCAM_DISPLAY_GEOMETRY_METHOD is MM_CAMCORDER_CUSTOM_ROI.
1031  * @see         MMCamcorderGeometryMethod
1032  */
1033 #define MMCAM_DISPLAY_RECT_Y                    "display-rect-y"
1034
1035 /**
1036  * Width of display rectangle
1037  * This is only available when #MMCAM_DISPLAY_GEOMETRY_METHOD is MM_CAMCORDER_CUSTOM_ROI.
1038  * @see         MMCamcorderGeometryMethod
1039  */
1040 #define MMCAM_DISPLAY_RECT_WIDTH                "display-rect-width"
1041
1042 /**
1043  * Height of display rectangle
1044  * This is only available when #MMCAM_DISPLAY_GEOMETRY_METHOD is MM_CAMCORDER_CUSTOM_ROI.
1045  * @see         MMCamcorderGeometryMethod
1046  */
1047 #define MMCAM_DISPLAY_RECT_HEIGHT               "display-rect-height"
1048
1049 /**
1050  * X position of source rectangle. When you want to crop the source, you can set the area with this value.
1051  */
1052 #define MMCAM_DISPLAY_SOURCE_X                  "display-src-x"
1053
1054 /**
1055  * Y position of source rectangle. When you want to crop the source, you can set the area with this value.
1056  */
1057 #define MMCAM_DISPLAY_SOURCE_Y                  "display-src-y"
1058
1059 /**
1060  * Width of source rectangle. When you want to crop the source, you can set the area with this value.
1061  */
1062 #define MMCAM_DISPLAY_SOURCE_WIDTH              "display-src-width"
1063
1064 /**
1065  * Height of source rectangle. When you want to crop the source, you can set the area with this value.
1066  */
1067 #define MMCAM_DISPLAY_SOURCE_HEIGHT             "display-src-height"
1068
1069 /**
1070  * Rotation angle of display.
1071  * @see         MMDisplayRotationType (in mm_types.h)
1072  */
1073 #define MMCAM_DISPLAY_ROTATION                  "display-rotation"
1074
1075 /**
1076  * Flip of display.
1077  * @see         MMFlipType (in mm_types.h)
1078  */
1079 #define MMCAM_DISPLAY_FLIP                      "display-flip"
1080
1081 /**
1082  * Visible of display.
1083  */
1084 #define MMCAM_DISPLAY_VISIBLE                   "display-visible"
1085
1086 /**
1087  * A scale of displayed image. Available value is like below.
1088  * @see         MMDisplayScaleType (in mm_types.h)
1089  */
1090 #define MMCAM_DISPLAY_SCALE                     "display-scale"
1091
1092 /**
1093  * A method that describes a form of geometry for display.
1094  * @see         MMCamcorderGeometryMethod
1095  */
1096 #define MMCAM_DISPLAY_GEOMETRY_METHOD           "display-geometry-method"
1097
1098 /**
1099  * A videosink name of evas surface.
1100  * This is READ-ONLY attribute.
1101  */
1102 #define MMCAM_DISPLAY_EVAS_SURFACE_SINK         "display-evas-surface-sink"
1103
1104 /**
1105  * This attribute is only available if value of MMCAM_DISPLAY_EVAS_SURFACE_SINK "evaspixmapsink"
1106  */
1107 #define MMCAM_DISPLAY_EVAS_DO_SCALING           "display-evas-do-scaling"
1108
1109 /**
1110  * Target filename. Only used in Audio/Video recording. This is not used for capturing.
1111  */
1112 #define MMCAM_TARGET_FILENAME                   "target-filename"
1113
1114 /**
1115  * Maximum size(Kbyte) of recording file. If the size of file reaches this value,
1116  * camcorder will send 'MM_MESSAGE_CAMCORDER_MAX_SIZE' message.
1117  */
1118 #define MMCAM_TARGET_MAX_SIZE                   "target-max-size"
1119
1120 /**
1121  * Time limit(Second) of recording file. If the elapsed time of recording reaches this value,
1122  * camcorder will send 'MM_MESSAGE_CAMCORDER_TIME_LIMIT' message.
1123  */
1124 #define MMCAM_TARGET_TIME_LIMIT                 "target-time-limit"
1125
1126 /**
1127  * Enable to write tags. If this value is FALSE, none of tag information will be written to captured file.
1128  */
1129 #define MMCAM_TAG_ENABLE                        "tag-enable"
1130
1131 /**
1132  * Image description.
1133  */
1134 #define MMCAM_TAG_IMAGE_DESCRIPTION             "tag-image-description"
1135
1136 /**
1137  * Orientation of captured image
1138  * @see         MMCamcorderTagOrientation
1139  */
1140 #define MMCAM_TAG_ORIENTATION                   "tag-orientation"
1141
1142 /**
1143  * Orientation of captured video
1144  * @see         MMCamcorderTagVideoOrientation
1145  */
1146 #define MMCAM_TAG_VIDEO_ORIENTATION            "tag-video-orientation"
1147
1148 /**
1149  * software name and version
1150  */
1151 #define MMCAM_TAG_SOFTWARE                      "tag-software"
1152
1153 /**
1154  * Enable to write tags related to GPS. If this value is TRUE, tags related GPS information will be written to captured file.
1155  */
1156 #define MMCAM_TAG_GPS_ENABLE                    "tag-gps-enable"
1157
1158 /**
1159  * Latitude of captured position. GPS information.
1160  */
1161 #define MMCAM_TAG_LATITUDE                      "tag-latitude"
1162
1163 /**
1164  * Longitude of captured position. GPS information.
1165  */
1166 #define MMCAM_TAG_LONGITUDE                     "tag-longitude"
1167
1168 /**
1169  * Altitude of captured position. GPS information.
1170  */
1171 #define MMCAM_TAG_ALTITUDE                      "tag-altitude"
1172
1173 /**
1174  * Strobe control
1175  * @see         MMCamcorderStrobeControl
1176  */
1177 #define MMCAM_STROBE_CONTROL                    "strobe-control"
1178
1179 /**
1180  * Operation Mode of strobe
1181  * @see         MMCamcorderStrobeMode
1182  */
1183 #define MMCAM_STROBE_MODE                       "strobe-mode"
1184
1185 /**
1186  * Brightness of strobe
1187  */
1188 #define MMCAM_STROBE_BRIGHTNESS                 "strobe-brightness"
1189
1190 /**
1191  * Detection mode
1192  * @see         MMCamcorderDetectMode
1193  */
1194 #define MMCAM_DETECT_MODE                       "detect-mode"
1195
1196 /**
1197  * Total number of detected object
1198  */
1199 #define MMCAM_DETECT_NUMBER                     "detect-number"
1200
1201 /**
1202  * You can use this attribute to select one of detected objects.
1203  */
1204 #define MMCAM_DETECT_FOCUS_SELECT               "detect-focus-select"
1205
1206 /**
1207  * Recommend preview format for capture
1208  */
1209 #define MMCAM_RECOMMEND_PREVIEW_FORMAT_FOR_CAPTURE     "recommend-preview-format-for-capture"
1210
1211 /**
1212  * Recommend preview format for recording
1213  */
1214 #define MMCAM_RECOMMEND_PREVIEW_FORMAT_FOR_RECORDING   "recommend-preview-format-for-recording"
1215
1216 /**
1217  * Recommend rotation of display
1218  */
1219 #define MMCAM_RECOMMEND_DISPLAY_ROTATION        "recommend-display-rotation"
1220
1221 /**
1222  * Recommend width of camera preview.
1223  * This attribute can be used with #mm_camcorder_get_attribute_info and #MMCamcorderPreviewType.
1224  * @see         mm_camcorder_get_attribute_info, MMCamcorderPreviewType
1225  */
1226 #define MMCAM_RECOMMEND_CAMERA_WIDTH            "recommend-camera-width"
1227
1228 /**
1229  * Recommend height of camera preview
1230  * This attribute can be used with #mm_camcorder_get_attribute_info and #MMCamcorderPreviewType.
1231  * @see         mm_camcorder_get_attribute_info, MMCamcorderPreviewType
1232  */
1233 #define MMCAM_RECOMMEND_CAMERA_HEIGHT           "recommend-camera-height"
1234
1235 /**
1236  * Enable to play capture sound
1237  */
1238 #define MMCAM_CAPTURE_SOUND_ENABLE              "capture-sound-enable"
1239
1240 /**
1241  * Flip of video input stream.
1242  * @see         MMFlipType (in mm_types.h)
1243  */
1244 #define MMCAM_CAMERA_FLIP                       "camera-flip"
1245
1246 /**
1247  * Support Zero Shutter Lag capture
1248  */
1249 #define MMCAM_SUPPORT_ZSL_CAPTURE               "support-zsl-capture"
1250
1251 /**
1252 * Support zero copy format
1253 */
1254 #define MMCAM_SUPPORT_ZERO_COPY_FORMAT          "support-zero-copy-format"
1255
1256 /**
1257 * Support media packet callback
1258 */
1259 #define MMCAM_SUPPORT_MEDIA_PACKET_PREVIEW_CB   "support-media-packet-preview-cb"
1260
1261 /**
1262 * Support user buffer for zero copy
1263 */
1264 #define MMCAM_SUPPORT_USER_BUFFER               "support-user-buffer"
1265
1266 /**
1267  * Support Extra Preview
1268  */
1269 #define MMCAM_SUPPORT_EXTRA_PREVIEW             "support-extra-preview"
1270
1271 /**
1272  * Request codec config for encoded format
1273  */
1274 #define MMCAM_REQUEST_CODEC_CONFIG              "request-codec-config"
1275
1276 /**
1277 * Buffer fd from user
1278 */
1279 #define MMCAM_USER_BUFFER_FD                    "user-buffer-fd"
1280
1281 /**
1282  * Enable to write tags for recorded file
1283  */
1284 #define MMCAM_RECORDER_TAG_ENABLE               "recorder-tag-enable"
1285
1286 /**
1287  * Determines the socket stream path
1288  */
1289 #define MMCAM_DISPLAY_SOCKET_PATH               "display-socket-path"
1290
1291 /**
1292  * Client PID
1293  */
1294 #define MMCAM_CLIENT_PID                        "client-pid"
1295
1296 /**
1297  * Root directory of application
1298  */
1299 #define MMCAM_ROOT_DIRECTORY                    "root-directory"
1300
1301 /**
1302  * Bitrate for encoded preview stream
1303  */
1304 #define MMCAM_ENCODED_PREVIEW_BITRATE           "encoded-preview-bitrate"
1305
1306 /**
1307  * GOP interval for encoded preview stream
1308  */
1309 #define MMCAM_ENCODED_PREVIEW_GOP_INTERVAL      "encoded-preview-gop-interval"
1310
1311 /**
1312  * The distance to move the camera horizontally and physically
1313  */
1314 #define MMCAM_CAMERA_PAN_MECHA                  "camera-pan-mecha"
1315
1316 /**
1317  * The distance to move the camera horizontally
1318  */
1319 #define MMCAM_CAMERA_PAN_ELEC                   "camera-pan-elec"
1320
1321 /**
1322  * The distance to move the camera vertically and physically
1323  */
1324 #define MMCAM_CAMERA_TILT_MECHA                 "camera-tilt-mecha"
1325
1326 /**
1327  * The distance to move the camera vertically
1328  */
1329 #define MMCAM_CAMERA_TILT_ELEC                  "camera-tilt-elec"
1330
1331 /**
1332  * The type of PTZ(Pan Tilt Zoom). Mechanical or Electronic PTZ.
1333  */
1334 #define MMCAM_CAMERA_PTZ_TYPE                   "camera-ptz-type"
1335
1336 /**
1337  * Stream type and index for sound route
1338  */
1339 #define MMCAM_SOUND_STREAM_TYPE                 "sound-stream-type"
1340 #define MMCAM_SOUND_STREAM_INDEX                "sound-stream-index"
1341
1342 /**
1343  * The display reuse flag and sink element pointer
1344  */
1345 #define MMCAM_DISPLAY_REUSE_HINT                "display-reuse-hint"
1346 #define MMCAM_DISPLAY_REUSE_ELEMENT             "display-reuse-element"
1347
1348 /**
1349  * The GDBus connection from outside
1350  */
1351 #define MMCAM_GDBUS_CONNECTION                  "gdbus-connection"
1352
1353 /**
1354  * Replay gain enable
1355  */
1356 #define MMCAM_AUDIO_REPLAY_GAIN_ENABLE          "audio-replay-gain-enable"
1357
1358 /**
1359  * Reference level for replay gain
1360  */
1361 #define MMCAM_AUDIO_REPLAY_GAIN_REFERENCE_LEVEL "audio-replay-gain-reference-level"
1362
1363 /**
1364  * Platform privilege name for camera device
1365  */
1366 #define MMCAM_PLATFORM_PRIVILEGE_CAMERA         "platform-privilege-camera"
1367
1368 /**
1369  * The name of videosrc element
1370  */
1371 #define MMCAM_VIDEOSRC_ELEMENT_NAME             "videosrc-element-name"
1372
1373 /**
1374  * The name of audiosrc element
1375  */
1376 #define MMCAM_AUDIOSRC_ELEMENT_NAME             "audiosrc-element-name"
1377
1378 /**
1379  * Extra preview enable
1380  */
1381 #define MMCAM_EXTRA_PREVIEW_ENABLE              "extra-preview-enable"
1382
1383
1384
1385 /*=======================================================================================
1386 | ENUM DEFINITIONS                                                                      |
1387 ========================================================================================*/
1388 /**
1389  * An enumeration for camcorder states.
1390  */
1391 typedef enum {
1392         MM_CAMCORDER_STATE_NONE,                /**< Camcorder is not created yet */
1393         MM_CAMCORDER_STATE_NULL,                /**< Camcorder is created, but not initialized yet */
1394         MM_CAMCORDER_STATE_READY,               /**< Camcorder is ready to capture */
1395         MM_CAMCORDER_STATE_PREPARE,             /**< Camcorder is prepared to capture (Preview) */
1396         MM_CAMCORDER_STATE_CAPTURING,           /**< Camcorder is now capturing still images */
1397         MM_CAMCORDER_STATE_RECORDING,           /**< Camcorder is now recording */
1398         MM_CAMCORDER_STATE_PAUSED,              /**< Camcorder is paused while recording */
1399         MM_CAMCORDER_STATE_NUM,                 /**< Number of camcorder states */
1400 } MMCamcorderStateType;
1401
1402 /**
1403  * An enumeration for camcorder mode.
1404  */
1405 typedef enum {
1406         MM_CAMCORDER_MODE_VIDEO_CAPTURE = 0,    /**< Video recording and Image capture mode */
1407         MM_CAMCORDER_MODE_AUDIO,                /**< Audio recording mode */
1408 } MMCamcorderModeType;
1409
1410 /**
1411  * An enumeration for facing direction.
1412  */
1413 typedef enum {
1414         MM_CAMCORDER_CAMERA_FACING_DIRECTION_REAR = 0, /**< Facing direction of camera is REAR */
1415         MM_CAMCORDER_CAMERA_FACING_DIRECTION_FRONT,    /**< Facing direction of camera is FRONT */
1416 } MMCamcorderCameraFacingDirection;
1417
1418
1419 /**
1420  * An enumeration of audio format.
1421  */
1422 typedef enum {
1423         MM_CAMCORDER_AUDIO_FORMAT_PCM_U8 = 0,           /**< unsigned 8bit audio */
1424         MM_CAMCORDER_AUDIO_FORMAT_PCM_S16_LE = 2,       /**< signed 16bit audio. Little endian. */
1425 } MMCamcorderAudioFormat;
1426
1427 /**
1428  * An enumeration of capture mode.
1429  */
1430 typedef enum {
1431         MM_CAMCORDER_CAPTURE_MODE_ENCODEBIN = 0,        /**< Capture through encodebin */
1432         MM_CAMCORDER_CAPTURE_MODE_CAMERA_CONTROL,       /**< Capture through camera control interface in camerasrc plugin */
1433         MM_CAMCORDER_CAPTURE_MODE_IMAGE_PAD             /**< Capture through image source pad in camerasrc plugin */
1434 } MMCamcorderCaptureMode;
1435
1436 /**
1437  * An enumeration of extra preview mode.
1438  */
1439 typedef enum {
1440         MM_CAMCORDER_EXTRA_PREVIEW_MODE_CAMERA_CONTROL = 0, /**< Extra preview through camera control interface of camerasrc plugin */
1441         MM_CAMCORDER_EXTRA_PREVIEW_MODE_PIPELINE_SRCPAD,    /**< Extra preview through additional source pad in camerasrc plugin */
1442         MM_CAMCORDER_EXTRA_PREVIEW_MODE_PIPELINE_ELEMENT    /**< Extra preview through additional element */
1443 } MMCamcorderExtraPreviewMode;
1444
1445
1446 /**
1447  * An enumeration for color tone. Color tone provides an impression of
1448  * seeing through a tinted glass.
1449  */
1450 enum MMCamcorderColorToneType {
1451         MM_CAMCORDER_COLOR_TONE_NONE = 0,               /**< None */
1452         MM_CAMCORDER_COLOR_TONE_MONO,                   /**< Mono */
1453         MM_CAMCORDER_COLOR_TONE_SEPIA,                  /**< Sepia */
1454         MM_CAMCORDER_COLOR_TONE_NEGATIVE,               /**< Negative */
1455         MM_CAMCORDER_COLOR_TONE_BLUE,                   /**< Blue */
1456         MM_CAMCORDER_COLOR_TONE_GREEN,                  /**< Green */
1457         MM_CAMCORDER_COLOR_TONE_AQUA,                   /**< Aqua */
1458         MM_CAMCORDER_COLOR_TONE_VIOLET,                 /**< Violet */
1459         MM_CAMCORDER_COLOR_TONE_ORANGE,                 /**< Orange */
1460         MM_CAMCORDER_COLOR_TONE_GRAY,                   /**< Gray */
1461         MM_CAMCORDER_COLOR_TONE_RED,                    /**< Red */
1462         MM_CAMCORDER_COLOR_TONE_ANTIQUE,                /**< Antique */
1463         MM_CAMCORDER_COLOR_TONE_WARM,                   /**< Warm */
1464         MM_CAMCORDER_COLOR_TONE_PINK,                   /**< Pink */
1465         MM_CAMCORDER_COLOR_TONE_YELLOW,                 /**< Yellow */
1466         MM_CAMCORDER_COLOR_TONE_PURPLE,                 /**< Purple */
1467         MM_CAMCORDER_COLOR_TONE_EMBOSS,                 /**< Emboss */
1468         MM_CAMCORDER_COLOR_TONE_OUTLINE,                /**< Outline */
1469         MM_CAMCORDER_COLOR_TONE_SOLARIZATION,           /**< Solarization */
1470         MM_CAMCORDER_COLOR_TONE_SKETCH,                 /**< Sketch */
1471         MM_CAMCORDER_COLOR_TONE_WASHED,                 /**< Washed */
1472         MM_CAMCORDER_COLOR_TONE_VINTAGE_WARM,           /**< Vintage warm */
1473         MM_CAMCORDER_COLOR_TONE_VINTAGE_COLD,           /**< Vintage cold */
1474         MM_CAMCORDER_COLOR_TONE_POSTERIZATION,          /**< Posterization */
1475         MM_CAMCORDER_COLOR_TONE_CARTOON,                /**< Cartoon */
1476         MM_CAMCORDER_COLOR_TONE_SELECTIVE_RED,          /**< Selective color - Red */
1477         MM_CAMCORDER_COLOR_TONE_SELECTIVE_GREEN,        /**< Selective color - Green */
1478         MM_CAMCORDER_COLOR_TONE_SELECTIVE_BLUE,         /**< Selective color - Blue */
1479         MM_CAMCORDER_COLOR_TONE_SELECTIVE_YELLOW,       /**< Selective color - Yellow */
1480         MM_CAMCORDER_COLOR_TONE_SELECTIVE_RED_YELLOW,   /**< Selective color - Red and Yellow */
1481 };
1482
1483
1484 /**
1485  * An enumeration for white balance. White Balance is the control that adjusts
1486  * the camcorder's color sensitivity to match the prevailing color of white
1487  * outdoor light, yellower indoor light, or (sometimes) greenish fluorescent
1488  * light. White balance may be set either automatically or manually. White balance
1489  * may be set "incorrectly" on purpose to achieve special effects.
1490  */
1491 enum MMCamcorderWhiteBalanceType {
1492         MM_CAMCORDER_WHITE_BALANCE_NONE = 0,            /**< None */
1493         MM_CAMCORDER_WHITE_BALANCE_AUTOMATIC,           /**< Automatic */
1494         MM_CAMCORDER_WHITE_BALANCE_DAYLIGHT,            /**< Daylight */
1495         MM_CAMCORDER_WHITE_BALANCE_CLOUDY,              /**< Cloudy */
1496         MM_CAMCORDER_WHITE_BALANCE_FLUORESCENT,         /**< Fluorescent */
1497         MM_CAMCORDER_WHITE_BALANCE_INCANDESCENT,        /**< Incandescent */
1498         MM_CAMCORDER_WHITE_BALANCE_SHADE,               /**< Shade */
1499         MM_CAMCORDER_WHITE_BALANCE_HORIZON,             /**< Horizon */
1500         MM_CAMCORDER_WHITE_BALANCE_FLASH,               /**< Flash */
1501         MM_CAMCORDER_WHITE_BALANCE_CUSTOM,              /**< Custom */
1502 };
1503
1504
1505 /**
1506  * An enumeration for scene mode. Scene mode gives the environment condition
1507  * for operating camcorder. The mode of operation can be in daylight, night and
1508  * backlight. It can be an automatic setting also.
1509  */
1510 enum MMCamcorderSceneModeType {
1511         MM_CAMCORDER_SCENE_MODE_NORMAL = 0,     /**< Normal */
1512         MM_CAMCORDER_SCENE_MODE_PORTRAIT,       /**< Portrait */
1513         MM_CAMCORDER_SCENE_MODE_LANDSCAPE,      /**< Landscape */
1514         MM_CAMCORDER_SCENE_MODE_SPORTS,         /**< Sports */
1515         MM_CAMCORDER_SCENE_MODE_PARTY_N_INDOOR, /**< Party & indoor */
1516         MM_CAMCORDER_SCENE_MODE_BEACH_N_INDOOR, /**< Beach & indoor */
1517         MM_CAMCORDER_SCENE_MODE_SUNSET,         /**< Sunset */
1518         MM_CAMCORDER_SCENE_MODE_DUSK_N_DAWN,    /**< Dusk & dawn */
1519         MM_CAMCORDER_SCENE_MODE_FALL_COLOR,     /**< Fall */
1520         MM_CAMCORDER_SCENE_MODE_NIGHT_SCENE,    /**< Night scene */
1521         MM_CAMCORDER_SCENE_MODE_FIREWORK,       /**< Firework */
1522         MM_CAMCORDER_SCENE_MODE_TEXT,           /**< Text */
1523         MM_CAMCORDER_SCENE_MODE_SHOW_WINDOW,    /**< Show window */
1524         MM_CAMCORDER_SCENE_MODE_CANDLE_LIGHT,   /**< Candle light */
1525         MM_CAMCORDER_SCENE_MODE_BACKLIGHT,      /**< Backlight */
1526         MM_CAMCORDER_SCENE_MODE_AQUA,           /**< Aqua */
1527 };
1528
1529
1530 /**
1531  * An enumeration for focusing .
1532  */
1533 enum MMCamcorderFocusMode {
1534         MM_CAMCORDER_FOCUS_MODE_NONE = 0,       /**< Focus mode is None */
1535         MM_CAMCORDER_FOCUS_MODE_PAN,            /**< Pan focus mode*/
1536         MM_CAMCORDER_FOCUS_MODE_AUTO,           /**< Autofocus mode*/
1537         MM_CAMCORDER_FOCUS_MODE_MANUAL,         /**< Manual focus mode*/
1538         MM_CAMCORDER_FOCUS_MODE_TOUCH_AUTO,     /**< Touch Autofocus mode*/
1539         MM_CAMCORDER_FOCUS_MODE_CONTINUOUS,     /**< Continuous Autofocus mode*/
1540 };
1541
1542
1543 /**
1544  * An enumeration for auto focus scan range (af scan range)
1545  */
1546 enum MMCamcorderAutoFocusType {
1547         MM_CAMCORDER_AUTO_FOCUS_NONE = 0,       /**< Scan autofocus is not set */
1548         MM_CAMCORDER_AUTO_FOCUS_NORMAL,         /**< Scan autofocus normally*/
1549         MM_CAMCORDER_AUTO_FOCUS_MACRO,          /**< Scan autofocus in macro mode(close distance)*/
1550         MM_CAMCORDER_AUTO_FOCUS_FULL,           /**< Scan autofocus in full mode(all range scan, limited by dev spec)*/
1551 };
1552
1553
1554 /**
1555  * An enumeration for focus state.
1556  * When 'MM_MESSAGE_CAMCORDER_FOCUS_CHANGED' is delivered through 'MMMessageCallback',
1557  * this enumeration will be set to 'code' of MMMessageParamType.
1558  */
1559 enum MMCamcorderFocusStateType {
1560         MM_CAMCORDER_FOCUS_STATE_RELEASED = 0,  /**< Focus released.*/
1561         MM_CAMCORDER_FOCUS_STATE_ONGOING,       /**< Focus in progress*/
1562         MM_CAMCORDER_FOCUS_STATE_FOCUSED,       /**< Focus success*/
1563         MM_CAMCORDER_FOCUS_STATE_FAILED,        /**< Focus failed*/
1564 };
1565
1566
1567 /**
1568  * An enumeration for ISO.
1569  */
1570 enum MMCamcorderISOType {
1571         MM_CAMCORDER_ISO_AUTO = 0,              /**< ISO auto mode*/
1572         MM_CAMCORDER_ISO_50,                    /**< ISO 50*/
1573         MM_CAMCORDER_ISO_100,                   /**< ISO 100*/
1574         MM_CAMCORDER_ISO_200,                   /**< ISO 200*/
1575         MM_CAMCORDER_ISO_400,                   /**< ISO 400*/
1576         MM_CAMCORDER_ISO_800,                   /**< ISO 800*/
1577         MM_CAMCORDER_ISO_1600,                  /**< ISO 1600*/
1578         MM_CAMCORDER_ISO_3200,                  /**< ISO 3200*/
1579         MM_CAMCORDER_ISO_6400,                  /**< ISO 6400*/
1580         MM_CAMCORDER_ISO_12800,                 /**< ISO 12800*/
1581 };
1582
1583 /**
1584  * An enumeration for Automatic exposure.
1585  */
1586 enum MMCamcorderAutoExposureType {
1587         MM_CAMCORDER_AUTO_EXPOSURE_OFF = 0,             /**< AE off*/
1588         MM_CAMCORDER_AUTO_EXPOSURE_ALL,                 /**< AE default */
1589         MM_CAMCORDER_AUTO_EXPOSURE_CENTER_1,            /**< AE center mode*/
1590         MM_CAMCORDER_AUTO_EXPOSURE_CENTER_2,            /**< Unused */
1591         MM_CAMCORDER_AUTO_EXPOSURE_CENTER_3,            /**< Unused */
1592         MM_CAMCORDER_AUTO_EXPOSURE_SPOT_1,              /**< AE spot mode*/
1593         MM_CAMCORDER_AUTO_EXPOSURE_SPOT_2,              /**< Unused */
1594         MM_CAMCORDER_AUTO_EXPOSURE_CUSTOM_1,            /**< AE manual mode */
1595         MM_CAMCORDER_AUTO_EXPOSURE_CUSTOM_2,            /**< Unused */
1596         MM_CAMCORDER_AUTO_EXPOSURE_SHUTTER_PRIORITY,    /**< AE shutter priority mode */
1597         MM_CAMCORDER_AUTO_EXPOSURE_APERTURE_PRIORITY    /**< AE aperture priority mode */
1598 };
1599
1600
1601 /**
1602  * An enumeration for WDR mode .
1603  */
1604 enum MMCamcorderWDRMode {
1605         MM_CAMCORDER_WDR_OFF = 0,               /**< WDR OFF*/
1606         MM_CAMCORDER_WDR_ON,                    /**< WDR ON*/
1607         MM_CAMCORDER_WDR_AUTO,                  /**< WDR AUTO*/
1608 };
1609
1610
1611 /**
1612  * An enumeration for HDR capture mode
1613  */
1614 enum MMCamcorderHDRMode {
1615         MM_CAMCORDER_HDR_OFF = 0,               /**< HDR OFF */
1616         MM_CAMCORDER_HDR_ON,                    /**< HDR ON and no original data - capture callback will be come once */
1617         MM_CAMCORDER_HDR_ON_AND_ORIGINAL,       /**< HDR ON and original data - capture callback will be come twice(1st:Original, 2nd:HDR) */
1618 };
1619
1620
1621 /**
1622  * An enumeration for Anti-handshake mode .
1623  */
1624 enum MMCamcorderAHSMode {
1625         MM_CAMCORDER_AHS_OFF = 0,               /**< AHS OFF*/
1626         MM_CAMCORDER_AHS_ON,                    /**< AHS ON*/
1627         MM_CAMCORDER_AHS_AUTO,                  /**< AHS AUTO*/
1628         MM_CAMCORDER_AHS_MOVIE,                 /**< AHS MOVIE*/
1629 };
1630
1631
1632 /**
1633  * An enumeration for Video stabilization mode
1634  */
1635 enum MMCamcorderVideoStabilizationMode {
1636         MM_CAMCORDER_VIDEO_STABILIZATION_OFF = 0,       /**< Video Stabilization OFF*/
1637         MM_CAMCORDER_VIDEO_STABILIZATION_ON,            /**< Video Stabilization ON*/
1638 };
1639
1640
1641 /**
1642  * Geometry method for camcorder display.
1643  */
1644 enum MMCamcorderGeometryMethod {
1645         MM_CAMCORDER_LETTER_BOX = 0,            /**< Letter box*/
1646         MM_CAMCORDER_ORIGIN_SIZE,               /**< Origin size*/
1647         MM_CAMCORDER_FULL,                      /**< full-screen*/
1648         MM_CAMCORDER_CROPPED_FULL,              /**< Cropped full-screen*/
1649         MM_CAMCORDER_ORIGIN_OR_LETTER,          /**< Origin size or Letter box*/
1650         MM_CAMCORDER_CUSTOM_ROI,                /**< Explicitly described destination ROI*/
1651 };
1652
1653
1654 /**
1655  * An enumeration for orientation values of tag .
1656  */
1657 enum MMCamcorderTagOrientation {
1658         MM_CAMCORDER_TAG_ORT_NONE = 0,          /**< No Orientation.*/
1659         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.*/
1660         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.*/
1661         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.*/
1662         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.*/
1663         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.*/
1664         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.*/
1665         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.*/
1666         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.*/
1667 };
1668
1669 /**
1670  * An enumeration for captured video orientation values of tag .
1671  */
1672 enum MMCamcorderTagVideoOrientation {
1673         MM_CAMCORDER_TAG_VIDEO_ORT_NONE = 0,    /**< No Orientation.*/
1674         MM_CAMCORDER_TAG_VIDEO_ORT_90,          /**< 90 degree */
1675         MM_CAMCORDER_TAG_VIDEO_ORT_180, /**< 180 degree */
1676         MM_CAMCORDER_TAG_VIDEO_ORT_270, /**< 270 degree */
1677 };
1678
1679
1680
1681 /**
1682  * An enumeration for Strobe mode.
1683  */
1684 enum MMCamcorderStrobeMode {
1685         MM_CAMCORDER_STROBE_MODE_OFF = 0,               /**< Always off */
1686         MM_CAMCORDER_STROBE_MODE_ON,                    /**< Always splashes */
1687         MM_CAMCORDER_STROBE_MODE_AUTO,                  /**< Depending on intensity of light, strobe starts to flash. */
1688         MM_CAMCORDER_STROBE_MODE_REDEYE_REDUCTION,      /**< Red eye reduction. Multiple flash before capturing. */
1689         MM_CAMCORDER_STROBE_MODE_SLOW_SYNC,             /**< Slow sync. A type of curtain synchronization. */
1690         MM_CAMCORDER_STROBE_MODE_FRONT_CURTAIN,         /**< Front curtain. A type of curtain synchronization. */
1691         MM_CAMCORDER_STROBE_MODE_REAR_CURTAIN,          /**< Rear curtain. A type of curtain synchronization. */
1692         MM_CAMCORDER_STROBE_MODE_PERMANENT,             /**< keep turned on until turning off */
1693 };
1694
1695
1696 /**
1697  * An enumeration for Strobe Control.
1698  */
1699 enum MMCamcorderStrobeControl {
1700         MM_CAMCORDER_STROBE_CONTROL_OFF = 0,    /**< turn off the flash light */
1701         MM_CAMCORDER_STROBE_CONTROL_ON,         /**< turn on the flash light */
1702         MM_CAMCORDER_STROBE_CONTROL_CHARGE,     /**< charge the flash light */
1703 };
1704
1705
1706 /**
1707  * An enumeration for Detection mode.
1708  */
1709 enum MMCamcorderDetectMode {
1710         MM_CAMCORDER_DETECT_MODE_OFF = 0,       /**< turn detection off */
1711         MM_CAMCORDER_DETECT_MODE_ON,            /**< turn detection on */
1712 };
1713
1714
1715 /**
1716  * An enumeration for recommended preview resolution.
1717  */
1718 enum MMCamcorderPreviewType {
1719         MM_CAMCORDER_PREVIEW_TYPE_NORMAL = 0,   /**< normal ratio like 4:3 */
1720         MM_CAMCORDER_PREVIEW_TYPE_WIDE,         /**< wide ratio like 16:9 */
1721         MM_CAMCORDER_PREVIEW_TYPE_SQUARE,       /**< square ratio like 1:1 */
1722 };
1723
1724
1725 /**
1726  * An enumeration for log level.
1727  */
1728 enum MMCamcorderLogLevel {
1729         MM_CAMCORDER_LOG_LEVEL_CRITICAL = 0,
1730         MM_CAMCORDER_LOG_LEVEL_ERROR,
1731         MM_CAMCORDER_LOG_LEVEL_WARNING,
1732         MM_CAMCORDER_LOG_LEVEL_INFO,
1733         MM_CAMCORDER_LOG_LEVEL_DEBUG,
1734         MM_CAMCORDER_LOG_LEVEL_VERBOSE
1735 };
1736
1737
1738 /**********************************
1739 *          Attribute info         *
1740 **********************************/
1741 /**
1742  * An enumeration for attribute values types.
1743  */
1744 typedef enum {
1745         MM_CAM_ATTRS_TYPE_INVALID = -1,         /**< Type is invalid */
1746         MM_CAM_ATTRS_TYPE_INT,                  /**< Integer type attribute */
1747         MM_CAM_ATTRS_TYPE_DOUBLE,               /**< Double type attribute */
1748         MM_CAM_ATTRS_TYPE_STRING,               /**< UTF-8 String type attribute */
1749         MM_CAM_ATTRS_TYPE_DATA,                 /**< Pointer type attribute */
1750 } MMCamAttrsType;
1751
1752
1753 /**
1754  * An enumeration for attribute validation type.
1755  */
1756 typedef enum {
1757         MM_CAM_ATTRS_VALID_TYPE_INVALID = -1,   /**< Invalid validation type */
1758         MM_CAM_ATTRS_VALID_TYPE_NONE,           /**< Do not check validity */
1759         MM_CAM_ATTRS_VALID_TYPE_INT_ARRAY,      /**< validity checking type of integer array */
1760         MM_CAM_ATTRS_VALID_TYPE_INT_RANGE,      /**< validity checking type of integer range */
1761         MM_CAM_ATTRS_VALID_TYPE_DOUBLE_ARRAY,   /**< validity checking type of double array */
1762         MM_CAM_ATTRS_VALID_TYPE_DOUBLE_RANGE,   /**< validity checking type of double range */
1763 } MMCamAttrsValidType;
1764
1765
1766 /**
1767  * An enumeration for attribute access flag.
1768  */
1769 typedef enum {
1770         MM_CAM_ATTRS_FLAG_DISABLED = 0,         /**< None flag is set. This means the attribute is not allowed to use.  */
1771         MM_CAM_ATTRS_FLAG_READABLE = 1 << 0,    /**< Readable */
1772         MM_CAM_ATTRS_FLAG_WRITABLE = 1 << 1,    /**< Writable */
1773         MM_CAM_ATTRS_FLAG_MODIFIED = 1 << 2,    /**< Modified */
1774         MM_CAM_ATTRS_FLAG_RW = MM_CAM_ATTRS_FLAG_READABLE | MM_CAM_ATTRS_FLAG_WRITABLE, /**< Readable and Writable */
1775 } MMCamAttrsFlag;
1776
1777
1778 /**********************************
1779 *          Stream data            *
1780 **********************************/
1781 /**
1782  * An enumeration for stream data type.
1783  */
1784 typedef enum {
1785         MM_CAM_STREAM_DATA_YUV420 = 0,          /**< YUV420 Packed type - 1 plane */
1786         MM_CAM_STREAM_DATA_YUV422,              /**< YUV422 Packed type - 1 plane */
1787         MM_CAM_STREAM_DATA_YUV420SP,            /**< YUV420 SemiPlannar type - 2 planes */
1788         MM_CAM_STREAM_DATA_YUV420P,             /**< YUV420 Plannar type - 3 planes */
1789         MM_CAM_STREAM_DATA_YUV422P,             /**< YUV422 Plannar type - 3 planes */
1790         MM_CAM_STREAM_DATA_ENCODED,             /**< Encoded data type - 1 plane */
1791         MM_CAM_STREAM_DATA_DEPTH,               /**< Depth data type - 1 plane */
1792         MM_CAM_STREAM_DATA_RGB                  /**< RGB data type - 1 plane */
1793 } MMCamStreamData;
1794
1795
1796 /*=======================================================================================
1797 | STRUCTURE DEFINITIONS                                                                 |
1798 ========================================================================================*/
1799 /**
1800  * A structure for attribute information
1801  */
1802 typedef struct {
1803         MMCamAttrsType type;
1804         MMCamAttrsFlag flag;
1805         MMCamAttrsValidType validity_type;
1806
1807         /**
1808          * A union that describes validity of the attribute.
1809          * Only when type is 'MM_CAM_ATTRS_TYPE_INT' or 'MM_CAM_ATTRS_TYPE_DOUBLE',
1810          * the attribute can have validity.
1811          */
1812         union {
1813                 /**
1814                  * Validity structure for integer array.
1815                  */
1816                  struct {
1817                         int *array;             /**< a pointer of array */
1818                         int count;              /**< size of array */
1819                         int def;                /**< default value. Real value not index of array */
1820                 } int_array;
1821
1822                 /**
1823                  * Validity structure for integer range.
1824                  */
1825                 struct {
1826                         int min;                /**< minimum range */
1827                         int max;                /**< maximum range */
1828                         int def;                /**< default value */
1829                 } int_range;
1830
1831                 /**
1832                  * Validity structure for double array.
1833                  */
1834                  struct {
1835                         double *array;          /**< a pointer of array */
1836                         int count;              /**< size of array */
1837                         double def;             /**< default value. Real value not index of array */
1838                 } double_array;
1839
1840                 /**
1841                  * Validity structure for double range.
1842                  */
1843                 struct {
1844                         double min;             /**< minimum range */
1845                         double max;             /**< maximum range */
1846                         double def;             /**< default value */
1847                 } double_range;
1848         };
1849 } MMCamAttrsInfo;
1850
1851
1852 /* General Structure */
1853 /**
1854  * Structure for capture data.
1855  */
1856 typedef struct {
1857         void *data;                     /**< pointer of captured image */
1858         unsigned int length;            /**< length of captured image (in byte)*/
1859         MMPixelFormatType format;       /**< image format */
1860         int width;                      /**< width of captured image */
1861         int height;                     /**< height of captured image */
1862         int encoder_type;               /**< encoder type */
1863 } MMCamcorderCaptureDataType;
1864
1865
1866 /**
1867  * Structure for metadata of stream buffer.
1868  */
1869 typedef struct {
1870         unsigned long long ts_soe;
1871         unsigned long long ts_eoe;
1872         unsigned long long ts_sof;
1873         unsigned long long ts_eof;
1874         unsigned long long ts_hal;
1875         unsigned long long ts_qmf;
1876         unsigned long long ts_gst;
1877         unsigned long long td_exp;
1878         unsigned long long ts_aux;
1879         unsigned long long td_aux;
1880         unsigned long long seqnum;
1881         unsigned long long flags;
1882 } MMCamcorderFrameMeta;
1883
1884
1885 /**
1886  * Structure for video stream data.
1887  */
1888 #define BUFFER_MAX_PLANE_NUM 4
1889
1890 typedef struct {
1891         union {
1892                 struct {
1893                         unsigned char *yuv;
1894                         unsigned int length_yuv;
1895                 } yuv420, yuv422;
1896                 struct {
1897                         unsigned char *y;
1898                         unsigned int length_y;
1899                         unsigned char *uv;
1900                         unsigned int length_uv;
1901                 } yuv420sp;
1902                 struct {
1903                         unsigned char *y;
1904                         unsigned int length_y;
1905                         unsigned char *u;
1906                         unsigned int length_u;
1907                         unsigned char *v;
1908                         unsigned int length_v;
1909                 } yuv420p, yuv422p;
1910                 struct {
1911                         unsigned char *data;
1912                         unsigned int length_data;
1913                         int is_delta_frame;
1914                         int is_header_included;
1915                 } encoded, depth, rgb;
1916         } data;                             /**< pointer of captured stream */
1917         MMCamStreamData data_type;          /**< data type */
1918         unsigned int length_total;          /**< total length of stream buffer(byte) */
1919         unsigned int num_planes;            /**< number of planes */
1920         MMPixelFormatType format;           /**< image format */
1921         int width;                          /**< width of video buffer */
1922         int height;                         /**< height of video buffer */
1923         unsigned int timestamp;             /**< timestamp of stream buffer(msec) */
1924         void *bo[BUFFER_MAX_PLANE_NUM];     /**< TBM buffer object */
1925         void *internal_buffer;              /**< Internal buffer pointer */
1926         int stride[BUFFER_MAX_PLANE_NUM];   /**< Stride of each plane */
1927         int elevation[BUFFER_MAX_PLANE_NUM];/**< Elevation of each plane */
1928         int extra_stream_id;                /**< ID of extra preview stream */
1929         int focus_state;                    /**< Focus state */
1930         int facing_direction;               /**< Facing direction */
1931         int flip;                           /**< Flip */
1932         int rotation;                       /**< Rotation */
1933         unsigned long long timestamp_nsec;  /**< timestamp of stream buffer(nsec) */
1934         MMCamcorderFrameMeta frame_meta;   /**< Metadata of stream buffer */
1935 } MMCamcorderVideoStreamDataType;
1936
1937
1938 /**
1939  * Structure for audio stream data.
1940  */
1941 typedef struct {
1942         void *data;                             /**< pointer of captured stream */
1943         unsigned int length;                    /**< length of stream buffer (in byte)*/
1944         MMCamcorderAudioFormat format;          /**< audio format */
1945         int channel;                            /**< number of channel of the stream */
1946         unsigned int timestamp;                 /**< timestamp of stream buffer (msec)*/
1947         float volume_dB;                        /**< dB value of audio stream */
1948 } MMCamcorderAudioStreamDataType;
1949
1950
1951 /**
1952  * Structure for muxed stream data.
1953  */
1954 typedef struct {
1955         void *data;             /**< pointer of muxed stream */
1956         unsigned int length;    /**< length of stream buffer (in byte) */
1957         unsigned long long offset;  /**< current offset for data */
1958 } MMCamcorderMuxedStreamDataType;
1959
1960
1961 /**
1962   * Prerequisite information for mm_camcorder_create()
1963   * The information to set prior to create.
1964   */
1965 typedef struct {
1966         enum MMVideoDeviceType videodev_type;   /**< Video device type */
1967         /* For future use */
1968         int reserved[4];                        /**< reserved fields */
1969 } MMCamPreset;
1970
1971
1972 /**
1973  * Report structure of recording file
1974  */
1975 typedef struct {
1976         char *recording_filename;               /**< File name of stored recording file. Please free after using. */
1977 } MMCamRecordingReport; /**< report structure definition of recording file */
1978
1979
1980 /**
1981  * Face detect detailed information
1982  */
1983 typedef struct _MMCamFaceInfo {
1984         int id;                                 /**< id of each face */
1985         int score;                              /**< score of each face */
1986         MMRectType rect;                        /**< area of face */
1987 } MMCamFaceInfo;
1988
1989 /**
1990  * Face detect information
1991  */
1992 typedef struct _MMCamFaceDetectInfo {
1993         int num_of_faces;                       /**< number of detected faces */
1994         MMCamFaceInfo *face_info;               /**< face information, this should be freed after use it. */
1995 } MMCamFaceDetectInfo;
1996
1997 /**
1998  * Window information
1999  */
2000 typedef struct _MMCamWindowInfo {
2001         int surface_id;
2002         MMRectType rect;
2003 } MMCamWindowInfo;
2004
2005
2006 /*=======================================================================================
2007 | TYPE DEFINITIONS                                                                      |
2008 ========================================================================================*/
2009 /**
2010  *      Function definition for video stream callback.
2011  *  Be careful! In this function, you can't call functions that change the state of camcorder such as mm_camcorder_stop(),
2012  *  mm_camcorder_unrealize(), mm_camcorder_record(), mm_camcorder_commit(), and mm_camcorder_cancel(), etc.
2013  *  Please don't hang this function long. It may cause low performance of preview or occur timeout error from video source.
2014  *  Also, you're not allowed to call mm_camcorder_stop() even in other context, while you're hanging this function.
2015  *  I recommend to you releasing this function ASAP.
2016  *
2017  *      @param[in]      stream                  Reference pointer to video stream data
2018  *      @param[in]      user_param              User parameter which is received from user when callback function was set
2019  *      @return         This function returns true on success, or false on failure.
2020  *      @remarks                This function is issued in the context of gstreamer (video sink thread).
2021  */
2022 typedef gboolean (*mm_camcorder_video_stream_callback)(MMCamcorderVideoStreamDataType *stream, void *user_param);
2023
2024
2025 /**
2026  *      Function definition for audio stream callback.
2027  *  Be careful! In this function, you can't call functions that change the state of camcorder such as mm_camcorder_stop(),
2028  *  mm_camcorder_unrealize(), mm_camcorder_record(), mm_camcorder_commit(), and mm_camcorder_cancel(), etc.
2029  *  Please don't hang this function long. It may cause low performance of camcorder or occur timeout error from audio source.
2030  *  I recommend to you releasing this function ASAP.
2031  *
2032  *      @param[in]      stream                  Reference pointer to audio stream data
2033  *      @param[in]      user_param              User parameter which is received from user when callback function was set
2034  *      @return         This function returns true on success, or false on failure.
2035  *      @remarks
2036  */
2037 typedef gboolean (*mm_camcorder_audio_stream_callback)(MMCamcorderAudioStreamDataType *stream, void *user_param);
2038
2039
2040 /**
2041  *      Function definition for muxed stream callback.
2042  *  Be careful! In this function, you can't call functions that change the state of camcorder such as mm_camcorder_stop(),
2043  *  mm_camcorder_unrealize(), mm_camcorder_record(), mm_camcorder_commit(), and mm_camcorder_cancel(), etc.
2044  *  Please don't hang this function long. It may cause low performance of camcorder or occur timeout error from encoding pipeline.
2045  *  I recommend to you releasing this function ASAP.
2046  *
2047  *      @param[in]      stream                  Reference pointer to muxed stream data
2048  *      @param[in]      user_param              User parameter which is received from user when callback function was set
2049  *      @return         This function returns true on success, or false on failure.
2050  *      @remarks
2051  */
2052 typedef gboolean (*mm_camcorder_muxed_stream_callback)(MMCamcorderMuxedStreamDataType *stream, void *user_param);
2053
2054
2055 /**
2056  *      Function definition for video capture callback.
2057  *  Like '#mm_camcorder_video_stream_callback', you can't call mm_camcorder_stop() while you are hanging this function.
2058  *
2059  *      @param[in]      frame                   Reference pointer to captured data
2060  *      @param[in]      thumbnail               Reference pointer to thumbnail data
2061  *      @param[in]      user_param              User parameter which is received from user when callback function was set
2062  *      @return         This function returns true on success, or false on failure.
2063  *      @remarks                This function is issued in the context of gstreamer (video src thread).
2064  */
2065 typedef gboolean (*mm_camcorder_video_capture_callback)(MMCamcorderCaptureDataType *frame, MMCamcorderCaptureDataType *thumbnail, void *user_param);
2066
2067 /**
2068  *      Function definition for video encode decision callback.
2069  *  Like '#mm_camcorder_video_stream_callback', you can't call mm_camcorder_stop() while you are hanging this function.
2070  *
2071  *      @param[in]      stream                  Reference pointer to video stream data
2072  *      @param[in]      user_param              User parameter which is received from user when callback function was set
2073  *      @return         This function returns true on encoding, or false on drop frame.
2074  *      @remarks                This function is issued in the context of gstreamer (video sink or internal of camerasrc thread).
2075  */
2076 typedef gboolean (*mm_camcorder_video_encode_decision_callback)(MMCamcorderVideoStreamDataType *stream, void *user_param);
2077
2078
2079 /*=======================================================================================
2080 | GLOBAL FUNCTION PROTOTYPES                                                            |
2081 ========================================================================================*/
2082 /**
2083  *    mm_camcorder_create:\n
2084  *  Create camcorder object. This is the function that an user who wants to use mm_camcorder calls first.
2085  *  This function creates handle structure and initialize mutex, attributes, gstreamer.
2086  *  When this function success, it will return  a handle of newly created object.
2087  *  A user have to put the handle when he calls every function of mm_camcorder. \n
2088  *  Second argument of this function is the field to describe pre-setting information of mm_camcorder such as which camera device it will use.
2089  *  Normally, MM_VIDEO_DEVICE_CAMERA0 is for Main camera(or Mega camera, Back camera),
2090  *  and MM_VIDEO_DEVICE_CAMERA1 is for VGA camera (or Front camera). If you want audio recording,
2091  *  please set MM_VIDEO_DEVICE_NONE. (No camera device is needed.)
2092  *
2093  *      @param[out]     camcorder       A handle of camcorder.
2094  *      @param[in]      info            Information for camera device. Depending on this information,
2095  *                                      camcorder opens different camera devices.
2096  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2097  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2098  *      @see            mm_camcorder_destroy
2099  *      @pre            None
2100  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_NULL
2101  *      @remarks        You can create multiple handles on a context at the same time. However,
2102  *                      camcorder cannot guarantee proper operation because of limitation of resources, such as
2103  *                      camera device, audio device, and display device.
2104  *      @par example
2105  *      @code
2106
2107 #include <mm_camcorder.h>
2108
2109 gboolean initialize_camcorder()
2110 {
2111         int err;
2112         MMCamPreset cam_info;
2113 #if 1
2114         cam_info.videodev_type = MM_VIDEO_DEVICE_CAMERA0;
2115 #else
2116         // when you want to record audio only, enable this.
2117         cam_info.videodev_type = MM_VIDEO_DEVICE_NONE;
2118 #endif
2119
2120         err = mm_camcorder_create(&hcam, &cam_info);
2121
2122         if (err != MM_ERROR_NONE) {
2123                 printf("Fail to call mm_camcorder_create = %x\n", err);
2124                 return FALSE;
2125         }
2126
2127         return TRUE;
2128 }
2129
2130  *      @endcode
2131  */
2132 int mm_camcorder_create(MMHandleType *camcorder, MMCamPreset *info);
2133
2134
2135 /**
2136  *    mm_camcorder_destroy:\n
2137  *  Destroy camcorder object. Release handle and all of the resources that were created in mm_camcorder_create().\n
2138  *  This is the finalizing function of mm_camcorder. If this function is not called or fails to call, the handle isn't released fully.
2139  *  This function releases attributes, mutexes, sessions, and handle itself. This function also removes all of remaining messages.
2140  *  So if your application should wait a certain message of mm_camcorder, please wait to call this function till getting the message.
2141  *
2142  *
2143  *      @param[in]      camcorder       A handle of camcorder.
2144  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2145  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2146  *      @see            mm_camcorder_create
2147  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_NULL
2148  *      @post           Because the handle is not valid, you can't check the state.
2149  *      @remarks        None
2150  *      @par example
2151  *      @code
2152
2153 #include <mm_camcorder.h>
2154
2155 gboolean destroy_camcorder()
2156 {
2157         int err;
2158
2159         //Destroy camcorder handle
2160         err = mm_camcorder_destroy(hcam);
2161         if (err < 0) {
2162                 printf("Fail to call mm_camcorder_destroy  = %x\n", err);
2163                 return FALSE;
2164         }
2165
2166         return TRUE;
2167 }
2168
2169  *      @endcode
2170  */
2171 int mm_camcorder_destroy(MMHandleType camcorder);
2172
2173
2174 /**
2175  *    mm_camcorder_realize:\n
2176  *  Allocate resources for camcorder and initialize it.
2177  *  This also creates streamer pipeline. So you have to set attributes that are pivotal to create
2178  *  the pipeline before calling this function. This function also takes a roll to manage conflict
2179  *  between different applications which use camcorder. For example, if you try to use camcorder when
2180  *  other application that is more important such as call application, this function will return
2181  *  'MM_ERROR_POLICY_BLOCKED'. On the contrary, if your application that uses camcorder starts to launch
2182  *  while another application that uses speaker and has lower priority, your application will kick
2183  *  another application.
2184  *
2185  *      @param[in]      camcorder       A handle of camcorder.
2186  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2187  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2188  *      @see            mm_camcorder_unrealize
2189  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_NULL
2190  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_READY
2191  *      @remarks        None
2192  *      @par example
2193  *      @code
2194
2195 #include <mm_camcorder.h>
2196
2197 //For image capturing
2198 gboolean initialize_image_capture()
2199 {
2200         int err;
2201         MMCamPreset cam_info;
2202         char *err_attr_name = NULL;
2203         void * hdisplay = NULL;
2204         int hsize = 0;
2205
2206         //Set video device as 'camera0' (main camera device)
2207         cam_info.videodev_type = MM_VIDEO_DEVICE_CAMERA0;
2208
2209         err = mm_camcorder_create(&hcam, &cam_info);
2210
2211         if (err != MM_ERROR_NONE) {
2212                 printf("Fail to call mm_camcorder_create = %x\n", err);
2213                 return FALSE;
2214         }
2215
2216         mm_camcorder_set_message_callback(hcam,(MMMessageCallback)msg_callback, (void*)hcam);
2217         mm_camcorder_set_video_capture_callback(hcam,(mm_camcorder_video_capture_callback)camcordertest_video_capture_cb, (void*)hcam);
2218
2219         hdisplay = &ad.xid;             //xid of xwindow. This value can be different depending on your environment.
2220         hsize = sizeof(ad.xid);         //size of xid structure.
2221
2222         // camcorder attribute setting
2223         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,
2224                                           MMCAM_MODE, MM_CAMCORDER_MODE_IMAGE,
2225                                           MMCAM_IMAGE_ENCODER, MM_IMAGE_CODEC_JPEG,
2226                                           MMCAM_CAMERA_WIDTH, 640,
2227                                           MMCAM_CAMERA_HEIGHT, 480,
2228                                           MMCAM_CAMERA_FORMAT, MM_PIXEL_FORMAT_YUYV,
2229                                           MMCAM_CAMERA_FPS, 30,
2230                                           MMCAM_DISPLAY_ROTATION, MM_DISPLAY_ROTATION_270,
2231                                           MMCAM_DISPLAY_HANDLE, (void*) hdisplay,          hsize,
2232                                           MMCAM_CAPTURE_FORMAT, MM_PIXEL_FORMAT_ENCODED,
2233                                           MMCAM_CAPTURE_WIDTH, 640,
2234                                           MMCAM_CAPTURE_HEIGHT, 480,
2235                                           NULL);
2236
2237         if (err < 0) {
2238                 printf("Set attrs fail. (%s:%x)\n", err_attr_name, err);
2239                 if (err_attr_name) {
2240                         free(err_attr_name);
2241                         err_attr_name = NULL;
2242                         return FALSE;
2243                 }
2244         }
2245
2246         err =  mm_camcorder_realize(hcam);
2247         if (err < 0) {
2248                 printf("Fail to call mm_camcorder_realize  = %x\n", err);
2249                 return FALSE;
2250         }
2251
2252         return TRUE;
2253 }
2254
2255 //For A/V capturing
2256 gboolean initialize_video_capture()
2257 {
2258         int err;
2259         MMCamPreset cam_info;
2260         char *err_attr_name = NULL;
2261         void * hdisplay = NULL;
2262         int hsize = 0;
2263
2264         //Set video device as 'camera0' (main camera device)
2265         cam_info.videodev_type = MM_VIDEO_DEVICE_CAMERA0;
2266
2267         err = mm_camcorder_create(&hcam, &cam_info);
2268
2269         if (err != MM_ERROR_NONE) {
2270                 printf("Fail to call mm_camcorder_create = %x\n", err);
2271                 return FALSE;
2272         }
2273
2274         mm_camcorder_set_message_callback(hcam,(MMMessageCallback)msg_callback, hcam);
2275
2276         hdisplay = &ad.xid;             //xid of xwindow. This value can be different depending on your environment.
2277         hsize = sizeof(ad.xid);         //size of xid structure.
2278
2279         // camcorder attribute setting
2280         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,
2281                                           MMCAM_MODE, MM_CAMCORDER_MODE_VIDEO,
2282                                           MMCAM_AUDIO_DEVICE, MM_AUDIO_DEVICE_MIC,
2283                                           MMCAM_AUDIO_ENCODER, MM_AUDIO_CODEC_AAC,
2284                                           MMCAM_VIDEO_ENCODER, MM_VIDEO_CODEC_MPEG4,
2285                                           MMCAM_FILE_FORMAT, MM_FILE_FORMAT_3GP,
2286                                           MMCAM_CAMERA_WIDTH, 1280,
2287                                           MMCAM_CAMERA_HEIGHT, 720,
2288                                           MMCAM_CAMERA_FORMAT, MM_PIXEL_FORMAT_NV12,
2289                                           MMCAM_CAMERA_FPS, 30,
2290                                           MMCAM_AUDIO_SAMPLERATE, 44100,
2291                                           MMCAM_AUDIO_FORMAT, MM_CAMCORDER_AUDIO_FORMAT_PCM_S16_LE,
2292                                           MMCAM_AUDIO_CHANNEL, 2,
2293                                           MMCAM_DISPLAY_ROTATION, MM_DISPLAY_ROTATION_270,
2294                                           MMCAM_DISPLAY_HANDLE, (void*) hdisplay,               hsize,
2295                                           MMCAM_TARGET_FILENAME, TARGET_FILENAME, strlen(TARGET_FILENAME),
2296                                           NULL);
2297
2298         if (err < 0) {
2299                 printf("Set attrs fail. (%s:%x)\n", err_attr_name, err);
2300                 if (err_attr_name) {
2301                         free(err_attr_name);
2302                         err_attr_name = NULL;
2303                         return FALSE;
2304                 }
2305         }
2306
2307         err =  mm_camcorder_realize(hcam);
2308         if (err < 0) {
2309                 printf("Fail to call mm_camcorder_realize  = %x\n", err);
2310                 return FALSE;
2311         }
2312
2313         return TRUE;
2314 }
2315
2316 //For audio(only) capturing
2317 gboolean initialize_audio_capture()
2318 {
2319         int err;
2320         MMCamPreset cam_info;
2321         char *err_attr_name = NULL;
2322         void * hdisplay = NULL;
2323         int hsize = 0;
2324
2325         //Set no video device, because audio recording doesn't need video input.
2326         cam_info.videodev_type = MM_VIDEO_DEVICE_NONE;
2327
2328         err = mm_camcorder_create(&hcam, &cam_info);
2329
2330         if (err != MM_ERROR_NONE) {
2331                 printf("Fail to call mm_camcorder_create = %x\n", err);
2332                 return FALSE;
2333         }
2334
2335         mm_camcorder_set_message_callback(hcam,(MMMessageCallback)msg_callback, (void*)hcam);
2336
2337         hdisplay = &ad.xid;             //xid of xwindow. This value can be different depending on your environment.
2338         hsize = sizeof(ad.xid);         //size of xid structure.
2339
2340         // camcorder attribute setting
2341         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,
2342                                           MMCAM_MODE, MM_CAMCORDER_MODE_AUDIO,
2343                                           MMCAM_AUDIO_DEVICE, MM_AUDIO_DEVICE_MIC,
2344                                           MMCAM_AUDIO_ENCODER, MM_AUDIO_CODEC_AAC,
2345                                           MMCAM_FILE_FORMAT, MM_FILE_FORMAT_3GP,
2346                                           MMCAM_AUDIO_SAMPLERATE, 44100,
2347                                           MMCAM_AUDIO_FORMAT, MM_CAMCORDER_AUDIO_FORMAT_PCM_S16_LE,
2348                                           MMCAM_AUDIO_CHANNEL, 2,
2349                                           MMCAM_TARGET_FILENAME, TARGET_FILENAME, strlen(TARGET_FILENAME),
2350                                           MMCAM_TARGET_TIME_LIMIT, 360000,
2351                                           NULL);
2352
2353         if (err < 0) {
2354                 printf("Set attrs fail. (%s:%x)\n", err_attr_name, err);
2355                 if (err_attr_name) {
2356                         free(err_attr_name);
2357                         err_attr_name = NULL;
2358                         return FALSE;
2359                 }
2360         }
2361
2362         err =  mm_camcorder_realize(hcam);
2363         if (err < 0) {
2364                 printf("Fail to call mm_camcorder_realize  = %x\n", err);
2365                 return FALSE;
2366         }
2367
2368         return TRUE;
2369 }
2370  *      @endcode
2371  */
2372 int mm_camcorder_realize(MMHandleType camcorder);
2373
2374
2375 /**
2376  *    mm_camcorder_unrealize:\n
2377  *  Uninitialize camcoder resources and free allocated memory.
2378  *  Most important resource that is released here is gstreamer pipeline of mm_camcorder.
2379  *  Because most of resources, such as camera device, video display device, and audio I/O device, are operating on the gstreamer pipeline,
2380  *  this function should be called to release its resources.
2381  *
2382  *      @param[in]      camcorder       A handle of camcorder.
2383  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2384  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2385  *      @see            mm_camcorder_realize
2386  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_READY
2387  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_NULL
2388  *      @remarks        None
2389  *      @par example
2390  *      @code
2391
2392 #include <mm_camcorder.h>
2393
2394 gboolean unrealize_camcorder()
2395 {
2396         int err;
2397
2398         //Release all resources of camcorder handle
2399         err =  mm_camcorder_unrealize(hcam);
2400         if (err < 0) {
2401                 printf("Fail to call mm_camcorder_unrealize  = %x\n", err);
2402                 return FALSE;
2403         }
2404
2405         return TRUE;
2406 }
2407
2408  *      @endcode
2409  */
2410 int mm_camcorder_unrealize(MMHandleType camcorder);
2411
2412
2413 /**
2414  *      mm_camcorder_start:\n
2415  *   Start previewing. (Image/Video mode)
2416  *  'mm_camcorder_video_stream_callback' is activated after calling this function.
2417  *
2418  *      @param[in]      camcorder       A handle of camcorder.
2419  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2420  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2421  *      @see            mm_camcorder_stop
2422  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_READY
2423  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_PREPARE
2424  *      @remarks        None
2425  *      @par example
2426  *      @code
2427
2428 #include <mm_camcorder.h>
2429
2430 //For image capturing
2431 gboolean initialize_image_capture()
2432 {
2433         int err;
2434         MMCamPreset cam_info;
2435         char *err_attr_name = NULL;
2436         void * hdisplay = NULL;
2437         int hsize = 0;
2438
2439         //Set video device as 'camera0' (main camera device)
2440         cam_info.videodev_type = MM_VIDEO_DEVICE_CAMERA0;
2441
2442         err = mm_camcorder_create(&hcam, &cam_info);
2443
2444         if (err != MM_ERROR_NONE) {
2445                         printf("Fail to call mm_camcorder_create = %x\n", err);
2446                         return FALSE;
2447         }
2448
2449         mm_camcorder_set_message_callback(hcam,(MMMessageCallback)msg_callback, (void*)hcam);
2450         mm_camcorder_set_video_capture_callback(hcam,(mm_camcorder_video_capture_callback)camcordertest_video_capture_cb, (void*)hcam);
2451
2452         hdisplay = &ad.xid;             //xid of xwindow. This value can be different depending on your environment.
2453         hsize = sizeof(ad.xid);         //size of xid structure.
2454
2455         // camcorder attribute setting
2456         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,
2457                                           MMCAM_MODE, MM_CAMCORDER_MODE_IMAGE,
2458                                           MMCAM_IMAGE_ENCODER, MM_IMAGE_CODEC_JPEG,
2459                                           MMCAM_CAMERA_WIDTH, 640,
2460                                           MMCAM_CAMERA_HEIGHT, 480,
2461                                           MMCAM_CAMERA_FORMAT, MM_PIXEL_FORMAT_YUYV,
2462                                           MMCAM_CAMERA_FPS, 30,
2463                                           MMCAM_DISPLAY_ROTATION, MM_DISPLAY_ROTATION_270,
2464                                           MMCAM_DISPLAY_HANDLE, (void*) hdisplay,          hsize,
2465                                           MMCAM_CAPTURE_FORMAT, MM_PIXEL_FORMAT_ENCODED,
2466                                           MMCAM_CAPTURE_WIDTH, 640,
2467                                           MMCAM_CAPTURE_HEIGHT, 480,
2468                                           NULL);
2469
2470         if (err < 0) {
2471                 printf("Set attrs fail. (%s:%x)\n", err_attr_name, err);
2472                 if (err_attr_name) {
2473                         free(err_attr_name);
2474                         err_attr_name = NULL;
2475                         return FALSE;
2476                 }
2477         }
2478
2479         err =  mm_camcorder_realize(hcam);
2480         if (err < 0) {
2481                 printf("Fail to call mm_camcorder_realize  = %x\n", err);
2482                 return FALSE;
2483         }
2484
2485         // start camcorder
2486         err = mm_camcorder_start(hcam);
2487         if (err < 0) {
2488                 printf("Fail to call mm_camcorder_start  = %x\n", err);
2489                 return FALSE;
2490         }
2491
2492         return TRUE;
2493 }
2494
2495 //For A/V capturing
2496 gboolean initialize_video_capture()
2497 {
2498         int err;
2499         MMCamPreset cam_info;
2500         char *err_attr_name = NULL;
2501         void * hdisplay = NULL;
2502         int hsize = 0;
2503
2504         //Set video device as 'camera0' (main camera device)
2505         cam_info.videodev_type = MM_VIDEO_DEVICE_CAMERA0;
2506
2507         err = mm_camcorder_create(&hcam, &cam_info);
2508
2509         if (err != MM_ERROR_NONE) {
2510                         printf("Fail to call mm_camcorder_create = %x\n", err);
2511                         return FALSE;
2512         }
2513
2514         mm_camcorder_set_message_callback(hcam,(MMMessageCallback)msg_callback, hcam);
2515
2516         hdisplay = &ad.xid;             //xid of xwindow. This value can be different depending on your environment.
2517         hsize = sizeof(ad.xid);         //size of xid structure.
2518
2519         // camcorder attribute setting
2520         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,
2521                                           MMCAM_MODE, MM_CAMCORDER_MODE_VIDEO,
2522                                           MMCAM_AUDIO_DEVICE, MM_AUDIO_DEVICE_MIC,
2523                                           MMCAM_AUDIO_ENCODER, MM_AUDIO_CODEC_AAC,
2524                                           MMCAM_VIDEO_ENCODER, MM_VIDEO_CODEC_MPEG4,
2525                                           MMCAM_FILE_FORMAT, MM_FILE_FORMAT_3GP,
2526                                           MMCAM_CAMERA_WIDTH, 1280,
2527                                           MMCAM_CAMERA_HEIGHT, 720,
2528                                           MMCAM_CAMERA_FORMAT, MM_PIXEL_FORMAT_NV12,
2529                                           MMCAM_CAMERA_FPS, 30,
2530                                           MMCAM_AUDIO_SAMPLERATE, 44100,
2531                                           MMCAM_AUDIO_FORMAT, MM_CAMCORDER_AUDIO_FORMAT_PCM_S16_LE,
2532                                           MMCAM_AUDIO_CHANNEL, 2,
2533                                           MMCAM_DISPLAY_ROTATION, MM_DISPLAY_ROTATION_270,
2534                                           MMCAM_DISPLAY_HANDLE, (void*) hdisplay,               hsize,
2535                                           MMCAM_TARGET_FILENAME, TARGET_FILENAME, strlen(TARGET_FILENAME),
2536                                           NULL);
2537
2538         if (err < 0) {
2539                 printf("Set attrs fail. (%s:%x)\n", err_attr_name, err);
2540                 if (err_attr_name) {
2541                         free(err_attr_name);
2542                         err_attr_name = NULL;
2543                         return FALSE;
2544                 }
2545         }
2546
2547         err =  mm_camcorder_realize(hcam);
2548         if (err < 0) {
2549                 printf("Fail to call mm_camcorder_realize  = %x\n", err);
2550                 return FALSE;
2551         }
2552
2553         // start camcorder
2554         err = mm_camcorder_start(hcam);
2555         if (err < 0) {
2556                 printf("Fail to call mm_camcorder_start  = %x\n", err);
2557                 return FALSE;
2558         }
2559
2560         return TRUE;
2561 }
2562
2563 //For audio(only) capturing
2564 gboolean initialize_audio_capture()
2565 {
2566         int err;
2567         MMCamPreset cam_info;
2568         char *err_attr_name = NULL;
2569         void * hdisplay = NULL;
2570         int hsize = 0;
2571
2572         //Set no video device, because audio recording doesn't need video input.
2573         cam_info.videodev_type = MM_VIDEO_DEVICE_NONE;
2574
2575         err = mm_camcorder_create(&hcam, &cam_info);
2576
2577         if (err != MM_ERROR_NONE) {
2578                 printf("Fail to call mm_camcorder_create = %x\n", err);
2579                 return FALSE;
2580         }
2581
2582         mm_camcorder_set_message_callback(hcam,(MMMessageCallback)msg_callback, (void*)hcam);
2583
2584         hdisplay = &ad.xid;             //xid of xwindow. This value can be different depending on your environment.
2585         hsize = sizeof(ad.xid);         //size of xid structure.
2586
2587         // camcorder attribute setting
2588         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,
2589                                           MMCAM_MODE, MM_CAMCORDER_MODE_AUDIO,
2590                                           MMCAM_AUDIO_DEVICE, MM_AUDIO_DEVICE_MIC,
2591                                           MMCAM_AUDIO_ENCODER, MM_AUDIO_CODEC_AAC,
2592                                           MMCAM_FILE_FORMAT, MM_FILE_FORMAT_3GP,
2593                                           MMCAM_AUDIO_SAMPLERATE, 44100,
2594                                           MMCAM_AUDIO_FORMAT, MM_CAMCORDER_AUDIO_FORMAT_PCM_S16_LE,
2595                                           MMCAM_AUDIO_CHANNEL, 2,
2596                                           MMCAM_TARGET_FILENAME, TARGET_FILENAME, strlen(TARGET_FILENAME),
2597                                           MMCAM_TARGET_TIME_LIMIT, 360000,
2598                                           NULL);
2599
2600         if (err < 0) {
2601                 printf("Set attrs fail. (%s:%x)\n", err_attr_name, err);
2602                 if (err_attr_name) {
2603                         free(err_attr_name);
2604                         err_attr_name = NULL;
2605                         return FALSE;
2606                 }
2607         }
2608
2609         err =  mm_camcorder_realize(hcam);
2610         if (err < 0) {
2611                 printf("Fail to call mm_camcorder_realize  = %x\n", err);
2612                 return FALSE;
2613         }
2614
2615         // start camcorder
2616         err = mm_camcorder_start(hcam);
2617         if (err < 0) {
2618                 printf("Fail to call mm_camcorder_start  = %x\n", err);
2619                 return FALSE;
2620         }
2621
2622         return TRUE;
2623 }
2624  *      @endcode
2625  */
2626 int mm_camcorder_start(MMHandleType camcorder);
2627
2628
2629 /**
2630  *    mm_camcorder_stop:\n
2631  *  Stop previewing. (Image/Video mode)
2632  *  This function will change the status of pipeline. If an application doesn't return callbacks
2633  *  of camcorder, this function can be locked. For example, if your application still
2634  *  holds '#mm_camcorder_video_capture_callback' or '#mm_camcorder_video_stream_callback',
2635  *  this function could be hung. So users have to return every callback before calling this function.
2636  *
2637  *      @param[in]      camcorder       A handle of camcorder.
2638  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2639  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2640  *      @see            mm_camcorder_start
2641  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_PREPARE
2642  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_READY
2643  *      @remarks        None
2644  *      @par example
2645  *      @code
2646
2647 #include <mm_camcorder.h>
2648
2649 gboolean stop_camcorder()
2650 {
2651         int err;
2652
2653         //Stop preview
2654         err =  mm_camcorder_stop(hcam);
2655         if (err < 0) {
2656                 printf("Fail to call mm_camcorder_stop  = %x\n", err);
2657                 return FALSE;
2658         }
2659
2660         return TRUE;
2661 }
2662
2663  *      @endcode
2664  */
2665 int mm_camcorder_stop(MMHandleType camcorder);
2666
2667
2668 /**
2669  *    mm_camcorder_capture_start:\n
2670  *  Start capturing of still images. (Image mode only)
2671  *  Captured image will be delievered through 'mm_camcorder_video_capture_callback'.
2672  *  So basically, the operation is working asynchronously. \n
2673  *  When a user call this function, MSL will stop to retrieving preview from camera device.
2674  *  Then set capture resolution, pixel format, and encoding type to camera driver. After resuming,
2675  *  camera can get still image.  A user will be notified by
2676  *  'MM_MESSAGE_CAMCORDER_CAPTURED' message when capturing succeed. When a user sets
2677  *  multishot (by setting multiple number to MMCAM_CAPTURE_COUNT), the message
2678  *  will be called multiple time. You can get the number of image from 'code' of
2679  *  'MMMessageParamType'.
2680  *
2681  *      @param[in]      camcorder       A handle of camcorder.
2682  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2683  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2684  *      @see            mm_camcorder_capture_stop
2685  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_PREPARE
2686  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_CAPTURING
2687  *      @remarks        To call this function, preview should be started successfully.\n
2688  *                      This function is a pair of mm_camcorder_capture_stop().
2689  *                      So user should call mm_camcorder_capture_stop() after getting captured image.
2690  *      @par example
2691  *      @code
2692
2693 #include <mm_camcorder.h>
2694
2695 gboolean capturing_picture()
2696 {
2697         int err;
2698
2699         err =  mm_camcorder_capture_start(hcam);
2700         if (err < 0)
2701         {
2702                 printf("Fail to call mm_camcorder_capture_start  = %x\n", err);
2703                 return FALSE;
2704         }
2705
2706         //mm_camcorder_capture_stop should be called after getting
2707         //MM_MESSAGE_CAMCORDER_CAPTURED message.
2708
2709         return TRUE;
2710 }
2711
2712
2713  *      @endcode
2714  */
2715 int mm_camcorder_capture_start(MMHandleType camcorder);
2716
2717
2718 /**
2719  *    mm_camcorder_capture_stop:\n
2720  *  Stop capturing of still images. (Image mode only)
2721  *  This function notifies the end of capturing and launch preview again.
2722  *  Just as mm_camcorder_capture_start(), this function stops still image stream and set preview information such as
2723  *  resolution, pixel format, and framerate to camera driver. Then it command to start preview.
2724  *  If you don't call this, preview will not be displayed even though capturing was finished.
2725  *
2726  *      @param[in]      camcorder       A handle of camcorder.
2727  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2728  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2729  *      @see            mm_camcorder_capture_start
2730  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_CAPTURING
2731  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_PREPARE
2732  *      @remarks        To call this function, a user has to call mm_camcorder_capture_start() first.\n
2733  *                      This is not a function to stop multishot in the middle of operation. For that,
2734  *                      please use '#MMCAM_CAPTURE_BREAK_CONTINUOUS_SHOT' instead.
2735  *      @par example
2736  *      @code
2737
2738 #include <mm_camcorder.h>
2739
2740 gboolean capturing_picture_stop()
2741 {
2742         int err;
2743
2744         err =  mm_camcorder_capture_stop(hcam);
2745         if (err < 0) {
2746                 printf("Fail to call mm_camcorder_capture_stop  = %x\n", err);
2747                 return FALSE;
2748         }
2749
2750         //After calling upper function, preview will start.
2751
2752         return TRUE;
2753 }
2754
2755  *      @endcode
2756  */
2757 int mm_camcorder_capture_stop(MMHandleType camcorder);
2758
2759
2760 /**
2761  *    mm_camcorder_record:\n
2762  *  Start recording. (Audio/Video mode only)
2763  *  Camcorder starts to write a file when you call this function. You can specify the name of file
2764  *  using '#MMCAM_TARGET_FILENAME'. Beware, if you fail to call mm_camcorder_commit() or mm_camcorder_cancel(),
2765  *  the recorded file is still on the storage.
2766  *
2767  *      @param[in]      camcorder       A handle of camcorder.
2768  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2769  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2770  *      @see            mm_camcorder_pause
2771  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_PREPARE
2772  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_RECORDING
2773  *      @remarks        None
2774  *      @par example
2775  *      @code
2776
2777 #include <mm_camcorder.h>
2778
2779 gboolean record_and_cancel_video_file()
2780 {
2781         int err;
2782
2783         // Start recording
2784         err =  mm_camcorder_record(hcam);
2785         if (err < 0) {
2786                 printf("Fail to call mm_camcorder_record  = %x\n", err);
2787                 return FALSE;
2788         }
2789
2790         return TRUE;
2791 }
2792
2793  *      @endcode
2794  */
2795 int mm_camcorder_record(MMHandleType camcorder);
2796
2797
2798 /**
2799  *    mm_camcorder_pause:\n
2800  *  Pause A/V recording or Audio recording. (Audio/Video mode only)
2801  *  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.
2802  *  If you call mm_camcorder_commit() while on pausing, the recorded file only has Audio and Video stream which were generated before pause().
2803  *
2804  *      @param[in]      camcorder       A handle of camcorder.
2805  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2806  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2807  *      @see            mm_camcorder_record
2808  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_RECORDING
2809  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_PAUSED
2810  *      @remarks        Even though this function is for pausing recording, small amount of buffers could be recorded after pause().
2811  *                      Because the buffers which are existed in the queue were created before pause(), the buffers should be recorded.
2812  *      @par example
2813  *      @code
2814
2815 #include <mm_camcorder.h>
2816
2817 gboolean record_pause_and_resume_recording()
2818 {
2819         int err;
2820
2821         // Start recording
2822         err =  mm_camcorder_record(hcam);
2823         if (err < 0) {
2824                 printf("Fail to call mm_camcorder_record  = %x\n", err);
2825                 return FALSE;
2826         }
2827
2828         // Wait while recording...
2829
2830         // Pause
2831         err =  mm_camcorder_pause(hcam);
2832         if (err < 0) {
2833                 printf("Fail to call mm_camcorder_pause  = %x\n", err);
2834                 return FALSE;
2835         }
2836
2837         // Pausing...
2838
2839         // Resume
2840         err =  mm_camcorder_record(hcam);
2841         if (err < 0) {
2842                 printf("Fail to call mm_camcorder_record  = %x\n", err);
2843                 return FALSE;
2844         }
2845
2846         return TRUE;
2847 }
2848
2849
2850  *      @endcode
2851  */
2852 int mm_camcorder_pause(MMHandleType camcorder);
2853
2854
2855 /**
2856  *    mm_camcorder_commit:\n
2857  *  Stop recording and save results.  (Audio/Video mode only)\n
2858  *  After starting recording, encoded data frame will be stored in the location specified in MMCAM_TARGET_FILENAME.
2859  *  Some encoder or muxer require a certain type of finalizing such as adding some information to header.
2860  *  This function takes that roll. So if you don't call this function after recording, the result file may not be playable.\n
2861  *  After committing successfully, camcorder resumes displaying preview (video recording case).
2862  *  Because this is the function for saving the recording result, the operation is available
2863  *  only when the mode of camcorder is MM_CAMCORDER_MODE_AUDIO or MM_CAMCORDER_MODE_VIDEO.
2864  *
2865  *      @param[in]      camcorder       A handle of camcorder.
2866  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2867  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2868  *      @see            mm_camcorder_cancel
2869  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_RECORDING
2870  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_PREPARE
2871  *      @remarks        This function can take a few second when recording time is long.
2872  *                      and if there are only quite few input buffer from video src or audio src,
2873  *                      committing could be failed.
2874  *      @par example
2875  *      @code
2876
2877 #include <mm_camcorder.h>
2878
2879 gboolean record_and_save_video_file()
2880 {
2881         int err;
2882
2883         // Start recording
2884         err =  mm_camcorder_record(hcam);
2885         if (err < 0) {
2886                 printf("Fail to call mm_camcorder_record  = %x\n", err);
2887                 return FALSE;
2888         }
2889
2890         // Wait while recording for test...
2891         // In normal case, mm_camcorder_record() and mm_camcorder_commit() aren't called in the same function.
2892
2893         // Save file
2894         err =  mm_camcorder_commit(hcam);
2895         if (err < 0) {
2896                 printf("Fail to call mm_camcorder_commit  = %x\n", err);
2897                 return FALSE;
2898         }
2899
2900         return TRUE;
2901 }
2902
2903  *      @endcode
2904  */
2905 int mm_camcorder_commit(MMHandleType camcorder);
2906
2907
2908 /**
2909  *      mm_camcorder_cancel:\n
2910  *    Stop recording and discard the result. (Audio/Video mode only)
2911  *      When a user want to finish recording without saving the result file, this function can be used.
2912  *      Like mm_camcorder_commit(), this function also stops recording, release related resources(like codec) ,and goes back to preview status.
2913  *      However, instead of saving file, this function unlinks(delete) the result.\n
2914  *      Because this is the function for canceling recording, the operation is available
2915  *      only when mode is MM_CAMCORDER_MODE_AUDIO or MM_CAMCORDER_MODE_VIDEO.
2916  *
2917  *      @param[in]      camcorder       A handle of camcorder.
2918  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2919  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2920  *      @see            mm_camcorder_commit
2921  *      @pre            Previous state of mm-camcorder should be MM_CAMCORDER_STATE_RECORDING
2922  *      @post           Next state of mm-camcorder will be MM_CAMCORDER_STATE_PREPARE
2923  *      @remarks        None
2924  *      @par example
2925  *      @code
2926
2927 #include <mm_camcorder.h>
2928
2929 gboolean record_and_cancel_video_file()
2930 {
2931         int err;
2932
2933         // Start recording
2934         err =  mm_camcorder_record(hcam);
2935         if (err < 0) {
2936                 printf("Fail to call mm_camcorder_record  = %x\n", err);
2937                 return FALSE;
2938         }
2939
2940         // Wait while recording...
2941
2942         // Cancel recording
2943         err =  mm_camcorder_cancel(hcam);
2944         if (err < 0) {
2945                 printf("Fail to call mm_camcorder_cancel  = %x\n", err);
2946                 return FALSE;
2947         }
2948
2949         return TRUE;
2950 }
2951
2952  *      @endcode
2953  */
2954 int mm_camcorder_cancel(MMHandleType camcorder);
2955
2956
2957 /**
2958  *    mm_camcorder_set_message_callback:\n
2959  *  Set callback for receiving messages from camcorder. Through this callback function, camcorder
2960  *  sends various message including status changes, asynchronous error, capturing, and limitations.
2961  *  One thing you have to know is that message callback is working on the main loop of application.
2962  *  So until releasing the main loop, message callback will not be called.
2963  *
2964  *      @param[in]      camcorder       A handle of camcorder.
2965  *      @param[in]      callback        Function pointer of callback function. Please refer 'MMMessageCallback'.
2966  *      @param[in]      user_data       User parameter for passing to callback function.
2967  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
2968  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
2969  *      @see            MMMessageCallback
2970  *      @pre            None
2971  *      @post           None
2972  *      @remarks        registered 'callback' is called on main loop of the application. So until the main loop is released, 'callback' will not be called.
2973  *      @par example
2974  *      @code
2975
2976 #include <mm_camcorder.h>
2977
2978 gboolean setting_msg_callback()
2979 {
2980         //set callback
2981         mm_camcorder_set_message_callback(hcam,(MMMessageCallback)msg_callback, (void*)hcam);
2982
2983         return TRUE;
2984 }
2985
2986
2987  *      @endcode
2988  */
2989 int mm_camcorder_set_message_callback(MMHandleType camcorder, MMMessageCallback callback, void *user_data);
2990
2991
2992 /**
2993  *    mm_camcorder_set_video_stream_callback:\n
2994  *  Set callback for user defined video stream callback function.
2995  *  Users can retrieve video frame using registered callback.
2996  *  The callback function holds the same buffer that will be drawn on the display device.
2997  *  So if an user change the buffer, it will be displayed on the device.
2998  *
2999  *      @param[in]      camcorder       A handle of camcorder.
3000  *      @param[in]      callback        Function pointer of callback function.
3001  *      @param[in]      user_data       User parameter for passing to callback function.
3002  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3003  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3004  *      @see            mm_camcorder_video_stream_callback
3005  *      @pre            None
3006  *      @post           None
3007  *      @remarks        registered 'callback' is called on internal thread of camcorder. Regardless of the status of main loop, this function will be called.
3008  *      @par example
3009  *      @code
3010
3011 #include <mm_camcorder.h>
3012
3013 gboolean setting_video_stream_callback()
3014 {
3015         //set callback
3016         mm_camcorder_set_video_stream_callback(hcam, (mm_camcorder_video_stream_callback)camcordertest_video_stream_cb, (void*)hcam);
3017
3018         return TRUE;
3019 }
3020  *      @endcode
3021  */
3022 int mm_camcorder_set_video_stream_callback(MMHandleType camcorder, mm_camcorder_video_stream_callback callback, void *user_data);
3023
3024
3025 /**
3026  *    mm_camcorder_set_video_capture_callback:\n
3027  *  Set callback for user defined video capture callback function.  (Image mode only)
3028  *  mm_camcorder deliver captured image through the callback.\n
3029  *  Normally, this function provides main captured image and thumbnail image. But depending on the environment,
3030  *  thumbnail would not be available. Information related with main captured image and thumbnail image is also included
3031  *  in the argument of the callback function.
3032  *  For more detail information of callback, please refer 'mm_camcorder_video_capture_callback'.
3033  *
3034  *      @param[in]      camcorder       A handle of camcorder.
3035  *      @param[in]      callback        Function pointer of callback function.
3036  *      @param[in]      user_data       User parameter for passing to callback function.
3037  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3038  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3039  *      @see            mm_camcorder_video_capture_callback
3040  *      @pre            None
3041  *      @post           None
3042  *      @remarks        registered 'callback' is called on internal thread of camcorder. Regardless of the status of main loop, this function will be called.
3043  *      @par example
3044  *      @code
3045
3046 #include <mm_camcorder.h>
3047
3048 gboolean setting_capture_callback()
3049 {
3050         //set callback
3051         mm_camcorder_set_video_capture_callback(hcam,(mm_camcorder_video_capture_callback)camcordertest_video_capture_cb, (void*)hcam);
3052
3053         return TRUE;
3054 }
3055  *      @endcode
3056  */
3057 int mm_camcorder_set_video_capture_callback(MMHandleType camcorder, mm_camcorder_video_capture_callback callback, void *user_data);
3058
3059
3060 /**
3061  *    mm_camcorder_set_audio_stream_callback:\n
3062  *  Set callback for user defined audio stream callback function.
3063  *  Users can retrieve audio data using registered callback.
3064  *  The callback function holds the same buffer that will be recorded.
3065  *  So if an user change the buffer, the result file will has the buffer.
3066  *
3067  *      @param[in]      camcorder       A handle of camcorder.
3068  *      @param[in]      callback        Function pointer of callback function.
3069  *      @param[in]      user_data       User parameter for passing to callback function.
3070  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3071  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3072  *      @see            mm_camcorder_audio_stream_callback
3073  *      @pre            None
3074  *      @post           None
3075  *      @remarks        registered 'callback' is called on internal thread of camcorder. Regardless of the status of main loop, this function will be called.
3076  *      @par example
3077  *      @code
3078
3079 #include <mm_camcorder.h>
3080
3081 gboolean setting_audio_stream_callback()
3082 {
3083         //set callback
3084         mm_camcorder_set_audio_stream_callback(hcam, (mm_camcorder_audio_stream_callback)camcordertest_audio_stream_cb, (void*)hcam);
3085
3086         return TRUE;
3087 }
3088  *  @endcode
3089  */
3090 int mm_camcorder_set_audio_stream_callback(MMHandleType camcorder, mm_camcorder_audio_stream_callback callback, void *user_data);
3091
3092
3093 /**
3094  *    mm_camcorder_set_muxed_stream_callback:\n
3095  *  Set callback for user defined muxed stream callback function.
3096  *  Users can retrieve muxed data using registered callback.
3097  *  The callback function holds the same buffer that will be recorded.
3098  *
3099  *      @param[in]      camcorder       A handle of camcorder.
3100  *      @param[in]      callback        Function pointer of callback function.
3101  *      @param[in]      user_data       User parameter for passing to callback function.
3102  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3103  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3104  *      @see            mm_camcorder_muxed_stream_callback
3105  *      @pre            None
3106  *      @post           None
3107  *      @remarks        registered 'callback' is called on internal thread of camcorder. Regardless of the status of main loop, this function will be called.
3108  *      @par example
3109  *      @code
3110
3111 #include <mm_camcorder.h>
3112
3113 gboolean setting_muxed_stream_callback()
3114 {
3115         //set callback
3116         mm_camcorder_set_muxed_stream_callback(hcam, (mm_camcorder_muxed_stream_callback)camcordertest_muxed_stream_cb, (void*)hcam);
3117
3118         return TRUE;
3119 }
3120  *  @endcode
3121  */
3122 int mm_camcorder_set_muxed_stream_callback(MMHandleType camcorder, mm_camcorder_muxed_stream_callback callback, void *user_data);
3123
3124
3125 /**
3126  *    mm_camcorder_set_video_encode_decision_callback:\n
3127  *  Set callback for user defined video encode decision callback function.
3128  *  Users can retrieve video frame using registered callback,
3129  *  and decide to encoding video frame by return value of function.
3130  *
3131  *      @param[in]      camcorder       A handle of camcorder.
3132  *      @param[in]      callback        Function pointer of callback function.
3133  *      @param[in]      user_data       User parameter for passing to callback function.
3134  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3135  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3136  *      @see            mm_camcorder_video_encode_decision_callback
3137  *      @pre            None
3138  *      @post           None
3139  *      @remarks        registered 'callback' is called on internal thread of camcorder. Regardless of the status of main loop, this function will be called.
3140  */
3141 int mm_camcorder_set_video_encode_decision_callback(MMHandleType camcorder, mm_camcorder_video_encode_decision_callback callback, void *user_data);
3142
3143
3144 /**
3145  *    mm_camcorder_get_state:\n
3146  *  Get the current state of camcorder.
3147  *  mm_camcorder is working on the base of its state. An user should check the state of mm_camcorder before calling its functions.
3148  *  If the handle is available, user can retrieve the value.
3149  *
3150  *      @param[in]      camcorder       A handle of camcorder.
3151  *      @param[out]     state           On return, it contains current state of camcorder.
3152  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3153  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3154  *      @see            MMCamcorderStateType
3155  *      @pre            None
3156  *      @post           None
3157  *      @remarks        None
3158  *      @par example
3159  *      @code
3160
3161 #include <mm_camcorder.h>
3162
3163 gboolean get_state_of_camcorder()
3164 {
3165         MMCamcorderStateType state;
3166
3167         //Get state of camcorder
3168         mm_camcorder_get_state(hcam, &state);
3169         printf("Current status is %d\n", state);
3170
3171         return TRUE;
3172 }
3173
3174  *      @endcode
3175  */
3176 int mm_camcorder_get_state(MMHandleType camcorder, MMCamcorderStateType *state);
3177 int mm_camcorder_get_state2(MMHandleType camcorder, MMCamcorderStateType *state, MMCamcorderStateType *old_state);
3178
3179
3180 /**
3181  *    mm_camcorder_get_attributes:\n
3182  *  Get attributes of camcorder with given attribute names. This function can get multiple attributes
3183  *  simultaneously. If one of attribute fails, this function will stop at the point.
3184  *  'err_attr_name' let you know the name of the attribute.
3185  *
3186  *      @param[in]      camcorder       Specifies the camcorder  handle.
3187  *      @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
3188  *                                      Free this variable after using.
3189  *      @param[in]      attribute_name  attribute name that user want to get.
3190  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3191  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3192  *      @pre            None
3193  *      @post           None
3194  *      @remarks        You can retrieve multiple attributes at the same time.  @n
3195  *                      This function must finish with 'NULL' argument.  @n
3196  *                      ex) mm_camcorder_get_attributes(....... , NULL);
3197  *      @see            mm_camcorder_set_attributes
3198  *      @par example
3199  *      @code
3200
3201 #include <mm_camcorder.h>
3202
3203 gboolean getting_attribute()
3204 {
3205         int err;
3206         MMCamPreset cam_info;
3207         char *err_attr_name = NULL;
3208         void * hdisplay = NULL;
3209         int hsize = 0;
3210
3211         hdisplay = &ad.xid;             //xid of xwindow. This value can be different depending on your environment.
3212         hsize = sizeof(ad.xid);         //size of xid structure.
3213
3214         // camcorder attribute setting
3215         err = mm_camcorder_get_attributes(hcamcorder, NULL,     //The second is the argument for debugging. But you can skip this.
3216                                           MMCAM_MODE,  &mode,   //You have to input a pointer instead of variable itself.
3217                                           NULL);                //mm_camcorder_set_attributes() should be finished with a NULL argument.
3218
3219         return TRUE;
3220 }
3221
3222  *      @endcode
3223  */
3224 int mm_camcorder_get_attributes(MMHandleType camcorder,  char **err_attr_name, const char *attribute_name, ...) G_GNUC_NULL_TERMINATED;
3225
3226
3227
3228 /**
3229  *    mm_camcorder_set_attributes:\n
3230  *  Set attributes of camcorder with given attribute names. This function can set multiple attributes
3231  *  simultaneously. If one of attribute fails, this function will stop at the point.
3232  *  'err_attr_name' let you know the name of the attribute.
3233  *
3234  *      @param[in]      camcorder       Specifies the camcorder  handle.
3235  *      @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
3236  *                                      Free this variable after using.
3237  *      @param[in]      attribute_name  attribute name that user want to set.
3238  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3239  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3240  *      @pre            None
3241  *      @post           None
3242  *      @remarks        You can put multiple attributes to camcorder at the same time.  @n
3243  *                      This function must finish with 'NULL' argument.  @n
3244  *                      ex) mm_camcorder_set_attributes(....... , NULL);
3245  *      @see            mm_camcorder_get_attributes
3246  *      @par example
3247  *      @code
3248
3249 #include <mm_camcorder.h>
3250
3251 gboolean setting_attribute()
3252 {
3253         int err;
3254         MMCamPreset cam_info;
3255         char *err_attr_name = NULL;
3256         void * hdisplay = NULL;
3257         int hsize = 0;
3258
3259         hdisplay = &ad.xid;             //xid of xwindow. This value can be different depending on your environment.
3260         hsize = sizeof(ad.xid);         //size of xid structure.
3261
3262         // camcorder attribute setting
3263         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,           //The second is the argument for debugging.
3264                                           MMCAM_MODE, MM_CAMCORDER_MODE_IMAGE,
3265                                           MMCAM_IMAGE_ENCODER, MM_IMAGE_CODEC_JPEG,
3266                                           MMCAM_CAMERA_WIDTH, 640,
3267                                           MMCAM_CAMERA_HEIGHT, 480,
3268                                           MMCAM_CAMERA_FORMAT, MM_PIXEL_FORMAT_YUYV,
3269                                           MMCAM_CAMERA_FPS, 30,
3270                                           MMCAM_DISPLAY_ROTATION, MM_DISPLAY_ROTATION_270,
3271                                           MMCAM_DISPLAY_HANDLE, (void*) hdisplay,          hsize,               //Beware some types require 'size' value, too. (STRING, DATA type attributes)
3272                                           MMCAM_CAPTURE_FORMAT, MM_PIXEL_FORMAT_ENCODED,
3273                                           MMCAM_CAPTURE_WIDTH, 640,
3274                                           MMCAM_CAPTURE_HEIGHT, 480,
3275                                           NULL);                //mm_camcorder_set_attributes() should be finished with a NULL argument.
3276
3277         if (err < 0) {
3278                 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.
3279                 if (err_attr_name) {
3280                         free(err_attr_name);                    //Please free 'err_attr_name', after using the argument.
3281                         err_attr_name = NULL;
3282                         return FALSE;
3283                 }
3284         }
3285
3286         return TRUE;
3287 }
3288  *      @endcode
3289  */
3290 int mm_camcorder_set_attributes(MMHandleType camcorder,  char **err_attr_name, const char *attribute_name, ...) G_GNUC_NULL_TERMINATED;
3291
3292
3293 /**
3294  *    mm_camcorder_get_attribute_info:\n
3295  *  Get detail information of the attribute. To manager attributes, an user may want to know the exact character of the attribute,
3296  *  such as type, flag, and validity. This is the function to provide such information.
3297  *  Depending on the 'validity_type', validity union would be different. To know about the type of union, please refer 'MMCamAttrsInfo'.
3298  *
3299  *      @param[in]      camcorder       Specifies the camcorder  handle.
3300  *      @param[in]      attribute_name  attribute name that user want to get information.
3301  *      @param[out]     info            a structure that holds information related with the attribute.
3302  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3303  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3304  *      @pre            None
3305  *      @post           None
3306  *      @remarks        If the function succeeds, 'info' holds detail information about the attribute, such as type,
3307  *                      flag, validity_type, validity_values, and default values.
3308  *      @see            mm_camcorder_get_attributes, mm_camcorder_set_attributes
3309  *      @par example
3310  *      @code
3311
3312 #include <mm_camcorder.h>
3313
3314 gboolean getting_info_from_attribute()
3315 {
3316         MMCamAttrsInfo info;
3317         int err;
3318
3319         err = mm_camcorder_get_attribute_info(handle, MMCAM_CAPTURE_HEIGHT, &info);
3320         if (err < 0) {
3321                 printf("Fail to call mm_camcorder_get_attribute_info()");
3322                 return FALSE;
3323         }
3324
3325         //Now 'info' has many information about 'MMCAM_CAPTURE_HEIGHT'
3326
3327         return TRUE;
3328 }
3329  *      @endcode
3330  */
3331 int mm_camcorder_get_attribute_info(MMHandleType camcorder, const char *attribute_name, MMCamAttrsInfo *info);
3332
3333
3334 /**
3335  *    mm_camcorder_get_fps_list_by_resolution:\n
3336  *  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,
3337  *  Gives attribute information structure, from the configure data.
3338  *  Depending on the 'validity_type', validity union would be different. To know about the type of union, please refer 'MMCamAttrsInfo'.
3339  *
3340  *      @param[in]      camcorder       Specifies the camcorder  handle.
3341  *      @param[in]      width   width value of the current Preview resolution.
3342  *      @param[in]      height  height value of the current Preview resolution.
3343  *      @param[out]     fps_info                a structure that holds information related with the attribute.
3344  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3345  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3346  *      @pre            None
3347  *      @post           None
3348  *      @remarks        If the function succeeds, 'info' holds detail information about the attribute, such as type,
3349  *                      flag, validity_type, validity_values, and default values.
3350  *      @see            mm_camcorder_get_attributes, mm_camcorder_set_attributes
3351  *      @par example
3352  *      @code
3353
3354 #include <mm_camcorder.h>
3355
3356 gboolean getting_info_from_attribute()
3357 {
3358         MMCamAttrsInfo info;
3359         int err;
3360
3361         err = mm_camcorder_get_fps_list_by_resolution(handle, width, height, &info);
3362         if (err < 0) {
3363                 printf("Fail to call mm_camcorder_get_attribute_info()");
3364                 return FALSE;
3365         }
3366
3367         //Now 'info' has many information about 'MMCAM_CAPTURE_HEIGHT'
3368
3369         return TRUE;
3370 }
3371  *      @endcode
3372  */
3373 int mm_camcorder_get_fps_list_by_resolution(MMHandleType camcorder, int width, int height, MMCamAttrsInfo *fps_info);
3374
3375
3376 /**
3377  *    mm_camcorder_init_focusing:\n
3378  *  Initialize focusing. \n
3379  *  This function stops focusing action and adjust the camera lens to initial position.
3380  *  Some camera application requires to initialize its lens position after releasing half shutter. In that case,
3381  *  this should be a good choice. Comparing with mm_camcorder_stop_focusing, this function not only stops focusing,
3382  *  but also initialize the lens. Preview image might be out-focused after calling this function.
3383  *      @param[in]      camcorder  A handle of camcorder.
3384  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3385  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3386  *      @pre            The status of camcorder should be MM_CAMCORDER_STATE_PREPARE, MM_CAMCORDER_STATE_RECORDING, or MM_CAMCORDER_STATE_PAUSED.
3387  *      @post           None
3388  *      @remarks        None
3389  *      @see            mm_camcorder_start_focusing, mm_camcorder_stop_focusing
3390  *      @par example
3391  *      @code
3392
3393 #include <mm_camcorder.h>
3394
3395 gboolean start_autofocus()
3396 {
3397         int err;
3398         char * err_attr_name = NULL;
3399
3400         // Set focus mode to 'AUTO' and scan range to 'AF Normal'.
3401         //You just need to set these values one time. After that, just call mm_camcorder_start_focusing().
3402         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,
3403                                           MMCAM_CAMERA_FOCUS_MODE, MM_CAMCORDER_FOCUS_MODE_AUTO,
3404                                           MMCAM_CAMERA_AF_SCAN_RANGE, MM_CAMCORDER_AUTO_FOCUS_NORMAL,
3405                                           NULL);
3406
3407         if (err < 0) {
3408                 printf("Set attrs fail. (%s:%x)\n", err_attr_name, err);
3409                 if (err_attr_name) {
3410                         free(err_attr_name);
3411                         err_attr_name = NULL;
3412                         return FALSE;
3413                 }
3414         }
3415
3416         mm_camcorder_init_focusing(hcam);
3417         mm_camcorder_start_focusing(hcam);
3418         printf("Waiting for adjusting focus\n");
3419
3420         // Waiting for 'MM_MESSAGE_CAMCORDER_FOCUS_CHANGED'
3421
3422         return TRUE;
3423 }
3424
3425  *      @endcode
3426  */
3427 int mm_camcorder_init_focusing(MMHandleType camcorder);
3428
3429
3430 /**
3431  *    mm_camcorder_start_focusing:\n
3432  *  Start focusing. \n
3433  *  This function command to start focusing operation. Because focusing operation depends on mechanic or electric module,
3434  *  it may take small amount of time. (For ex, 500ms ~ 3sec). \n
3435  *  This function works asynchronously. When an user call this function,  it will return immediately.
3436  *  However, focusing operation will continue until it gets results.
3437  *  After finishing operation, you can get 'MM_MESSAGE_CAMCORDER_FOCUS_CHANGED' message.
3438  *  'param.code' of the message structure describes the focusing was success or not.
3439  *
3440  *      @param[in]      camcorder       A handle of camcorder.
3441  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3442  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3443  *      @pre            None
3444  *      @post           None
3445  *      @remarks        None
3446  *      @see            mm_camcorder_init_focusing, mm_camcorder_stop_focusing
3447  *      @par example
3448  *      @code
3449
3450 #include <mm_camcorder.h>
3451
3452 gboolean start_autofocus()
3453 {
3454         int err;
3455         char * err_attr_name = NULL;
3456
3457         // Set focus mode to 'AUTO' and scan range to 'AF Normal'.
3458         //You just need to set these values one time. After that, just call mm_camcorder_start_focusing().
3459         err = mm_camcorder_set_attributes((MMHandleType)hcam, &err_attr_name,
3460                                           MMCAM_CAMERA_FOCUS_MODE, MM_CAMCORDER_FOCUS_MODE_AUTO,
3461                                           MMCAM_CAMERA_AF_SCAN_RANGE, MM_CAMCORDER_AUTO_FOCUS_NORMAL,
3462                                           NULL);
3463
3464         if (err < 0) {
3465                 printf("Set attrs fail. (%s:%x)\n", err_attr_name, err);
3466                 if (err_attr_name) {
3467                         free(err_attr_name);
3468                         err_attr_name = NULL;
3469                         return FALSE;
3470                 }
3471         }
3472
3473         mm_camcorder_init_focusing(hcam);
3474         mm_camcorder_start_focusing(hcam);
3475         printf("Waiting for adjusting focus\n");
3476
3477         // Waiting for 'MM_MESSAGE_CAMCORDER_FOCUS_CHANGED'
3478
3479         return TRUE;
3480 }
3481
3482  *      @endcode
3483  */
3484 int mm_camcorder_start_focusing(MMHandleType camcorder);
3485
3486
3487 /**
3488  *    mm_camcorder_stop_focusing:\n
3489  *  Stop focusing. This function halts focusing operation.\n
3490  *  This is the function to stop focusing in the middle of the operation. So if focusing is already finished or not started yet,
3491  *  this function will do nothing.
3492  *
3493  *      @param[in]      camcorder       A handle of camcorder.
3494  *      @return         This function returns zero(MM_ERROR_NONE) on success, or negative value with error code.\n
3495  *                      Please refer 'mm_error.h' to know the exact meaning of the error.
3496  *      @see            mm_camcorder_init_focusing, mm_camcorder_start_focusing
3497  *      @pre            mm_camcorder_start_focusing() should be called before calling this function.
3498  *      @post           None
3499  *      @remarks        None
3500  *      @par example
3501  *      @code
3502
3503 #include <mm_camcorder.h>
3504
3505 gboolean stop_autofocus()
3506 {
3507         int err;
3508
3509         //Stop focusing
3510         mm_camcorder_stop_focusing(hcam);
3511
3512         return TRUE;
3513 }
3514
3515  *      @endcode
3516  */
3517 int mm_camcorder_stop_focusing(MMHandleType camcorder);
3518
3519 /* emit signal */
3520 void mm_camcorder_emit_signal(MMHandleType camcorder, const char *object_name,
3521         const char *interface_name, const char *signal_name, int value);
3522
3523 /* check compatibility between codec and file format */
3524 int mm_camcorder_check_codec_fileformat_compatibility(const char *codec_type, int codec, int file_format);
3525
3526 /* external storage state management */
3527 int mm_camcorder_manage_external_storage_state(MMHandleType camcorder, int storage_state);
3528
3529 /* get log level */
3530 int mm_camcorder_get_log_level(void);
3531
3532 /* extra preview */
3533 int mm_camcorder_set_extra_preview_device_type(MMHandleType camcorder, int stream_id, int device_type);
3534 int mm_camcorder_set_extra_preview_stream_format(MMHandleType camcorder, int stream_id, int pixel_format, int width, int height, int fps);
3535 int mm_camcorder_get_extra_preview_stream_format(MMHandleType camcorder, int stream_id, int *pixel_format, int *width, int *height, int *fps);
3536 int mm_camcorder_set_extra_preview_bitrate(MMHandleType camcorder, int stream_id, int bitrate);
3537 int mm_camcorder_get_extra_preview_bitrate(MMHandleType camcorder, int stream_id, int *bitrate);
3538 int mm_camcorder_set_extra_preview_gop_interval(MMHandleType camcorder, int stream_id, int interval);
3539 int mm_camcorder_get_extra_preview_gop_interval(MMHandleType camcorder, int stream_id, int *interval);
3540
3541 /**
3542         @}
3543  */
3544
3545 #ifdef __cplusplus
3546 }
3547 #endif
3548
3549 #endif /* __MM_CAMCORDER_H__ */