Add version of so files
[platform/core/multimedia/libmm-camcorder.git] / src / include / mm_camcorder_internal.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 #ifndef __MM_CAMCORDER_INTERNAL_H__
23 #define __MM_CAMCORDER_INTERNAL_H__
24
25 /*=======================================================================================
26 | INCLUDE FILES                                                                         |
27 ========================================================================================*/
28 #include <malloc.h>
29 #include <string.h>
30 #include <unistd.h>
31 #include <semaphore.h>
32
33 #include <mm_types.h>
34 #include <mm_attrs.h>
35 #include <mm_message.h>
36 #include <vconf.h>
37 #include <gst/video/video-format.h>
38 #include <ttrace.h>
39 #include <errno.h>
40 #include <restriction.h> /* device policy manager */
41 #include <dlog.h>
42
43 #include "mm_camcorder.h"
44
45 #ifdef _MMCAMCORDER_MM_RM_SUPPORT
46 #include <mm_resource_manager.h>
47 #endif /* _MMCAMCORDER_MM_RM_SUPPORT */
48
49 /* camcorder sub module */
50 #include "mm_camcorder_attribute.h"
51 #include "mm_camcorder_platform.h"
52 #include "mm_camcorder_stillshot.h"
53 #include "mm_camcorder_videorec.h"
54 #include "mm_camcorder_audiorec.h"
55 #include "mm_camcorder_gstcommon.h"
56 #include "mm_camcorder_exifinfo.h"
57 #include "mm_camcorder_util.h"
58 #include "mm_camcorder_configure.h"
59 #include "mm_camcorder_sound.h"
60
61 #ifdef _MMCAMCORDER_RM_SUPPORT
62 /* rm (resource manager)*/
63 #include <rm_api.h>
64 #endif /* _MMCAMCORDER_RM_SUPPORT */
65
66 #ifdef _MMCAMCORDER_CAMERA_CONF_MGR_SUPPORT
67 #include "camera_conf_mgr.h"
68 #endif /*_MMCAMCORDER_CAMERA_CONF_MGR_SUPPORT */
69
70 #ifdef LOG_TAG
71 #undef LOG_TAG
72 #endif
73 #define LOG_TAG "MM_CAMCORDER"
74
75 #ifdef __cplusplus
76 extern "C" {
77 #endif
78
79 /*=======================================================================================
80 | MACRO DEFINITIONS                                                                     |
81 ========================================================================================*/
82 /**
83  *      Macro for checking validity and debugging
84  */
85 #define mmf_return_if_fail(expr) \
86         if (!(expr)) { \
87                 MMCAM_LOG_ERROR("failed [%s]", #expr); \
88                 return; \
89         }
90
91 /**
92  *      Macro for checking validity and debugging
93  */
94 #define mmf_return_val_if_fail(expr, val) \
95         if (!(expr)) { \
96                 MMCAM_LOG_ERROR("failed [%s]", #expr); \
97                 return (val); \
98         }
99
100
101 #ifndef ARRAY_SIZE
102 /**
103  *      Macro for getting array size
104  */
105 #define ARRAY_SIZE(a) (sizeof((a)) / sizeof((a)[0]))
106 #endif
107
108 /* gstreamer element creation macro */
109 #define _MMCAMCORDER_PIPELINE_MAKE(sub_context, element, eid, name /*char* */, err) \
110 do { \
111         if (element[eid].gst != NULL) { \
112                 MMCAM_LOG_ERROR("The element(Pipeline) is existed. element_id=[%d], name=[%s]", eid, name); \
113                 gst_object_unref(element[eid].gst); \
114         } \
115         element[eid].id = eid; \
116         element[eid].gst = gst_pipeline_new(name); \
117         if (element[eid].gst == NULL) { \
118                 MMCAM_LOG_ERROR("Pipeline creation fail. element_id=[%d], name=[%s]", eid, name); \
119                 err = MM_ERROR_CAMCORDER_RESOURCE_CREATION; \
120                 goto pipeline_creation_error; \
121         } else { \
122                 g_object_weak_ref(G_OBJECT(element[eid].gst), (GWeakNotify)_mmcamcorder_element_release_noti, sub_context); \
123         } \
124 } while (0)
125
126 #define _MMCAMCORDER_BIN_MAKE(sub_context, element, eid, name /*char* */, err) \
127 do { \
128         if (element[eid].gst != NULL) { \
129                 MMCAM_LOG_ERROR("The element(Bin) is existed. element_id=[%d], name=[%s]", eid, name); \
130                 gst_object_unref(element[eid].gst); \
131         } \
132         element[eid].id = eid; \
133         element[eid].gst = gst_bin_new(name); \
134         if (element[eid].gst == NULL) { \
135                 MMCAM_LOG_ERROR("Bin creation fail. element_id=[%d], name=[%s]\n", eid, name); \
136                 err = MM_ERROR_CAMCORDER_RESOURCE_CREATION; \
137                 goto pipeline_creation_error; \
138         } else { \
139                 g_object_weak_ref(G_OBJECT(element[eid].gst), (GWeakNotify)_mmcamcorder_element_release_noti, sub_context); \
140         } \
141 } while (0)
142
143 #define _MMCAMCORDER_ELEMENT_MAKE(sub_context, element, eid, name /*char* */, nickname /*char* */, elist, err) \
144 do { \
145         if (element[eid].gst != NULL) { \
146                 MMCAM_LOG_ERROR("The element is existed. element_id=[%d], name=[%s]", eid, name); \
147                 gst_object_unref(element[eid].gst); \
148         } \
149         traceBegin(TTRACE_TAG_CAMERA, "MMCAMCORDER:ELEMENT_MAKE:%s", name); \
150         element[eid].gst = gst_element_factory_make(name, nickname); \
151         traceEnd(TTRACE_TAG_CAMERA); \
152         if (element[eid].gst == NULL) { \
153                 MMCAM_LOG_ERROR("Element creation fail. element_id=[%d], name=[%s]", eid, name); \
154                 err = MM_ERROR_CAMCORDER_RESOURCE_CREATION; \
155                 goto pipeline_creation_error; \
156         } else { \
157                 MMCAM_LOG_INFO("Element creation done. element_id=[%d], name=[%s]", eid, name); \
158                 element[eid].id = eid; \
159                 g_object_weak_ref(G_OBJECT(element[eid].gst), (GWeakNotify)_mmcamcorder_element_release_noti, sub_context); \
160                 err = MM_ERROR_NONE; \
161         } \
162         elist = g_list_append(elist, &(element[eid])); \
163 } while (0)
164
165 #define _MMCAMCORDER_ELEMENT_MAKE2(sub_context, element, eid, name /*char* */, nickname /*char* */, err) \
166 do { \
167         if (element[eid].gst != NULL) { \
168                 MMCAM_LOG_ERROR("The element is existed. element_id=[%d], name=[%s]", eid, name); \
169                 gst_object_unref(element[eid].gst); \
170         } \
171         element[eid].gst = gst_element_factory_make(name, nickname); \
172         if (element[eid].gst == NULL) { \
173                 MMCAM_LOG_ERROR("Element creation fail. element_id=[%d], name=[%s]", eid, name); \
174                 err = MM_ERROR_CAMCORDER_RESOURCE_CREATION; \
175         } else { \
176                 MMCAM_LOG_INFO("Element creation done. element_id=[%d], name=[%s]", eid, name); \
177                 element[eid].id = eid; \
178                 g_object_weak_ref(G_OBJECT(element[eid].gst), (GWeakNotify)_mmcamcorder_element_release_noti, sub_context); \
179                 err = MM_ERROR_NONE; \
180         } \
181 } while (0)
182
183 #define _MMCAMCORDER_ELEMENT_MAKE_IGNORE_ERROR(sub_context, element, eid, name /*char* */, nickname /*char* */, elist) \
184 do { \
185         if (element[eid].gst != NULL) { \
186                 MMCAM_LOG_ERROR("The element is existed. element_id=[%d], name=[%s]", eid, name); \
187                 gst_object_unref(element[eid].gst); \
188         } \
189         element[eid].gst = gst_element_factory_make(name, nickname); \
190         if (element[eid].gst == NULL) { \
191                 MMCAM_LOG_ERROR("Element creation fail. element_id=[%d], name=[%s], but keep going...", eid, name); \
192         } else { \
193                 MMCAM_LOG_INFO("Element creation done. element_id=[%d], name=[%s]", eid, name); \
194                 element[eid].id = eid; \
195                 g_object_weak_ref(G_OBJECT(element[eid].gst), (GWeakNotify)_mmcamcorder_element_release_noti, sub_context); \
196                 elist = g_list_append(elist, &(element[eid])); \
197         } \
198 } while (0)
199
200 #define _MMCAMCORDER_ELEMENT_ADD(sub_context, element, eid, gst_element, elist, err) \
201 do { \
202         if (element[eid].gst != NULL) { \
203                 MMCAM_LOG_ERROR("The element is existed. element_id=[%d]", eid); \
204                 gst_object_unref(element[eid].gst); \
205         } \
206         element[eid].gst = gst_element; \
207         if (element[eid].gst == NULL) { \
208                 MMCAM_LOG_ERROR("Element is NULL. element_id=[%d]", eid); \
209                 err = MM_ERROR_CAMCORDER_RESOURCE_CREATION; \
210                 goto pipeline_creation_error; \
211         } else { \
212                 MMCAM_LOG_INFO("Adding Element is done. element_id=[%d] %p", eid, gst_element); \
213                 element[eid].id = eid; \
214                 g_object_weak_ref(G_OBJECT(element[eid].gst), (GWeakNotify)_mmcamcorder_element_release_noti, sub_context); \
215                 err = MM_ERROR_NONE; \
216         } \
217         elist = g_list_append(elist, &(element[eid])); \
218 } while (0)
219
220 #define _MMCAMCORDER_ENCODEBIN_ELMGET(sub_context, eid, name /*char* */, err) \
221 do { \
222         if (sub_context->encode_element[eid].gst != NULL) { \
223                 MMCAM_LOG_ERROR("The element is existed. element_id=[%d], name=[%s]", eid, name); \
224                 gst_object_unref(sub_context->encode_element[eid].gst); \
225         } \
226         sub_context->encode_element[eid].id = eid; \
227         g_object_get(G_OBJECT(sub_context->encode_element[_MMCAMCORDER_ENCSINK_ENCBIN].gst), name, &(sub_context->encode_element[eid].gst), NULL); \
228         if (sub_context->encode_element[eid].gst == NULL) { \
229                 MMCAM_LOG_ERROR("Encode Element get fail. element_id=[%d], name=[%s]", eid, name); \
230                 err = MM_ERROR_CAMCORDER_RESOURCE_CREATION; \
231                 goto pipeline_creation_error; \
232         } else{ \
233                 gst_object_unref(sub_context->encode_element[eid].gst); \
234                 g_object_weak_ref(G_OBJECT(sub_context->encode_element[eid].gst), (GWeakNotify)_mmcamcorder_element_release_noti, sub_context); \
235         } \
236 } while (0)
237
238 /* GStreamer element remove macro */
239 #define _MMCAMCORDER_ELEMENT_REMOVE(element, eid) \
240         if (element[eid].gst != NULL) { \
241                 gst_object_unref(element[eid].gst); \
242         }
243
244 #define _MM_GST_ELEMENT_LINK_MANY       gst_element_link_many
245 #define _MM_GST_ELEMENT_LINK            gst_element_link
246 #define _MM_GST_ELEMENT_LINK_FILTERED   gst_element_link_filtered
247 #define _MM_GST_ELEMENT_UNLINK          gst_element_unlink
248 #define _MM_GST_PAD_LINK                gst_pad_link
249
250 #define _MM_GST_PAD_LINK_UNREF(srcpad, sinkpad, err, if_fail_goto) \
251 do { \
252         GstPadLinkReturn ret = GST_PAD_LINK_OK; \
253         if (srcpad == NULL || sinkpad == NULL) { \
254                 if (srcpad == NULL) { \
255                         MMCAM_LOG_ERROR("srcpad is NULL"); \
256                 } else { \
257                         gst_object_unref(srcpad);\
258                         srcpad = NULL; \
259                 } \
260                 if (sinkpad == NULL) { \
261                         MMCAM_LOG_ERROR("sinkpad is NULL"); \
262                 } else { \
263                         gst_object_unref(sinkpad); \
264                         sinkpad = NULL;\
265                 } \
266                 err = MM_ERROR_CAMCORDER_GST_LINK; \
267                 goto if_fail_goto; \
268         } \
269         ret = _MM_GST_PAD_LINK(srcpad, sinkpad); \
270         if (ret != GST_PAD_LINK_OK) { \
271                 GstObject *src_parent = gst_pad_get_parent(srcpad); \
272                 GstObject *sink_parent = gst_pad_get_parent(sinkpad); \
273                 char *src_name = NULL; \
274                 char *sink_name = NULL; \
275                 g_object_get((GObject *)src_parent, "name", &src_name, NULL); \
276                 g_object_get((GObject *)sink_parent, "name", &sink_name, NULL); \
277                 MMCAM_LOG_ERROR("src[%s] - sink[%s] link failed", src_name, sink_name); \
278                 gst_object_unref(src_parent); src_parent = NULL; \
279                 gst_object_unref(sink_parent); sink_parent = NULL; \
280                 if (src_name) { \
281                         free(src_name); src_name = NULL; \
282                 } \
283                 if (sink_name) { \
284                         free(sink_name); sink_name = NULL; \
285                 } \
286                 gst_object_unref(srcpad); srcpad = NULL; \
287                 gst_object_unref(sinkpad); sinkpad = NULL; \
288                 err = MM_ERROR_CAMCORDER_GST_LINK; \
289                 goto if_fail_goto;\
290         } \
291         gst_object_unref(srcpad); srcpad = NULL; \
292         gst_object_unref(sinkpad); sinkpad = NULL; \
293 } while (0)
294
295 #define _MM_GST_PAD_UNLINK_UNREF(srcpad, sinkpad) \
296 do { \
297         if (srcpad && sinkpad) { \
298                 gst_pad_unlink(srcpad, sinkpad); \
299         } else { \
300                 MMCAM_LOG_WARNING("some pad(srcpad:%p,sinkpad:%p) is NULL", srcpad, sinkpad); \
301         } \
302         if (srcpad) { \
303                 gst_object_unref(srcpad); srcpad = NULL; \
304         } \
305         if (sinkpad) { \
306                 gst_object_unref(sinkpad); sinkpad = NULL; \
307         } \
308 } while (0)
309
310 #define _MMCAMCORDER_STATE_SET_COUNT            3               /* checking interval */
311 #define _MMCAMCORDER_STATE_CHECK_TOTALTIME      5000000L        /* total waiting time for state change */
312 #define _MMCAMCORDER_STATE_CHECK_INTERVAL       (50*1000)       /* checking interval - 50ms*/
313
314 /**
315  * Default videosink type
316  */
317 #define _MMCAMCORDER_DEFAULT_VIDEOSINK_TYPE     "VideosinkElementOverlay"
318
319 /**
320  * Default recording motion rate
321  */
322 #define _MMCAMCORDER_DEFAULT_RECORDING_MOTION_RATE   1.0
323
324 /**
325  * Total level count of manual focus */
326 #define _MMFCAMCORDER_FOCUS_TOTAL_LEVEL         8
327
328 /**
329  *      File name length limit
330  */
331 #define _MMCamcorder_FILENAME_LEN       (512)
332
333 /**
334  *      File name for NULL path
335  */
336 #define _MMCamcorder_FILENAME_NULL      "/dev/null"
337
338 /**
339  *      Minimum integer value
340  */
341 #define _MMCAMCORDER_MIN_INT    (INT_MIN)
342
343 /**
344  *      Maximum integer value
345  */
346 #define _MMCAMCORDER_MAX_INT    (INT_MAX)
347
348 /**
349  *      Minimum double value
350  */
351 #define _MMCAMCORDER_MIN_DOUBLE (DBL_MIN)
352
353 /**
354  *      Maximum integer value
355  */
356 #define _MMCAMCORDER_MAX_DOUBLE (DBL_MAX)
357
358 /**
359  *      Audio timestamp margin (msec)
360  */
361 #define _MMCAMCORDER_AUDIO_TIME_MARGIN (300)
362
363 /**
364  *      Functions related with LOCK and WAIT
365  */
366 #define _MMCAMCORDER_CAST_MTSAFE(handle)            (((mmf_camcorder_t*)handle)->mtsafe)
367 #define _MMCAMCORDER_LOCK_FUNC(mutex)               g_mutex_lock(&mutex)
368 #define _MMCAMCORDER_TRYLOCK_FUNC(mutex)            g_mutex_trylock(&mutex)
369 #define _MMCAMCORDER_UNLOCK_FUNC(mutex)             g_mutex_unlock(&mutex)
370
371 #define _MMCAMCORDER_GET_LOCK(handle)               (_MMCAMCORDER_CAST_MTSAFE(handle).lock)
372 #define _MMCAMCORDER_LOCK(handle)                   _MMCAMCORDER_LOCK_FUNC(_MMCAMCORDER_GET_LOCK(handle))
373 #define _MMCAMCORDER_TRYLOCK(handle)                _MMCAMCORDER_TRYLOCK_FUNC(_MMCAMCORDER_GET_LOCK(handle))
374 #define _MMCAMCORDER_UNLOCK(handle)                 _MMCAMCORDER_UNLOCK_FUNC(_MMCAMCORDER_GET_LOCK(handle))
375
376 #define _MMCAMCORDER_GET_COND(handle)               (_MMCAMCORDER_CAST_MTSAFE(handle).cond)
377 #define _MMCAMCORDER_WAIT(handle)                   g_cond_wait(&_MMCAMCORDER_GET_COND(handle), &_MMCAMCORDER_GET_LOCK(handle))
378 #define _MMCAMCORDER_WAIT_UNTIL(handle, end_time)   g_cond_wait_until(&_MMCAMCORDER_GET_COND(handle), &_MMCAMCORDER_GET_LOCK(handle), end_time)
379 #define _MMCAMCORDER_SIGNAL(handle)                 g_cond_signal(&_MMCAMCORDER_GET_COND(handle));
380 #define _MMCAMCORDER_BROADCAST(handle)              g_cond_broadcast(&_MMCAMCORDER_GET_COND(handle));
381
382 /* for command */
383 #define _MMCAMCORDER_GET_CMD_LOCK(handle)           (_MMCAMCORDER_CAST_MTSAFE(handle).cmd_lock)
384 #define _MMCAMCORDER_GET_CMD_COND(handle)           (_MMCAMCORDER_CAST_MTSAFE(handle).cmd_cond)
385 #define _MMCAMCORDER_LOCK_CMD(handle)               _MMCAMCORDER_LOCK_FUNC(_MMCAMCORDER_GET_CMD_LOCK(handle))
386 #define _MMCAMCORDER_TRYLOCK_CMD(handle)            _MMCAMCORDER_TRYLOCK_FUNC(_MMCAMCORDER_GET_CMD_LOCK(handle))
387 #define _MMCAMCORDER_UNLOCK_CMD(handle)             _MMCAMCORDER_UNLOCK_FUNC(_MMCAMCORDER_GET_CMD_LOCK(handle))
388 #define _MMCAMCORDER_CMD_WAIT(handle)                 g_cond_wait(&_MMCAMCORDER_GET_CMD_COND(handle), &_MMCAMCORDER_GET_CMD_LOCK(handle))
389 #define _MMCAMCORDER_CMD_WAIT_UNTIL(handle, end_time) g_cond_wait_until(&_MMCAMCORDER_GET_CMD_COND(handle), &_MMCAMCORDER_GET_CMD_LOCK(handle), end_time)
390 #define _MMCAMCORDER_CMD_SIGNAL(handle)               g_cond_signal(&_MMCAMCORDER_GET_CMD_COND(handle));
391
392 /* for interruption */
393 #define _MMCAMCORDER_GET_INTERRUPT_LOCK(handle)           (_MMCAMCORDER_CAST_MTSAFE(handle).interrupt_lock)
394 #define _MMCAMCORDER_LOCK_INTERRUPT(handle)               _MMCAMCORDER_LOCK_FUNC(_MMCAMCORDER_GET_INTERRUPT_LOCK(handle))
395 #define _MMCAMCORDER_TRYLOCK_INTERRUPT(handle)            _MMCAMCORDER_TRYLOCK_FUNC(_MMCAMCORDER_GET_INTERRUPT_LOCK(handle))
396 #define _MMCAMCORDER_UNLOCK_INTERRUPT(handle)             _MMCAMCORDER_UNLOCK_FUNC(_MMCAMCORDER_GET_INTERRUPT_LOCK(handle))
397
398 /* for state change */
399 #define _MMCAMCORDER_GET_STATE_LOCK(handle)         (_MMCAMCORDER_CAST_MTSAFE(handle).state_lock)
400 #define _MMCAMCORDER_LOCK_STATE(handle)             _MMCAMCORDER_LOCK_FUNC(_MMCAMCORDER_GET_STATE_LOCK(handle))
401 #define _MMCAMCORDER_TRYLOCK_STATE(handle)          _MMCAMCORDER_TRYLOCK_FUNC(_MMCAMCORDER_GET_STATE_LOCK(handle))
402 #define _MMCAMCORDER_UNLOCK_STATE(handle)           _MMCAMCORDER_UNLOCK_FUNC(_MMCAMCORDER_GET_STATE_LOCK(handle))
403
404 /* for gstreamer state change */
405 #define _MMCAMCORDER_GET_GST_STATE_LOCK(handle)     (_MMCAMCORDER_CAST_MTSAFE(handle).gst_state_lock)
406 #define _MMCAMCORDER_LOCK_GST_STATE(handle)         _MMCAMCORDER_LOCK_FUNC(_MMCAMCORDER_GET_GST_STATE_LOCK(handle))
407 #define _MMCAMCORDER_TRYLOCK_GST_STATE(handle)      _MMCAMCORDER_TRYLOCK_FUNC(_MMCAMCORDER_GET_GST_STATE_LOCK(handle))
408 #define _MMCAMCORDER_UNLOCK_GST_STATE(handle)       _MMCAMCORDER_UNLOCK_FUNC(_MMCAMCORDER_GET_GST_STATE_LOCK(handle))
409
410 #define _MMCAMCORDER_GET_GST_ENCODE_STATE_LOCK(handle)      (_MMCAMCORDER_CAST_MTSAFE(handle).gst_encode_state_lock)
411 #define _MMCAMCORDER_LOCK_GST_ENCODE_STATE(handle)          _MMCAMCORDER_LOCK_FUNC(_MMCAMCORDER_GET_GST_ENCODE_STATE_LOCK(handle))
412 #define _MMCAMCORDER_TRYLOCK_GST_ENCODE_STATE(handle)       _MMCAMCORDER_TRYLOCK_FUNC(_MMCAMCORDER_GET_GST_ENCODE_STATE_LOCK(handle))
413 #define _MMCAMCORDER_UNLOCK_GST_ENCODE_STATE(handle)        _MMCAMCORDER_UNLOCK_FUNC(_MMCAMCORDER_GET_GST_ENCODE_STATE_LOCK(handle))
414
415 /* for setting/calling callback */
416 #define _MMCAMCORDER_GET_MESSAGE_CALLBACK_LOCK(handle)      (_MMCAMCORDER_CAST_MTSAFE(handle).message_cb_lock)
417 #define _MMCAMCORDER_LOCK_MESSAGE_CALLBACK(handle)          _MMCAMCORDER_LOCK_FUNC(_MMCAMCORDER_GET_MESSAGE_CALLBACK_LOCK(handle))
418 #define _MMCAMCORDER_TRYLOCK_MESSAGE_CALLBACK(handle)       _MMCAMCORDER_TRYLOCK_FUNC(_MMCAMCORDER_GET_MESSAGE_CALLBACK_LOCK(handle))
419 #define _MMCAMCORDER_UNLOCK_MESSAGE_CALLBACK(handle)        _MMCAMCORDER_UNLOCK_FUNC(_MMCAMCORDER_GET_MESSAGE_CALLBACK_LOCK(handle))
420
421 #define _MMCAMCORDER_GET_VCAPTURE_CALLBACK_LOCK(handle)     (_MMCAMCORDER_CAST_MTSAFE(handle).vcapture_cb_lock)
422 #define _MMCAMCORDER_LOCK_VCAPTURE_CALLBACK(handle)         _MMCAMCORDER_LOCK_FUNC(_MMCAMCORDER_GET_VCAPTURE_CALLBACK_LOCK(handle))
423 #define _MMCAMCORDER_TRYLOCK_VCAPTURE_CALLBACK(handle)      _MMCAMCORDER_TRYLOCK_FUNC(_MMCAMCORDER_GET_VCAPTURE_CALLBACK_LOCK(handle))
424 #define _MMCAMCORDER_UNLOCK_VCAPTURE_CALLBACK(handle)       _MMCAMCORDER_UNLOCK_FUNC(_MMCAMCORDER_GET_VCAPTURE_CALLBACK_LOCK(handle))
425
426 #define _MMCAMCORDER_GET_VSTREAM_CALLBACK_LOCK(handle)      (_MMCAMCORDER_CAST_MTSAFE(handle).vstream_cb_lock)
427 #define _MMCAMCORDER_LOCK_VSTREAM_CALLBACK(handle)          _MMCAMCORDER_LOCK_FUNC(_MMCAMCORDER_GET_VSTREAM_CALLBACK_LOCK(handle))
428 #define _MMCAMCORDER_TRYLOCK_VSTREAM_CALLBACK(handle)       _MMCAMCORDER_TRYLOCK_FUNC(_MMCAMCORDER_GET_VSTREAM_CALLBACK_LOCK(handle))
429 #define _MMCAMCORDER_UNLOCK_VSTREAM_CALLBACK(handle)        _MMCAMCORDER_UNLOCK_FUNC(_MMCAMCORDER_GET_VSTREAM_CALLBACK_LOCK(handle))
430
431 #define _MMCAMCORDER_GET_ASTREAM_CALLBACK_LOCK(handle)      (_MMCAMCORDER_CAST_MTSAFE(handle).astream_cb_lock)
432 #define _MMCAMCORDER_LOCK_ASTREAM_CALLBACK(handle)          _MMCAMCORDER_LOCK_FUNC(_MMCAMCORDER_GET_ASTREAM_CALLBACK_LOCK(handle))
433 #define _MMCAMCORDER_TRYLOCK_ASTREAM_CALLBACK(handle)       _MMCAMCORDER_TRYLOCK_FUNC(_MMCAMCORDER_GET_ASTREAM_CALLBACK_LOCK(handle))
434 #define _MMCAMCORDER_UNLOCK_ASTREAM_CALLBACK(handle)        _MMCAMCORDER_UNLOCK_FUNC(_MMCAMCORDER_GET_ASTREAM_CALLBACK_LOCK(handle))
435
436 #define _MMCAMCORDER_GET_MSTREAM_CALLBACK_LOCK(handle)      (_MMCAMCORDER_CAST_MTSAFE(handle).mstream_cb_lock)
437 #define _MMCAMCORDER_LOCK_MSTREAM_CALLBACK(handle)          _MMCAMCORDER_LOCK_FUNC(_MMCAMCORDER_GET_MSTREAM_CALLBACK_LOCK(handle))
438 #define _MMCAMCORDER_TRYLOCK_MSTREAM_CALLBACK(handle)       _MMCAMCORDER_TRYLOCK_FUNC(_MMCAMCORDER_GET_MSTREAM_CALLBACK_LOCK(handle))
439 #define _MMCAMCORDER_UNLOCK_MSTREAM_CALLBACK(handle)        _MMCAMCORDER_UNLOCK_FUNC(_MMCAMCORDER_GET_MSTREAM_CALLBACK_LOCK(handle))
440
441 #define _MMCAMCORDER_GET_VEDECISION_CALLBACK_LOCK(handle)   (_MMCAMCORDER_CAST_MTSAFE(handle).vedecision_cb_lock)
442 #define _MMCAMCORDER_LOCK_VEDECISION_CALLBACK(handle)       _MMCAMCORDER_LOCK_FUNC(_MMCAMCORDER_GET_VEDECISION_CALLBACK_LOCK(handle))
443 #define _MMCAMCORDER_TRYLOCK_VEDECISION_CALLBACK(handle)    _MMCAMCORDER_TRYLOCK_FUNC(_MMCAMCORDER_GET_VEDECISION_CALLBACK_LOCK(handle))
444 #define _MMCAMCORDER_UNLOCK_VEDECISION_CALLBACK(handle)     _MMCAMCORDER_UNLOCK_FUNC(_MMCAMCORDER_GET_VEDECISION_CALLBACK_LOCK(handle))
445
446 #ifdef _MMCAMCORDER_MM_RM_SUPPORT
447 /* for resource conflict */
448 #define _MMCAMCORDER_GET_RESOURCE_LOCK(handle)              (_MMCAMCORDER_CAST_MTSAFE(handle).resource_lock)
449 #define _MMCAMCORDER_LOCK_RESOURCE(handle)                  _MMCAMCORDER_LOCK_FUNC(_MMCAMCORDER_GET_RESOURCE_LOCK(handle))
450 #define _MMCAMCORDER_UNLOCK_RESOURCE(handle)                _MMCAMCORDER_UNLOCK_FUNC(_MMCAMCORDER_GET_RESOURCE_LOCK(handle))
451 #endif /* _MMCAMCORDER_MM_RM_SUPPORT */
452
453 /**
454  * Caster of main handle (camcorder)
455  */
456 #define MMF_CAMCORDER(h) (mmf_camcorder_t *)(h)
457
458 /**
459  * Caster of subcontext
460  */
461 #define MMF_CAMCORDER_SUBCONTEXT(h) (((mmf_camcorder_t *)(h))->sub_context)
462
463 /* LOCAL CONSTANT DEFINITIONS */
464 /**
465  * Total Numbers of Attribute values.
466  * If you increase any enum of attribute values, you also have to increase this.
467  */
468 #define MM_CAMCORDER_MODE_NUM                   3   /**< Number of mode type */
469 #define MM_CAMCORDER_COLOR_TONE_NUM             30  /**< Number of color-tone modes */
470 #define MM_CAMCORDER_WHITE_BALANCE_NUM          10  /**< Number of WhiteBalance modes*/
471 #define MM_CAMCORDER_SCENE_MODE_NUM             16  /**< Number of program-modes */
472 #define MM_CAMCORDER_FOCUS_MODE_NUM             6   /**< Number of focus mode*/
473 #define MM_CAMCORDER_AUTO_FOCUS_NUM             5   /**< Total count of auto focus type*/
474 #define MM_CAMCORDER_FOCUS_STATE_NUM            4   /**< Number of focus state */
475 #define MM_CAMCORDER_ISO_NUM                    10  /**< Number of ISO */
476 #define MM_CAMCORDER_AUTO_EXPOSURE_NUM          11  /**< Number of Auto exposure type */
477 #define MM_CAMCORDER_WDR_NUM                    3   /**< Number of wide dynamic range */
478 #define MM_CAMCORDER_FLIP_NUM                   4   /**< Number of Flip mode */
479 #define MM_CAMCORDER_ROTATION_NUM               4   /**< Number of Rotation mode */
480 #define MM_CAMCORDER_AHS_NUM                    4   /**< Number of anti-handshake */
481 #define MM_CAMCORDER_VIDEO_STABILIZATION_NUM    2   /**< Number of video stabilization */
482 #define MM_CAMCORDER_HDR_CAPTURE_NUM            3   /**< Number of HDR capture mode */
483 #define MM_CAMCORDER_GEOMETRY_METHOD_NUM        5   /**< Number of geometry method */
484 #define MM_CAMCORDER_TAG_ORT_NUM                8   /**< Number of tag orientation */
485 #define MM_CAMCORDER_STROBE_MODE_NUM            8   /**< Number of strobe mode type */
486 #define MM_CAMCORDER_STROBE_CONTROL_NUM         3   /**< Number of strobe control type */
487 #define MM_CAMCORDER_DETECT_MODE_NUM            2   /**< Number of detect mode type */
488
489
490 /*=======================================================================================
491 | ENUM DEFINITIONS                                                                      |
492 ========================================================================================*/
493 /**
494  * Command for Camcorder.
495  */
496 enum {
497         /* Command for Video/Audio recording */
498         _MMCamcorder_CMD_RECORD,
499         _MMCamcorder_CMD_PAUSE,
500         _MMCamcorder_CMD_CANCEL,
501         _MMCamcorder_CMD_COMMIT,
502
503         /* Command for Image capture */
504         _MMCamcorder_CMD_CAPTURE,
505
506         /* Command for Preview(Video/Image only effective) */
507         _MMCamcorder_CMD_PREVIEW_START,
508         _MMCamcorder_CMD_PREVIEW_STOP,
509 };
510
511 /**
512  * Still-shot type
513  */
514 enum {
515         _MMCamcorder_SINGLE_SHOT,
516         _MMCamcorder_MULTI_SHOT,
517 };
518
519 /**
520  * Enumerations for manual focus direction.
521  * If focusing mode is not "MM_CAMCORDER_AF_MODE_MANUAL", this value will be ignored.
522  */
523 enum MMCamcorderMfLensDir {
524         MM_CAMCORDER_MF_LENS_DIR_FORWARD = 1,   /**< Focus direction to forward */
525         MM_CAMCORDER_MF_LENS_DIR_BACKWARD,      /**< Focus direction to backward */
526         MM_CAMCORDER_MF_LENS_DIR_NUM,           /**< Total number of the directions */
527 };
528
529 /**
530  * Camcorder Pipeline's Element name.
531  * @note index of element.
532  */
533 typedef enum {
534         _MMCAMCORDER_NONE = (-1),
535
536         /* Main Pipeline Element */
537         _MMCAMCORDER_MAIN_PIPE = 0x00,
538
539         /* Pipeline element of Video input */
540         _MMCAMCORDER_VIDEOSRC_SRC,
541         _MMCAMCORDER_VIDEOSRC_CAPS,
542         _MMCAMCORDER_VIDEOSRC_FILT,
543         _MMCAMCORDER_VIDEOSRC_QUE,
544         _MMCAMCORDER_VIDEOSRC_PARSE,
545         _MMCAMCORDER_VIDEOSRC_DECODE,
546
547         /* Pipeline element of image capture */
548         _MMCAMCORDER_VIDEOSRC_CAP_CAPS,
549         _MMCAMCORDER_VIDEOSRC_CAP_SINK,
550
551         /* Pipeline element of extra preview */
552         _MMCAMCORDER_VIDEOSRC_EXT_SRC,
553         _MMCAMCORDER_VIDEOSRC_EXT_CAPS,
554         _MMCAMCORDER_VIDEOSRC_EXT_SINK,
555
556         /* Pipeline element of Video output */
557         _MMCAMCORDER_VIDEOSINK_QUE,
558         _MMCAMCORDER_VIDEOSINK_CLS,
559         _MMCAMCORDER_VIDEOSINK_SINK,
560
561         _MMCAMCORDER_PIPELINE_ELEMENT_NUM,
562 } _MMCAMCORDER_PREVIEW_PIPELINE_ELELMENT;
563
564 /**
565  * Camcorder Pipeline's Element name.
566  * @note index of element.
567  */
568 typedef enum {
569         _MMCAMCORDER_ENCODE_NONE = (-1),
570
571         /* Main Pipeline Element */
572         _MMCAMCORDER_ENCODE_MAIN_PIPE = 0x00,
573
574         /* Pipeline element of Audio input */
575         _MMCAMCORDER_AUDIOSRC_BIN,
576         _MMCAMCORDER_AUDIOSRC_SRC,
577         _MMCAMCORDER_AUDIOSRC_CAPS,
578         _MMCAMCORDER_AUDIOSRC_QUE,
579         _MMCAMCORDER_AUDIOSRC_CONV,
580         _MMCAMCORDER_AUDIOSRC_VOL,
581         _MMCAMCORDER_AUDIOSRC_RGA,      /* for replay gain analysis element */
582
583         /* Pipeline element of Encodebin */
584         _MMCAMCORDER_ENCSINK_BIN,
585         _MMCAMCORDER_ENCSINK_SRC,
586         _MMCAMCORDER_ENCSINK_CAPS,
587         _MMCAMCORDER_ENCSINK_ENCBIN,
588         _MMCAMCORDER_ENCSINK_AQUE,
589         _MMCAMCORDER_ENCSINK_CONV,
590         _MMCAMCORDER_ENCSINK_AENC,
591         _MMCAMCORDER_ENCSINK_AENC_QUE,
592         _MMCAMCORDER_ENCSINK_VQUE,
593         _MMCAMCORDER_ENCSINK_VSCALE,
594         _MMCAMCORDER_ENCSINK_VSCALE_CAPS,
595         _MMCAMCORDER_ENCSINK_VCONV,
596         _MMCAMCORDER_ENCSINK_VENC,
597         _MMCAMCORDER_ENCSINK_VENC_QUE,
598         _MMCAMCORDER_ENCSINK_ITOG,
599         _MMCAMCORDER_ENCSINK_ICROP,
600         _MMCAMCORDER_ENCSINK_ISCALE,
601         _MMCAMCORDER_ENCSINK_ICAPS,
602         _MMCAMCORDER_ENCSINK_IQUE,
603         _MMCAMCORDER_ENCSINK_IENC,
604         _MMCAMCORDER_ENCSINK_MUX,
605         _MMCAMCORDER_ENCSINK_SINK,
606
607         _MMCAMCORDER_ENCODE_PIPELINE_ELEMENT_NUM,
608 } _MMCAMCORDER_ENCODE_PIPELINE_ELELMENT;
609
610 typedef enum {
611         _MMCAMCORDER_TASK_THREAD_STATE_NONE,
612         _MMCAMCORDER_TASK_THREAD_STATE_SOUND_PLAY_START,
613         _MMCAMCORDER_TASK_THREAD_STATE_SOUND_SOLO_PLAY_START,
614         _MMCAMCORDER_TASK_THREAD_STATE_ENCODE_PIPE_CREATE,
615         _MMCAMCORDER_TASK_THREAD_STATE_CHECK_CAPTURE_IN_RECORDING,
616         _MMCAMCORDER_TASK_THREAD_STATE_EXIT,
617 } _MMCamcorderTaskThreadState;
618
619 /**
620  * System state change cause
621  */
622 typedef enum {
623         _MMCAMCORDER_STATE_CHANGE_NORMAL = 0,
624         _MMCAMCORDER_STATE_CHANGE_BY_RM,
625         _MMCAMCORDER_STATE_CHANGE_BY_DPM,
626         _MMCAMCORDER_STATE_CHANGE_BY_STORAGE
627 } _MMCamcorderStateChange;
628
629
630 /*=======================================================================================
631 | STRUCTURE DEFINITIONS                                                                 |
632 ========================================================================================*/
633 /**
634  * MMCamcorder Gstreamer Element
635  */
636 typedef struct {
637         unsigned int id;                /**< Gstreamer pipeline element id */
638         GstElement *gst;                /**< Gstreamer element */
639 } _MMCamcorderGstElement;
640
641 /**
642  * MMCamcorder information for KPI measurement
643  */
644 typedef struct {
645         int current_fps;                /**< current fps of this second */
646         int average_fps;                /**< average fps  */
647         unsigned int video_framecount;  /**< total number of video frame */
648         unsigned int last_framecount;   /**< total number of video frame in last measurement */
649         struct timeval init_video_time; /**< time when start to measure */
650         struct timeval last_video_time; /**< last measurement time */
651 } _MMCamcorderKPIMeasure;
652
653 /**
654  * MMCamcorder information for Multi-Thread Safe
655  */
656 typedef struct {
657         GMutex lock;                    /**< Mutex (for general use) */
658         GCond cond;                     /**< Condition (for general use) */
659         GMutex cmd_lock;                /**< Mutex (for command) */
660         GCond cmd_cond;                 /**< Condition (for command) */
661         GMutex interrupt_lock;          /**< Mutex (for interruption) */
662         GMutex state_lock;              /**< Mutex (for state change) */
663         GMutex gst_state_lock;          /**< Mutex (for gst pipeline state change) */
664         GMutex gst_encode_state_lock;   /**< Mutex (for gst encode pipeline state change) */
665         GMutex message_cb_lock;         /**< Mutex (for message callback) */
666         GMutex vcapture_cb_lock;        /**< Mutex (for video capture callback) */
667         GMutex vstream_cb_lock;         /**< Mutex (for video stream callback) */
668         GMutex astream_cb_lock;         /**< Mutex (for audio stream callback) */
669         GMutex mstream_cb_lock;         /**< Mutex (for muxed stream callback) */
670         GMutex vedecision_cb_lock;      /**< Mutex (for video encode decision callback) */
671 #ifdef _MMCAMCORDER_MM_RM_SUPPORT
672         GMutex resource_lock;           /**< Mutex (for resource check) */
673 #endif /* _MMCAMCORDER_MM_RM_SUPPORT */
674 } _MMCamcorderMTSafe;
675
676 /**
677  * MMCamcorder Replay gain value
678  */
679 typedef struct {
680         gdouble track_peak;
681         gdouble track_gain;
682         gdouble album_peak;
683         gdouble album_gain;
684 } _MMCamcorderReplayGain;
685
686 /**
687  * MMCamcorder Extra preview format
688  */
689 typedef struct {
690         int pixel_format;
691         int width;
692         int height;
693         int fps;
694         int bitrate;
695         int gop_interval;
696         gboolean need_to_set_format;
697         gboolean need_to_set_bitrate;
698         gboolean need_to_set_gop_interval;
699 } _MMCamcorderExtraPreviewFormat;
700
701 /**
702  * MMCamcorder Extra preview
703  */
704 typedef struct {
705         gboolean is_supported;
706         MMCamcorderExtraPreviewMode mode;
707         int camera_id[MM_CAMCORDER_EXTRA_PREVIEW_STREAM_MAX];
708         _MMCamcorderExtraPreviewFormat format[MM_CAMCORDER_EXTRA_PREVIEW_STREAM_MAX];
709 } _MMCamcorderExtraPreview;
710
711 /**
712  * MMCamcorder Sub Context
713  */
714 typedef struct {
715         bool isMaxsizePausing;                  /**< Because of size limit, pipeline is paused. */
716         bool isMaxtimePausing;                  /**< Because of time limit, pipeline is paused. */
717         int element_num;                        /**< count of element */
718         int encode_element_num;                 /**< count of encode element */
719         int frame_stability_count;              /**< camsensor stability count. the count of frame will drop */
720         GstClockTime pipeline_time;             /**< current time of Gstreamer Pipeline */
721         GstClockTime pause_time;                /**< amount of time while pipeline is in PAUSE state.*/
722         GstClockTime stillshot_time;            /**< pipeline time of capturing moment*/
723         gboolean is_modified_rate;              /**< whether recording motion rate is modified or not */
724         gboolean ferror_send;                   /**< file write/seek error **/
725         guint ferror_count;                     /**< file write/seek error count **/
726         GstClockTime previous_slot_time;
727         int display_interval;                   /**< This value is set as 'GST_SECOND / display FPS' */
728         gboolean bget_eos;                      /**< Whether getting EOS */
729         gboolean audio_disable;                 /**< whether audio is disabled or not when record */
730         int videosrc_rotate;                    /**< rotate of videosrc */
731         unsigned long long muxed_stream_offset; /**< current offset for muxed stream data */
732
733         /* For dropping video frame when start recording */
734         int drop_vframe;                        /**< When this value is bigger than zero and pass_first_vframe is zero, MSL will drop video frame though cam_stability count is bigger then zero. */
735         int pass_first_vframe;                  /**< When this value is bigger than zero, MSL won't drop video frame though "drop_vframe" is bigger then zero. */
736
737         /* Replay gain */
738         _MMCamcorderReplayGain replay_gain;     /**< Replay gain for audio recording */
739
740         /* INI information */
741         unsigned int fourcc;                    /**< Get fourcc value of camera INI file */
742         _MMCamcorderImageInfo *info_image;      /**< extra information for image capture */
743         _MMCamcorderVideoInfo *info_video;      /**< extra information for video recording */
744         _MMCamcorderAudioInfo *info_audio;      /**< extra information for audio recording */
745
746         _MMCamcorderGstElement *element;        /**< array of preview element */
747         _MMCamcorderGstElement *encode_element; /**< array of encode element */
748         _MMCamcorderKPIMeasure kpi;             /**< information related with performance measurement */
749
750         type_element *VideosinkElement;         /**< configure data of videosink element */
751         type_element *VideoconvertElement;      /**< configure data of videoconvert element */
752         type_element *VideodecoderElement;      /**< configure data of video decoder element */
753         gboolean SensorEncodedCapture;          /**< whether camera sensor support encoded image capture */
754         gboolean internal_encode;               /**< whether use internal encoding function */
755 } _MMCamcorderSubContext;
756
757 /**
758   * _MMCamcorderContext
759   */
760 typedef struct mmf_camcorder {
761         /* information */
762         int type;               /**< mmcamcorder_mode_type */
763         int device_type;        /**< device type */
764         int state;              /**< state of camcorder */
765         int old_state;          /**< old state of camcorder */
766
767         /* handles */
768         MMHandleType attributes;               /**< Attribute handle */
769         _MMCamcorderSubContext *sub_context;   /**< sub context */
770         mm_exif_info_t *exif_info;             /**< EXIF */
771         GList *buffer_probes;                  /**< a list of buffer probe handle */
772         GList *event_probes;                   /**< a list of event probe handle */
773         GList *signals;                        /**< a list of signal handle */
774 #ifdef _MMCAMCORDER_ENABLE_IDLE_MESSAGE_CALLBACK
775         GList *msg_data;                       /**< a list of msg data */
776 #endif /* _MMCAMCORDER_ENABLE_IDLE_MESSAGE_CALLBACK */
777         camera_conf *conf_main;                /**< Camera configure Main structure */
778         camera_conf *conf_ctrl;                /**< Camera configure Control structure */
779 #ifdef _MMCAMCORDER_RM_SUPPORT
780         int rm_handle;                         /**< Resource manager handle */
781         rm_consumer_info rci;                  /**< Resource consumer info */
782 #endif /* _MMCAMCORDER_RM_SUPPORT */
783         SOUND_INFO snd_info;                   /**< Sound handle for multishot capture */
784
785         /* callback handlers */
786         MMMessageCallback msg_cb;                               /**< message callback */
787         void *msg_cb_param;                                     /**< message callback parameter */
788         mm_camcorder_video_stream_callback vstream_cb;          /**< Video stream callback */
789         void *vstream_cb_param;                                 /**< Video stream callback parameter */
790         mm_camcorder_audio_stream_callback astream_cb;          /**< Audio stream callback */
791         void *astream_cb_param;                                 /**< Audio stream callback parameter */
792         mm_camcorder_muxed_stream_callback mstream_cb;          /**< Muxed stream callback */
793         void *mstream_cb_param;                                 /**< Muxed stream callback parameter */
794         mm_camcorder_video_capture_callback vcapture_cb;        /**< Video capture callback */
795         void *vcapture_cb_param;                                /**< Video capture callback parameter */
796         mm_camcorder_video_encode_decision_callback vedecision_cb; /**< Video encode decision callback */
797         void *vedecision_cb_param;                                 /**< Video encode decision callback parameter */
798         int (*command)(MMHandleType, int);                      /**< camcorder's command */
799
800         /* etc */
801         mm_cam_attr_construct_info *cam_attrs_const_info;       /**< attribute info */
802         conf_info_table *conf_main_info_table[CONFIGURE_CATEGORY_MAIN_NUM]; /** configure info table - MAIN category */
803         conf_info_table *conf_ctrl_info_table[CONFIGURE_CATEGORY_CTRL_NUM]; /** configure info table - CONTROL category */
804         int conf_main_category_size[CONFIGURE_CATEGORY_MAIN_NUM]; /** configure info table size - MAIN category */
805         int conf_ctrl_category_size[CONFIGURE_CATEGORY_CTRL_NUM]; /** configure info table size - CONTROL category */
806         _MMCamcorderMTSafe mtsafe;                              /**< Thread safe */
807         int state_change_by_system;                             /**< MSL changes its state by itself because of system */
808         GMutex restart_preview_lock;                            /**< Capture sound mutex */
809         int use_zero_copy_format;                               /**< Whether use zero copy format for camera input */
810         int use_videoconvert;                                   /**< Whether use videoconvert element for display */
811         int support_media_packet_preview_cb;                    /**< Whether support zero copy format for camera input */
812         int support_user_buffer;                                /**< Whether support user allocated buffer for zero copy */
813         int capture_mode;                                       /**< Capture mode */
814         int shutter_sound_policy;                               /**< shutter sound policy */
815         int brightness_default;                                 /**< default value of brightness */
816         int brightness_step_denominator;                        /**< denominator of brightness bias step */
817         int support_zsl_capture;                                /**< support Zero Shutter Lag capture */
818         char *model_name;                                       /**< model name from system info */
819         char *software_version;                                 /**< software_version from system info */
820         int capture_sound_count;                                /**< count for capture sound */
821         char *root_directory;                                   /**< Root directory for device */
822         int resolution_changed;                                 /**< Flag for preview resolution change */
823         int interrupt_code;                                     /**< Interrupt code */
824         int recreate_decoder;                                   /**< Flag of decoder element recreation for encoded preview format */
825         gboolean is_network;                                    /**< Flag for network camera */
826         const char *network_hal_name;                           /**< Name of network camera HAL library */
827         int default_encoded_preview_bitrate;                    /**< Default bitrate for encoded preview */
828
829         _MMCamcorderInfoConverting caminfo_convert[CAMINFO_CONVERT_NUM];        /**< converting structure of camera info */
830         _MMCamcorderEnumConvert enum_conv[ENUM_CONVERT_NUM];                    /**< enum converting list that is modified by ini info */
831
832         gboolean capture_in_recording;                          /**< Flag for capture while recording */
833
834         gboolean error_occurs;                                  /**< flag for error */
835         int error_code;                                         /**< error code for internal gstreamer error */
836
837         /* task thread */
838         GThread *task_thread;                                   /**< thread for task */
839         GMutex task_thread_lock;                                /**< mutex for task thread */
840         GCond task_thread_cond;                                 /**< cond for task thread */
841         _MMCamcorderTaskThreadState task_thread_state;          /**< state of task thread */
842
843 #ifdef _MMCAMCORDER_MM_RM_SUPPORT
844         /* resource manager for H/W resources */
845         mm_resource_manager_h resource_manager;
846         mm_resource_manager_res_h camera_resource;
847         mm_resource_manager_res_h video_overlay_resource;
848         mm_resource_manager_res_h video_encoder_resource;
849         gboolean is_release_cb_calling;
850 #endif /* _MMCAMCORDER_MM_RM_SUPPORT */
851
852         /* gdbus */
853         GDBusConnection *gdbus_conn;                            /**< gdbus connection */
854         _MMCamcorderGDbusCbInfo *gdbus_info_sound;              /**< Information for the gdbus cb of sound play */
855         _MMCamcorderGDbusCbInfo *gdbus_info_solo_sound;         /**< Information for the gdbus cb of solo sound play */
856
857         /* DPM(device policy manager) */
858         device_policy_manager_h dpm_handle;                     /**< DPM handle */
859         int dpm_camera_cb_id;                                   /**< DPM camera policy changed callback id */
860
861         /* Storage */
862         _MMCamcorderStorageInfo storage_info;                   /**< Storage information */
863
864 #ifdef _MMCAMCORDER_RM_SUPPORT
865         rm_category_request_s request_resources;
866         rm_device_return_s returned_devices;
867 #endif /* _MMCAMCORDER_RM_SUPPORT */
868 #ifdef _MMCAMCORDER_CAMERA_CONF_MGR_SUPPORT
869         camera_conf_device_info_s conf_device_info;
870 #endif /*_MMCAMCORDER_CAMERA_CONF_MGR_SUPPORT */
871
872         /* Profiling */
873         int measure_preview_fps;                                /**< Flag for measuring fps of preview frames */
874
875         _MMCamcorderExtraPreview extra_preview;                 /**< Extra preview */
876
877         GQuark buffer_quark;                                    /**< Quark for buffer */
878
879         int reserved[4];                                        /**< reserved */
880 } mmf_camcorder_t;
881
882 /*=======================================================================================
883 | EXTERN GLOBAL VARIABLE                                                                |
884 ========================================================================================*/
885
886 /*=======================================================================================
887 | GLOBAL FUNCTION PROTOTYPES                                                            |
888 ========================================================================================*/
889 /**
890  *      This function creates camcorder for capturing still image and recording.
891  *
892  *      @param[out]     handle          Specifies the camcorder  handle
893  *      @param[in]      info            Preset information of camcorder
894  *      @return         This function returns zero on success, or negative value with error code.
895  *      @remarks        When this function calls successfully, camcorder  handle will be filled with a @n
896  *                      valid value and the state of  the camcorder  will become MM_CAMCORDER_STATE_NULL.@n
897  *                      Note that  it's not ready to working camcorder. @n
898  *                      You should call mmcamcorder_realize before starting camcorder.
899  *      @see            _mmcamcorder_create
900  */
901 int _mmcamcorder_create(MMHandleType *handle, MMCamPreset *info);
902
903 /**
904  *      This function destroys instance of camcorder.
905  *
906  *      @param[in]      hcamcorder      Specifies the camcorder  handle
907  *      @return         This function returns zero on success, or negative value with error code.
908  *      @see            _mmcamcorder_create
909  */
910 int _mmcamcorder_destroy(MMHandleType hcamcorder);
911
912 /**
913  *      This function allocates memory for camcorder.
914  *
915  *      @param[in]      hcamcorder      Specifies the camcorder  handle
916  *      @return         This function returns zero on success, or negative value with error code.
917  *      @remarks        This function can  be called successfully when current state is MM_CAMCORDER_STATE_NULL @n
918  *                      and  the state of the camcorder  will become MM_CAMCORDER_STATE_READY. @n
919  *                      Otherwise, this function will return MM_ERROR_CAMCORDER_INVALID_CONDITION.
920  *      @see            _mmcamcorder_unrealize
921  *      @pre            MM_CAMCORDER_STATE_NULL
922  *      @post           MM_CAMCORDER_STATE_READY
923  */
924 int _mmcamcorder_realize(MMHandleType hcamcorder);
925
926 /**
927  *      This function free allocated memory for camcorder.
928  *
929  *      @param[in]      hcamcorder      Specifies the camcorder  handle
930  *      @return         This function returns zero on success, or negative value with error code.
931  *      @remarks        This function release all resources which are allocated for the camcorder engine.@n
932  *                      This function can  be called successfully when current state is MM_CAMCORDER_STATE_READY and  @n
933  *                      the state of the camcorder  will become MM_CAMCORDER_STATE_NULL. @n
934  *                      Otherwise, this function will return MM_ERROR_CAMCORDER_INVALID_CONDITION.
935  *      @see            _mmcamcorder_realize
936  *      @pre            MM_CAMCORDER_STATE_READY
937  *      @post           MM_CAMCORDER_STATE_NULL
938  */
939 int _mmcamcorder_unrealize(MMHandleType hcamcorder);
940
941 /**
942  *      This function is to start previewing.
943  *
944  *      @param[in]      hcamcorder      Specifies the camcorder  handle
945  *      @return         This function returns zero on success, or negative value with error code.
946  *      @remarks        This function can  be called successfully when current state is MM_CAMCORDER_STATE_READY and  @n
947  *                      the state of the camcorder  will become MM_CAMCORDER_STATE_PREPARE. @n
948  *                      Otherwise, this function will return MM_ERROR_CAMCORDER_INVALID_CONDITION.
949  *      @see            _mmcamcorder_stop
950  */
951 int _mmcamcorder_start(MMHandleType hcamcorder);
952
953 /**
954  *      This function is to stop previewing.
955  *
956  *      @param[in]      hcamcorder      Specifies the camcorder  handle
957  *      @return         This function returns zero on success, or negative value with error code.
958  *      @remarks        This function can  be called successfully when current state is MM_CAMCORDER_STATE_PREPARE and  @n
959  *                      the state of the camcorder  will become MM_CAMCORDER_STATE_READY.@n
960  *                      Otherwise, this function will return MM_ERROR_CAMCORDER_INVALID_CONDITION.
961  *      @see            _mmcamcorder_start
962  */
963 int _mmcamcorder_stop(MMHandleType hcamcorder);
964
965 /**
966  *      This function to start capturing of still images.
967  *
968  *      @param[in]      hcamcorder      Specifies the camcorder  handle.
969  *      @return         This function returns zero on success, or negative value with error code.
970  *      @remarks        This function can  be called successfully when current state is MM_CAMCORDER_STATE_PREPARE and @n
971  *                      the state of the camcorder  will become MM_CAMCORDER_STATE_CAPTURING. @n
972  *                      Otherwise, this function will return MM_ERROR_CAMCORDER_INVALID_CONDITION.
973  *      @see            _mmcamcorder_capture_stop
974  */
975 int _mmcamcorder_capture_start(MMHandleType hcamcorder);
976
977 /**
978  *      This function is to stop capturing still images.
979  *
980  *      @param[in]      hcamcorder      Specifies the camcorder  handle
981  *      @return         This function returns zero on success, or negative value with error code.
982  *      @remarks        This function can  be called successfully when current state is MM_CAMCORDER_STATE_CAPTURING and @n
983  *                      the state of the camcorder  will become MM_CAMCORDER_STATE_PREPARE. @n
984  *                      Otherwise, this function will return MM_ERROR_CAMCORDER_INVALID_CONDITION.
985  *      @see            _mmcamcorder_capture_start
986  */
987 int _mmcamcorder_capture_stop(MMHandleType hcamcorder);
988
989 /**
990  *      This function is to start  video and audio recording.
991  *
992  *      @param[in]      hcamcorder      Specifies the camcorder  handle
993  *      @return         This function returns zero on success, or negative value with error code.
994  *      @remarks        This function can  be called successfully when current state is @n
995  *                      MM_CAMCORDER_STATE_PREPARE or MM_CAMCORDER_STATE_PAUSED and  @n
996  *                      the state of the camcorder  will become MM_CAMCORDER_STATE_RECORDING.@n
997  *                      Otherwise, this function will return MM_ERROR_CAMCORDER_INVALID_CONDITION.
998  *      @see            _mmcamcorder_pause
999  */
1000 int _mmcamcorder_record(MMHandleType hcamcorder);
1001
1002 /**
1003  *      This function is to pause video and audio recording
1004  *
1005  *      @param[in]      hcamcorder      Specifies the camcorder  handle
1006  *      @return         This function returns zero on success, or negative value with error code.
1007  *      @remarks        This function can  be called successfully when current state is MM_CAMCORDER_STATE_RECORDING and  @n
1008  *                      the  state of the camcorder  will become MM_CAMCORDER_STATE_PAUSED.@n
1009  *                      Otherwise, this function will return MM_ERROR_CAMCORDER_INVALID_CONDITION.@n
1010  *      @see            _mmcamcorder_record
1011  */
1012 int _mmcamcorder_pause(MMHandleType hcamcorder);
1013
1014 /**
1015  *      This function is to stop video and audio  recording and  save results.
1016  *
1017  *      @param[in]      hcamcorder      Specifies the camcorder  handle
1018  *      @return         This function returns zero on success, or negative value with error code.
1019  *      @remarks        This function can  be called successfully when current state is @n
1020  *                      MM_CAMCORDER_STATE_PAUSED or MM_CAMCORDER_STATE_RECORDING and  @n
1021  *                      the state of the camcorder  will become MM_CAMCORDER_STATE_PREPARE. @n
1022  *                      Otherwise, this function will return MM_ERROR_CAMCORDER_INVALID_CONDITION
1023  *      @see            _mmcamcorder_cancel
1024  */
1025 int _mmcamcorder_commit(MMHandleType hcamcorder);
1026
1027 /**
1028  *      This function is to stop video and audio recording and do not save results.
1029  *
1030  *      @param[in]      hcamcorder      Specifies the camcorder  handle
1031  *      @return         This function returns zero on success, or negative value with error code.
1032  *      @remarks        This function can  be called successfully when current state is @n
1033  *                      MM_CAMCORDER_STATE_PAUSED or MM_CAMCORDER_STATE_RECORDING and  @n
1034  *                      the state of the camcorder  will become MM_CAMCORDER_STATE_PREPARE. @n
1035  *                      Otherwise, this function will return MM_ERROR_CAMCORDER_INVALID_CONDITION.
1036  *      @see            _mmcamcorder_commit
1037  */
1038 int _mmcamcorder_cancel(MMHandleType hcamcorder);
1039
1040 /**
1041  *      This function calls after committing action finished asynchronously.
1042  *      In this function, remaining process , such as state change, happens.
1043  *
1044  *      @param[in]      hcamcorder      Specifies the camcorder  handle
1045  *      @return         This function returns zero on success, or negative value with error code.
1046  *      @remarks        This function can  be called successfully when current state is @n
1047  *                      MM_CAMCORDER_STATE_PAUSED or MM_CAMCORDER_STATE_RECORDING and  @n
1048  *                      the state of the camcorder  will become MM_CAMCORDER_STATE_PREPARE. @n
1049  *                      Otherwise, this function will return MM_ERROR_CAMCORDER_INVALID_CONDITION.
1050  *      @see            _mmcamcorder_commit
1051  */
1052 int _mmcamcorder_commit_async_end(MMHandleType hcamcorder);
1053
1054 /**
1055  *      This function is to set callback for receiving messages from camcorder.
1056  *
1057  *      @param[in]      hcamcorder      Specifies the camcorder  handle
1058  *      @param[in]      callback        Specifies the function pointer of callback function
1059  *      @param[in]      user_data       Specifies the user pointer for passing to callback function
1060  *
1061  *      @return         This function returns zero on success, or negative value with error code.
1062  *      @remarks        typedef bool (*mm_message_callback) (int msg, mm_messageType *param, void *user_param);@n
1063  *              @n
1064  *              typedef union                           @n
1065  *              {                                                       @n
1066  *                      int code;                               @n
1067  *                      struct                                  @n
1068  *                      {                                               @n
1069  *                              int total;                      @n
1070  *                              int elapsed;            @n
1071  *                      } time;                                 @n
1072  *                      struct                                  @n
1073  *                      {                                               @n
1074  *                              int previous;           @n
1075  *                              int current;                    @n
1076  *                      } state;                                        @n
1077  *              } mm_message_type;      @n
1078  *                                                                      @n
1079  *              If a  message value for mm_message_callback is MM_MESSAGE_STATE_CHANGED, @n
1080  *              state value in mm_message_type  will be a mmcamcorder_state_type enum value;@n
1081  *              @n
1082  *              If  a message value for mm_message_callback is MM_MESSAGE_ERROR,  @n
1083  *              the code value in mm_message_type will be a mmplayer_error_type enum value;
1084  *
1085  *      @see            mm_message_type,  mmcamcorder_state_type,  mmcamcorder_error_type
1086  */
1087 int _mmcamcorder_set_message_callback(MMHandleType hcamcorder,
1088                                       MMMessageCallback callback,
1089                                       void *user_data);
1090
1091 /**
1092  *      This function is to set callback for video stream.
1093  *
1094  *      @param[in]      hcamcorder      Specifies the camcorder  handle
1095  *      @param[in]      callback        Specifies the function pointer of callback function
1096  *      @param[in]      user_data       Specifies the user pointer for passing to callback function
1097  *
1098  *      @return         This function returns zero on success, or negative value with error code.
1099  *      @see            mmcamcorder_error_type
1100  */
1101 int _mmcamcorder_set_video_stream_callback(MMHandleType hcamcorder,
1102                                            mm_camcorder_video_stream_callback callback,
1103                                            void *user_data);
1104
1105 /**
1106  *      This function is to set callback for audio stream.
1107  *
1108  *      @param[in]      hcamcorder      Specifies the camcorder handle
1109  *      @param[in]      callback        Specifies the function pointer of callback function
1110  *      @param[in]      user_data       Specifies the user pointer for passing to callback function
1111  *
1112  *      @return         This function returns zero on success, or negative value with error code.
1113  *      @see            mmcamcorder_error_type
1114  */
1115 int _mmcamcorder_set_audio_stream_callback(MMHandleType handle,
1116                                            mm_camcorder_audio_stream_callback callback,
1117                                            void *user_data);
1118
1119 /**
1120  *      This function is to set callback for muxed stream.
1121  *
1122  *      @param[in]      hcamcorder      Specifies the camcorder handle
1123  *      @param[in]      callback        Specifies the function pointer of callback function
1124  *      @param[in]      user_data       Specifies the user pointer for passing to callback function
1125  *
1126  *      @return         This function returns zero on success, or negative value with error code.
1127  *      @see            mmcamcorder_error_type
1128  */
1129 int _mmcamcorder_set_muxed_stream_callback(MMHandleType handle,
1130                                            mm_camcorder_muxed_stream_callback callback,
1131                                            void *user_data);
1132
1133 /**
1134  *      This function is to set callback for video capture.
1135  *
1136  *      @param[in]      hcamcorder      Specifies the camcorder  handle
1137  *      @param[in]      callback        Specifies the function pointer of callback function
1138  *      @param[in]      user_data       Specifies the user pointer for passing to callback function
1139  *
1140  *      @return         This function returns zero on success, or negative value with error code.
1141  *      @see            mmcamcorder_error_type
1142  */
1143 int _mmcamcorder_set_video_capture_callback(MMHandleType hcamcorder,
1144                                             mm_camcorder_video_capture_callback callback,
1145                                             void *user_data);
1146
1147 /**
1148  *      This function is to set callback for video encode decision.
1149  *
1150  *      @param[in]      hcamcorder      Specifies the camcorder  handle
1151  *      @param[in]      callback        Specifies the function pointer of callback function
1152  *      @param[in]      user_data       Specifies the user pointer for passing to callback function
1153  *
1154  *      @return         This function returns zero on success, or negative value with error code.
1155  */
1156 int _mmcamcorder_set_video_encode_decision_callback(MMHandleType hcamcorder,
1157                                             mm_camcorder_video_encode_decision_callback callback,
1158                                             void *user_data);
1159
1160 /**
1161  *      This function returns current state of camcorder, or negative value with error code.
1162  *
1163  *      @param[in]      hcamcorder      Specifies the camcorder  handle.
1164  *      @return         This function returns current state of camcorder, or negative value with error code.
1165  *      @see            mmcamcorder_state_type
1166  */
1167 int _mmcamcorder_get_current_state(MMHandleType hcamcorder);
1168
1169 int _mmcamcorder_init_focusing(MMHandleType handle);
1170 int _mmcamcorder_adjust_focus(MMHandleType handle, int direction);
1171 int _mmcamcorder_adjust_manual_focus(MMHandleType handle, int direction);
1172 int _mmcamcorder_adjust_auto_focus(MMHandleType handle);
1173 int _mmcamcorder_stop_focusing(MMHandleType handle);
1174
1175 /**
1176  * This function gets current state of camcorder.
1177  *
1178  * @param       void
1179  * @return      This function returns state of current camcorder context
1180  * @remarks
1181  * @see         _mmcamcorder_set_state()
1182  *
1183  */
1184 int _mmcamcorder_streamer_init(void);
1185
1186 /**
1187  * This function gets current state of camcorder.
1188  *
1189  * @param       void
1190  * @return      This function returns state of current camcorder context
1191  * @remarks
1192  * @see         _mmcamcorder_set_state()
1193  *
1194  */
1195 int _mmcamcorder_display_init(void);
1196
1197 /**
1198  * This function gets current state of camcorder.
1199  *
1200  * @param[in]   handle          Handle of camcorder context.
1201  * @return      This function returns state of current camcorder context
1202  * @remarks
1203  * @see         _mmcamcorder_set_state()
1204  *
1205  */
1206 int _mmcamcorder_get_state(MMHandleType handle);
1207 int _mmcamcorder_get_state2(MMHandleType handle, int *state, int *old_state);
1208
1209 /**
1210  * This function sets new state of camcorder.
1211  *
1212  * @param[in]   handle          Handle of camcorder context.
1213  * @param[in]   state           setting state value of camcorder.
1214  * @return      void
1215  * @remarks
1216  * @see         _mmcamcorder_get_state()
1217  *
1218  */
1219 void _mmcamcorder_set_state(MMHandleType handle, int state);
1220
1221 /**
1222  * This function allocates structure of subsidiary attributes.
1223  *
1224  * @param[in]   type            Allocation type of camcorder context.
1225  * @return      This function returns structure pointer on success, NULL value on failure.
1226  * @remarks
1227  * @see         _mmcamcorder_dealloc_subcontext()
1228  *
1229  */
1230 _MMCamcorderSubContext *_mmcamcorder_alloc_subcontext(int type);
1231
1232 /**
1233  * This function releases structure of subsidiary attributes.
1234  *
1235  * @param[in]   sc              Handle of camcorder subcontext.
1236  * @return      void
1237  * @remarks
1238  * @see         _mmcamcorder_alloc_subcontext()
1239  *
1240  */
1241 void _mmcamcorder_dealloc_subcontext(_MMCamcorderSubContext *sc);
1242
1243 /**
1244  * This function sets command function according to the type.
1245  *
1246  * @param[in]   handle          Handle of camcorder context.
1247  * @param[in]   type            Allocation type of camcorder context.
1248  * @return      This function returns MM_ERROR_NONE on success, or other values with error code.
1249  * @remarks
1250  * @see         __mmcamcorder_video_command(), __mmcamcorder_audio_command(), __mmcamcorder_image_command()
1251  *
1252  */
1253 int _mmcamcorder_set_functions(MMHandleType handle, int type);
1254
1255 /**
1256  * This function is callback function of main pipeline.
1257  * Once this function is registered with certain pipeline using gst_bus_add_watch(),
1258  * this callback will be called every time when there is upcoming message from pipeline.
1259  * Basically, this function is used as error handling function, now.
1260  *
1261  * @param[in]   bus             pointer of buf that called this function.
1262  * @param[in]   message         callback message from pipeline.
1263  * @param[in]   data            user data.
1264  * @return      This function returns true on success, or false value with error
1265  * @remarks
1266  * @see         __mmcamcorder_create_preview_pipeline()
1267  *
1268  */
1269 gboolean _mmcamcorder_pipeline_cb_message(GstBus *bus, GstMessage *message, gpointer data);
1270
1271 /**
1272  * This function is callback function of main pipeline.
1273  * Once this function is registered with certain pipeline using gst_bus_set_sync_handler(),
1274  * this callback will be called every time when there is upcoming message from pipeline.
1275  * Basically, this function is used as sync error handling function, now.
1276  *
1277  * @param[in]   bus             pointer of buf that called this function.
1278  * @param[in]   message         callback message from pipeline.
1279  * @param[in]   data            user data.
1280  * @return      This function returns true on success, or false value with error
1281  * @remarks
1282  * @see         __mmcamcorder_create_preview_pipeline()
1283  *
1284  */
1285 GstBusSyncReply _mmcamcorder_pipeline_bus_sync_callback(GstBus *bus, GstMessage *message, gpointer data);
1286
1287 /**
1288  * This function is callback function of encode pipeline.
1289  * Once this function is registered with certain pipeline using gst_bus_set_sync_handler(),
1290  * this callback will be called every time when there is upcoming message from pipeline.
1291  * Basically, this function is used for EOS and error handling now.
1292  *
1293  * @param[in]   bus             pointer of buf that called this function.
1294  * @param[in]   message         callback message from pipeline.
1295  * @param[in]   data            user data.
1296  * @return      This function returns true on success, or false value with error
1297  * @remarks
1298  * @see         __mmcamcorder_create_recorder_pipeline()
1299  * @see         __mmcamcorder_create_audiop_with_encodebin()
1300  *
1301  */
1302 GstBusSyncReply _mmcamcorder_encode_pipeline_bus_sync_callback(GstBus *bus, GstMessage *message, gpointer data);
1303
1304 /**
1305  * This function create main pipeline according to type.
1306  *
1307  * @param[in]   handle          Handle of camcorder context.
1308  * @param[in]   type            Allocation type of camcorder context.
1309  * @return      This function returns zero on success, or negative value with error code.
1310  * @remarks
1311  * @see         _mmcamcorder_destroy_pipeline()
1312  *
1313  */
1314 int _mmcamcorder_create_pipeline(MMHandleType handle, int type);
1315
1316 /**
1317  * This function release all element of main pipeline according to type.
1318  *
1319  * @param[in]   handle          Handle of camcorder context.
1320  * @param[in]   type            Allocation type of camcorder context.
1321  * @return      void
1322  * @remarks
1323  * @see         _mmcamcorder_create_pipeline()
1324  *
1325  */
1326 void _mmcamcorder_destroy_pipeline(MMHandleType handle, int type);
1327
1328 /**
1329  * This function sets gstreamer element status.
1330  * If the gstreamer fails to set status or returns asynchronous mode,
1331  * this function waits for state changed until timeout expired.
1332  *
1333  * @param[in]   pipeline        Pointer of pipeline
1334  * @param[in]   target_state    newly setting status
1335  * @return      This function returns zero on success, or negative value with error code.
1336  * @remarks
1337  * @see
1338  *
1339  */
1340 int _mmcamcorder_gst_set_state(MMHandleType handle, GstElement *pipeline, GstState target_state);
1341
1342
1343 /* For xvimagesink */
1344 GstBusSyncReply __mmcamcorder_sync_callback(GstBus *bus, GstMessage *message, gulong data);
1345
1346 /* For querying capabilities */
1347 int _mmcamcorder_read_vidsrc_info(int videodevidx, camera_conf **configure_info);
1348
1349 /* for performance check */
1350 void _mmcamcorder_video_current_framerate_init(MMHandleType handle);
1351 int _mmcamcorder_video_current_framerate(MMHandleType handle);
1352 int _mmcamcorder_video_average_framerate(MMHandleType handle);
1353
1354 /* for stopping forcedly */
1355 void __mmcamcorder_force_stop(mmf_camcorder_t *hcamcorder, int state_change_by_system);
1356
1357 /* device policy manager */
1358 void _mmcamcorder_dpm_camera_policy_changed_cb(const char *name, const char *value, void *user_data);
1359
1360 /* Emit dbus signal */
1361 void _mmcamcorder_emit_signal(MMHandleType handle, const char *object_name,
1362         const char *interface_name, const char *signal_name, int value);
1363
1364 /* external storage state management */
1365 int _mmcamcorder_manage_external_storage_state(MMHandleType handle, int storage_state);
1366
1367 /* get exposure */
1368 int _mmcamcorder_get_exposure(MMHandleType handle, int *exposure);
1369
1370 #ifdef __cplusplus
1371 }
1372 #endif
1373
1374 #endif /* __MM_CAMCORDER_INTERNAL_H__ */