Initial codes for tizen branch
[platform/core/multimedia/mmsvc-recorder.git] / include / mmsvc_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 <mmsvc_camera.h>
22 #include <mm_camcorder.h>
23 #include <mmsvc_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_AUDIO_STREAM,
40         _RECORDER_EVENT_TYPE_ERROR,
41         _RECORDER_EVENT_TYPE_NUM
42 }_recorder_event_e;
43
44 typedef enum {
45         _RECORDER_TYPE_AUDIO = 0,
46         _RECORDER_TYPE_VIDEO
47 }_recorder_type_e;
48
49 typedef enum {
50         _RECORDER_SOURCE_TYPE_UNKNOWN,
51         _RECORDER_SOURCE_TYPE_CAMERA,
52 }_recorder_source_type_e;
53
54 typedef struct _recorder_s{
55         MMHandleType mm_handle;
56         mediasource mm_source;
57         void* user_cb[_RECORDER_EVENT_TYPE_NUM];
58         void* user_data[_RECORDER_EVENT_TYPE_NUM];
59         unsigned int state;
60         int camera_device_count;
61         _recorder_type_e type;
62         _recorder_source_type_e src_type;
63         int origin_preview_format;
64         int changed_preview_format;
65         double last_max_input_level;
66 } recorder_s;
67
68 int __convert_recorder_error_code(const char *func, int code);
69 #ifdef __cplusplus
70 }
71 #endif
72
73 #endif //__TIZEN_MULTIMEDIA_RECORDER_PRIVATE_H__
74
75