Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
11881196
Commit
11881196
authored
Mar 13, 2015
by
Stephen Hutchinson
Committed by
Luca Barbato
Mar 24, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avisynth: update documentation about the avisynth_c.h header
Signed-off-by:
Luca Barbato
<
lu_zero@gentoo.org
>
parent
a8c99205
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
20 deletions
+16
-20
general.texi
doc/general.texi
+15
-10
avisynth.c
libavformat/avisynth.c
+1
-10
No files found.
doc/general.texi
View file @
11881196
...
...
@@ -145,20 +145,25 @@ enable it.
@section AviSynth
Libav can read AviSynth scripts as input. To enable support you need a
suitable @file
{
avisynth
_
c.h
}
header to compile against. The header in
classic AviSynth's CVS repository is not compatible as it has not been
updated to support AviSynth 2.6. AviSynth 2.5 is not supported by Libav.
Once you have the appropriate header, pass @code
{
--enable-avisynth
}
to
configure to enable AviSynth support.
suitable @file
{
avisynth
_
c.h
}
header to compile against. The header as
provided by AviSynth+ is fully compatible. AviSynth 2.5 is not supported
by Libav. Once you have the appropriate header, pass
@code
{
--enable-avisynth
}
to configure to enable AviSynth support.
For Windows, supported AviSynth variants are
@url
{
http://avisynth.nl, AviSynth 2.6
}
for 32-bit builds and
@url
{
http://avs-plus.net, AviSynth+ 0.1
}
for 32-bit and 64-bit builds.
The necessary @file
{
avisynth
_
c.h
}
header is the variant in the @file
{
extras/
}
directory of the @url
{
https://www.videolan.org/developers/x264.html, x264
}
source tree. For convenience, this header is also available from a
@url
{
https://github.com/qyot27/avisynth
_
headers, temporary repository
}
along with an installation routine.
@url
{
https://github.com/AviSynth/AviSynthPlus, AviSynth+'s git repository
}
provides a GNU-style Makefile which can install just the headers using
@code
{
make install PREFIX=/install/prefix
}
.
@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,
then the correct command would be
@code
{
--extra-cflags="-I/usr/i686-w64-mingw32/include/avisynth"
}
.
@end float
For Linux and OS X, the supported AviSynth variant is
@url
{
https://github.com/avxsynth/avxsynth, AvxSynth
}
.
...
...
libavformat/avisynth.c
View file @
11881196
...
...
@@ -27,16 +27,7 @@
/* Enable function pointer definitions for runtime loading. */
#define AVSC_NO_DECLSPEC
/* Platform-specific directives for AviSynth vs AvxSynth.
*
* avisynth_c.h needs to be the one provided with x264, as
* the one in AviSynth's CVS hasn't been updated to support
* 2.6's extra colorspaces. A temporary source of that header,
* installable from a GNU-style Makefile is available from
* github.com/qyot27/avisynth_headers -- AvxSynth doesn't
* require this kind of special treatment because like any
* standard *nix application, it installs its headers
* alongside its libs. */
/* Platform-specific directives for AviSynth vs AvxSynth. */
#ifdef _WIN32
#include <windows.h>
#undef EXTERN_C
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment