2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
\r
4 * This file is part of CasparCG (www.casparcg.com).
\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
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
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
19 * Author: Robert Nagy, ronag89@gmail.com
\r
22 #include "../StdAfx.h"
\r
24 #include "frame_consumer.h"
\r
26 #include <common/env.h>
\r
27 #include <common/memory/safe_ptr.h>
\r
28 #include <common/exception/exceptions.h>
\r
29 #include <core/video_format.h>
\r
30 #include <core/frame.h>
\r
32 #include <boost/circular_buffer.hpp>
\r
34 namespace caspar { namespace core {
\r
36 std::vector<const consumer_factory_t> g_factories;
\r
38 void register_consumer_factory(const consumer_factory_t& factory)
\r
40 g_factories.push_back(factory);
\r
43 safe_ptr<core::frame_consumer> create_consumer(const std::vector<std::wstring>& params)
\r
46 BOOST_THROW_EXCEPTION(invalid_argument() << arg_name_info("params") << arg_value_info(""));
\r
48 auto consumer = frame_consumer::empty();
\r
49 std::any_of(g_factories.begin(), g_factories.end(), [&](const consumer_factory_t& factory) -> bool
\r
53 consumer = factory(params);
\r
57 CASPAR_LOG_CURRENT_EXCEPTION();
\r
59 return consumer != frame_consumer::empty();
\r
62 if(consumer == frame_consumer::empty())
\r
63 BOOST_THROW_EXCEPTION(file_not_found() << msg_info("No match found for supplied commands. Check syntax."));
\r
68 // This class is used to guarantee that audio cadence is correct. This is important for NTSC audio.
\r
69 class cadence_guard : public frame_consumer
\r
71 safe_ptr<frame_consumer> consumer_;
\r
72 std::vector<int> audio_cadence_;
\r
73 boost::circular_buffer<int> sync_buffer_;
\r
75 cadence_guard(const safe_ptr<frame_consumer>& consumer)
\r
76 : consumer_(consumer)
\r
80 virtual void initialize(const video_format_desc& format_desc, int channel_index) override
\r
82 audio_cadence_ = format_desc.audio_cadence;
\r
83 sync_buffer_ = boost::circular_buffer<int>(format_desc.audio_cadence.size());
\r
84 consumer_->initialize(format_desc, channel_index);
\r
87 virtual bool send(const safe_ptr<const frame>& frame) override
\r
89 if(audio_cadence_.size() == 1)
\r
90 return consumer_->send(frame);
\r
94 if(boost::range::equal(sync_buffer_, audio_cadence_) && audio_cadence_.front() == static_cast<int>(frame->audio_data().size()))
\r
96 // Audio sent so far is in sync, now we can send the next chunk.
\r
97 result = consumer_->send(frame);
\r
98 boost::range::rotate(audio_cadence_, std::begin(audio_cadence_)+1);
\r
101 CASPAR_LOG(trace) << print() << L" Syncing audio.";
\r
103 sync_buffer_.push_back(static_cast<int>(frame->audio_data().size()));
\r
108 virtual std::wstring print() const override
\r
110 return consumer_->print();
\r
113 virtual boost::property_tree::wptree info() const override
\r
115 return consumer_->info();
\r
118 virtual bool has_synchronization_clock() const override
\r
120 return consumer_->has_synchronization_clock();
\r
123 virtual int buffer_depth() const override
\r
125 return consumer_->buffer_depth();
\r
128 virtual int index() const override
\r
130 return consumer_->index();
\r
134 safe_ptr<frame_consumer> create_consumer_cadence_guard(const safe_ptr<frame_consumer>& consumer)
\r
136 return make_safe<cadence_guard>(std::move(consumer));
\r
139 const safe_ptr<frame_consumer>& frame_consumer::empty()
\r
141 struct empty_frame_consumer : public frame_consumer
\r
143 virtual bool send(const safe_ptr<const frame>&) override {return false;}
\r
144 virtual void initialize(const video_format_desc&, int) override{}
\r
145 virtual std::wstring print() const override {return L"empty";}
\r
146 virtual bool has_synchronization_clock() const override {return false;}
\r
147 virtual int buffer_depth() const override {return 0;};
\r
148 virtual int index() const{return -1;}
\r
149 virtual boost::property_tree::wptree info() const override
\r
151 boost::property_tree::wptree info;
\r
152 info.add(L"type", L"empty-consumer");
\r
156 static safe_ptr<frame_consumer> consumer = make_safe<empty_frame_consumer>();
\r