1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-11 01:47:55 +02:00
Go to file
Mark Himsley 19d82cb14c fade: fix draw_slice() check on fade->factor value
draw_slice() checks that the fade factor is < 65536 and only
calculates the fade if so. But the fade factor is clipped in
end_frame() by av_clip_uint16() to 65535, so the fade is calculated
for every frame.  This patch alters the check so that it compares with
< 65535 (UINT16_MAX).
2011-03-18 23:25:33 +01:00
doc Revert "replace FFmpeg with Libav in doc/" 2011-03-17 17:26:45 +01:00
ffpresets Update qmin/qmax values for libx264 presets 2011-02-09 03:33:56 +01:00
libavcodec Merge remote-tracking branch 'newdev/master' 2011-03-18 17:58:58 +01:00
libavdevice Revert "replace FFMPEG with LIBAV in FFMPEG_CONFIGURATION" 2011-03-17 17:26:45 +01:00
libavfilter fade: fix draw_slice() check on fade->factor value 2011-03-18 23:25:33 +01:00
libavformat reverts parts of commit de11ee906e. The author of this patch has a poor understanding of the code 2011-03-18 17:59:24 +01:00
libavutil Revert "replace FFMPEG with LIBAV in FFMPEG_CONFIGURATION" 2011-03-17 17:26:45 +01:00
libpostproc Revert "replace FFMPEG with LIBAV in FFMPEG_CONFIGURATION" 2011-03-17 17:26:45 +01:00
libswscale Revert "replace FFMPEG with LIBAV in FFMPEG_CONFIGURATION" 2011-03-17 17:26:45 +01:00
tests asf: update seek test reference 2011-03-17 19:51:28 +00:00
tools patcheck: warn about assert usage 2011-03-18 18:49:36 +01:00
.gitignore consolidate .gitignore patters into a single file 2011-01-18 21:32:05 +01:00
Changelog Merge remote-tracking branch 'newdev/master' 2011-03-17 17:22:52 +01:00
cmdutils_common_opts.h Implement a -pix_fmts option for listing all the supported pixel 2009-12-21 21:53:03 +00:00
cmdutils.c Revert "replace FFMPEG with LIBAV in FFMPEG_CONFIGURATION" 2011-03-17 17:26:45 +01:00
cmdutils.h Add a dummy option -i to ffplay so that it is easy to switch between ffmpeg -i "file" and ffplay -i "file". 2011-03-08 17:34:02 +01:00
common.mak Merge libavcore into libavutil 2011-02-16 23:00:30 +01:00
configure Revert "partially rename FFmpeg to Libav" 2011-03-17 17:26:45 +01:00
COPYING.GPLv2 Rename COPYING.GPL --> COPYING.GPLv2 and COPYING.LGPL --> COPYING.LGPLv2.1. 2009-06-05 09:51:31 +00:00
COPYING.GPLv3 Add configure option to upgrade (L)GPL to version 3. 2009-06-05 11:04:03 +00:00
COPYING.LGPLv2.1 Rename COPYING.GPL --> COPYING.GPLv2 and COPYING.LGPL --> COPYING.LGPLv2.1. 2009-06-05 09:51:31 +00:00
COPYING.LGPLv3 Add configure option to upgrade (L)GPL to version 3. 2009-06-05 11:04:03 +00:00
CREDITS Revert "partially rename FFmpeg to Libav" 2011-03-17 17:26:45 +01:00
Doxyfile Revert "partially rename FFmpeg to Libav" 2011-03-17 17:26:45 +01:00
ffmpeg.c Fix compilation error when CONFIG_AVFILTER is not defined. 2011-03-17 01:35:08 +01:00
ffplay.c Merge remote-tracking branch 'newdev/master' 2011-03-15 16:48:42 +01:00
ffprobe.c lavf: add av_ prefix to dump_format() 2011-02-18 19:52:28 +01:00
ffserver.c avio: deprecate url_open_buf 2011-03-16 22:59:39 -04:00
ffserver.h Add FFMPEG_ prefix to all multiple inclusion guards. 2007-10-17 09:37:46 +00:00
INSTALL Revert "partially rename FFmpeg to Libav" 2011-03-17 17:26:45 +01:00
LICENSE Revert "partially rename FFmpeg to Libav" 2011-03-17 17:26:45 +01:00
MAINTAINERS Delete MAINTAINERS file 2011-03-14 21:13:27 +00:00
Makefile Revert "replace FFMPEG with LIBAV in FFMPEG_CONFIGURATION" 2011-03-17 17:26:45 +01:00
README Revert "partially rename FFmpeg to Libav" 2011-03-17 17:26:45 +01:00
subdir.mak fix building test programs with gnu make 3.82 2010-12-07 16:42:25 +00:00
version.sh Revert "use LIBAV_LICENSE and LIBAV_VERSION instead of FFMPEG_*" 2011-03-17 17:26:45 +01:00

FFmpeg README
-------------

1) Documentation
----------------

* Read the documentation in the doc/ directory.

2) Licensing
------------

* See the LICENSE file.