]> git.sesse.net Git - casparcg/blob - modules/screen/consumer/screen_consumer.cpp
Use fast_memcpy in more places
[casparcg] / modules / screen / consumer / screen_consumer.cpp
1 /*
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG 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 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG 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.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Robert Nagy, ronag89@gmail.com
20 */
21
22 #include "screen_consumer.h"
23
24 #include <GL/glew.h>
25 #include <SFML/Window.hpp>
26
27 #include <common/diagnostics/graph.h>
28 #include <common/gl/gl_check.h>
29 #include <common/log.h>
30 #include <common/memory.h>
31 #include <common/array.h>
32 #include <common/memshfl.h>
33 #include <common/memcpy.h>
34 #include <common/utf.h>
35 #include <common/prec_timer.h>
36 #include <common/future.h>
37 #include <common/timer.h>
38 #include <common/param.h>
39 #include <common/os/general_protection_fault.h>
40 #include <common/scope_exit.h>
41
42 //#include <windows.h>
43
44 #include <ffmpeg/producer/filter/filter.h>
45
46 #include <core/video_format.h>
47 #include <core/frame/frame.h>
48 #include <core/consumer/frame_consumer.h>
49 #include <core/interaction/interaction_sink.h>
50 #include <core/help/help_sink.h>
51 #include <core/help/help_repository.h>
52
53 #include <boost/circular_buffer.hpp>
54 #include <boost/lexical_cast.hpp>
55 #include <boost/property_tree/ptree.hpp>
56 #include <boost/thread.hpp>
57 #include <boost/algorithm/string.hpp>
58
59 #include <tbb/atomic.h>
60 #include <tbb/concurrent_queue.h>
61 #include <tbb/parallel_for.h>
62
63 #include <asmlib.h>
64
65 #include <algorithm>
66 #include <vector>
67
68 #if defined(_MSC_VER)
69 #pragma warning (push)
70 #pragma warning (disable : 4244)
71 #endif
72 extern "C" 
73 {
74         #define __STDC_CONSTANT_MACROS
75         #define __STDC_LIMIT_MACROS
76         #include <libavcodec/avcodec.h>
77         #include <libavutil/imgutils.h>
78 }
79 #if defined(_MSC_VER)
80 #pragma warning (pop)
81 #endif
82
83 namespace caspar { namespace screen {
84                 
85 enum class stretch
86 {
87         none,
88         uniform,
89         fill,
90         uniform_to_fill
91 };
92
93 struct configuration
94 {
95         enum class aspect_ratio
96         {
97                 aspect_4_3 = 0,
98                 aspect_16_9,
99                 aspect_invalid,
100         };
101                 
102         std::wstring    name                            = L"Screen consumer";
103         int                             screen_index            = 0;
104         screen::stretch stretch                         = screen::stretch::fill;
105         bool                    windowed                        = true;
106         bool                    auto_deinterlace        = true;
107         bool                    key_only                        = false;
108         aspect_ratio    aspect                          = aspect_ratio::aspect_invalid;
109         bool                    vsync                           = true;
110         bool                    interactive                     = true;
111         bool                    borderless                      = false;
112 };
113
114 struct screen_consumer : boost::noncopyable
115 {
116         const configuration                                                                     config_;
117         core::video_format_desc                                                         format_desc_;
118         int                                                                                                     channel_index_;
119
120         GLuint                                                                                          texture_                = 0;
121         std::vector<GLuint>                                                                     pbos_                   = std::vector<GLuint> { 0, 0 };
122                         
123         float                                                                                           width_;
124         float                                                                                           height_;
125         int                                                                                                     screen_x_;
126         int                                                                                                     screen_y_;
127         int                                                                                                     screen_width_   = format_desc_.width;
128         int                                                                                                     screen_height_  = format_desc_.height;
129         int                                                                                                     square_width_   = format_desc_.square_width;
130         int                                                                                                     square_height_  = format_desc_.square_height;
131
132         sf::Window                                                                                      window_;
133         tbb::atomic<bool>                                                                       polling_event_;
134         std::int64_t                                                                            pts_;
135
136         spl::shared_ptr<diagnostics::graph>                                     graph_;
137         caspar::timer                                                                           perf_timer_;
138         caspar::timer                                                                           tick_timer_;
139
140         caspar::prec_timer                                                                      wait_timer_;
141
142         tbb::concurrent_bounded_queue<core::const_frame>        frame_buffer_;
143         core::interaction_sink*                                                         sink_;
144
145         boost::thread                                                                           thread_;
146         tbb::atomic<bool>                                                                       is_running_;
147         tbb::atomic<int64_t>                                                            current_presentation_age_;
148
149         ffmpeg::filter                                                                          filter_;
150 public:
151         screen_consumer(
152                         const configuration& config,
153                         const core::video_format_desc& format_desc,
154                         int channel_index,
155                         core::interaction_sink* sink) 
156                 : config_(config)
157                 , format_desc_(format_desc)
158                 , channel_index_(channel_index)
159                 , pts_(0)
160                 , sink_(sink)
161                 , filter_([&]() -> ffmpeg::filter
162                 {                       
163                         const auto sample_aspect_ratio = 
164                                 boost::rational<int>(
165                                         format_desc.square_width, 
166                                         format_desc.square_height) /
167                                 boost::rational<int>(
168                                         format_desc.width, 
169                                         format_desc.height);
170
171                         return ffmpeg::filter(
172                                 format_desc.width,
173                                 format_desc.height,
174                                 boost::rational<int>(format_desc.duration, format_desc.time_scale),
175                                 boost::rational<int>(format_desc.time_scale, format_desc.duration),
176                                 sample_aspect_ratio,
177                                 AV_PIX_FMT_BGRA,
178                                 { AV_PIX_FMT_BGRA },
179                                 format_desc.field_mode == core::field_mode::progressive || !config.auto_deinterlace ? "" : "format=pix_fmts=gbrp,YADIF=1:-1");
180                 }())
181         {               
182                 if (format_desc_.format == core::video_format::ntsc && config_.aspect == configuration::aspect_ratio::aspect_4_3)
183                 {
184                         // Use default values which are 4:3.
185                 }
186                 else
187                 {
188                         if (config_.aspect == configuration::aspect_ratio::aspect_16_9)
189                                 square_width_ = (format_desc.height*16)/9;
190                         else if (config_.aspect == configuration::aspect_ratio::aspect_4_3)
191                                 square_width_ = (format_desc.height*4)/3;
192                 }
193
194                 frame_buffer_.set_capacity(1);
195                 
196                 graph_->set_color("tick-time", diagnostics::color(0.0f, 0.6f, 0.9f));   
197                 graph_->set_color("frame-time", diagnostics::color(0.1f, 1.0f, 0.1f));
198                 graph_->set_color("dropped-frame", diagnostics::color(0.3f, 0.6f, 0.3f));
199                 graph_->set_text(print());
200                 diagnostics::register_graph(graph_);
201                                                                         
202                 /*DISPLAY_DEVICE d_device = {sizeof(d_device), 0};
203                 std::vector<DISPLAY_DEVICE> displayDevices;
204                 for(int n = 0; EnumDisplayDevices(NULL, n, &d_device, NULL); ++n)
205                         displayDevices.push_back(d_device);
206
207                 if(config_.screen_index >= displayDevices.size())
208                         CASPAR_LOG(warning) << print() << L" Invalid screen-index: " << config_.screen_index;
209                 
210                 DEVMODE devmode = {};
211                 if(!EnumDisplaySettings(displayDevices[config_.screen_index].DeviceName, ENUM_CURRENT_SETTINGS, &devmode))
212                         CASPAR_LOG(warning) << print() << L" Could not find display settings for screen-index: " << config_.screen_index;
213                 
214                 screen_x_               = devmode.dmPosition.x;
215                 screen_y_               = devmode.dmPosition.y;
216                 screen_width_   = config_.windowed ? square_width_ : devmode.dmPelsWidth;
217                 screen_height_  = config_.windowed ? square_height_ : devmode.dmPelsHeight;*/
218                 screen_x_               = 0;
219                 screen_y_               = 0;
220                 screen_width_   = square_width_;
221                 screen_height_  = square_height_;
222                 
223                 polling_event_ = false;
224                 is_running_ = true;
225                 current_presentation_age_ = 0;
226                 thread_ = boost::thread([this]{run();});
227         }
228         
229         ~screen_consumer()
230         {
231                 is_running_ = false;
232                 frame_buffer_.try_push(core::const_frame::empty());
233                 thread_.join();
234         }
235
236         void init()
237         {
238                 auto window_style = config_.borderless
239                         ? sf::Style::None
240                         : (config_.windowed
241                                 ? sf::Style::Resize | sf::Style::Close
242                                 : sf::Style::Fullscreen);
243                 window_.create(sf::VideoMode(screen_width_, screen_height_, 32), u8(print()), window_style);
244                 window_.setMouseCursorVisible(config_.interactive);
245                 window_.setPosition(sf::Vector2i(screen_x_, screen_y_));
246                 window_.setSize(sf::Vector2u(screen_width_, screen_height_));
247                 window_.setActive();
248                 
249                 if(!GLEW_VERSION_2_1 && glewInit() != GLEW_OK)
250                         CASPAR_THROW_EXCEPTION(gl::ogl_exception() << msg_info("Failed to initialize GLEW."));
251
252                 if(!GLEW_VERSION_2_1)
253                         CASPAR_THROW_EXCEPTION(not_supported() << msg_info("Missing OpenGL 2.1 support."));
254
255                 GL(glEnable(GL_TEXTURE_2D));
256                 GL(glDisable(GL_DEPTH_TEST));           
257                 GL(glClearColor(0.0, 0.0, 0.0, 0.0));
258                 GL(glViewport(0, 0, format_desc_.width, format_desc_.height));
259                 GL(glLoadIdentity());
260                                 
261                 calculate_aspect();
262                         
263                 GL(glGenTextures(1, &texture_));
264                 GL(glBindTexture(GL_TEXTURE_2D, texture_));
265                 GL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR));
266                 GL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR));
267                 GL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP));
268                 GL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP));
269                 GL(glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, format_desc_.width, format_desc_.height, 0, GL_BGRA, GL_UNSIGNED_BYTE, 0));
270                 GL(glBindTexture(GL_TEXTURE_2D, 0));
271                                         
272                 GL(glGenBuffers(2, pbos_.data()));
273                         
274                 glBindBufferARB(GL_PIXEL_UNPACK_BUFFER_ARB, pbos_[0]);
275                 glBufferDataARB(GL_PIXEL_UNPACK_BUFFER_ARB, format_desc_.size, 0, GL_STREAM_DRAW_ARB);
276                 glBindBufferARB(GL_PIXEL_UNPACK_BUFFER_ARB, pbos_[1]);
277                 glBufferDataARB(GL_PIXEL_UNPACK_BUFFER_ARB, format_desc_.size, 0, GL_STREAM_DRAW_ARB);
278                 glBindBufferARB(GL_PIXEL_UNPACK_BUFFER_ARB, 0);
279                 
280                 window_.setVerticalSyncEnabled(config_.vsync);
281
282                 if (config_.vsync)
283                 {
284                         CASPAR_LOG(info) << print() << " Enabled vsync.";
285                 }
286                 /*auto wglSwapIntervalEXT = reinterpret_cast<void(APIENTRY*)(int)>(wglGetProcAddress("wglSwapIntervalEXT"));
287                 if(wglSwapIntervalEXT)
288                 {
289                         if(config_.vsync)
290                         {
291                                 wglSwapIntervalEXT(1);
292                                 CASPAR_LOG(info) << print() << " Enabled vsync.";
293                         }
294                         else
295                                 wglSwapIntervalEXT(0);
296                 }*/
297         }
298
299         void uninit()
300         {               
301                 if(texture_)
302                         glDeleteTextures(1, &texture_);
303
304                 for (auto& pbo : pbos_)
305                 {
306                         if(pbo)
307                                 glDeleteBuffers(1, &pbo);
308                 }
309         }
310
311         void run()
312         {
313                 ensure_gpf_handler_installed_for_thread("screen-consumer-thread");
314
315                 try
316                 {
317                         init();
318
319                         while(is_running_)
320                         {                       
321                                 try
322                                 {
323                                         auto poll_event = [this](sf::Event& e)
324                                         {
325                                                 polling_event_ = true;
326                                                 CASPAR_SCOPE_EXIT
327                                                 {
328                                                         polling_event_ = false;
329                                                 };
330                                                 return window_.pollEvent(e);
331                                         };
332
333                                         sf::Event e;
334                                         while(poll_event(e))
335                                         {
336                                                 if (e.type == sf::Event::Resized)
337                                                         calculate_aspect();
338                                                 else if (e.type == sf::Event::Closed)
339                                                         is_running_ = false;
340                                                 else if (config_.interactive && sink_)
341                                                 {
342                                                         switch (e.type)
343                                                         {
344                                                         case sf::Event::MouseMoved:
345                                                                 {
346                                                                         auto& mouse_move = e.mouseMove;
347                                                                         sink_->on_interaction(spl::make_shared<core::mouse_move_event>(
348                                                                                         1,
349                                                                                         static_cast<double>(mouse_move.x) / screen_width_,
350                                                                                         static_cast<double>(mouse_move.y) / screen_height_));
351                                                                 }
352                                                                 break;
353                                                         case sf::Event::MouseButtonPressed:
354                                                         case sf::Event::MouseButtonReleased:
355                                                                 {
356                                                                         auto& mouse_button = e.mouseButton;
357                                                                         sink_->on_interaction(spl::make_shared<core::mouse_button_event>(
358                                                                                         1,
359                                                                                         static_cast<double>(mouse_button.x) / screen_width_,
360                                                                                         static_cast<double>(mouse_button.y) / screen_height_,
361                                                                                         static_cast<int>(mouse_button.button),
362                                                                                         e.type == sf::Event::MouseButtonPressed));
363                                                                 }
364                                                                 break;
365                                                         case sf::Event::MouseWheelMoved:
366                                                                 {
367                                                                         auto& wheel_moved = e.mouseWheel;
368                                                                         sink_->on_interaction(spl::make_shared<core::mouse_wheel_event>(
369                                                                                         1,
370                                                                                         static_cast<double>(wheel_moved.x) / screen_width_,
371                                                                                         static_cast<double>(wheel_moved.y) / screen_height_,
372                                                                                         wheel_moved.delta));
373                                                                 }
374                                                                 break;
375                                                         }
376                                                 }
377                                         }
378                         
379                                         core::const_frame frame;
380                                         frame_buffer_.pop(frame);
381
382                                         render_and_draw_frame(frame);
383                                         
384                                         /*perf_timer_.restart();
385                                         render(frame);
386                                         graph_->set_value("frame-time", perf_timer_.elapsed()*format_desc_.fps*0.5);    
387
388                                         window_.Display();*/
389
390                                         current_presentation_age_ = frame.get_age_millis();
391                                         graph_->set_value("tick-time", tick_timer_.elapsed()*format_desc_.fps*0.5);     
392                                         tick_timer_.restart();
393                                 }
394                                 catch(...)
395                                 {
396                                         CASPAR_LOG_CURRENT_EXCEPTION();
397                                         is_running_ = false;
398                                 }
399                         }
400
401                         uninit();
402                 }
403                 catch(...)
404                 {
405                         CASPAR_LOG_CURRENT_EXCEPTION();
406                 }
407         }
408
409         void try_sleep_almost_until_vblank()
410         {
411                 static const double THRESHOLD = 0.003;
412                 double threshold = config_.vsync ? THRESHOLD : 0.0;
413
414                 auto frame_time = 1.0 / (format_desc_.fps * format_desc_.field_count);
415
416                 wait_timer_.tick(frame_time - threshold);
417         }
418
419         void wait_for_vblank_and_display()
420         {
421                 try_sleep_almost_until_vblank();
422                 window_.display();
423                 // Make sure that the next tick measures the duration from this point in time.
424                 wait_timer_.tick(0.0);
425         }
426
427         spl::shared_ptr<AVFrame> get_av_frame()
428         {               
429                 spl::shared_ptr<AVFrame> av_frame(av_frame_alloc(), [](AVFrame* p) { av_frame_free(&p); });
430                 avcodec_get_frame_defaults(av_frame.get());
431                                                 
432                 av_frame->linesize[0]           = format_desc_.width*4;                 
433                 av_frame->format                        = PIX_FMT_BGRA;
434                 av_frame->width                         = format_desc_.width;
435                 av_frame->height                        = format_desc_.height;
436                 av_frame->interlaced_frame      = format_desc_.field_mode != core::field_mode::progressive;
437                 av_frame->top_field_first       = format_desc_.field_mode == core::field_mode::upper ? 1 : 0;
438                 av_frame->pts                           = pts_++;
439
440                 return av_frame;
441         }
442
443         void render_and_draw_frame(core::const_frame input_frame)
444         {
445                 if(static_cast<size_t>(input_frame.image_data().size()) != format_desc_.size)
446                         return;
447
448                 if(screen_width_ == 0 && screen_height_ == 0)
449                         return;
450                                         
451                 perf_timer_.restart();
452                 auto av_frame = get_av_frame();
453                 av_frame->data[0] = const_cast<uint8_t*>(input_frame.image_data().begin());
454
455                 filter_.push(av_frame);
456                 auto frame = filter_.poll();
457
458                 if (!frame)
459                         return;
460
461                 if (!filter_.is_double_rate())
462                 {
463                         render(spl::make_shared_ptr(frame));
464                         graph_->set_value("frame-time", perf_timer_.elapsed() * format_desc_.fps * 0.5);
465
466                         wait_for_vblank_and_display(); // progressive frame
467                 }
468                 else
469                 {
470                         render(spl::make_shared_ptr(frame));
471                         double perf_elapsed = perf_timer_.elapsed();
472
473                         wait_for_vblank_and_display(); // field1
474
475                         perf_timer_.restart();
476                         frame = filter_.poll();
477                         render(spl::make_shared_ptr(frame));
478                         perf_elapsed += perf_timer_.elapsed();
479                         graph_->set_value("frame-time", perf_elapsed * format_desc_.fps * 0.5);
480
481                         wait_for_vblank_and_display(); // field2
482                 }
483         }
484
485         void render(spl::shared_ptr<AVFrame> av_frame)
486         {
487                 GL(glBindTexture(GL_TEXTURE_2D, texture_));
488
489                 GL(glBindBuffer(GL_PIXEL_UNPACK_BUFFER, pbos_[0]));
490                 GL(glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, format_desc_.width, format_desc_.height, GL_BGRA, GL_UNSIGNED_BYTE, 0));
491
492                 GL(glBindBuffer(GL_PIXEL_UNPACK_BUFFER, pbos_[1]));
493                 GL(glBufferData(GL_PIXEL_UNPACK_BUFFER, format_desc_.size, 0, GL_STREAM_DRAW));
494
495                 auto ptr = reinterpret_cast<char*>(GL2(glMapBuffer(GL_PIXEL_UNPACK_BUFFER, GL_WRITE_ONLY)));
496                 if(ptr)
497                 {
498                         if(config_.key_only)
499                         {
500                                 tbb::parallel_for(tbb::blocked_range<int>(0, format_desc_.height), [&](const tbb::blocked_range<int>& r)
501                                 {
502                                         for(int n = r.begin(); n != r.end(); ++n)
503                                                 aligned_memshfl(ptr+n*format_desc_.width*4, av_frame->data[0]+n*av_frame->linesize[0], format_desc_.width*4, 0x0F0F0F0F, 0x0B0B0B0B, 0x07070707, 0x03030303);
504                                 });
505                         }
506                         else
507                         {
508                                 fast_memcpy(ptr, av_frame->data[0], format_desc_.size);
509                         }
510                         
511                         GL(glUnmapBuffer(GL_PIXEL_UNPACK_BUFFER)); // release the mapped buffer
512                 }
513
514                 GL(glBindBuffer(GL_PIXEL_UNPACK_BUFFER, 0));
515                                 
516                 GL(glClear(GL_COLOR_BUFFER_BIT));                       
517                 glBegin(GL_QUADS);
518                                 glTexCoord2f(0.0f,        1.0f);        glVertex2f(-width_, -height_);
519                                 glTexCoord2f(1.0f,        1.0f);        glVertex2f( width_, -height_);
520                                 glTexCoord2f(1.0f,        0.0f);        glVertex2f( width_,  height_);
521                                 glTexCoord2f(0.0f,        0.0f);        glVertex2f(-width_,  height_);
522                 glEnd();
523                 
524                 GL(glBindTexture(GL_TEXTURE_2D, 0));
525
526                 std::rotate(pbos_.begin(), pbos_.begin() + 1, pbos_.end());
527         }
528
529
530         std::future<bool> send(core::const_frame frame)
531         {
532                 if(!frame_buffer_.try_push(frame) && !polling_event_)
533                         graph_->set_tag(diagnostics::tag_severity::WARNING, "dropped-frame");
534
535                 return make_ready_future(is_running_.load());
536         }
537
538         std::wstring channel_and_format() const
539         {
540                 return L"[" + boost::lexical_cast<std::wstring>(channel_index_) + L"|" + format_desc_.name + L"]";
541         }
542
543         std::wstring print() const
544         {       
545                 return config_.name + L" " + channel_and_format();
546         }
547         
548         void calculate_aspect()
549         {
550                 if(config_.windowed)
551                 {
552                         screen_height_ = window_.getSize().y;
553                         screen_width_ = window_.getSize().x;
554                 }
555                 
556                 GL(glViewport(0, 0, screen_width_, screen_height_));
557
558                 std::pair<float, float> target_ratio = None();
559                 if (config_.stretch == screen::stretch::fill)
560                         target_ratio = Fill();
561                 else if (config_.stretch == screen::stretch::uniform)
562                         target_ratio = Uniform();
563                 else if (config_.stretch == screen::stretch::uniform_to_fill)
564                         target_ratio = UniformToFill();
565
566                 width_ = target_ratio.first;
567                 height_ = target_ratio.second;
568         }
569                 
570         std::pair<float, float> None()
571         {
572                 float width = static_cast<float>(square_width_)/static_cast<float>(screen_width_);
573                 float height = static_cast<float>(square_height_)/static_cast<float>(screen_height_);
574
575                 return std::make_pair(width, height);
576         }
577
578         std::pair<float, float> Uniform()
579         {
580                 float aspect = static_cast<float>(square_width_)/static_cast<float>(square_height_);
581                 float width = std::min(1.0f, static_cast<float>(screen_height_)*aspect/static_cast<float>(screen_width_));
582                 float height = static_cast<float>(screen_width_*width)/static_cast<float>(screen_height_*aspect);
583
584                 return std::make_pair(width, height);
585         }
586
587         std::pair<float, float> Fill()
588         {
589                 return std::make_pair(1.0f, 1.0f);
590         }
591
592         std::pair<float, float> UniformToFill()
593         {
594                 float wr = static_cast<float>(square_width_)/static_cast<float>(screen_width_);
595                 float hr = static_cast<float>(square_height_)/static_cast<float>(screen_height_);
596                 float r_inv = 1.0f/std::min(wr, hr);
597
598                 float width = wr*r_inv;
599                 float height = hr*r_inv;
600
601                 return std::make_pair(width, height);
602         }
603 };
604
605
606 struct screen_consumer_proxy : public core::frame_consumer
607 {
608         core::monitor::subject                          monitor_subject_;
609         const configuration                                     config_;
610         std::unique_ptr<screen_consumer>        consumer_;
611         core::interaction_sink*                         sink_;
612
613 public:
614
615         screen_consumer_proxy(const configuration& config, core::interaction_sink* sink)
616                 : config_(config)
617                 , sink_(sink)
618         {
619         }
620         
621         // frame_consumer
622
623         void initialize(const core::video_format_desc& format_desc, const core::audio_channel_layout&, int channel_index) override
624         {
625                 consumer_.reset();
626                 consumer_.reset(new screen_consumer(config_, format_desc, channel_index, sink_));
627         }
628
629         int64_t presentation_frame_age_millis() const override
630         {
631                 return consumer_ ? static_cast<int64_t>(consumer_->current_presentation_age_) : 0;
632         }
633
634         std::future<bool> send(core::const_frame frame) override
635         {
636                 return consumer_->send(frame);
637         }
638         
639         std::wstring print() const override
640         {
641                 return consumer_ ? consumer_->print() : L"[screen_consumer]";
642         }
643
644         std::wstring name() const override
645         {
646                 return L"screen";
647         }
648
649         boost::property_tree::wptree info() const override
650         {
651                 boost::property_tree::wptree info;
652                 info.add(L"type", L"screen");
653                 info.add(L"key-only", config_.key_only);
654                 info.add(L"windowed", config_.windowed);
655                 info.add(L"auto-deinterlace", config_.auto_deinterlace);
656                 info.add(L"vsync", config_.vsync);
657                 return info;
658         }
659
660         bool has_synchronization_clock() const override
661         {
662                 return false;
663         }
664         
665         int buffer_depth() const override
666         {
667                 return 1;
668         }
669
670         int index() const override
671         {
672                 return 600 + (config_.key_only ? 10 : 0) + config_.screen_index;
673         }
674
675         core::monitor::subject& monitor_output()
676         {
677                 return monitor_subject_;
678         }
679 };      
680
681 void describe_consumer(core::help_sink& sink, const core::help_repository& repo)
682 {
683         sink.short_description(L"Displays the contents of a channel on screen using OpenGL.");
684         sink.syntax(
685                         L"SCREEN "
686                         L"{[screen_index:int]|1} "
687                         L"{[fullscreen:FULLSCREEN]} "
688                         L"{[borderless:BORDERLESS]} "
689                         L"{[key_only:KEY_ONLY]} "
690                         L"{[non_interactive:NON_INTERACTIVE]} "
691                         L"{[no_auto_deinterlace:NO_AUTO_DEINTERLACE]} "
692                         L"{NAME [name:string]}");
693         sink.para()->text(L"Displays the contents of a channel on screen using OpenGL.");
694         sink.definitions()
695                 ->item(L"screen_index", L"Determines which screen the channel should be displayed on. Defaults to 1.")
696                 ->item(L"fullscreen", L"If specified opens the window in fullscreen.")
697                 ->item(L"borderless", L"Makes the window appear without any window decorations.")
698                 ->item(L"key_only", L"Only displays the alpha channel of the video channel if specified.")
699                 ->item(L"non_interactive", L"If specified does not send mouse input to producers on the video channel.")
700                 ->item(L"no_auto_deinterlace", L"If the video mode of the channel is an interlaced mode, specifying this will turn of deinterlacing.")
701                 ->item(L"name", L"Optionally specifies a name of the window to show.");
702         sink.para()->text(L"Examples:");
703         sink.example(L">> ADD 1 SCREEN", L"opens a screen consumer on the default screen.");
704         sink.example(L">> ADD 1 SCREEN 2", L"opens a screen consumer on the screen 2.");
705         sink.example(L">> ADD 1 SCREEN 1 FULLSCREEN", L"opens a screen consumer in fullscreen on screen 1.");
706         sink.example(L">> ADD 1 SCREEN 1 BORDERLESS", L"opens a screen consumer without borders/window decorations on screen 1.");
707 }
708
709 spl::shared_ptr<core::frame_consumer> create_consumer(const std::vector<std::wstring>& params, core::interaction_sink* sink)
710 {
711         if (params.size() < 1 || !boost::iequals(params.at(0), L"SCREEN"))
712                 return core::frame_consumer::empty();
713         
714         configuration config;
715                 
716         if (params.size() > 1)
717                 config.screen_index = boost::lexical_cast<int>(params.at(1));
718                 
719         config.windowed                 = !contains_param(L"FULLSCREEN", params);
720         config.key_only                 =  contains_param(L"KEY_ONLY", params);
721         config.interactive              = !contains_param(L"NON_INTERACTIVE", params);
722         config.auto_deinterlace = !contains_param(L"NO_AUTO_DEINTERLACE", params);
723         config.borderless               =  contains_param(L"BORDERLESS", params);
724
725         if (contains_param(L"NAME", params))
726                 config.name = get_param(L"NAME", params);
727
728         return spl::make_shared<screen_consumer_proxy>(config, sink);
729 }
730
731 spl::shared_ptr<core::frame_consumer> create_preconfigured_consumer(const boost::property_tree::wptree& ptree, core::interaction_sink* sink) 
732 {
733         configuration config;
734         config.name                             = ptree.get(L"name",                            config.name);
735         config.screen_index             = ptree.get(L"device",                          config.screen_index + 1) - 1;
736         config.windowed                 = ptree.get(L"windowed",                        config.windowed);
737         config.key_only                 = ptree.get(L"key-only",                        config.key_only);
738         config.auto_deinterlace = ptree.get(L"auto-deinterlace",        config.auto_deinterlace);
739         config.vsync                    = ptree.get(L"vsync",                           config.vsync);
740         config.interactive              = ptree.get(L"interactive",                     config.interactive);
741         config.borderless               = ptree.get(L"borderless",                      config.borderless);
742
743         auto stretch_str = ptree.get(L"stretch", L"default");
744         if(stretch_str == L"uniform")
745                 config.stretch = screen::stretch::uniform;
746         else if(stretch_str == L"uniform_to_fill")
747                 config.stretch = screen::stretch::uniform_to_fill;
748
749         auto aspect_str = ptree.get(L"aspect-ratio", L"default");
750         if(aspect_str == L"16:9")
751                 config.aspect = configuration::aspect_ratio::aspect_16_9;
752         else if(aspect_str == L"4:3")
753                 config.aspect = configuration::aspect_ratio::aspect_4_3;
754         
755         return spl::make_shared<screen_consumer_proxy>(config, sink);
756 }
757
758 }}