Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-04-05compat/avisynth: remove avisynth headersStephen Hutchinson
2020-01-01compat/avisynth: Fix unicode compilation.Matt Oliver
Reviewed-by: Stephen Hutchinson <qyot27@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2019-05-04compat/avisynth: update headersStephen Hutchinson
As part of the update, it is now possible to test 32-bit GCC builds of AviSynth+ with FFmpeg by using the AVS_WIN32_GCC32 define. Due to different calling conventions between MSVC and GCC regarding 32-bit Windows, this is unfortunately necessary.
2016-08-17compat/avisynth: update AviSynth+ headerStephen Hutchinson
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-03-25avisynth: drop support of AviSynth 2.5Stephen Hutchinson
If the user attempts to use AviSynth 2.5, an error message will now tell them they need to upgrade. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-03-25avisynth: ifdef to avoid implicit function declaration errorsStephen Hutchinson
The demuxer doesn't use these functions, so it shouldn't affect anything. Investigate whether this can be fixed by how headers are checked in configure. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-03-25avisynth: update headers against AviSynth+Stephen Hutchinson
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-02-18compat/avisynth/windowsPorts/windows2linux: Add () to protect macro argumentsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-12-11compat/avisynth/avxsynth_c: Clear all unused fields in returned structsMichael Niedermayer
Fixes: CID1257658 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-08-15Merge commit 'f929ab0569ff31ed5a59b0b0adb7ce09df3fca39'Michael Niedermayer
* commit 'f929ab0569ff31ed5a59b0b0adb7ce09df3fca39': cosmetics: Write NULL pointer equality checks more compactly Conflicts: cmdutils.c ffmpeg_opt.c ffplay.c libavcodec/dvbsub.c libavcodec/dvdsubdec.c libavcodec/dvdsubenc.c libavcodec/dxa.c libavcodec/libxvid_rc.c libavcodec/mpegvideo.c libavcodec/mpegvideo_enc.c libavcodec/rv10.c libavcodec/tiffenc.c libavcodec/utils.c libavcodec/vc1dec.c libavcodec/zmbv.c libavdevice/v4l2.c libavformat/matroskadec.c libavformat/movenc.c libavformat/sdp.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-03-06Correct the FSF address for two avisynth files to '51 Franklin Street, Fifth ↵Andreas Cadhalpun
Floor, Boston, MA 02110-1301 USA' Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-08-17avisynth: Support video input from AviSynth 2.5 properly.Stephen Hutchinson
Uses the 2.5 compatibility header included with the variant of FFMS2 that uses AviSynth's C-interface. A copy of this header is now provided in compat/avisynth. avs_get_row_size_p and avs_get_height_p changed between versions 2.5 and 2.6. Since the avisynth_c.h header that avformat uses assumes AviSynth 2.6, it would cause 2.5 to crash if given any kind of real video (the Version() function was known to work, though). AvxSynth was unaffected by this issue because, despite being based on AviSynth 2.5.8 and using 2.5.8's interface version number of 3, it actually uses 2.6's versions of these functions. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-03-21Provide local copies of AviSynth's and AvxSynth's requisite headers in ↵Stephen Hutchinson
compat/avisynth/. The versions of the headers are the same as those provided with x264 for consistency's sake.