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