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-03Replace custom debug output functions by av_dlog().Diego Biurrun
2011-04-15make containers pass palette change in AVPacketKostya Shishkov
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-03-17lavf: replace avio_seek(SEEK_CUR) with avio_skip where it makes senseAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-08avio: deprecate url_feofAnton Khirnov
AVIOContext.eof_reached should be used directly instead. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-04avio: add avio_tell macro as a replacement for url_ftellAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-01avio: avio_ prefix for url_fseekAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-21avio: avio_ prefixes for get_* functionsAnton Khirnov
In the name of consistency: get_byte -> avio_r8 get_<type> -> avio_r<type> get_buffer -> avio_read get_partial_buffer will be made private later get_strz is left out becase I want to change it later to return something useful. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-20avio: rename ByteIOContext to AVIOContext.Anton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-01-27Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò
This also lists the objects from those two libraries as internal (by adding the ff_ prefix) so that they can then be hidden via linker scripts.
2010-11-21Fix indentation.Reimar Döffinger
Originally committed as revision 25781 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-27Recognize 16-bit Interplay Video variantKostya Shishkov
Originally committed as revision 20927 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-05Search for ipmovie signature beyond the start of the file.Reimar Döffinger
This allows to play directly files that combine player and movie into a single executable like http://samples.mplayerhq.hu/game-formats/interplay-mve/DES3S.EXE Originally committed as revision 19769 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-05Extend ipmovie signature to match exactly one place in mve files that have aReimar Döffinger
player binary prepended. Originally committed as revision 19768 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-27Simplify ipmovie.c pts calculation by using an appropriate time_base.Reimar Döffinger
Originally committed as revision 17639 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-27Hack: #undef printf so compilation works with DEBUG_IPMOVIE set to 1Reimar Döffinger
Originally committed as revision 17632 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-12Fix build: Add intreadwrite.h and bswap.h #includes where necessary.Diego Biurrun
Originally committed as revision 16556 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-23Fix a warning when compiling with icc:Carl Eugen Hoyos
warning #188: enumerated type mixed with another type Originally committed as revision 16280 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-03Remove offset_t typedef and use int64_t directly instead.Diego Biurrun
The name offset_t is easily confused with the standard off_t type and *_t is POSIX reserved namespace if any POSIX header is included. Originally committed as revision 15533 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-08Bump Major version, this commit is almost just renaming bits_per_sample toLuca Abeni
bits_per_coded_sample but that cannot be done seperately. Patch by Luca Abeni Also reset the minor version and fix the forgotton change to libfaad. Note: The API/ABI should not be considered stable yet, there still may be a change done here or there if some developer has some cleanup ideas and patches! Originally committed as revision 15262 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-20remove useless close funcsBaptiste Coudurier
Originally committed as revision 13835 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-03Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste.it along with some spelling/consistency fixes for the long names by me Originally committed as revision 13649 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-27consistency cosmetics: indices --> indexesDiego Biurrun
Originally committed as revision 13444 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-21Use dynamically allocated ByteIOContext in AVFormatContextBjörn Axelsson
patch by: Björn Axelsson, bjorn d axelsson a intinor d se thread: [PATCH] Remove static ByteIOContexts, 06 nov 2007 Originally committed as revision 11071 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-19Replace all occurrences of AVERROR_IO with AVERROR(EIO).Panagiotis Issaris
Originally committed as revision 9760 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-19Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).Panagiotis Issaris
Originally committed as revision 9759 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-04-09Get rid of unnecessary pointer casts.Nicholas Tung
patch by Nicholas Tung, ntung ntung com Originally committed as revision 8687 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-04-08allocate 32 extra bytes at the end of the probe buffer and remove most probe ↵Michael Niedermayer
buf_size checks Originally committed as revision 8677 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-17not checking error return, resulting double freeMichael Niedermayer
returning uninitalized pointers Originally committed as revision 8002 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-20rename BE/LE_8/16/32 to AV_RL/B_8/16/32Alex Beregszaszi
Originally committed as revision 7587 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-02Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.Steve L'Homme
patch by Steve Lhomme, slhomme divxcorp com Originally committed as revision 6868 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-07Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun
and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-07-11allow individual selection of muxers and demuxersMåns Rullgård
Originally committed as revision 5707 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-07-10give AVInput/OutputFormat structs consistent namesMåns Rullgård
Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-01-13Update licensing information: The FSF changed postal address.Diego Biurrun
Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-17COSMETICS: Remove all trailing whitespace.Diego Biurrun
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-07-18changing AVCodecContext codec -> *codec in AVStream so additions to ↵Michael Niedermayer
AVCodecContext dont randomize AVStream and break binary compatibility Originally committed as revision 4453 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-05-27AVPacket.posMichael Niedermayer
Originally committed as revision 4314 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-06-19cvs diff before cvs commitMike Melanson
Originally committed as revision 3240 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-06-19sweeping change from -EIO -> AVERROR_IOMike Melanson
Originally committed as revision 3239 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-05-22move time_base (pts_num/pts_den) from AVFormatContext -> AVStreamMichael Niedermayer
Originally committed as revision 3148 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-03-14remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->Mike Melanson
MKTAG/MKBETAG Originally committed as revision 2886 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-12-01off by 1 in the paletteMike Melanson
Originally committed as revision 2548 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-10-30revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)Mike Melanson
Originally committed as revision 2451 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-10-02properly demux silent files; implemented precise framerate calculationMike Melanson
Originally committed as revision 2330 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-09-20iterate through the appropriate range of palette entriesMike Melanson
Originally committed as revision 2295 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-09-18provisions for raw PCM audioMike Melanson
Originally committed as revision 2291 to svn://svn.ffmpeg.org/ffmpeg/trunk