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