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-07-17lavf: use designated initialisers for all (de)muxers.Anton Khirnov
It's more readable and less prone to breakage.
2011-03-21amr: Set the AVFMT_GENERIC_INDEX flagMartin Storsjö
This makes the amr demuxer support seeking, closing roundup issue 2593.
2011-03-21amr: Set the pkt->pos field properly to the start of the packetMartin Storsjö
Previously, the field pointed to the second byte of the packet (which is the first byte of the actual AMR payload).
2011-03-21amr: Set the codec->bit_rate field based on the last packetMartin Storsjö
This allows libavformat to guess an estimated duration for amr files. For streams with varying bit rates (or with silence descriptors or "no frame" blocks) the guess is, of course, inaccurate.
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-03-17avio: rename put_flush_packet -> avio_flushAnton 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-02-25lavf: replace remaining uses of put_tag with avio_writeAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-21avio: avio: avio_ prefixes for put_* functionsAnton Khirnov
In the name of consistency: put_byte -> avio_w8 put_<type> -> avio_w<type> put_buffer -> avio_write put_nbyte will be made private put_tag will be merged with avio_put_str 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-09-03Set frame_size in the amr demuxerMartin Storsjö
Originally committed as revision 25030 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-01-14Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs
They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-03Replace generic CONFIG_MUXERS preprocessor conditionals by more specificDiego Biurrun
CONFIG_FOO_MUXER conditionals where appropriate. Originally committed as revision 15158 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
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-07-07kill uninitialised variable warning in amr_read_packet()Måns Rullgård
Originally committed as revision 9522 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-27remove empty write trailer functionsVitor Sessak
patch by Vitor: [vitor1001 gmail com] Originally committed as revision 9442 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
2006-10-11unused #defineMichael Niedermayer
Originally committed as revision 6638 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-11remove dummy amr_read_close()Michael Niedermayer
Originally committed as revision 6637 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-11more factoriztaion and a FIXME noteMichael Niedermayer
Originally committed as revision 6636 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-11factorze another 2 linesMichael Niedermayer
Originally committed as revision 6635 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-11set duration and timebase (based on a patch by Simon Morlat simon.morlat ↵Michael Niedermayer
linphone org) Originally committed as revision 6634 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-11factorize (untested)Michael Niedermayer
Originally committed as revision 6633 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-11return cleanupMichael Niedermayer
Originally committed as revision 6632 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-09-27fix some signedness warningsMåns Rullgård
Originally committed as revision 6355 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-08Fix some "'static' is not at beginning of declaration" warnings.Diego Biurrun
Originally committed as revision 5956 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-22Place proper #ifdef around muxer-specific code.Gianluigi Tiesi
patch by Gianluigi Tiesi < mplayer at@at netfarm dot.dot it > Originally committed as revision 4880 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
2005-04-24Put correct fourcc in tag field for amr_nb (samr) and amr_wb (sawb)Roberto Togni
Originally committed as revision 4152 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-29pass AVPacket into av_write_frame()Michael Niedermayer
fixes the random dts/pts during encoding asf preroll fix no more initial zero frames for b frame encoding mpeg-es dts during demuxing fixed .ffm timestamp scale fixed, ffm is still broken though Originally committed as revision 3168 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-09-29AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)Michael Niedermayer
Originally committed as revision 2311 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-06-19amr typefix patch by (Johannes Carlsson <joca at rixmail dot se>)Johannes Carlsson
Originally committed as revision 1972 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-06-06* amr format - by Johannes CarlssonZdenek Kabelac
Originally committed as revision 1934 to svn://svn.ffmpeg.org/ffmpeg/trunk