1. Tizen 3.0 Recorder update
[platform/core/api/recorder.git] / include / recorder_private.h
1 /*
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License. 
15 */
16
17
18
19 #ifndef __TIZEN_MULTIMEDIA_RECORDER_PRIVATE_H__
20 #define __TIZEN_MULTIMEDIA_RECORDER_PRIVATE_H__
21 #include <camera.h>
22 #include <mm_camcorder.h>
23 #include <recorder.h>
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 typedef union _mediaSource{
30         camera_h camera;
31 }mediasource;
32
33
34 typedef enum {
35         _RECORDER_EVENT_TYPE_STATE_CHANGE,
36         _RECORDER_EVENT_TYPE_RECORDING_LIMITED, 
37         _RECORDER_EVENT_TYPE_RECORDING_STATUS,
38         _RECORDER_EVENT_TYPE_INTERRUPTED,
39         _RECORDER_EVENT_TYPE_INTERRUPT_COMPLETED,
40         _RECORDER_EVENT_TYPE_AUDIO_STREAM,
41         _RECORDER_EVENT_TYPE_ERROR,
42         _RECORDER_EVENT_TYPE_NUM
43 }_recorder_event_e;
44
45 typedef enum {
46         _RECORDER_TYPE_AUDIO= 0,
47         _RECORDER_TYPE_VIDEO
48 }_recorder_type_e;
49
50 typedef struct _recorder_s{
51         MMHandleType mm_handle;
52         mediasource mm_source;
53         void* user_cb[_RECORDER_EVENT_TYPE_NUM];
54         void* user_data[_RECORDER_EVENT_TYPE_NUM];
55         unsigned int state;
56         _recorder_type_e  type;
57         int origin_preview_format;
58         int changed_preview_format;
59         double last_max_input_level;
60 } recorder_s;
61
62 static int __convert_recorder_error_code(const char *func, int code);
63 #ifdef __cplusplus
64 }
65 #endif
66
67 #endif //__TIZEN_MULTIMEDIA_RECORDER_PRIVATE_H__
68
69