]> git.sesse.net Git - casparcg/blob - core/video_channel.cpp
2cfe4048d5d0427afb1f90744b669dd1369b4449
[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 \r
34 #include <string>\r
35 \r
36 namespace caspar { namespace core {\r
37 \r
38 struct video_channel::implementation : boost::noncopyable\r
39 {\r
40         const int                                               index_;\r
41         video_format_desc                               format_desc_;\r
42         const safe_ptr<ogl_device>              ogl_;\r
43         safe_ptr<diagnostics::graph>    graph_;\r
44 \r
45         safe_ptr<caspar::core::output>  output_;\r
46         safe_ptr<caspar::core::mixer>   mixer_;\r
47         safe_ptr<caspar::core::stage>   stage_;\r
48         \r
49 public:\r
50         implementation(int index, const video_format_desc& format_desc, const safe_ptr<ogl_device>& ogl)  \r
51                 : index_(index)\r
52                 , format_desc_(format_desc)\r
53                 , ogl_(ogl)\r
54                 , output_(new caspar::core::output(graph_, format_desc))\r
55                 , mixer_(new caspar::core::mixer(graph_, output_, format_desc, ogl))\r
56                 , stage_(new caspar::core::stage(graph_, mixer_, format_desc))  \r
57         {\r
58                 graph_->set_text(print());\r
59                 diagnostics::register_graph(graph_);\r
60 \r
61                 CASPAR_LOG(info) << print() << " Successfully Initialized.";\r
62         }\r
63         \r
64         void set_video_format_desc(const video_format_desc& format_desc)\r
65         {\r
66                 try\r
67                 {\r
68                         output_->set_video_format_desc(format_desc);\r
69                         mixer_->set_video_format_desc(format_desc);\r
70                         ogl_->gc();\r
71                 }\r
72                 catch(...)\r
73                 {\r
74                         output_->set_video_format_desc(format_desc_);\r
75                         mixer_->set_video_format_desc(format_desc_);\r
76                         throw;\r
77                 }\r
78                 format_desc_ = format_desc;\r
79         }\r
80                 \r
81         std::wstring print() const\r
82         {\r
83                 return L"video_channel[" + boost::lexical_cast<std::wstring>(index_+1) + L"|" +  format_desc_.name + L"]";\r
84         }\r
85 };\r
86 \r
87 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
88 safe_ptr<stage> video_channel::stage() { return impl_->stage_;} \r
89 safe_ptr<mixer> video_channel::mixer() { return impl_->mixer_;} \r
90 safe_ptr<output> video_channel::output() { return impl_->output_;} \r
91 video_format_desc video_channel::get_video_format_desc() const{return impl_->format_desc_;}\r
92 void video_channel::set_video_format_desc(const video_format_desc& format_desc){impl_->set_video_format_desc(format_desc);}\r
93 \r
94 }}