Remove unused code
[platform/core/api/camera.git] / include / camera_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
20
21 #ifndef __TIZEN_MULTIMEDIA_CAMERA_PRIVATE_H__
22 #define __TIZEN_MULTIMEDIA_CAMERA_PRIVATE_H__
23 #include <glib.h>
24 #include <camera.h>
25 #include <muse_core.h>
26 #include <muse_camera.h>
27 #include <mm_display_interface.h>
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 #ifdef BUFFER_MAX_PLANE_NUM
34 #undef BUFFER_MAX_PLANE_NUM
35 #endif /* BUFFER_MAX_PLANE_NUM */
36
37 #define BUFFER_MAX_PLANE_NUM     4
38 #define CAMERA_CB_TIMEOUT        4
39 #define CAMERA_CB_NO_TIMEOUT     0
40
41 #define CAMERA_MSG_PARAM_SET(param, msg_type, set_value) { \
42         param.type = MUSE_TYPE_##msg_type; \
43         param.name = #set_value; \
44         param.value.value_##msg_type = set_value; \
45 }
46
47 #define PREVIEW_CB_TYPE_USER 0x0000000F
48 #define PREVIEW_CB_TYPE_EVAS 0x000000F0
49
50 #define CHECK_PREVIEW_CB(cb_info, cb_type) ((cb_info)->preview_cb_flag & cb_type)
51 #define SET_PREVIEW_CB_TYPE(cb_info, cb_type) ((cb_info)->preview_cb_flag |= cb_type)
52 #define UNSET_PREVIEW_CB_TYPE(cb_info, cb_type) ((cb_info)->preview_cb_flag &= ~cb_type)
53
54 enum {
55         CAMERA_MESSAGE_HANDLER_TYPE_GENERAL,
56         CAMERA_MESSAGE_HANDLER_TYPE_PREVIEW_CB,
57         CAMERA_MESSAGE_HANDLER_TYPE_CAPTURE_CB
58 };
59
60 typedef struct _camera_stream_data_s {
61         union {
62                 struct {
63                         unsigned char *yuv;
64                         unsigned int length_yuv;
65                 } yuv420, yuv422;
66                 struct {
67                         unsigned char *y;
68                         unsigned int length_y;
69                         unsigned char *uv;
70                         unsigned int length_uv;
71                 } yuv420sp;
72                 struct {
73                         unsigned char *y;
74                         unsigned int length_y;
75                         unsigned char *u;
76                         unsigned int length_u;
77                         unsigned char *v;
78                         unsigned int length_v;
79                 } yuv420p, yuv422p;
80                 struct {
81                         unsigned char *data;
82                         unsigned int length_data;
83                 } encoded;
84         } data;                         /**< pointer of captured stream */
85         int data_type;                  /**< data type */
86         unsigned int length_total;      /**< total length of stream buffer (in byte)*/
87         unsigned int num_planes;        /**< number of planes */
88         MMPixelFormatType format;       /**< image format */
89         int width;                      /**< width of video buffer */
90         int height;                     /**< height of video buffer */
91         unsigned int timestamp;         /**< timestamp of stream buffer (msec)*/
92         void *bo[BUFFER_MAX_PLANE_NUM]; /**< TBM buffer object */
93         void *internal_buffer;          /**< Internal buffer pointer */
94         int stride[BUFFER_MAX_PLANE_NUM];    /**< Stride of each plane */
95         int elevation[BUFFER_MAX_PLANE_NUM]; /**< Elevation of each plane */
96 } camera_stream_data_s;
97
98 typedef struct _camera_msg_handler_info_s {
99         int type;
100         void *cb_info;
101         int running;
102         GCond cond;
103         GMutex mutex;
104         GQueue *queue;
105         GThread *thread;
106 } camera_msg_handler_info_s;
107
108 typedef struct _camera_cb_info_s {
109         /* server connection */
110         gint fd;
111         GMutex fd_lock;
112         gboolean is_server_connected;
113
114         /* message receive thread */
115         GThread *msg_recv_thread;
116         gint msg_recv_running;
117         gchar recv_msg[MUSE_MSG_MAX_LENGTH + 1];
118         GCond api_cond[MUSE_CAMERA_API_MAX];
119         GMutex api_mutex[MUSE_CAMERA_API_MAX];
120         gint api_activating[MUSE_CAMERA_API_MAX];
121         gint api_waiting[MUSE_CAMERA_API_MAX];
122         gint api_ret[MUSE_CAMERA_API_MAX];
123
124         /* general message handler info */
125         camera_msg_handler_info_s msg_handler_info;
126
127         /* preview cb message handler info */
128         camera_msg_handler_info_s preview_cb_info;
129
130         /* capture cb message handler info */
131         camera_msg_handler_info_s capture_cb_info;
132
133         /* idle event */
134         GList *idle_event_list;
135         GCond idle_event_cond;
136         GMutex idle_event_mutex;
137
138         /* user callback */
139         gpointer user_cb[MUSE_CAMERA_EVENT_TYPE_NUM];
140         gpointer user_data[MUSE_CAMERA_EVENT_TYPE_NUM];
141         GMutex user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_NUM];
142
143         /* tbm */
144         tbm_bufmgr bufmgr;
145
146         /* media packet */
147         media_format_h pkt_fmt;
148         GMutex mp_data_mutex;
149
150         /* preview callback flag */
151         int preview_cb_flag;
152         camera_pixel_format_e preview_format;
153
154         /* display */
155         camera_display_type_e dp_type;
156         mm_display_interface_h dp_interface;
157         gboolean run_evas_render;
158
159         /* get values */
160         gint get_int[MUSE_CAMERA_GET_INT_NUM];
161         gint get_int_pair[MUSE_CAMERA_GET_INT_PAIR_NUM][2];
162         gchar get_string[MUSE_CAMERA_GET_STRING_NUM][MUSE_CAMERA_MSG_MAX_LENGTH];
163         gdouble get_geotag[3];
164         gint get_display_roi_area[4];
165 } camera_cb_info_s;
166
167 typedef struct _camera_message_s {
168         gchar recv_msg[MUSE_CAMERA_MSG_MAX_LENGTH + 1];
169         muse_camera_api_e api;
170         muse_camera_event_e event;
171         muse_camera_event_class_e event_class;
172 } camera_message_s;
173
174 typedef struct _camera_idle_event_s {
175         camera_cb_info_s *cb_info;
176         gchar recv_msg[MUSE_CAMERA_MSG_MAX_LENGTH + 1];
177         muse_camera_event_e event;
178         GMutex event_mutex;
179 } camera_idle_event_s;
180
181 typedef struct _camera_cli_s {
182         intptr_t remote_handle;
183         camera_cb_info_s *cb_info;
184 } camera_cli_s;
185
186 typedef struct _camera_media_packet_data {
187         int tbm_key;
188         tbm_bo bo;
189         tbm_bo buffer_bo[BUFFER_MAX_PLANE_NUM];
190         int num_buffer_key;
191         tbm_bo data_bo;
192         int ref_cnt;
193 } camera_media_packet_data;
194
195 typedef struct _camera_msg_param {
196         int type;
197         const char *name;
198         union {
199                 int value_INT;
200                 const char *value_STRING;
201         } value;
202 } camera_msg_param;
203
204 typedef struct _camera_cb_info {
205         int id;
206         void *callback;
207         void *user_data;
208 } camera_cb_info;
209
210
211 int _camera_get_tbm_surface_format(int in_format, uint32_t *out_format);
212 int _camera_get_media_packet_mimetype(int in_format, media_format_mimetype_e *mimetype);
213 int _camera_media_packet_finalize(media_packet_h pkt, int error_code, void *user_data);
214 int _camera_start_evas_rendering(camera_h camera);
215 int _camera_stop_evas_rendering(camera_h camera, bool keep_screen);
216 int _camera_independent_request(int api, int device_type, const char *key, int *value);
217
218 typedef bool (*camera_supported_cb_param1)(int param, void *user_data);
219 typedef bool (*camera_supported_cb_param2)(int param1, int param2, void *user_data);
220
221 #ifdef __cplusplus
222 }
223 #endif
224
225 #endif /* __TIZEN_MULTIMEDIA_CAMERA_PRIVATE_H__ */
226