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
2011-06-04Fix error check in av_file_map()Mans Rullgard
On failure, mmap() returns MAP_FAILED, which may or may not be -1. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-04-19lavu: remove misc disabled cruftAnton Khirnov
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-05Win32 support for av_file_map()Daniel Verkamp
Originally committed as revision 26221 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-22Fix av_file_map(): replace stat(filename, &st) with fstat(fd, &st).Stefano Sabatini
The file might be replaced between open() and stat(). Spotted by Mans. Originally committed as revision 26075 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-22Replace lstat() with stat() in av_file_map(). The lstat() use was wrong.Stefano Sabatini
Originally committed as revision 26074 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-22Add av_file_map() and av_file_unmap() functions.Stefano Sabatini
Originally committed as revision 26073 to svn://svn.ffmpeg.org/ffmpeg/trunk