summaryrefslogtreecommitdiffstats
path: root/libavformat/ffm.c
Commit message (Collapse)AuthorAgeFilesLines
* Use AV_RB* macros where appropriate.Ronald S. Bultje2007-07-061-8/+3
| | | | | | | | patch by Ronald S. Bultje, rsbultje gmail com thread: Re: [FFmpeg-devel] remove int readers date: Sat, 23 Jun 2007 09:32:12 -0400 Originally committed as revision 9499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allocate 32 extra bytes at the end of the probe buffer and remove most probe ↵Michael Niedermayer2007-04-081-1/+1
| | | | | | buf_size checks Originally committed as revision 8677 to svn://svn.ffmpeg.org/ffmpeg/trunk
* codec_tag settable via VideoTag, and transmit codec_tag in ffmAlex Beregszaszi2007-02-221-0/+2
| | | | Originally committed as revision 8071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* This fixes error handling for BeOS, removing the need for some ifdefs.François Revol2007-02-131-4/+4
| | | | | | | | | AVERROR_ defines are moved to avcodec.h as they are needed in there as well. Feel free to move that to avutil/common.h. Bumped up avcodec/format version numbers as though it's binary compatible we will want to rebuild apps as error values changed. Please from now on use return AVERROR(EFOO) instead of the ugly return -EFOO in your code. This also removes the need for berrno.h. Originally committed as revision 7965 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use the standard INT64_C() macro for 64-bit constantsMåns Rullgård2006-12-061-1/+1
| | | | Originally committed as revision 7240 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.Steve L'Homme2006-11-011-3/+3
| | | | | | patch by Steve Lhomme, slhomme divxcorp com Originally committed as revision 6868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace coder/decoder file description in libavformat by muxer/demuxerAurelien Jacobs2006-10-231-1/+1
| | | | Originally committed as revision 6774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-071-4/+6
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow individual selection of muxers and demuxersMåns Rullgård2006-07-101-14/+6
| | | | Originally committed as revision 5707 to svn://svn.ffmpeg.org/ffmpeg/trunk
* give AVInput/OutputFormat structs consistent namesMåns Rullgård2006-07-091-4/+4
| | | | Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add --disable-protocols option to configure to disable I/O protocol fromGildas Bazin2006-01-211-0/+2
| | | | | | | libavformat. Also fix build with --disable-muxers and --disable-ffserver. patch by Gildas Bazin < gbazin **@** altern **.** org > Originally committed as revision 4879 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pts fix by (Bryan Mayland / bmayland O leoninedev o com)Michael Niedermayer2006-01-191-1/+7
| | | | Originally committed as revision 4867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-121-1/+1
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: tabs --> spaces, some prettyprintingDiego Biurrun2005-12-221-1/+1
| | | | Originally committed as revision 4764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-171-7/+7
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix feed read_header, avoid using put_tag in write_header, to be consistent ↵Alex Beregszaszi2005-10-121-4/+5
| | | | | | with read_header, also some minor cosmetics Originally committed as revision 4636 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERSDiego Biurrun2005-09-231-6/+6
| | | | | | | in libavformat to allow building (de)coders and (de)muxers independently at some point + support for this option in configure. Originally committed as revision 4611 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove non portable get/put_be64_double()Michael Niedermayer2005-07-191-10/+10
| | | | Originally committed as revision 4461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* changing AVCodecContext codec -> *codec in AVStream so additions to ↵Michael Niedermayer2005-07-171-8/+8
| | | | | | AVCodecContext dont randomize AVStream and break binary compatibility Originally committed as revision 4453 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVPacket.posMichael Niedermayer2005-05-261-0/+1
| | | | Originally committed as revision 4314 to svn://svn.ffmpeg.org/ffmpeg/trunk
* drop most url_fileno() calls (allows to use ByteIOContext directly in caller ↵Aurelien Jacobs2005-05-191-1/+1
| | | | | | apps instead of URLProtocol) Originally committed as revision 4275 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Flush the ffm packet to the wire (or file) whenever we flush the ffm packet.Philip Gladstone2005-05-071-0/+1
| | | | | | This helps streaming no end. Originally committed as revision 4195 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add in many fields that have been added to the Codec structure. This meansPhilip Gladstone2005-05-061-0/+28
| | | | | | | that ffm will now carry most of the important fields over between ffserver and ffmpeg Originally committed as revision 4184 to svn://svn.ffmpeg.org/ffmpeg/trunk
* switch to native time basesMichael Niedermayer2005-04-301-5/+5
| | | | Originally committed as revision 4168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill warnings patch by (Måns Rullgård <mru inprovide com>)Måns Rullgård2005-02-241-1/+0
| | | | Originally committed as revision 3977 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l (forgoten seeking functions)Michael Niedermayer2004-10-111-2/+2
| | | | Originally committed as revision 3585 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move free() of AVStream priv data to av_write_trailer()Michael Niedermayer2004-10-011-2/+0
| | | | Originally committed as revision 3548 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not call (av_)abort()Michael Niedermayer2004-10-011-5/+4
| | | | Originally committed as revision 3544 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffserver fixes by (Koos Vriezen <koos.vriezen at xs4all dot nl>)Michael Niedermayer2004-07-251-0/+1
| | | | Originally committed as revision 3340 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pass AVPacket into av_write_frame()Michael Niedermayer2004-05-291-6/+10
| | | | | | | | | | 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
* adjust_write_index() fix by ("Curi Fabio Eduardo (SFL)" <curif at TELEFONICA ↵Michael Niedermayer2004-03-181-1/+2
| | | | | | dot COM dot AR>) Originally committed as revision 2903 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add more resilience in reading ffm files. In particular, don't assumePhilip Gladstone2003-11-191-0/+66
| | | | | | | that the write pointer is correct. This can happen in certain failure modes. Originally committed as revision 2524 to svn://svn.ffmpeg.org/ffmpeg/trunk
* disable encoders where appropriate (patch courtesy of BEROMike Melanson2003-10-141-0/+6
| | | | | | <bero -at- geocities.co.jp>) Originally committed as revision 2375 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 64 bit pts for writing - more const usageFabrice Bellard2003-09-101-2/+2
| | | | Originally committed as revision 2255 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add av_new_stream() usageFabrice Bellard2003-08-081-7/+5
| | | | Originally committed as revision 2109 to svn://svn.ffmpeg.org/ffmpeg/trunk
* per context frame_rate_base, this should finally fix frame_rate related av ↵Michael Niedermayer2003-03-121-10/+5
| | | | | | sync issues Originally committed as revision 1666 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing frame_rate accuracyMichael Niedermayer2003-03-081-2/+9
| | | | Originally committed as revision 1652 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * UINTX -> uintx_t INTX -> intx_tZdenek Kabelac2003-02-111-22/+22
| | | | Originally committed as revision 1578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av_strdup()Fabrice Bellard2003-01-231-1/+1
| | | | Originally committed as revision 1507 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVVideoFrame -> AVFrameMichael Niedermayer2002-12-091-1/+1
| | | | Originally committed as revision 1327 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a crash caused by a null coded_picture pointer in ffserver.Philip Gladstone2002-12-091-1/+1
| | | | Originally committed as revision 1326 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanupMichael Niedermayer2002-12-041-3/+4
| | | | | | | | | | | adding AVVideoFrame moving quality, pict_type, key_frame, qscale_table, ... to AVVideoFrame removing obsolete variables in AVCodecContext skiping of MBs in b frames correctly initalizing AVCodecContext picture buffer cleanup Originally committed as revision 1302 to svn://svn.ffmpeg.org/ffmpeg/trunk
* renamed libav to libavformatFabrice Bellard2002-11-251-0/+684
Originally committed as revision 1276 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud