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