]> git.sesse.net Git - casparcg/blob - core/video_channel.cpp
904fc4cbf9b8f4bc582f4c9adf15dc361bac417b
[casparcg] / core / video_channel.cpp
1 /*\r
2 * copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 *  This file is part of CasparCG.\r
5 *\r
6 *    CasparCG is free software: you can redistribute it and/or modify\r
7 *    it under the terms of the GNU General Public License as published by\r
8 *    the Free Software Foundation, either version 3 of the License, or\r
9 *    (at your option) any later version.\r
10 *\r
11 *    CasparCG is distributed in the hope that it will be useful,\r
12 *    but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 *    GNU General Public License for more details.\r
15 \r
16 *    You should have received a copy of the GNU General Public License\r
17 *    along with CasparCG.  If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 */\r
20 \r
21 #include "StdAfx.h"\r
22 \r
23 #include "video_channel.h"\r
24 \r
25 #include "video_format.h"\r
26 \r
27 #include "consumer/output.h"\r
28 #include "mixer/mixer.h"\r
29 #include "mixer/gpu/ogl_device.h"\r
30 #include "producer/stage.h"\r
31 \r
32 #include <common/diagnostics/graph.h>\r
33 #include <common/env.h>\r
34 \r
35 #include <boost/property_tree/ptree.hpp>\r
36 \r
37 #include <string>\r
38 \r
39 namespace caspar { namespace core {\r
40 \r
41 struct video_channel::implementation : boost::noncopyable\r
42 {\r
43         const int                                               index_;\r
44         video_format_desc                               format_desc_;\r
45         const safe_ptr<ogl_device>              ogl_;\r
46         safe_ptr<diagnostics::graph>    graph_;\r
47 \r
48         safe_ptr<caspar::core::output>  output_;\r
49         safe_ptr<caspar::core::mixer>   mixer_;\r
50         safe_ptr<caspar::core::stage>   stage_;\r
51         \r
52 public:\r
53         implementation(int index, const video_format_desc& format_desc, const safe_ptr<ogl_device>& ogl)  \r
54                 : index_(index)\r
55                 , format_desc_(format_desc)\r
56                 , ogl_(ogl)\r
57                 , output_(new caspar::core::output(graph_, format_desc, index))\r
58                 , mixer_(new caspar::core::mixer(graph_, output_, format_desc, ogl))\r
59                 , stage_(new caspar::core::stage(graph_, mixer_, format_desc))  \r
60         {\r
61                 graph_->set_text(print());\r
62                 diagnostics::register_graph(graph_);\r
63 \r
64                 for(int n = 0; n < std::max(1, env::properties().get("configuration.pipeline-tokens", 2)); ++n)\r
65                         stage_->spawn_token();\r
66 \r
67                 CASPAR_LOG(info) << print() << " Successfully Initialized.";\r
68         }\r
69         \r
70         void set_video_format_desc(const video_format_desc& format_desc)\r
71         {\r
72                 try\r
73                 {\r
74                         output_->set_video_format_desc(format_desc);\r
75                         mixer_->set_video_format_desc(format_desc);\r
76                         ogl_->gc();\r
77                 }\r
78                 catch(...)\r
79                 {\r
80                         output_->set_video_format_desc(format_desc_);\r
81                         mixer_->set_video_format_desc(format_desc_);\r
82                         throw;\r
83                 }\r
84                 format_desc_ = format_desc;\r
85         }\r
86                 \r
87         std::wstring print() const\r
88         {\r
89                 return L"video_channel[" + boost::lexical_cast<std::wstring>(index_) + L"|" +  format_desc_.name + L"]";\r
90         }\r
91 \r
92         boost::property_tree::wptree info() const\r
93         {\r
94                 boost::property_tree::wptree info;\r
95 \r
96                 auto stage_info  = stage_->info();\r
97                 auto mixer_info  = mixer_->info();\r
98                 auto output_info = output_->info();\r
99 \r
100                 stage_info.timed_wait(boost::posix_time::seconds(2));\r
101                 mixer_info.timed_wait(boost::posix_time::seconds(2));\r
102                 output_info.timed_wait(boost::posix_time::seconds(2));\r
103                 \r
104                 info.add(L"video-mode", format_desc_.name);\r
105                 info.add_child(L"stage", stage_info.get());\r
106                 info.add_child(L"mixer", mixer_info.get());\r
107                 info.add_child(L"output", output_info.get());\r
108    \r
109                 return info;                       \r
110         }\r
111 };\r
112 \r
113 video_channel::video_channel(int index, const video_format_desc& format_desc, const safe_ptr<ogl_device>& ogl) : impl_(new implementation(index, format_desc, ogl)){}\r
114 safe_ptr<stage> video_channel::stage() { return impl_->stage_;} \r
115 safe_ptr<mixer> video_channel::mixer() { return impl_->mixer_;} \r
116 safe_ptr<output> video_channel::output() { return impl_->output_;} \r
117 video_format_desc video_channel::get_video_format_desc() const{return impl_->format_desc_;}\r
118 void video_channel::set_video_format_desc(const video_format_desc& format_desc){impl_->set_video_format_desc(format_desc);}\r
119 boost::property_tree::wptree video_channel::info() const{return impl_->info();}\r
120 \r
121 }}