4 * Copyright (C) 1997-2011 Adam Williams <broadcast at earthling dot net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "bcdisplayinfo.h"
29 #include "loadbalance.h"
31 #include "pluginvclient.h"
33 #include "scopewindow.h"
45 class VideoScopeEffect;
46 class VideoScopeEngine;
47 class VideoScopeWindow;
49 class VideoScopeConfig
55 class VideoScopeWindow : public ScopeGUI
58 VideoScopeWindow(VideoScopeEffect *plugin);
61 void create_objects();
63 int resize_event(int w, int h);
66 VideoScopeEffect *plugin;
73 class VideoScopePackage : public LoadPackage
81 class VideoScopeUnit : public LoadClient
84 VideoScopeUnit(VideoScopeEffect *plugin, VideoScopeEngine *server);
85 void process_package(LoadPackage *package);
86 VideoScopeEffect *plugin;
89 class VideoScopeEngine : public LoadServer
92 VideoScopeEngine(VideoScopeEffect *plugin, int cpus);
95 LoadClient* new_client();
96 LoadPackage* new_package();
97 VideoScopeEffect *plugin;
100 class VideoScopeEffect : public PluginVClient
103 VideoScopeEffect(PluginServer *server);
107 PLUGIN_CLASS_MEMBERS2(VideoScopeConfig)
108 int process_realtime(VFrame *input, VFrame *output);
110 void render_gui(void *input);
111 void save_data(KeyFrame *keyframe);
112 void read_data(KeyFrame *keyframe);
114 int use_hist, use_wave, use_vector;
115 int use_hist_parade, use_wave_parade;
133 VideoScopeConfig::VideoScopeConfig()
148 VideoScopeWindow::VideoScopeWindow(VideoScopeEffect *plugin)
153 this->plugin = plugin;
156 VideoScopeWindow::~VideoScopeWindow()
160 void VideoScopeWindow::create_objects()
162 use_hist = plugin->use_hist;
163 use_wave = plugin->use_wave;
164 use_vector = plugin->use_vector;
165 use_hist_parade = plugin->use_hist_parade;
166 use_wave_parade = plugin->use_wave_parade;
167 ScopeGUI::create_objects();
170 void VideoScopeWindow::toggle_event()
172 plugin->use_hist = use_hist;
173 plugin->use_wave = use_wave;
174 plugin->use_vector = use_vector;
175 plugin->use_hist_parade = use_hist_parade;
176 plugin->use_wave_parade = use_wave_parade;
178 plugin->send_configure_change();
182 int VideoScopeWindow::resize_event(int w, int h)
184 ScopeGUI::resize_event(w, h);
188 plugin->send_configure_change();
211 REGISTER_PLUGIN(VideoScopeEffect)
218 VideoScopeEffect::VideoScopeEffect(PluginServer *server)
219 : PluginVClient(server)
230 VideoScopeEffect::~VideoScopeEffect()
238 const char* VideoScopeEffect::plugin_title() { return N_("VideoScope"); }
239 int VideoScopeEffect::is_realtime() { return 1; }
241 int VideoScopeEffect::load_configuration()
246 void VideoScopeEffect::save_data(KeyFrame *keyframe)
250 // cause data to be stored directly in text
251 output.set_shared_output(keyframe->get_data(), MESSAGESIZE);
252 output.tag.set_title("VIDEOSCOPE");
257 output.tag.set_property("W", w);
258 output.tag.set_property("H", h);
259 output.tag.set_property("USE_HIST", use_hist);
260 output.tag.set_property("USE_WAVE", use_wave);
261 output.tag.set_property("USE_VECTOR", use_vector);
262 output.tag.set_property("USE_HIST_PARADE", use_hist_parade);
263 output.tag.set_property("USE_WAVE_PARADE", use_wave_parade);
267 output.tag.set_title("/VIDEOSCOPE");
269 output.append_newline();
270 output.terminate_string();
273 void VideoScopeEffect::read_data(KeyFrame *keyframe)
276 input.set_shared_input(keyframe->get_data(), strlen(keyframe->get_data()));
283 result = input.read_tag();
287 if(input.tag.title_is("VIDEOSCOPE"))
291 w = input.tag.get_property("W", w);
292 h = input.tag.get_property("H", h);
293 use_hist = input.tag.get_property("USE_HIST", use_hist);
294 use_wave = input.tag.get_property("USE_WAVE", use_wave);
295 use_vector = input.tag.get_property("USE_VECTOR", use_vector);
296 use_hist_parade = input.tag.get_property("USE_HIST_PARADE", use_hist_parade);
297 use_wave_parade = input.tag.get_property("USE_WAVE_PARADE", use_wave_parade);
307 NEW_WINDOW_MACRO(VideoScopeEffect, VideoScopeWindow)
310 int VideoScopeEffect::process_realtime(VFrame *input, VFrame *output)
313 send_render_gui(input);
314 //printf("VideoScopeEffect::process_realtime 1\n");
315 if(input->get_rows()[0] != output->get_rows()[0])
316 output->copy_from(input);
320 void VideoScopeEffect::render_gui(void *input)
324 VideoScopeWindow *window = ((VideoScopeWindow*)thread->window);
325 window->lock_window();
327 //printf("VideoScopeEffect::process_realtime 1\n");
328 this->input = (VFrame*)input;
329 //printf("VideoScopeEffect::process_realtime 1\n");
330 window->process(this->input);
333 window->unlock_window();
341 VideoScopePackage::VideoScopePackage()
351 VideoScopeUnit::VideoScopeUnit(VideoScopeEffect *plugin,
352 VideoScopeEngine *server)
355 this->plugin = plugin;
359 #define INTENSITY(p) ((unsigned int)(((p)[0]) * 77+ \
364 static void draw_point(unsigned char **rows,
376 unsigned char *pixel = rows[y] + x * 4;
386 unsigned char *pixel = rows[y] + x * 2;
387 pixel[0] = (r & 0xf8) | (g >> 5);
388 pixel[1] = ((g & 0xfc) << 5) | (b >> 3);
400 #define VIDEOSCOPE(type, temp_type, max, components, use_yuv) \
402 for(int i = pkg->row1; i < pkg->row2; i++) \
404 type *in_row = (type*)plugin->input->get_rows()[i]; \
405 for(int j = 0; j < w; j++) \
407 type *in_pixel = in_row + j * components; \
410 /* Analyze pixel */ \
411 if(use_yuv) intensity = (float)*in_pixel / max; \
417 if(sizeof(type) == 2) \
419 YUV::yuv.yuv_to_rgb_16(r, g, b, \
420 in_pixel[0], in_pixel[1], in_pixel[2]); \
424 YUV::yuv.yuv_to_rgb_8(r, g, b, \
425 in_pixel[0], in_pixel[1], in_pixel[2]); \
435 HSV::rgb_to_hsv((float)r / max, \
442 /* Calculate waveform */ \
446 int x = j * waveform_w / w / 3; \
447 int y = waveform_h - (int)(((float)r / max - FLOAT_MIN) / \
448 (FLOAT_MAX - FLOAT_MIN) * \
450 if(x >= 0 && x < waveform_w / 3 && y >= 0 && y < waveform_h) \
451 draw_point(waveform_rows, \
460 x = waveform_w / 3 + j * waveform_w / w / 3; \
461 y = waveform_h - (int)(((float)g / max - FLOAT_MIN) / \
462 (FLOAT_MAX - FLOAT_MIN) * \
464 if(x >= waveform_w / 3 && x < waveform_w * 2 / 3 && \
465 y >= 0 && y < waveform_h) \
466 draw_point(waveform_rows, \
475 x = waveform_w * 2 / 3 + j * waveform_w / w / 3; \
476 y = waveform_h - (int)(((float)b / max - FLOAT_MIN) / \
477 (FLOAT_MAX - FLOAT_MIN) * \
479 if(x >= waveform_w * 2 / 3 && x < waveform_w && \
480 y >= 0 && y < waveform_h) \
481 draw_point(waveform_rows, \
491 if(!use_yuv) intensity = v; \
492 intensity = (intensity - FLOAT_MIN) / (FLOAT_MAX - FLOAT_MIN) * \
494 int y = waveform_h - (int)intensity; \
495 int x = j * waveform_w / w; \
496 if(x >= 0 && x < waveform_w && y >= 0 && y < waveform_h) \
497 draw_point(waveform_rows, \
506 /* Calculate vectorscope */ \
507 float adjacent = cos((h + 90) / 360 * 2 * M_PI); \
508 float opposite = sin((h + 90) / 360 * 2 * M_PI); \
509 int x = (int)(vector_w / 2 + \
510 adjacent * (s - FLOAT_MIN) / (FLOAT_MAX - FLOAT_MIN) * radius); \
512 int y = (int)(vector_h / 2 - \
513 opposite * (s - FLOAT_MIN) / (FLOAT_MAX - FLOAT_MIN) * radius); \
516 CLAMP(x, 0, vector_w - 1); \
517 CLAMP(y, 0, vector_h - 1); \
518 /* Get color with full saturation & value */ \
519 float r_f, g_f, b_f; \
520 HSV::hsv_to_rgb(r_f, \
526 r = (int)(r_f * 255); \
527 g = (int)(g_f * 255); \
528 b = (int)(b_f * 255); \
531 if(sizeof(type) == 4) \
533 r = CLIP(r, 0, 0xff); \
534 g = CLIP(g, 0, 0xff); \
535 b = CLIP(b, 0, 0xff); \
538 draw_point(vector_rows, \
550 void VideoScopeUnit::process_package(LoadPackage *package)
552 VideoScopeWindow *window = (VideoScopeWindow*)plugin->thread->window;
553 VideoScopePackage *pkg = (VideoScopePackage*)package;
554 int w = plugin->input->get_w();
555 // int h = plugin->input->get_h();
556 int waveform_h = window->wave_h;
557 int waveform_w = window->wave_w;
558 int waveform_cmodel = window->waveform_bitmap->get_color_model();
559 unsigned char **waveform_rows = window->waveform_bitmap->get_row_pointers();
560 int vector_h = window->vector_bitmap->get_h();
561 int vector_w = window->vector_bitmap->get_w();
562 int vector_cmodel = window->vector_bitmap->get_color_model();
563 unsigned char **vector_rows = window->vector_bitmap->get_row_pointers();
564 float radius = MIN(vector_w / 2, vector_h / 2);
567 switch(plugin->input->get_color_model())
570 VIDEOSCOPE(unsigned char, int, 0xff, 3, 0)
574 VIDEOSCOPE(float, float, 1, 3, 0)
578 VIDEOSCOPE(unsigned char, int, 0xff, 3, 1)
582 VIDEOSCOPE(uint16_t, int, 0xffff, 3, 0)
586 VIDEOSCOPE(uint16_t, int, 0xffff, 3, 1)
590 VIDEOSCOPE(unsigned char, int, 0xff, 4, 0)
594 VIDEOSCOPE(float, float, 1, 4, 0)
598 VIDEOSCOPE(unsigned char, int, 0xff, 4, 1)
601 case BC_RGBA16161616:
602 VIDEOSCOPE(uint16_t, int, 0xffff, 4, 0)
605 case BC_YUVA16161616:
606 VIDEOSCOPE(uint16_t, int, 0xffff, 4, 1)
616 VideoScopeEngine::VideoScopeEngine(VideoScopeEffect *plugin, int cpus)
617 : LoadServer(cpus, cpus)
619 this->plugin = plugin;
622 VideoScopeEngine::~VideoScopeEngine()
626 void VideoScopeEngine::init_packages()
628 for(int i = 0; i < LoadServer::get_total_packages(); i++)
630 VideoScopePackage *pkg = (VideoScopePackage*)get_package(i);
631 pkg->row1 = plugin->input->get_h() * i / LoadServer::get_total_packages();
632 pkg->row2 = plugin->input->get_h() * (i + 1) / LoadServer::get_total_packages();
637 LoadClient* VideoScopeEngine::new_client()
639 return new VideoScopeUnit(plugin, this);
642 LoadPackage* VideoScopeEngine::new_package()
644 return new VideoScopePackage;