blob: 7783a0feb9463c0a4bcd0ee2bb5a108a2fac623c [file] [log] [blame]
Wind Yuan75564b12015-01-15 06:51:15 -05001/*
2 * main.cpp - test
3 *
4 * Copyright (c) 2014 Intel Corporation
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *
18 * Author: Wind Yuan <feng.yuan@intel.com>
19 */
20
21#include "device_manager.h"
22#include "atomisp_device.h"
Sameer Kibey7b429292015-08-07 10:55:38 -070023#include "uvc_device.h"
Wind Yuan75564b12015-01-15 06:51:15 -050024#include "isp_controller.h"
25#include "isp_image_processor.h"
26#include "x3a_analyzer_simple.h"
27#if HAVE_IA_AIQ
28#include "x3a_analyzer_aiq.h"
29#endif
Wind Yuand4427312015-02-11 16:09:00 +080030#if HAVE_LIBCL
Wind Yuane4ba0c92015-03-26 16:59:06 +080031#include "cl_3a_image_processor.h"
wangfeicf4c4e72015-05-25 17:11:41 +080032#include "cl_csc_image_processor.h"
Yinhang Liu81c44e02015-06-03 15:47:48 +080033#include "cl_hdr_handler.h"
34#include "cl_tnr_handler.h"
Wind Yuane4ba0c92015-03-26 16:59:06 +080035#endif
36#if HAVE_LIBDRM
37#include "drm_display.h"
Wind Yuand4427312015-02-11 16:09:00 +080038#endif
zongwave03954a32015-09-22 15:40:44 +080039#include "x3a_analyzer_loader.h"
Jia Meng66efecf2015-06-17 11:11:10 +000040#include <base/xcam_3a_types.h>
Wind Yuan75564b12015-01-15 06:51:15 -050041#include <unistd.h>
42#include <signal.h>
43#include <stdlib.h>
ShincyTue521cf92015-03-27 15:13:51 +080044#include <string>
Yinhang Liu81c44e02015-06-03 15:47:48 +080045#include <getopt.h>
John Yeae9da732015-01-22 13:36:36 +080046#include "test_common.h"
47
Wind Yuan75564b12015-01-15 06:51:15 -050048using namespace XCam;
49
ShincyTue521cf92015-03-27 15:13:51 +080050static Mutex g_mutex;
51static Cond g_cond;
52static bool g_stop = false;
53
Wind Yuan75564b12015-01-15 06:51:15 -050054class MainDeviceManager
55 : public DeviceManager
56{
57public:
58 MainDeviceManager ()
59 : _file (NULL)
60 , _save_file (false)
61 , _interval (1)
62 , _frame_count (0)
ShincyTue521cf92015-03-27 15:13:51 +080063 , _frame_save (0)
Wind Yuan683f8662015-03-27 18:52:38 +080064 , _enable_display (false)
Wind Yuane4ba0c92015-03-26 16:59:06 +080065 {
66#if HAVE_LIBDRM
67 _display = DrmDisplay::instance();
68#endif
Wind Yuan91625802015-06-24 15:36:01 +080069 XCAM_OBJ_PROFILING_INIT;
Wind Yuane4ba0c92015-03-26 16:59:06 +080070 }
Wind Yuan75564b12015-01-15 06:51:15 -050071
72 ~MainDeviceManager () {
73 close_file ();
74 }
75
76 void enable_save_file (bool enable) {
77 _save_file = enable;
78 }
79 void set_interval (uint32_t inteval) {
80 _interval = inteval;
81 }
ShincyTue521cf92015-03-27 15:13:51 +080082 void set_frame_save (uint32_t frame_save) {
83 _frame_save = frame_save;
84 }
Wind Yuan75564b12015-01-15 06:51:15 -050085
Wind Yuan683f8662015-03-27 18:52:38 +080086 void enable_display(bool value) {
87 _enable_display = value;
88 }
89
wangfeicf4c4e72015-05-25 17:11:41 +080090 void set_display_mode(DrmDisplayMode mode) {
91 _display->set_display_mode (mode);
92 }
93
Wind Yuan75564b12015-01-15 06:51:15 -050094protected:
Wind Yuan73af3932015-07-02 17:52:43 +080095 virtual void handle_message (const SmartPtr<XCamMessage> &msg);
96 virtual void handle_buffer (const SmartPtr<VideoBuffer> &buf);
Wind Yuan75564b12015-01-15 06:51:15 -050097
Wind Yuan73af3932015-07-02 17:52:43 +080098 int display_buf (const SmartPtr<VideoBuffer> &buf);
Wind Yuane4ba0c92015-03-26 16:59:06 +080099
Wind Yuan75564b12015-01-15 06:51:15 -0500100private:
101 void open_file ();
102 void close_file ();
103
104 FILE *_file;
105 bool _save_file;
106 uint32_t _interval;
107 uint32_t _frame_count;
ShincyTue521cf92015-03-27 15:13:51 +0800108 uint32_t _frame_save;
Wind Yuane4ba0c92015-03-26 16:59:06 +0800109 SmartPtr<DrmDisplay> _display;
Wind Yuan683f8662015-03-27 18:52:38 +0800110 bool _enable_display;
Wind Yuan91625802015-06-24 15:36:01 +0800111 XCAM_OBJ_PROFILING_DEFINES;
Wind Yuan75564b12015-01-15 06:51:15 -0500112};
113
114void
Wind Yuan73af3932015-07-02 17:52:43 +0800115MainDeviceManager::handle_message (const SmartPtr<XCamMessage> &msg)
Wind Yuan75564b12015-01-15 06:51:15 -0500116{
117 XCAM_UNUSED (msg);
118}
119
120void
Wind Yuan73af3932015-07-02 17:52:43 +0800121MainDeviceManager::handle_buffer (const SmartPtr<VideoBuffer> &buf)
Wind Yuan75564b12015-01-15 06:51:15 -0500122{
Wind Yuan683f8662015-03-27 18:52:38 +0800123 FPS_CALCULATION (fps_buf, 30);
124
Wind Yuan91625802015-06-24 15:36:01 +0800125 XCAM_OBJ_PROFILING_START;
126
Wind Yuan683f8662015-03-27 18:52:38 +0800127 if (_enable_display)
128 display_buf (buf);
Wind Yuane4ba0c92015-03-26 16:59:06 +0800129
Wind Yuan91625802015-06-24 15:36:01 +0800130 XCAM_OBJ_PROFILING_END("main_dev_manager_display", 30);
131
Wind Yuan75564b12015-01-15 06:51:15 -0500132 if (!_save_file)
133 return ;
134
135 if ((_frame_count++ % _interval) != 0)
136 return;
137
ShincyTue521cf92015-03-27 15:13:51 +0800138 if ((_frame_save != 0) && (_frame_count > _frame_save)) {
139 SmartLock locker (g_mutex);
140 g_stop = true;
141 g_cond.broadcast ();
142 return;
143 }
144
Wind Yuan75564b12015-01-15 06:51:15 -0500145 const VideoBufferInfo & frame_info = buf->get_video_info ();
146 uint8_t *frame = buf->map ();
ShincyTu2808b592015-03-13 17:17:25 +0800147
Wind Yuan75564b12015-01-15 06:51:15 -0500148 if (frame == NULL)
149 return;
ShincyTu2808b592015-03-13 17:17:25 +0800150
151 uint32_t size = 0;
152
153 switch(frame_info.format) {
154 case V4L2_PIX_FMT_NV12: // 420
155 case V4L2_PIX_FMT_NV21:
156 size = XCAM_ALIGN_UP(frame_info.width, 2) * XCAM_ALIGN_UP(frame_info.height, 2) * 3 / 2;
157 break;
158 case V4L2_PIX_FMT_YUV422P: // 422 Planar
159 case V4L2_PIX_FMT_YUYV: // 422
160 case V4L2_PIX_FMT_SBGGR10:
161 case V4L2_PIX_FMT_SGBRG10:
162 case V4L2_PIX_FMT_SGRBG10:
163 case V4L2_PIX_FMT_SRGGB10:
ShincyTu1a4de9d2015-06-01 18:04:51 +0800164 case V4L2_PIX_FMT_SBGGR12:
165 case V4L2_PIX_FMT_SGBRG12:
166 case V4L2_PIX_FMT_SGRBG12:
167 case V4L2_PIX_FMT_SRGGB12:
ShincyTu2808b592015-03-13 17:17:25 +0800168 size = XCAM_ALIGN_UP(frame_info.width, 2) * XCAM_ALIGN_UP(frame_info.height, 2) * 2;
169 break;
wujunkai166a84ba052015-09-08 15:54:12 +0800170 case XCAM_PIX_FMT_RGBA64:
171 size = XCAM_ALIGN_UP(frame_info.width, 2) * XCAM_ALIGN_UP(frame_info.height, 2) * 2 * 4;
172 break;
ShincyTu2808b592015-03-13 17:17:25 +0800173 default:
174 XCAM_LOG_ERROR (
175 "unknown v4l2 format(%s) in buffer handle",
176 xcam_fourcc_to_string (frame_info.format));
177 return;
178 }
179
Wind Yuan75564b12015-01-15 06:51:15 -0500180 open_file ();
Jia Meng6c9241d2015-06-12 11:08:45 +0000181
182 if (!_file) {
183 XCAM_LOG_ERROR ("open file failed");
Jia Meng54a2dcb2015-08-20 15:23:47 +0800184 return;
Jia Meng6c9241d2015-06-12 11:08:45 +0000185 }
186
Wind Yuan75564b12015-01-15 06:51:15 -0500187 if (fwrite (frame, size, 1, _file) <= 0) {
188 XCAM_LOG_WARNING ("write frame failed.");
189 }
190}
191
Wind Yuane4ba0c92015-03-26 16:59:06 +0800192int
Wind Yuan73af3932015-07-02 17:52:43 +0800193MainDeviceManager::display_buf (const SmartPtr<VideoBuffer> &data)
Wind Yuane4ba0c92015-03-26 16:59:06 +0800194{
195#if HAVE_LIBDRM
196 XCamReturn ret = XCAM_RETURN_NO_ERROR;
Wind Yuan73af3932015-07-02 17:52:43 +0800197 SmartPtr<VideoBuffer> buf = data;
Wind Yuane4ba0c92015-03-26 16:59:06 +0800198 const VideoBufferInfo & frame_info = buf->get_video_info ();
199 struct v4l2_rect rect = { 0, 0, (int)frame_info.width, (int)frame_info.height };
200
201 if (!_display->is_render_inited ()) {
wangfei139ea7e2015-04-27 18:13:40 +0800202 ret = _display->render_init (0, 0, 1920, 1080, frame_info.format, &rect);
Wind Yuane4ba0c92015-03-26 16:59:06 +0800203 CHECK (ret, "display failed on render_init");
204 }
205 ret = _display->render_setup_frame_buffer (buf);
206 CHECK (ret, "display failed on framebuf set");
207 ret = _display->render_buffer (buf);
208 CHECK (ret, "display failed on rendering");
209#endif
210 return 0;
211}
212
213
Wind Yuan75564b12015-01-15 06:51:15 -0500214void
215MainDeviceManager::open_file ()
216{
ShincyTue521cf92015-03-27 15:13:51 +0800217 if ((_file) && (_frame_save == 0))
Wind Yuan75564b12015-01-15 06:51:15 -0500218 return;
ShincyTue521cf92015-03-27 15:13:51 +0800219
220 std::string file_name = DEFAULT_SAVE_FILE_NAME;
221
222 if (_frame_save != 0) {
223 file_name += std::to_string(_frame_count);
224 }
225 file_name += ".raw";
226
227 _file = fopen(file_name.c_str(), "wb");
Wind Yuan75564b12015-01-15 06:51:15 -0500228}
229
230void
231MainDeviceManager::close_file ()
232{
233 if (_file)
234 fclose (_file);
235 _file = NULL;
236}
237
238#define V4L2_CAPTURE_MODE_STILL 0x2000
239#define V4L2_CAPTURE_MODE_VIDEO 0x4000
240#define V4L2_CAPTURE_MODE_PREVIEW 0x8000
241
Wind Yuan26e9e212015-04-16 15:55:45 +0800242typedef enum {
243 AnalyzerTypeSimple = 0,
244 AnalyzerTypeAiq,
Wind Yuane25ce3f2015-05-04 18:07:29 +0800245 AnalyzerTypeDynamic,
Jia Meng9724cfe2015-08-12 15:04:45 +0800246 AnalyzerTypeHybrid,
Wind Yuan26e9e212015-04-16 15:55:45 +0800247} AnalyzerType;
248
Wind Yuan75564b12015-01-15 06:51:15 -0500249void dev_stop_handler(int sig)
250{
251 XCAM_UNUSED (sig);
252
253 SmartLock locker (g_mutex);
254 g_stop = true;
255 g_cond.broadcast ();
256
257 //exit(0);
258}
259
260void print_help (const char *bin_name)
261{
262 printf ("Usage: %s [-a analyzer]\n"
Yinhang Liu81c44e02015-06-03 15:47:48 +0800263 "Configurations:\n"
ShincyTue521cf92015-03-27 15:13:51 +0800264 "\t -a analyzer specify a analyzer\n"
Wind Yuane25ce3f2015-05-04 18:07:29 +0800265 "\t select from [simple, aiq, dynamic], default is [simple]\n"
ShincyTue521cf92015-03-27 15:13:51 +0800266 "\t -m mem_type specify video memory type\n"
267 "\t mem_type select from [dma, mmap], default is [mmap]\n"
268 "\t -s save file to %s\n"
269 "\t -n interval save file on every [interval] frame\n"
Yinhang Liuc2f19082015-08-28 12:27:48 +0800270#if HAVE_LIBCL
ShincyTue521cf92015-03-27 15:13:51 +0800271 "\t -c process image with cl kernel\n"
Yinhang Liuc2f19082015-08-28 12:27:48 +0800272#endif
ShincyTue521cf92015-03-27 15:13:51 +0800273 "\t -f pixel_fmt specify output pixel format\n"
wujunkai1669845b022015-08-27 15:59:27 +0800274 "\t pixel_fmt select from [NV12, YUYV, BA10, BA12], default is [NV12]\n"
ShincyTue521cf92015-03-27 15:13:51 +0800275 "\t -d cap_mode specify capture mode\n"
276 "\t cap_mode select from [video, still], default is [video]\n"
yaowang1a5f12122015-07-27 14:53:38 +0800277 "\t -b brightness specify brightness level\n"
278 "\t brightness level select from [0, 256], default is [128]\n"
ShincyTue521cf92015-03-27 15:13:51 +0800279 "\t -i frame_save specify the frame count to save, default is 0 which means endless\n"
wangfeicf4c4e72015-05-25 17:11:41 +0800280 "\t -p preview on local display\n"
Sameer Kibey7b429292015-08-07 10:55:38 -0700281 "\t --usb specify node for usb camera device, enables capture path through USB camera \n"
282 "\t specify [/dev/video4, /dev/video5] depending on which node USB camera is attached\n"
wangfeicf4c4e72015-05-25 17:11:41 +0800283 "\t -e display_mode preview mode\n"
284 "\t select from [primary, overlay], default is [primary]\n"
Jia Meng8f94a102015-08-11 16:24:19 +0800285 "\t --sync set analyzer in sync mode\n"
ShincyTue521cf92015-03-27 15:13:51 +0800286 "\t -h help\n"
Yinhang Liuc2f19082015-08-28 12:27:48 +0800287#if HAVE_LIBCL
Yinhang Liu81c44e02015-06-03 15:47:48 +0800288 "CL features:\n"
wujunkai166a84ba052015-09-08 15:54:12 +0800289 "\t --capture capture_stage specify the capture stage of image\n"
290 "\t capture_stage select from [bayer, tonemapping], default is [tonemapping]\n"
Yinhang Liu81c44e02015-06-03 15:47:48 +0800291 "\t --hdr specify hdr type, default is hdr off\n"
292 "\t select from [rgb, lab]\n"
293 "\t --tnr specify temporal noise reduction type, default is tnr off\n"
294 "\t select from [rgb, yuv, both]\n"
295 "\t --tnr-level specify tnr level\n"
Yinhang Liub92930c2015-06-23 16:26:35 +0800296 "\t --bilateral enable bilateral noise reduction\n"
Yinhang Liu81c44e02015-06-03 15:47:48 +0800297 "\t --enable-snr enable simple noise reduction\n"
Jia Meng66efecf2015-06-17 11:11:10 +0000298 "\t --enable-ee enable YEENR\n"
ShincyTu63e2c262015-06-26 10:52:51 +0800299 "\t --enable-bnr enable bayer noise reduction\n"
Yinhang Liue26b2622015-07-21 18:32:36 +0800300 "\t --enable-dpc enable defect pixel correction\n"
yaowang16e051152015-08-14 13:49:03 +0800301 "\t --enable-tonemapping enable tonemapping\n"
Wangfei1487b9b2015-08-28 15:10:39 +0800302 "\t --pipeline pipe mode\n"
Wangfei16b65db2015-09-11 14:44:28 +0800303 "\t select from [basic, advance, extreme], default is [basic]\n"
Yinhang Liue26b2622015-07-21 18:32:36 +0800304 "(e.g.: xxxx --hdr=xx --tnr=xx --tnr-level=xx --bilateral --enable-snr --enable-ee --enable-bnr --enable-dpc)\n\n"
Yinhang Liuc2f19082015-08-28 12:27:48 +0800305#endif
Wind Yuan75564b12015-01-15 06:51:15 -0500306 , bin_name
307 , DEFAULT_SAVE_FILE_NAME);
308}
309
310int main (int argc, char *argv[])
311{
312 XCamReturn ret = XCAM_RETURN_NO_ERROR;
313 SmartPtr<MainDeviceManager> device_manager = new MainDeviceManager;
314 SmartPtr<V4l2Device> device;
315 SmartPtr<V4l2SubDevice> event_device;
316 SmartPtr<IspController> isp_controller;
317 SmartPtr<X3aAnalyzer> analyzer;
zongwave03954a32015-09-22 15:40:44 +0800318 SmartPtr<X3aAnalyzerLoader> loader;
Jia Meng9724cfe2015-08-12 15:04:45 +0800319 const char *path_of_3a;
Wind Yuane4ba0c92015-03-26 16:59:06 +0800320 SmartPtr<ImageProcessor> isp_processor;
Yinhang Liuc2f19082015-08-28 12:27:48 +0800321#if HAVE_LIBCL
wangfeicf4c4e72015-05-25 17:11:41 +0800322 SmartPtr<CLCscImageProcessor> cl_csc_proccessor;
Yinhang Liuc2f19082015-08-28 12:27:48 +0800323#endif
Wind Yuan26e9e212015-04-16 15:55:45 +0800324 AnalyzerType analyzer_type = AnalyzerTypeSimple;
wangfeicf4c4e72015-05-25 17:11:41 +0800325 DrmDisplayMode display_mode = DRM_DISPLAY_MODE_PRIMARY;
Wind Yuane4ba0c92015-03-26 16:59:06 +0800326#if HAVE_LIBDRM
327 SmartPtr<DrmDisplay> drm_disp = DrmDisplay::instance();
328#endif
329
Wind Yuand4427312015-02-11 16:09:00 +0800330#if HAVE_LIBCL
Wind Yuane4ba0c92015-03-26 16:59:06 +0800331 SmartPtr<CL3aImageProcessor> cl_processor;
Yinhang Liuc2f19082015-08-28 12:27:48 +0800332 uint32_t hdr_type = CL_HDR_DISABLE;
333 uint32_t tnr_type = CL_TNR_DISABLE;
334 uint32_t denoise_type = 0;
335 uint8_t tnr_level = 0;
336 bool dpc_type = false;
Wangfei1487b9b2015-08-28 15:10:39 +0800337 CL3aImageProcessor::PipelineProfile pipeline_mode = CL3aImageProcessor::BasicPipelineProfile;
wujunkai166a84ba052015-09-08 15:54:12 +0800338 CL3aImageProcessor::CaptureStage capture_stage = CL3aImageProcessor::TonemappingStage;
Wind Yuand4427312015-02-11 16:09:00 +0800339#endif
340 bool have_cl_processor = false;
Wind Yuane4ba0c92015-03-26 16:59:06 +0800341 bool need_display = false;
Wind Yuand4427312015-02-11 16:09:00 +0800342 enum v4l2_memory v4l2_mem_type = V4L2_MEMORY_MMAP;
Wind Yuan75564b12015-01-15 06:51:15 -0500343 const char *bin_name = argv[0];
344 int opt;
ShincyTu2808b592015-03-13 17:17:25 +0800345 uint32_t capture_mode = V4L2_CAPTURE_MODE_VIDEO;
346 uint32_t pixel_format = V4L2_PIX_FMT_NV12;
yaowang16e051152015-08-14 13:49:03 +0800347 bool tonemapping_type = false;
yaowang1a5f12122015-07-27 14:53:38 +0800348 int32_t brightness_level = 128;
Sameer Kibey7b429292015-08-07 10:55:38 -0700349 bool have_usbcam = 0;
350 char* usb_device_name = NULL;
Jia Meng8f94a102015-08-11 16:24:19 +0800351 bool sync_mode = false;
Jia Meng757f3c92015-09-09 11:18:36 +0800352 int frame_rate;
Wind Yuan75564b12015-01-15 06:51:15 -0500353
yaowang1a5f12122015-07-27 14:53:38 +0800354 const char *short_opts = "sca:n:m:f:d:b:pi:e:h";
Yinhang Liu81c44e02015-06-03 15:47:48 +0800355 const struct option long_opts[] = {
356 {"hdr", required_argument, NULL, 'H'},
357 {"tnr", required_argument, NULL, 'T'},
358 {"tnr-level", required_argument, NULL, 'L'},
Yinhang Liub92930c2015-06-23 16:26:35 +0800359 {"bilateral", no_argument, NULL, 'I'},
Yinhang Liu81c44e02015-06-03 15:47:48 +0800360 {"enable-snr", no_argument, NULL, 'S'},
Jia Meng66efecf2015-06-17 11:11:10 +0000361 {"enable-ee", no_argument, NULL, 'E'},
ShincyTu63e2c262015-06-26 10:52:51 +0800362 {"enable-bnr", no_argument, NULL, 'B'},
Yinhang Liue26b2622015-07-21 18:32:36 +0800363 {"enable-dpc", no_argument, NULL, 'D'},
yaowang16e051152015-08-14 13:49:03 +0800364 {"enable-tonemapping", no_argument, NULL, 'M'},
Sameer Kibey7b429292015-08-07 10:55:38 -0700365 {"usb", required_argument, NULL, 'U'},
Jia Meng8f94a102015-08-11 16:24:19 +0800366 {"sync", no_argument, NULL, 'Y'},
wujunkai166a84ba052015-09-08 15:54:12 +0800367 {"capture", required_argument, NULL, 'C'},
Wangfei1487b9b2015-08-28 15:10:39 +0800368 {"pipeline", required_argument, NULL, 'P'},
Yinhang Liu81c44e02015-06-03 15:47:48 +0800369 {0, 0, 0, 0},
370 };
371
372 while ((opt = getopt_long(argc, argv, short_opts, long_opts, NULL)) != -1) {
Wind Yuan75564b12015-01-15 06:51:15 -0500373 switch (opt) {
374 case 'a': {
Wind Yuane25ce3f2015-05-04 18:07:29 +0800375 if (!strcmp (optarg, "dynamic"))
376 analyzer_type = AnalyzerTypeDynamic;
377 else if (!strcmp (optarg, "simple"))
Wind Yuan26e9e212015-04-16 15:55:45 +0800378 analyzer_type = AnalyzerTypeSimple;
Wind Yuan75564b12015-01-15 06:51:15 -0500379#if HAVE_IA_AIQ
380 else if (!strcmp (optarg, "aiq"))
Wind Yuan26e9e212015-04-16 15:55:45 +0800381 analyzer_type = AnalyzerTypeAiq;
Jia Meng9724cfe2015-08-12 15:04:45 +0800382 else if (!strcmp (optarg, "hybrid"))
383 analyzer_type = AnalyzerTypeHybrid;
Wind Yuan75564b12015-01-15 06:51:15 -0500384#endif
385 else {
386 print_help (bin_name);
387 return -1;
388 }
389 break;
390 }
391
Wind Yuand4427312015-02-11 16:09:00 +0800392 case 'm': {
393 if (!strcmp (optarg, "dma"))
394 v4l2_mem_type = V4L2_MEMORY_DMABUF;
395 else if (!strcmp (optarg, "mmap"))
396 v4l2_mem_type = V4L2_MEMORY_MMAP;
397 else
398 print_help (bin_name);
399 break;
400 }
401
Wind Yuan75564b12015-01-15 06:51:15 -0500402 case 's':
403 device_manager->enable_save_file (true);
404 break;
405 case 'n':
406 device_manager->set_interval (atoi(optarg));
407 break;
Yinhang Liuc2f19082015-08-28 12:27:48 +0800408#if HAVE_LIBCL
Wind Yuand4427312015-02-11 16:09:00 +0800409 case 'c':
410 have_cl_processor = true;
411 break;
Yinhang Liuc2f19082015-08-28 12:27:48 +0800412#endif
ShincyTu2808b592015-03-13 17:17:25 +0800413 case 'f':
ShincyTuc8466402015-03-31 11:03:39 +0800414 CHECK_EXP ((strlen(optarg) == 4), "invalid pixel format\n");
415 pixel_format = v4l2_fourcc ((unsigned)optarg[0],
416 (unsigned)optarg[1],
417 (unsigned)optarg[2],
418 (unsigned)optarg[3]);
ShincyTu2808b592015-03-13 17:17:25 +0800419 break;
420 case 'd':
421 if (!strcmp (optarg, "still"))
422 capture_mode = V4L2_CAPTURE_MODE_STILL;
423 else if (!strcmp (optarg, "video"))
424 capture_mode = V4L2_CAPTURE_MODE_VIDEO;
425 else {
426 print_help (bin_name);
427 return -1;
428 }
429 break;
yaowang1a5f12122015-07-27 14:53:38 +0800430 case 'b':
431 brightness_level = atoi(optarg);
432 if(brightness_level < 0 || brightness_level > 256) {
433 print_help (bin_name);
434 return -1;
435 }
436 break;
Wind Yuane4ba0c92015-03-26 16:59:06 +0800437 case 'p':
438 need_display = true;
439 break;
Sameer Kibey7b429292015-08-07 10:55:38 -0700440 case 'U':
441 have_usbcam = true;
442 usb_device_name = strdup(optarg);
443 XCAM_LOG_DEBUG("using USB camera plugged in at node: %s", usb_device_name);
444 break;
wangfeicf4c4e72015-05-25 17:11:41 +0800445 case 'e': {
446 if (!strcmp (optarg, "primary"))
447 display_mode = DRM_DISPLAY_MODE_PRIMARY;
448 else if (!strcmp (optarg, "overlay"))
449 display_mode = DRM_DISPLAY_MODE_OVERLAY;
450 else {
451 print_help (bin_name);
452 return -1;
453 }
454 break;
455 }
ShincyTue521cf92015-03-27 15:13:51 +0800456 case 'i':
457 device_manager->set_frame_save(atoi(optarg));
458 break;
Jia Meng8f94a102015-08-11 16:24:19 +0800459 case 'Y':
460 sync_mode = true;
461 break;
Yinhang Liuc2f19082015-08-28 12:27:48 +0800462#if HAVE_LIBCL
Yinhang Liu81c44e02015-06-03 15:47:48 +0800463 case 'H': {
464 if (!strcasecmp (optarg, "rgb"))
465 hdr_type = CL_HDR_TYPE_RGB;
466 else if (!strcasecmp (optarg, "lab"))
467 hdr_type = CL_HDR_TYPE_LAB;
468 else {
469 print_help (bin_name);
470 return -1;
471 }
472 break;
473 }
Yinhang Liub92930c2015-06-23 16:26:35 +0800474 case 'I': {
Jia Meng66efecf2015-06-17 11:11:10 +0000475 denoise_type |= XCAM_DENOISE_TYPE_BILATERAL;
Juan Zhaod9664932015-09-08 10:22:19 +0800476 denoise_type |= XCAM_DENOISE_TYPE_BIYUV;
Yinhang Liu81c44e02015-06-03 15:47:48 +0800477 break;
478 }
479 case 'S': {
Jia Meng66efecf2015-06-17 11:11:10 +0000480 denoise_type |= XCAM_DENOISE_TYPE_SIMPLE;
481 break;
482 }
483 case 'E': {
484 denoise_type |= XCAM_DENOISE_TYPE_EE;
Yinhang Liu81c44e02015-06-03 15:47:48 +0800485 break;
486 }
ShincyTu63e2c262015-06-26 10:52:51 +0800487 case 'B': {
488 denoise_type |= XCAM_DENOISE_TYPE_BNR;
489 break;
490 }
Yinhang Liue26b2622015-07-21 18:32:36 +0800491 case 'D': {
492 dpc_type = true;
493 break;
494 }
Yinhang Liu81c44e02015-06-03 15:47:48 +0800495 case 'T': {
496 if (!strcasecmp (optarg, "yuv"))
497 tnr_type = CL_TNR_TYPE_YUV;
498 else if (!strcasecmp (optarg, "rgb"))
499 tnr_type = CL_TNR_TYPE_RGB;
500 else if (!strcasecmp (optarg, "both"))
501 tnr_type = CL_TNR_TYPE_YUV | CL_TNR_TYPE_RGB;
502 else {
503 print_help (bin_name);
504 return -1;
505 }
506 break;
507 }
508 case 'L': {
509 if (atoi(optarg) < 0 || atoi(optarg) > 255) {
510 print_help (bin_name);
511 return -1;
512 }
513 tnr_level = atoi(optarg);
514 break;
515 }
yaowang16e051152015-08-14 13:49:03 +0800516 case 'M': {
517 tonemapping_type = true;
518 break;
519 }
Wangfei1487b9b2015-08-28 15:10:39 +0800520 case 'P': {
521 if (!strcasecmp (optarg, "basic"))
522 pipeline_mode = CL3aImageProcessor::BasicPipelineProfile;
523 else if (!strcasecmp (optarg, "advance"))
524 pipeline_mode = CL3aImageProcessor::AdvancedPipelineProfile;
Wangfei16b65db2015-09-11 14:44:28 +0800525 else if (!strcasecmp (optarg, "extreme"))
526 pipeline_mode = CL3aImageProcessor::ExtremePipelineProfile;
Wangfei1487b9b2015-08-28 15:10:39 +0800527 else {
528 print_help (bin_name);
529 return -1;
530 }
531 break;
532 }
wujunkai166a84ba052015-09-08 15:54:12 +0800533 case 'C': {
534 if (!strcmp (optarg, "bayer"))
535 capture_stage = CL3aImageProcessor::BasicbayerStage;
536 break;
537 }
Yinhang Liuc2f19082015-08-28 12:27:48 +0800538#endif
Wind Yuan75564b12015-01-15 06:51:15 -0500539 case 'h':
540 print_help (bin_name);
541 return 0;
542
543 default:
544 print_help (bin_name);
545 return -1;
546 }
547 }
548
wangfeicf4c4e72015-05-25 17:11:41 +0800549 if (need_display) {
Wind Yuan683f8662015-03-27 18:52:38 +0800550 device_manager->enable_display (true);
wangfeicf4c4e72015-05-25 17:11:41 +0800551 device_manager->set_display_mode (display_mode);
552 }
ShincyTu2808b592015-03-13 17:17:25 +0800553 if (!device.ptr ()) {
Sameer Kibey7b429292015-08-07 10:55:38 -0700554 if (have_usbcam) {
555 device = new UVCDevice (usb_device_name);
556 } else {
557 if (capture_mode == V4L2_CAPTURE_MODE_STILL)
558 device = new AtomispDevice (CAPTURE_DEVICE_STILL);
559 else if (capture_mode == V4L2_CAPTURE_MODE_VIDEO)
560 device = new AtomispDevice (CAPTURE_DEVICE_VIDEO);
561 else
562 device = new AtomispDevice (DEFAULT_CAPTURE_DEVICE);
563 }
ShincyTu2808b592015-03-13 17:17:25 +0800564 }
Wind Yuan75564b12015-01-15 06:51:15 -0500565 if (!event_device.ptr ())
566 event_device = new V4l2SubDevice (DEFAULT_EVENT_DEVICE);
567 if (!isp_controller.ptr ())
568 isp_controller = new IspController (device);
Wind Yuan26e9e212015-04-16 15:55:45 +0800569
570 switch (analyzer_type) {
Wind Yuan3d1d15e2015-04-16 17:40:47 +0800571 case AnalyzerTypeSimple:
572 analyzer = new X3aAnalyzerSimple ();
573 break;
Wind Yuan26e9e212015-04-16 15:55:45 +0800574#if HAVE_IA_AIQ
Wind Yuan3d1d15e2015-04-16 17:40:47 +0800575 case AnalyzerTypeAiq:
576 analyzer = new X3aAnalyzerAiq (isp_controller, DEFAULT_CPF_FILE);
577 break;
Jia Meng9724cfe2015-08-12 15:04:45 +0800578 case AnalyzerTypeHybrid: {
Jia Mengc54c3322015-08-26 09:45:18 +0800579 path_of_3a = DEFAULT_HYBRID_3A_LIB;
zongwave03954a32015-09-22 15:40:44 +0800580 loader = new X3aAnalyzerLoader (path_of_3a);
Jia Meng9724cfe2015-08-12 15:04:45 +0800581 analyzer = loader->load_hybrid_analyzer (loader, isp_controller, DEFAULT_CPF_FILE);
582 CHECK_EXP (analyzer.ptr (), "load hybrid 3a lib(%s) failed", path_of_3a);
583 break;
584 }
Wind Yuan26e9e212015-04-16 15:55:45 +0800585#endif
Wind Yuane25ce3f2015-05-04 18:07:29 +0800586 case AnalyzerTypeDynamic: {
Jia Meng9724cfe2015-08-12 15:04:45 +0800587 path_of_3a = DEFAULT_DYNAMIC_3A_LIB;
zongwave03954a32015-09-22 15:40:44 +0800588 loader = new X3aAnalyzerLoader (path_of_3a);
Jia Meng9724cfe2015-08-12 15:04:45 +0800589 analyzer = loader->load_dynamic_analyzer (loader);
Wind Yuane25ce3f2015-05-04 18:07:29 +0800590 CHECK_EXP (analyzer.ptr (), "load dynamic 3a lib(%s) failed", path_of_3a);
591 break;
592 }
Wind Yuan3d1d15e2015-04-16 17:40:47 +0800593 default:
594 print_help (bin_name);
595 return -1;
Wind Yuan26e9e212015-04-16 15:55:45 +0800596 }
Jia Meng8f94a102015-08-11 16:24:19 +0800597 XCAM_ASSERT (analyzer.ptr ());
598 analyzer->set_sync_mode (sync_mode);
Wind Yuan75564b12015-01-15 06:51:15 -0500599
600 signal(SIGINT, dev_stop_handler);
601
602 device->set_sensor_id (0);
ShincyTu2808b592015-03-13 17:17:25 +0800603 device->set_capture_mode (capture_mode);
Wind Yuan75564b12015-01-15 06:51:15 -0500604 //device->set_mem_type (V4L2_MEMORY_DMABUF);
Wind Yuand4427312015-02-11 16:09:00 +0800605 device->set_mem_type (v4l2_mem_type);
Wind Yuan75564b12015-01-15 06:51:15 -0500606 device->set_buffer_count (8);
Jia Meng757f3c92015-09-09 11:18:36 +0800607 if (pixel_format == V4L2_PIX_FMT_SGRBG12) {
608 frame_rate = 30;
609 device->set_framerate (frame_rate, 1);
610 }
611 else {
612 frame_rate = 25;
613 device->set_framerate (frame_rate, 1);
614 }
Wind Yuan75564b12015-01-15 06:51:15 -0500615 ret = device->open ();
616 CHECK (ret, "device(%s) open failed", device->get_device_name());
ShincyTu2808b592015-03-13 17:17:25 +0800617 ret = device->set_format (1920, 1080, pixel_format, V4L2_FIELD_NONE, 1920 * 2);
Wind Yuan75564b12015-01-15 06:51:15 -0500618 CHECK (ret, "device(%s) set format failed", device->get_device_name());
619
620 ret = event_device->open ();
Wind Yuanb67045c2015-08-27 13:50:53 +0800621 if (ret == XCAM_RETURN_NO_ERROR) {
622 CHECK (ret, "event device(%s) open failed", event_device->get_device_name());
623 int event = V4L2_EVENT_ATOMISP_3A_STATS_READY;
624 ret = event_device->subscribe_event (event);
625 CHECK_CONTINUE (
626 ret,
627 "device(%s) subscribe event(%d) failed",
628 event_device->get_device_name(), event);
629 event = V4L2_EVENT_FRAME_SYNC;
630 ret = event_device->subscribe_event (event);
631 CHECK_CONTINUE (
632 ret,
633 "device(%s) subscribe event(%d) failed",
634 event_device->get_device_name(), event);
635
636 device_manager->set_event_device (event_device);
637 }
Wind Yuan75564b12015-01-15 06:51:15 -0500638
639 device_manager->set_capture_device (device);
Wind Yuan75564b12015-01-15 06:51:15 -0500640 device_manager->set_isp_controller (isp_controller);
641 if (analyzer.ptr())
zongwave03954a32015-09-22 15:40:44 +0800642 device_manager->set_3a_analyzer (analyzer);
Wind Yuan3d1d15e2015-04-16 17:40:47 +0800643
644 if (have_cl_processor)
645 isp_processor = new IspExposureImageProcessor (isp_controller);
646 else
647 isp_processor = new IspImageProcessor (isp_controller);
648
649 XCAM_ASSERT (isp_processor.ptr ());
Wind Yuane4ba0c92015-03-26 16:59:06 +0800650 device_manager->add_image_processor (isp_processor);
Yinhang Liuc2f19082015-08-28 12:27:48 +0800651#if HAVE_LIBCL
wangfeicf4c4e72015-05-25 17:11:41 +0800652 if ((display_mode == DRM_DISPLAY_MODE_PRIMARY) && need_display && (!have_cl_processor)) {
653 cl_csc_proccessor = new CLCscImageProcessor();
654 XCAM_ASSERT (cl_csc_proccessor.ptr ());
655 device_manager->add_image_processor (cl_csc_proccessor);
656 }
Wind Yuan3d1d15e2015-04-16 17:40:47 +0800657
Wind Yuand4427312015-02-11 16:09:00 +0800658 if (have_cl_processor) {
Wind Yuane4ba0c92015-03-26 16:59:06 +0800659 cl_processor = new CL3aImageProcessor ();
Wind Yuan7ddf2602015-04-14 18:49:45 +0800660 cl_processor->set_stats_callback(device_manager);
Yinhang Liue26b2622015-07-21 18:32:36 +0800661 cl_processor->set_dpc(dpc_type);
Yinhang Liu81c44e02015-06-03 15:47:48 +0800662 cl_processor->set_hdr (hdr_type);
Jia Meng66efecf2015-06-17 11:11:10 +0000663 cl_processor->set_denoise (denoise_type);
yaowang16e051152015-08-14 13:49:03 +0800664 cl_processor->set_tonemapping(tonemapping_type);
wujunkai166a84ba052015-09-08 15:54:12 +0800665 cl_processor->set_capture_stage (capture_stage);
Wind Yuane4ba0c92015-03-26 16:59:06 +0800666 if (need_display) {
667 cl_processor->set_output_format (V4L2_PIX_FMT_XBGR32);
668 }
Yinhang Liu81c44e02015-06-03 15:47:48 +0800669 cl_processor->set_tnr (tnr_type, tnr_level);
Wangfei1487b9b2015-08-28 15:10:39 +0800670 cl_processor->set_profile (pipeline_mode);
yaowang1a5f12122015-07-27 14:53:38 +0800671 analyzer->set_parameter_brightness((brightness_level - 128) / 128.0);
Wind Yuand4427312015-02-11 16:09:00 +0800672 device_manager->add_image_processor (cl_processor);
673 }
674#endif
Wind Yuane4ba0c92015-03-26 16:59:06 +0800675
Wind Yuan75564b12015-01-15 06:51:15 -0500676 ret = device_manager->start ();
677 CHECK (ret, "device manager start failed");
678
Jia Meng757f3c92015-09-09 11:18:36 +0800679 // hard code exposure range and max gain for imx185 WDR
680 if (pixel_format == V4L2_PIX_FMT_SGRBG12) {
681 if (frame_rate == 30)
682 analyzer->set_ae_exposure_time_range (80 * 1110 * 1000 / 37125, 1120 * 1110 * 1000 / 37125);
683 else
684 analyzer->set_ae_exposure_time_range (80 * 1125 * 1000 / 37125, 1120 * 1125 * 1000 / 37125);
685 analyzer->set_ae_max_analog_gain (3.98); // 12dB
686 }
687
Wind Yuan75564b12015-01-15 06:51:15 -0500688 // wait for interruption
689 {
690 SmartLock locker (g_mutex);
691 while (!g_stop)
692 g_cond.wait (g_mutex);
693 }
694
695 ret = device_manager->stop();
696 CHECK_CONTINUE (ret, "device manager stop failed");
697 device->close ();
698 event_device->close ();
699
700 return 0;
701}