]> git.sesse.net Git - casparcg/blobdiff - core/video_channel.cpp
[video_channel] Reverted behavior which effectively caused an increased pipeline...
[casparcg] / core / video_channel.cpp
index 086ad414236927a3991b14c9055614bb2dbbf62e..8ee1992dae68186dcb434863fdb6f9dd36deb2a3 100644 (file)
 #include "frame/frame.h"
 #include "frame/draw_frame.h"
 #include "frame/frame_factory.h"
+#include "frame/audio_channel_layout.h"
 
 #include <common/diagnostics/graph.h>
 #include <common/env.h>
 #include <common/lock.h>
 #include <common/executor.h>
+#include <common/timer.h>
+#include <common/future.h>
 
 #include <core/mixer/image/image_mixer.h>
 #include <core/diagnostics/call_context.h>
@@ -43,6 +46,7 @@
 #include <tbb/spin_mutex.h>
 
 #include <boost/property_tree/ptree.hpp>
+#include <boost/lexical_cast.hpp>
 
 #include <string>
 
@@ -56,43 +60,57 @@ struct video_channel::impl final
 
        mutable tbb::spin_mutex                                                         format_desc_mutex_;
        core::video_format_desc                                                         format_desc_;
-       
-       const spl::shared_ptr<caspar::diagnostics::graph>       graph_                          = [](int index)
-                                                                                                                                                         {
-                                                                                                                                                                 core::diagnostics::scoped_call_context save;
-                                                                                                                                                                 core::diagnostics::call_context::for_thread().video_channel = index;
-                                                                                                                                                                 return spl::make_shared<caspar::diagnostics::graph>();
-                                                                                                                                                         }(index_);
+       mutable tbb::spin_mutex                                                         channel_layout_mutex_;
+       core::audio_channel_layout                                                      channel_layout_;
+
+       const spl::shared_ptr<caspar::diagnostics::graph>       graph_                                  = [](int index)
+                                                                                                                                                                 {
+                                                                                                                                                                         core::diagnostics::scoped_call_context save;
+                                                                                                                                                                         core::diagnostics::call_context::for_thread().video_channel = index;
+                                                                                                                                                                         return spl::make_shared<caspar::diagnostics::graph>();
+                                                                                                                                                                 }(index_);
 
        caspar::core::output                                                            output_;
+       std::future<void>                                                                       output_ready_for_frame_ = make_ready_future();
        spl::shared_ptr<image_mixer>                                            image_mixer_;
        caspar::core::mixer                                                                     mixer_;
-       caspar::core::stage                                                                     stage_; 
+       caspar::core::stage                                                                     stage_;
 
-       executor                                                                                        executor_                       = L"video_channel";
+       executor                                                                                        executor_                               { L"video_channel " + boost::lexical_cast<std::wstring>(index_) };
 public:
-       impl(int index, const core::video_format_desc& format_desc, std::unique_ptr<image_mixer> image_mixer)  
+       impl(
+                       int index,
+                       const core::video_format_desc& format_desc,
+                       const core::audio_channel_layout& channel_layout,
+                       std::unique_ptr<image_mixer> image_mixer)
                : monitor_subject_(spl::make_shared<monitor::subject>(
                                "/channel/" + boost::lexical_cast<std::string>(index)))
                , index_(index)
                , format_desc_(format_desc)
-               , output_(graph_, format_desc, index)
+               , channel_layout_(channel_layout)
+               , output_(graph_, format_desc, channel_layout, index)
                , image_mixer_(std::move(image_mixer))
-               , mixer_(graph_, image_mixer_)
-               , stage_(graph_)
+               , mixer_(index, graph_, image_mixer_)
+               , stage_(index, graph_)
        {
                graph_->set_color("tick-time", caspar::diagnostics::color(0.0f, 0.6f, 0.9f));
                graph_->set_text(print());
                caspar::diagnostics::register_graph(graph_);
-               
+
                output_.monitor_output().attach_parent(monitor_subject_);
+               mixer_.monitor_output().attach_parent(monitor_subject_);
                stage_.monitor_output().attach_parent(monitor_subject_);
 
                executor_.begin_invoke([=]{tick();});
 
                CASPAR_LOG(info) << print() << " Successfully Initialized.";
        }
-                                                       
+
+       ~impl()
+       {
+               CASPAR_LOG(info) << print() << " Uninitializing.";
+       }
+
        core::video_format_desc video_format_desc() const
        {
                return lock(format_desc_mutex_, [&]
@@ -100,7 +118,7 @@ public:
                        return format_desc_;
                });
        }
-               
+
        void video_format_desc(const core::video_format_desc& format_desc)
        {
                lock(format_desc_mutex_, [&]
@@ -110,27 +128,46 @@ public:
                });
        }
 
+       core::audio_channel_layout audio_channel_layout() const
+       {
+               return lock(channel_layout_mutex_, [&]
+               {
+                       return channel_layout_;
+               });
+       }
+
+       void audio_channel_layout(const core::audio_channel_layout& channel_layout)
+       {
+               lock(channel_layout_mutex_, [&]
+               {
+                       channel_layout_ = channel_layout;
+                       stage_.clear();
+               });
+       }
+
        void tick()
        {
                try
                {
 
-                       auto format_desc = video_format_desc();
-                       
-                       boost::timer frame_timer;
+                       auto format_desc        = video_format_desc();
+                       auto channel_layout = audio_channel_layout();
+
+                       caspar::timer frame_timer;
 
                        // Produce
-                       
+
                        auto stage_frames = stage_(format_desc);
-                       
+
                        // Mix
-                       
-                       auto mixed_frame  = mixer_(std::move(stage_frames), format_desc);
-                       
+
+                       auto mixed_frame  = mixer_(std::move(stage_frames), format_desc, channel_layout);
+
                        // Consume
-                                               
-                       output_(std::move(mixed_frame), format_desc);
-               
+
+                       output_ready_for_frame_ = output_(std::move(mixed_frame), format_desc, channel_layout);
+                       output_ready_for_frame_.get();
+
                        auto frame_time = frame_timer.elapsed()*format_desc.fps*0.5;
                        graph_->set_value("tick-time", frame_time);
 
@@ -142,9 +179,10 @@ public:
                        CASPAR_LOG_CURRENT_EXCEPTION();
                }
 
-               executor_.begin_invoke([=]{tick();});
+               if (executor_.is_running())
+                       executor_.begin_invoke([=]{tick();});
        }
-                       
+
        std::wstring print() const
        {
                return L"video_channel[" + boost::lexical_cast<std::wstring>(index_) + L"|" +  video_format_desc().name + L"]";
@@ -163,28 +201,52 @@ public:
                auto mixer_info  = mixer_.info();
                auto output_info = output_.info();
 
-               info.add(L"video-mode", format_desc_.name);
+               info.add(L"video-mode", video_format_desc().name);
+               info.add(L"audio-channel-layout", audio_channel_layout().print());
                info.add_child(L"stage", stage_info.get());
                info.add_child(L"mixer", mixer_info.get());
                info.add_child(L"output", output_info.get());
-   
-               return info;                       
+
+               return info;
+       }
+
+       boost::property_tree::wptree delay_info() const
+       {
+               boost::property_tree::wptree info;
+
+               auto stage_info = stage_.delay_info();
+               auto mixer_info = mixer_.delay_info();
+               auto output_info = output_.delay_info();
+
+               // TODO: because of std::async deferred timed waiting does not work so for now we have to block
+               info.add_child(L"layers", stage_info.get());
+               info.add_child(L"mix-time", mixer_info.get());
+               info.add_child(L"output", output_info.get());
+
+               return info;
        }
 };
 
-video_channel::video_channel(int index, const core::video_format_desc& format_desc, std::unique_ptr<image_mixer> image_mixer) : impl_(new impl(index, format_desc, std::move(image_mixer))){}
+video_channel::video_channel(
+               int index,
+               const core::video_format_desc& format_desc,
+               const core::audio_channel_layout& channel_layout,
+               std::unique_ptr<image_mixer> image_mixer) : impl_(new impl(index, format_desc, channel_layout, std::move(image_mixer))){}
 video_channel::~video_channel(){}
-const stage& video_channel::stage() const { return impl_->stage_;} 
-stage& video_channel::stage() { return impl_->stage_;} 
-const mixer& video_channel::mixer() const{ return impl_->mixer_;} 
-mixer& video_channel::mixer() { return impl_->mixer_;} 
-const output& video_channel::output() const { return impl_->output_;} 
-output& video_channel::output() { return impl_->output_;} 
-spl::shared_ptr<frame_factory> video_channel::frame_factory() { return impl_->image_mixer_;} 
+const stage& video_channel::stage() const { return impl_->stage_;}
+stage& video_channel::stage() { return impl_->stage_;}
+const mixer& video_channel::mixer() const{ return impl_->mixer_;}
+mixer& video_channel::mixer() { return impl_->mixer_;}
+const output& video_channel::output() const { return impl_->output_;}
+output& video_channel::output() { return impl_->output_;}
+spl::shared_ptr<frame_factory> video_channel::frame_factory() { return impl_->image_mixer_;}
 core::video_format_desc video_channel::video_format_desc() const{return impl_->video_format_desc();}
 void core::video_channel::video_format_desc(const core::video_format_desc& format_desc){impl_->video_format_desc(format_desc);}
+core::audio_channel_layout video_channel::audio_channel_layout() const { return impl_->audio_channel_layout(); }
+void core::video_channel::audio_channel_layout(const core::audio_channel_layout& channel_layout) { impl_->audio_channel_layout(channel_layout); }
 boost::property_tree::wptree video_channel::info() const{return impl_->info();}
+boost::property_tree::wptree video_channel::delay_info() const { return impl_->delay_info(); }
 int video_channel::index() const { return impl_->index(); }
 monitor::subject& video_channel::monitor_output(){ return *impl_->monitor_subject_; }
 
-}}
\ No newline at end of file
+}}