]> git.sesse.net Git - casparcg/blob - core/producer/transition/transition_producer.cpp
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[casparcg] / core / producer / transition / transition_producer.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 #include "../../stdafx.h"\r
21 \r
22 #include "transition_producer.h"\r
23 \r
24 #include "../../format/video_format.h"\r
25 #include "../../processor/draw_frame.h"\r
26 #include "../../processor/composite_frame.h"\r
27 #include "../../processor/transform_frame.h"\r
28 #include "../../processor/frame_processor_device.h"\r
29 \r
30 #include "../../producer/frame_producer_device.h"\r
31 \r
32 #include <boost/range/algorithm/copy.hpp>\r
33 \r
34 namespace caspar { namespace core {     \r
35 \r
36 struct transition_producer::implementation : boost::noncopyable\r
37 {\r
38         implementation(const safe_ptr<frame_producer>& dest, const transition_info& info) : current_frame_(0), info_(info), \r
39                 dest_producer_(dest), source_producer_(frame_producer::empty())\r
40         {}\r
41                 \r
42         safe_ptr<frame_producer> get_following_producer() const\r
43         {\r
44                 return dest_producer_;\r
45         }\r
46         \r
47         void set_leading_producer(const safe_ptr<frame_producer>& producer)\r
48         {\r
49                 source_producer_ = producer;\r
50         }\r
51                 \r
52         safe_ptr<draw_frame> receive()\r
53         {\r
54                 if(current_frame_++ >= info_.duration)\r
55                         return draw_frame::eof();\r
56 \r
57                 auto source = draw_frame::empty();\r
58                 auto dest = draw_frame::empty();\r
59 \r
60                 tbb::parallel_invoke\r
61                 (\r
62                         [&]{dest   = receive(dest_producer_);},\r
63                         [&]{source = receive(source_producer_);}\r
64                 );\r
65 \r
66                 return compose(dest, source);\r
67         }\r
68 \r
69         safe_ptr<draw_frame> receive(safe_ptr<frame_producer>& producer)\r
70         {\r
71                 if(producer == frame_producer::empty())\r
72                         return draw_frame::eof();\r
73 \r
74                 auto frame = draw_frame::eof();\r
75                 try\r
76                 {\r
77                         frame = producer->receive();\r
78                 }\r
79                 catch(...)\r
80                 {\r
81                         CASPAR_LOG_CURRENT_EXCEPTION();\r
82                         producer = frame_producer::empty();\r
83                         CASPAR_LOG(warning) << "Failed to receive frame. Removed producer from transition.";\r
84                 }\r
85 \r
86                 if(frame == draw_frame::eof())\r
87                 {\r
88                         try\r
89                         {\r
90                                 auto following = producer->get_following_producer();\r
91                                 following->initialize(safe_ptr<frame_processor_device>(frame_processor_));\r
92                                 following->set_leading_producer(producer);\r
93                                 producer = std::move(following);\r
94                         }\r
95                         catch(...)\r
96                         {\r
97                                 CASPAR_LOG_CURRENT_EXCEPTION();\r
98                                 CASPAR_LOG(warning) << "Failed to initialize following producer.";\r
99                         }\r
100 \r
101                         return receive(producer);\r
102                 }\r
103                 return frame;\r
104         }\r
105                                         \r
106         safe_ptr<draw_frame> compose(safe_ptr<draw_frame> dest_frame, safe_ptr<draw_frame> src_frame) \r
107         {       \r
108                 if(dest_frame == draw_frame::eof() && src_frame == draw_frame::eof())\r
109                         return draw_frame::eof();\r
110 \r
111                 if(info_.type == transition::cut)               \r
112                         return src_frame;\r
113                                                                                 \r
114                 double alpha = static_cast<double>(current_frame_)/static_cast<double>(info_.duration);\r
115 \r
116                 auto my_src_frame = transform_frame(src_frame);\r
117                 auto my_dest_frame = transform_frame(dest_frame);\r
118 \r
119                 my_src_frame.audio_volume(1.0-alpha);\r
120                 my_dest_frame.audio_volume(alpha);\r
121 \r
122                 double dir = info_.direction == transition_direction::from_left ? 1.0 : -1.0;           \r
123                 \r
124                 if(info_.type == transition::mix)\r
125                         my_dest_frame.alpha(alpha);             \r
126                 else if(info_.type == transition::slide)                        \r
127                         my_dest_frame.translate((-1.0+alpha)*dir, 0.0);                 \r
128                 else if(info_.type == transition::push)\r
129                 {\r
130                         my_dest_frame.translate((-1.0+alpha)*dir, 0.0);\r
131                         my_src_frame.translate((0.0+alpha)*dir, 0.0);\r
132                 }\r
133                 else if(info_.type == transition::wipe)\r
134                 {\r
135                         my_dest_frame.translate((-1.0+alpha)*dir, 0.0);                 \r
136                         my_dest_frame.texcoord((-1.0+alpha)*dir, 1.0, 1.0-(1.0-alpha)*dir, 0.0);                                \r
137                 }\r
138 \r
139                 return composite_frame(std::move(my_src_frame), std::move(my_dest_frame));\r
140         }\r
141                 \r
142         void initialize(const safe_ptr<frame_processor_device>& frame_processor)\r
143         {\r
144                 dest_producer_->initialize(frame_processor);\r
145                 frame_processor_ = frame_processor;\r
146         }\r
147 \r
148         std::wstring print() const\r
149         {\r
150                 return L"transition_producer. dest: " + (dest_producer_->print()) + L" src: " + (source_producer_->print());\r
151         }\r
152         \r
153         safe_ptr<frame_producer>        source_producer_;\r
154         safe_ptr<frame_producer>        dest_producer_;\r
155         \r
156         unsigned short                          current_frame_;\r
157         \r
158         const transition_info           info_;\r
159         std::shared_ptr<frame_processor_device> frame_processor_;\r
160 };\r
161 \r
162 transition_producer::transition_producer(transition_producer&& other) : impl_(std::move(other.impl_)){}\r
163 transition_producer::transition_producer(const safe_ptr<frame_producer>& dest, const transition_info& info) : impl_(new implementation(dest, info)){}\r
164 safe_ptr<draw_frame> transition_producer::receive(){return impl_->receive();}\r
165 safe_ptr<frame_producer> transition_producer::get_following_producer() const{return impl_->get_following_producer();}\r
166 void transition_producer::set_leading_producer(const safe_ptr<frame_producer>& producer) { impl_->set_leading_producer(producer); }\r
167 void transition_producer::initialize(const safe_ptr<frame_processor_device>& frame_processor) { impl_->initialize(frame_processor);}\r
168 std::wstring transition_producer::print() const { return impl_->print();}\r
169 \r
170 }}\r
171 \r