]> git.sesse.net Git - casparcg/blob - core/video_channel.cpp
* Merged layer_producer and channel_producer from 2.0 to the reroute module (replacin...
[casparcg] / core / video_channel.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 "StdAfx.h"
23
24 #include "video_channel.h"
25
26 #include "video_format.h"
27
28 #include "producer/stage.h"
29 #include "mixer/mixer.h"
30 #include "consumer/output.h"
31 #include "frame/frame.h"
32 #include "frame/draw_frame.h"
33 #include "frame/frame_factory.h"
34
35 #include <common/diagnostics/graph.h>
36 #include <common/env.h>
37 #include <common/lock.h>
38 #include <common/executor.h>
39 #include <common/timer.h>
40
41 #include <core/mixer/image/image_mixer.h>
42 #include <core/diagnostics/call_context.h>
43
44 #include <tbb/spin_mutex.h>
45
46 #include <boost/property_tree/ptree.hpp>
47 #include <boost/lexical_cast.hpp>
48
49 #include <string>
50
51 namespace caspar { namespace core {
52
53 struct video_channel::impl final
54 {
55         spl::shared_ptr<monitor::subject>                                       monitor_subject_;
56
57         const int                                                                                       index_;
58
59         mutable tbb::spin_mutex                                                         format_desc_mutex_;
60         core::video_format_desc                                                         format_desc_;
61         
62         const spl::shared_ptr<caspar::diagnostics::graph>       graph_                          = [](int index)
63                                                                                                                                                           {
64                                                                                                                                                                   core::diagnostics::scoped_call_context save;
65                                                                                                                                                                   core::diagnostics::call_context::for_thread().video_channel = index;
66                                                                                                                                                                   return spl::make_shared<caspar::diagnostics::graph>();
67                                                                                                                                                           }(index_);
68
69         caspar::core::output                                                            output_;
70         spl::shared_ptr<image_mixer>                                            image_mixer_;
71         caspar::core::mixer                                                                     mixer_;
72         caspar::core::stage                                                                     stage_; 
73
74         executor                                                                                        executor_                       { L"video_channel" };
75 public:
76         impl(int index, const core::video_format_desc& format_desc, std::unique_ptr<image_mixer> image_mixer)  
77                 : monitor_subject_(spl::make_shared<monitor::subject>(
78                                 "/channel/" + boost::lexical_cast<std::string>(index)))
79                 , index_(index)
80                 , format_desc_(format_desc)
81                 , output_(graph_, format_desc, index)
82                 , image_mixer_(std::move(image_mixer))
83                 , mixer_(graph_, image_mixer_)
84                 , stage_(graph_)
85         {
86                 graph_->set_color("tick-time", caspar::diagnostics::color(0.0f, 0.6f, 0.9f));
87                 graph_->set_text(print());
88                 caspar::diagnostics::register_graph(graph_);
89                 
90                 output_.monitor_output().attach_parent(monitor_subject_);
91                 stage_.monitor_output().attach_parent(monitor_subject_);
92
93                 executor_.begin_invoke([=]{tick();});
94
95                 CASPAR_LOG(info) << print() << " Successfully Initialized.";
96         }
97                                                         
98         core::video_format_desc video_format_desc() const
99         {
100                 return lock(format_desc_mutex_, [&]
101                 {
102                         return format_desc_;
103                 });
104         }
105                 
106         void video_format_desc(const core::video_format_desc& format_desc)
107         {
108                 lock(format_desc_mutex_, [&]
109                 {
110                         format_desc_ = format_desc;
111                         stage_.clear();
112                 });
113         }
114
115         void tick()
116         {
117                 try
118                 {
119
120                         auto format_desc = video_format_desc();
121                         
122                         caspar::timer frame_timer;
123
124                         // Produce
125                         
126                         auto stage_frames = stage_(format_desc);
127                         
128                         // Mix
129                         
130                         auto mixed_frame  = mixer_(std::move(stage_frames), format_desc);
131                         
132                         // Consume
133                                                 
134                         output_(std::move(mixed_frame), format_desc);
135                 
136                         auto frame_time = frame_timer.elapsed()*format_desc.fps*0.5;
137                         graph_->set_value("tick-time", frame_time);
138
139                         *monitor_subject_       << monitor::message("/profiler/time")   % frame_timer.elapsed() % (1.0/format_desc_.fps)
140                                                                 << monitor::message("/format")                  % format_desc.name;
141                 }
142                 catch(...)
143                 {
144                         CASPAR_LOG_CURRENT_EXCEPTION();
145                 }
146
147                 executor_.begin_invoke([=]{tick();});
148         }
149                         
150         std::wstring print() const
151         {
152                 return L"video_channel[" + boost::lexical_cast<std::wstring>(index_) + L"|" +  video_format_desc().name + L"]";
153         }
154
155         int index() const
156         {
157                 return index_;
158         }
159
160         boost::property_tree::wptree info() const
161         {
162                 boost::property_tree::wptree info;
163
164                 auto stage_info  = stage_.info();
165                 auto mixer_info  = mixer_.info();
166                 auto output_info = output_.info();
167
168                 info.add(L"video-mode", format_desc_.name);
169                 info.add_child(L"stage", stage_info.get());
170                 info.add_child(L"mixer", mixer_info.get());
171                 info.add_child(L"output", output_info.get());
172    
173                 return info;                       
174         }
175 };
176
177 video_channel::video_channel(int index, const core::video_format_desc& format_desc, std::unique_ptr<image_mixer> image_mixer) : impl_(new impl(index, format_desc, std::move(image_mixer))){}
178 video_channel::~video_channel(){}
179 const stage& video_channel::stage() const { return impl_->stage_;} 
180 stage& video_channel::stage() { return impl_->stage_;} 
181 const mixer& video_channel::mixer() const{ return impl_->mixer_;} 
182 mixer& video_channel::mixer() { return impl_->mixer_;} 
183 const output& video_channel::output() const { return impl_->output_;} 
184 output& video_channel::output() { return impl_->output_;} 
185 spl::shared_ptr<frame_factory> video_channel::frame_factory() { return impl_->image_mixer_;} 
186 core::video_format_desc video_channel::video_format_desc() const{return impl_->video_format_desc();}
187 void core::video_channel::video_format_desc(const core::video_format_desc& format_desc){impl_->video_format_desc(format_desc);}
188 boost::property_tree::wptree video_channel::info() const{return impl_->info();}
189 int video_channel::index() const { return impl_->index(); }
190 monitor::subject& video_channel::monitor_output(){ return *impl_->monitor_subject_; }
191
192 }}