]> git.sesse.net Git - casparcg/blobdiff - modules/ffmpeg/producer/ffmpeg_producer.cpp
2.0. auto-play: Improved and refactored.
[casparcg] / modules / ffmpeg / producer / ffmpeg_producer.cpp
index 678bd5a7713e81609803b76e486dcc2d345338c7..115b663954a24143b4dfb260af446fb3c25beb04 100644 (file)
 \r
 #include "frame_muxer.h"\r
 #include "input.h"\r
+#include "util.h"\r
 #include "audio/audio_decoder.h"\r
 #include "video/video_decoder.h"\r
 \r
+#include <common/env.h>\r
 #include <common/utility/assert.h>\r
-#include <common/utility/timer.h>\r
 #include <common/diagnostics/graph.h>\r
 \r
-#include <core/mixer/write_frame.h>\r
 #include <core/video_format.h>\r
-#include <core/producer/frame/audio_transform.h>\r
+#include <core/producer/frame_producer.h>\r
+#include <core/producer/frame/frame_factory.h>\r
 #include <core/producer/frame/basic_frame.h>\r
-#include <core/producer/color/color_producer.h>\r
-\r
-#include <common/env.h>\r
 \r
+#include <boost/assign.hpp>\r
 #include <boost/timer.hpp>\r
-#include <boost/range/algorithm.hpp>\r
-#include <boost/range/algorithm_ext.hpp>\r
+#include <boost/foreach.hpp>\r
+#include <boost/filesystem.hpp>\r
+#include <boost/range/algorithm/find_if.hpp>\r
+#include <boost/range/algorithm/find.hpp>\r
 \r
 #include <tbb/task_group.h>\r
 \r
-#include <deque>\r
-#include <vector>\r
-\r
 namespace caspar {\r
                        \r
 struct ffmpeg_producer : public core::frame_producer\r
@@ -55,6 +53,8 @@ struct ffmpeg_producer : public core::frame_producer
        \r
        const safe_ptr<diagnostics::graph>                              graph_;\r
        boost::timer                                                                    frame_timer_;\r
+       boost::timer                                                                    video_timer_;\r
+       boost::timer                                                                    audio_timer_;\r
                                        \r
        const safe_ptr<core::frame_factory>                             frame_factory_;\r
        const core::video_format_desc                                   format_desc_;\r
@@ -64,55 +64,92 @@ struct ffmpeg_producer : public core::frame_producer
        audio_decoder                                                                   audio_decoder_;\r
        \r
        frame_muxer                                                                             muxer_;\r
-       \r
-       tbb::task_group                                                                 tasks_;\r
 \r
+       int                                                                                             late_frames_;\r
+       const int                                                                               start_;\r
+       const bool                                                                              loop_;\r
+\r
+       safe_ptr<core::basic_frame>                                             last_frame_;\r
+\r
+       tbb::task_group                                                                 tasks_;\r
+       \r
 public:\r
        explicit ffmpeg_producer(const safe_ptr<core::frame_factory>& frame_factory, const std::wstring& filename, const std::wstring& filter, bool loop, int start, int length) \r
                : filename_(filename)\r
                , graph_(diagnostics::create_graph(narrow(print())))\r
                , frame_factory_(frame_factory)         \r
                , format_desc_(frame_factory->get_video_format_desc())\r
-               , input_(safe_ptr<diagnostics::graph>(graph_), filename_, loop, start, length)\r
+               , input_(graph_, filename_, loop, start, length)\r
                , video_decoder_(input_.context(), frame_factory, filter)\r
                , audio_decoder_(input_.context(), frame_factory->get_video_format_desc())\r
-               , muxer_(video_decoder_.fps(), format_desc_, frame_factory)\r
+               , muxer_(video_decoder_.fps(), frame_factory)\r
+               , late_frames_(0)\r
+               , start_(start)\r
+               , loop_(loop)\r
+               , last_frame_(core::basic_frame::empty())\r
        {\r
                graph_->add_guide("frame-time", 0.5);\r
                graph_->set_color("frame-time", diagnostics::color(1.0f, 0.0f, 0.0f));\r
+               graph_->set_color("video-time", diagnostics::color(1.0f, 1.0f, 0.0f));\r
+               graph_->set_color("audio-time", diagnostics::color(0.2f, 1.0f, 0.2f));\r
                graph_->set_color("underflow", diagnostics::color(0.6f, 0.3f, 0.9f));           \r
                \r
                for(int n = 0; n < 128 && muxer_.size() < 2; ++n)\r
-                       decode_frame();\r
+                       decode_frame(0);\r
        }\r
-       \r
-       virtual safe_ptr<core::basic_frame> receive()\r
-       {\r
-               frame_timer_.restart();\r
-\r
-               for(int n = 0; n < 64 && muxer_.size() < 2; ++n)\r
-                       decode_frame();\r
 \r
-               graph_->update_value("frame-time", static_cast<float>(frame_timer_.elapsed()*format_desc_.fps*0.5));\r
+       ~ffmpeg_producer()\r
+       {\r
+               try\r
+               {\r
+                       tasks_.cancel();\r
+                       tasks_.wait();\r
+               }\r
+               catch(...)\r
+               {\r
+                       CASPAR_LOG_CURRENT_EXCEPTION();\r
+               }\r
+       }\r
                \r
+       virtual safe_ptr<core::basic_frame> receive(int hints)\r
+       {\r
                auto frame = core::basic_frame::late();\r
+               \r
+               frame_timer_.restart();\r
+               \r
+               for(int n = 0; n < 8 && muxer_.empty(); ++n)\r
+                       decode_frame(hints);\r
 \r
-               if(muxer_.empty())\r
+               if(!muxer_.empty())\r
+                       frame = last_frame_ = muxer_.pop();     \r
+               else\r
                {\r
                        if(input_.eof())\r
-                               frame = core::basic_frame::eof();\r
+                               return last_frame();\r
                        else\r
-                               graph_->add_tag("underflow");                   \r
+                       {\r
+                               graph_->add_tag("underflow");   \r
+                               ++late_frames_;         \r
+                       }\r
                }\r
-               else            \r
-                       frame = muxer_.pop();           \r
+               \r
+               graph_->update_value("frame-time", static_cast<float>(frame_timer_.elapsed()*format_desc_.fps*0.5));\r
                \r
                return frame;\r
        }\r
 \r
-       void decode_frame()\r
+       virtual safe_ptr<core::basic_frame> last_frame() const\r
        {\r
-               for(int n = 0; n < 32 && ((muxer_.video_frames() < 2 && !video_decoder_.ready()) ||     (muxer_.audio_chunks() < 2 && !audio_decoder_.ready())); ++n) \r
+               return disable_audio(last_frame_);\r
+       }\r
+\r
+       void decode_frame(int hints)\r
+       {\r
+               tasks_.wait();\r
+\r
+               muxer_.commit();\r
+\r
+               for(int n = 0; n < 16 && ((!muxer_.video_ready() && !video_decoder_.ready()) || (!muxer_.audio_ready() && !audio_decoder_.ready())); ++n) \r
                {\r
                        std::shared_ptr<AVPacket> pkt;\r
                        if(input_.try_pop(pkt))\r
@@ -121,27 +158,55 @@ public:
                                audio_decoder_.push(pkt);\r
                        }\r
                }\r
-\r
-               decltype(video_decoder_.poll()) video_frames;\r
-               decltype(audio_decoder_.poll()) audio_samples;\r
                \r
-               tbb::parallel_invoke(\r
-               [&]\r
+               if(!muxer_.video_ready())\r
                {\r
-                       if(muxer_.video_frames() < 2)\r
-                               video_frames = video_decoder_.poll();\r
-               },\r
-               [&]\r
+                       tasks_.run([=]\r
+                       {\r
+                               video_timer_.restart();\r
+\r
+                               auto video_frames = video_decoder_.poll();\r
+                               BOOST_FOREACH(auto& video, video_frames)                \r
+                                       muxer_.push(video, hints);      \r
+\r
+                               graph_->update_value("video-time", static_cast<float>(video_timer_.elapsed()*format_desc_.fps*0.5));\r
+                       });\r
+               }               \r
+\r
+               if(!muxer_.audio_ready())\r
                {\r
-                       if(muxer_.audio_chunks() < 2)\r
-                               audio_samples = audio_decoder_.poll();\r
-               });\r
-               \r
-               BOOST_FOREACH(auto& audio, audio_samples)\r
-                       muxer_.push(audio);\r
+                       tasks_.run([=]\r
+                       {\r
+                               audio_timer_.restart();\r
+                                       \r
+                               auto audio_samples = audio_decoder_.poll();\r
+                               BOOST_FOREACH(auto& audio, audio_samples)\r
+                                       muxer_.push(audio);                             \r
+\r
+                               graph_->update_value("audio-time", static_cast<float>(audio_timer_.elapsed()*format_desc_.fps*0.5));\r
+                       });     \r
+               }\r
+       }\r
+\r
+       virtual int64_t nb_frames() const \r
+       {\r
+               if(loop_)\r
+                       return std::numeric_limits<int64_t>::max();\r
+\r
+               // This function estimates nb_frames until input has read all packets for one loop, at which point the count should be accurate.\r
+\r
+               int64_t nb_frames = input_.nb_frames();\r
+               if(input_.nb_loops() < 1) // input still hasn't counted all frames\r
+               {\r
+                       int64_t video_nb_frames = video_decoder_.nb_frames();\r
+                       int64_t audio_nb_frames = audio_decoder_.nb_frames();\r
+\r
+                       nb_frames = std::max(nb_frames, std::max(video_nb_frames, audio_nb_frames));\r
+               }\r
+\r
+               // TODO: Might need to scale nb_frames av frame_muxer transformations.\r
 \r
-               BOOST_FOREACH(auto& video, video_frames)\r
-                       muxer_.push(video);             \r
+               return nb_frames + late_frames_ - start_;\r
        }\r
                                \r
        virtual std::wstring print() const\r