2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
4 * This file is part of CasparCG (www.casparcg.com).
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.
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.
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/>.
19 * Author: Robert Nagy, ronag89@gmail.com
22 #include "../StdAfx.h"
26 #include "../frame/frame.h"
28 #include "audio/audio_mixer.h"
29 #include "image/image_mixer.h"
31 #include <common/env.h>
32 #include <common/executor.h>
33 #include <common/diagnostics/graph.h>
34 #include <common/except.h>
35 #include <common/future.h>
36 #include <common/timer.h>
38 #include <core/frame/draw_frame.h>
39 #include <core/frame/frame_factory.h>
40 #include <core/frame/frame_transform.h>
41 #include <core/frame/pixel_format.h>
42 #include <core/video_format.h>
44 #include <boost/property_tree/ptree.hpp>
46 #include <tbb/concurrent_queue.h>
47 #include <tbb/spin_mutex.h>
49 #include <unordered_map>
52 namespace caspar { namespace core {
54 struct mixer::impl : boost::noncopyable
56 spl::shared_ptr<diagnostics::graph> graph_;
57 audio_mixer audio_mixer_;
58 spl::shared_ptr<image_mixer> image_mixer_;
60 std::unordered_map<int, blend_mode> blend_modes_;
62 executor executor_ { L"mixer" };
65 impl(spl::shared_ptr<diagnostics::graph> graph, spl::shared_ptr<image_mixer> image_mixer)
66 : graph_(std::move(graph))
67 , image_mixer_(std::move(image_mixer))
69 graph_->set_color("mix-time", diagnostics::color(1.0f, 0.0f, 0.9f, 0.8f));
72 const_frame operator()(std::map<int, draw_frame> frames, const video_format_desc& format_desc)
74 caspar::timer frame_timer;
76 auto frame = executor_.invoke([=]() mutable -> const_frame
80 for (auto& frame : frames)
82 auto blend_it = blend_modes_.find(frame.first);
83 image_mixer_->begin_layer(blend_it != blend_modes_.end() ? blend_it->second : blend_mode::normal);
85 frame.second.accept(audio_mixer_);
86 frame.second.accept(*image_mixer_);
88 image_mixer_->end_layer();
91 auto image = (*image_mixer_)(format_desc);
92 auto audio = audio_mixer_(format_desc);
94 auto desc = core::pixel_format_desc(core::pixel_format::bgra);
95 desc.planes.push_back(core::pixel_format_desc::plane(format_desc.width, format_desc.height, 4));
96 return const_frame(std::move(image), std::move(audio), this, desc);
100 CASPAR_LOG_CURRENT_EXCEPTION();
101 return const_frame::empty();
105 graph_->set_value("mix-time", frame_timer.elapsed()*format_desc.fps*0.5);
110 void set_blend_mode(int index, blend_mode value)
112 executor_.begin_invoke([=]
114 auto it = blend_modes_.find(index);
115 if(it == blend_modes_.end())
116 blend_modes_.insert(std::make_pair(index, value));
119 }, task_priority::high_priority);
122 void clear_blend_mode(int index)
124 executor_.begin_invoke([=]
126 blend_modes_.erase(index);
127 }, task_priority::high_priority);
130 void clear_blend_modes()
132 executor_.begin_invoke([=]
134 blend_modes_.clear();
135 }, task_priority::high_priority);
138 void set_master_volume(float volume)
140 executor_.begin_invoke([=]
142 audio_mixer_.set_master_volume(volume);
143 }, task_priority::high_priority);
146 std::future<boost::property_tree::wptree> info() const
148 return make_ready_future(boost::property_tree::wptree());
152 mixer::mixer(spl::shared_ptr<diagnostics::graph> graph, spl::shared_ptr<image_mixer> image_mixer)
153 : impl_(new impl(std::move(graph), std::move(image_mixer))){}
154 void mixer::set_blend_mode(int index, blend_mode value){impl_->set_blend_mode(index, value);}
155 void mixer::clear_blend_mode(int index) { impl_->clear_blend_mode(index); }
156 void mixer::clear_blend_modes() { impl_->clear_blend_modes(); }
157 void mixer::set_master_volume(float volume) { impl_->set_master_volume(volume); }
158 std::future<boost::property_tree::wptree> mixer::info() const{return impl_->info();}
159 const_frame mixer::operator()(std::map<int, draw_frame> frames, const struct video_format_desc& format_desc){return (*impl_)(std::move(frames), format_desc);}
160 mutable_frame mixer::create_frame(const void* tag, const core::pixel_format_desc& desc) {return impl_->image_mixer_->create_frame(tag, desc);}