diff options
author | Stephen Hutchinson <qyot27@gmail.com> | 2016-10-28 20:52:11 -0400 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-11-17 09:44:26 +0100 |
commit | bf8646274b3ea2d9a193edfdbd70a3bb5c6dd74f (patch) | |
tree | 1bb52c9d6efe5a1005191e8eb2aec6083d65aa10 /doc | |
parent | 3cc3463f306f425f76bd962755df1132eeac6dfa (diff) | |
download | ffmpeg-streaming-bf8646274b3ea2d9a193edfdbd70a3bb5c6dd74f.zip ffmpeg-streaming-bf8646274b3ea2d9a193edfdbd70a3bb5c6dd74f.tar.gz |
doc: Add note about recent regression in AviSynth+
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/general.texi | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/general.texi b/doc/general.texi index 1708871..7b1f11c 100644 --- a/doc/general.texi +++ b/doc/general.texi @@ -182,6 +182,19 @@ provides a GNU-style Makefile which can install just the headers using @code{make install PREFIX=/install/prefix}. @float NOTE +There is currently a regression in AviSynth+'s @code{capi.h} header as of +October 2016, which interferes with the ability for builds of Libav to use +MSVC-built binaries of AviSynth. Until this is resolved, you can make sure +a known good version is installed by checking out a version from before +the regression occurred: + +@code{git clone -b MT git://github.com/AviSynth/AviSynthPlus.git @* +cd AviSynthPlus @* +git checkout -b oldheader b4f292b4dbfad149697fb65c6a037bb3810813f9 @* +make install PREFIX=/install/prefix} +@end float + +@float NOTE When using AviSynth+'s installed headers, the user must also pass the avisynth/ include directory to @code{--extra-cflags}. For example, if the PREFIX given to AviSynth+'s Makefile was /usr/i686-w64-mingw32, |