]> git.sesse.net Git - casparcg/commitdiff
Merge pull request #496 from dimitry-ishenko-casparcg/2.1.0-fixes
authorHellGore <helge.norberg@gmail.com>
Mon, 7 Nov 2016 12:03:14 +0000 (13:03 +0100)
committerGitHub <noreply@github.com>
Mon, 7 Nov 2016 12:03:14 +0000 (13:03 +0100)
[ffmpeg_producer] Remove extraneous \

modules/ffmpeg/producer/ffmpeg_producer.cpp

index fe0492adea5816d2c893b28f8df2d7e376057091..ac4ae09e0233eef8e42e455f959c3efb07c3bee9 100644 (file)
@@ -425,7 +425,7 @@ public:
                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+)(\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);
+               static const boost::wregex start_exp(LR"(START\s+(?<VALUE>\d+)?)", boost::regex::icase);
 
                auto param = boost::algorithm::join(params, L" ");