]> git.sesse.net Git - casparcg/commitdiff
Merge pull request #444 from dimitry-ishenko-casparcg/scrub
authorHellGore <helge.norberg@gmail.com>
Mon, 3 Oct 2016 20:28:53 +0000 (22:28 +0200)
committerGitHub <noreply@github.com>
Mon, 3 Oct 2016 20:28:53 +0000 (22:28 +0200)
[ffmpeg_producer] Add relative and "from end" seeking

modules/ffmpeg/producer/ffmpeg_producer.cpp

index 4a4ca8a1b0c9c81ebefcc067cab09675317cef4d..79b68d9f4ed59127bbf2960416fbefb69e9e3a1f 100644 (file)
@@ -392,7 +392,7 @@ public:
        std::future<std::wstring> call(const std::vector<std::wstring>& params) override
        {
                static const boost::wregex loop_exp(LR"(LOOP\s*(?<VALUE>\d?)?)", boost::regex::icase);
-               static const boost::wregex seek_exp(LR"(SEEK\s+(?<VALUE>\d+))", boost::regex::icase);
+               static const boost::wregex seek_exp(LR"(SEEK\s+(?<VALUE>(\+|-)?\d+)(\s+(?<WHENCE>REL|END))?)", boost::regex::icase);
                static const boost::wregex length_exp(LR"(LENGTH\s+(?<VALUE>\d+)?)", boost::regex::icase);
                static const boost::wregex start_exp(LR"(START\\s+(?<VALUE>\\d+)?)", boost::regex::icase);
 
@@ -410,8 +410,19 @@ public:
                }
                else if(boost::regex_match(param, what, seek_exp))
                {
-                       auto value = what["VALUE"].str();
-                       input_.seek(boost::lexical_cast<uint32_t>(value));
+                       auto value = boost::lexical_cast<uint32_t>(what["VALUE"].str());
+                       auto whence = what["WHENCE"].str();
+
+                       if(boost::iequals(whence, L"REL"))
+                       {
+                               value = file_frame_number() + value;
+                       }
+                       else if(boost::iequals(whence, L"END"))
+                       {
+                               value = file_nb_frames() - value;
+                       }
+
+                       input_.seek(value);
                }
                else if(boost::regex_match(param, what, length_exp))
                {