This patch ensures that MSVC builds under msys will use windres when
available, thereby resulting in the appropriate version and copyright
information to be included in the dlls, as is already the case in the mingw
builds.
---
configure | 1 +
1 file changed, 1 insertion(+)
diff --git a/configure
Fixes builds with
--disable-avcodec --disable-avformat --enable-avfilter
which currently results in a broken avfilter library due to a few
filters that require avcodec or avformat getting mistakenly
compiled.
---
configure | 7 +++
1 file changed, 7 insertions(+)
diff --git a/configure b/co
The source file "libavfilter/dnn/dnn_backend_native.h" includes
"libavformat/avio.h", so avformat needs to be declared as a dependency.
---
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure
index 9e45c0822c..8725a94f8a 100755
--- a/configure
+++ b/
avfilter/vf_skipblend.c b/libavfilter/vf_skipblend.c
new file mode 100644
index 000..2915b43
--- /dev/null
+++ b/libavfilter/vf_skipblend.c
@@ -0,0 +1,272 @@
+/*
+ * Copyright (c) 2012 Stefano Sabatini
+ * Copyright (c) 2017 Matthias C. M. Troffaes
+ *
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg
with discussion:
https://ffmpeg.org/pipermail/ffmpeg-devel/2017-April/209794.html
https://ffmpeg.org/pipermail/ffmpeg-devel/2017-May/211814.html
Matthias C. M. Troffaes (1):
avfilter: add skipblend filter
Changelog | 1 +
doc/filters.texi
amestep.c
index 8102e7c..33a380f 100644
--- a/libavfilter/vf_framestep.c
+++ b/libavfilter/vf_framestep.c
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2012 Stefano Sabatini
+ * Copyright (c) 2017 Matthias C. M. Troffaes
*
* This file is part of FFmpeg.
*
@@ -24,13 +25,24 @@
*/
#include &
ur
effect.
Matthias C. M. Troffaes (1):
vf_framestep: add blend parameter for motion blur effect
Changelog | 1 +
doc/filters.texi | 7 ++
libavfilter/vf_framestep.c| 242 ++
tests/fate/filter-video.mak
@@
/*
* Copyright (c) 2012 Stefano Sabatini
+ * Copyright (c) 2017 Matthias C. M. Troffaes
*
* This file is part of FFmpeg.
*
@@ -24,13 +25,25 @@
*/
#include "libavutil/opt.h"
+#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "internal.h&quo