Fix filename issue for Tizen 2.4 compatibility
[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 <recorder.h>
23 #include <muse_core.h>
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 #define RECORDER_PARSE_STRING_SIZE 30
30 #define RECORDER_MSG_LENGTH_MAX    5120
31 #define RECORDER_CB_TIMEOUT        5
32 #define RECORDER_FILENAME_MAX      256
33
34 #define RECORDER_MSG_PARAM_SET(param, msg_type, set_value) { \
35         param.type = MUSE_TYPE_##msg_type; \
36         param.name = #set_value; \
37         param.value.value_##msg_type = set_value; \
38 }
39
40 enum {
41         _RECORDER_GET_INT_STATE = 0,
42         _RECORDER_GET_INT_VIDEO_RESOLUTION,
43         _RECORDER_GET_INT_FILE_FORMAT,
44         _RECORDER_GET_INT_AUDIO_ENCODER,
45         _RECORDER_GET_INT_VIDEO_ENCODER,
46         _RECORDER_GET_INT_SIZE_LIMIT,
47         _RECORDER_GET_INT_TIME_LIMIT,
48         _RECORDER_GET_INT_AUDIO_DEVICE,
49         _RECORDER_GET_INT_AUDIO_SAMPLERATE,
50         _RECORDER_GET_INT_AUDIO_ENCODER_BITRATE,
51         _RECORDER_GET_INT_VIDEO_ENCODER_BITRATE,
52         _RECORDER_GET_INT_AUDIO_CHANNEL,
53         _RECORDER_GET_INT_ORIENTATION_TAG,
54         _RECORDER_GET_INT_MAX
55 };
56
57 enum {
58         _RECORDER_GET_DOUBLE_AUDIO_LEVEL = 0,
59         _RECORDER_GET_DOUBLE_RECORDING_MOTION_RATE,
60         _RECORDER_GET_DOUBLE_MAX
61 };
62
63 typedef struct _recorder_cb_info_s {
64         gint fd;
65         gboolean is_server_connected;
66
67         GThread *msg_recv_thread;
68         GThread *msg_handler_thread;
69         gint msg_recv_running;
70         gint msg_handler_running;
71         GCond msg_handler_cond;
72         GMutex msg_handler_mutex;
73         GQueue *msg_queue;
74         GList *idle_event_list;
75         GCond idle_event_cond;
76         GMutex idle_event_mutex;
77         gpointer user_cb[MUSE_RECORDER_EVENT_TYPE_NUM];
78         gpointer user_data[MUSE_RECORDER_EVENT_TYPE_NUM];
79         gchar recv_msg[RECORDER_MSG_LENGTH_MAX];
80         GCond api_cond[MUSE_RECORDER_API_MAX];
81         GMutex api_mutex[MUSE_RECORDER_API_MAX];
82         gint *api_activating;
83         gint *api_ret;
84         tbm_bufmgr bufmgr;
85
86         /* get values */
87         char *get_filename;
88         gint get_int_value[_RECORDER_GET_INT_MAX];
89         gdouble get_double_value[_RECORDER_GET_DOUBLE_MAX];
90 } recorder_cb_info_s;
91
92 typedef struct _recorder_message_s {
93         gchar recv_msg[MUSE_RECORDER_MSG_MAX_LENGTH];
94         muse_recorder_api_e api;
95 } recorder_message_s;
96
97 typedef struct _recorder_idle_event_s {
98         recorder_cb_info_s *cb_info;
99         gchar recv_msg[MUSE_RECORDER_MSG_MAX_LENGTH];
100         muse_recorder_event_e event;
101         GMutex event_mutex;
102 } recorder_idle_event_s;
103
104 typedef struct _recorder_cli_s {
105         intptr_t remote_handle;
106         recorder_cb_info_s *cb_info;
107         camera_h camera;
108 } recorder_cli_s;
109
110 typedef struct _recorder_msg_param {
111         int type;
112         const char *name;
113         union {
114                 int value_INT;
115                 double value_DOUBLE;
116                 const char *value_STRING;
117         } value;
118 } recorder_msg_param;
119
120 typedef struct _camera_cli_s {
121         intptr_t remote_handle;
122         void *cb_info;
123 } camera_cli_s;
124
125 int __convert_recorder_error_code(const char *func, int code);
126
127 #ifdef __cplusplus
128 }
129 #endif
130
131 #endif /* __TIZEN_MULTIMEDIA_RECORDER_PRIVATE_H__ */
132
133