summaryrefslogtreecommitdiff
path: root/libavformat/avidec.c
Commit message (Collapse)AuthorAge
...
* remove ff_get_fourcc() and use AV_RL32() insteadAurelien Jacobs2009-01-17
| | | | Originally committed as revision 16654 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make unsigned int a variable that does not need to be explicitely 32 bits.Marc Mason2009-01-16
| | | | | | | Fixes a warning. Patch by: Marc Mason mpeg (your_ad_here) blue (chez) free fr Originally committed as revision 16632 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace all occurrence of ENABLE_ by the corresponding CONFIG_, HAVE_ or ARCH_Aurelien Jacobs2009-01-14
| | | | | | and remove all ENABLE_ definitions. Originally committed as revision 16600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVI: add bswap.h include needed on big endianMåns Rullgård2009-01-12
| | | | Originally committed as revision 16564 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename AVMetaData to AVMetadata and meta_data to metadataAurelien Jacobs2009-01-04
| | | | Originally committed as revision 16430 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Generic metadata API.Michael Niedermayer2009-01-04
| | | | | | | | avi is updated as example. No version bump, the API still might change slightly ... No update to ffmpeg.c as requested by aurel. Originally committed as revision 16424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix bug where the avi demxuer lost the first frame of malformedMichael Niedermayer2008-12-16
| | | | | | | ODML avis. Fixes VS2k5DebugDemo-01-partial.avi Originally committed as revision 16167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l (forgot sample_size)Michael Niedermayer2008-12-14
| | | | | | Should fix fate. Originally committed as revision 16133 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix non interleaved variable fps ODML avis.Michael Niedermayer2008-12-14
| | | | | | Fixed issue738 Originally committed as revision 16127 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Favor even chunk sizes in ambiguous cases.Michael Niedermayer2008-10-04
| | | | | | Fixes transcode_069_produces_uneven_chunk_size.avi. Originally committed as revision 15557 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize stream id parsing.Michael Niedermayer2008-10-04
| | | | Originally committed as revision 15556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove offset_t typedef and use int64_t directly instead.Diego Biurrun2008-10-03
| | | | | | | 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
* Bump Major version, this commit is almost just renaming bits_per_sample toLuca Abeni2008-09-08
| | | | | | | | | | | 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
* convert every muxer/demuxer to write/read sample_aspect_ratio from/toAurelien Jacobs2008-08-23
| | | | | | the corresponding AVStream instead of AVCodecContext Originally committed as revision 14933 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change assert test due to the new reducing of time_base in av_set_pts_info, ↵Baptiste Coudurier2008-07-30
| | | | | | fix #561 Originally committed as revision 14477 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling cosmeticsDiego Biurrun2008-07-04
| | | | Originally committed as revision 14064 to svn://svn.ffmpeg.org/ffmpeg/trunk
* uniformize AVStream->priv_data freeing in av_close_input_streamBaptiste Coudurier2008-06-20
| | | | Originally committed as revision 13838 to svn://svn.ffmpeg.org/ffmpeg/trunk
* factorize read_header failure freeing codeBaptiste Coudurier2008-06-20
| | | | Originally committed as revision 13837 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parse 'dats' as data.Florian Echtler2008-06-18
| | | | | | Patch by Florian Echtler: floe butterbrot org Originally committed as revision 13801 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.Stefano Sabatini2008-06-03
| | | | | | | 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
* Fixes NULL pointer dereference CID66Michael Niedermayer2008-05-28
| | | | Originally committed as revision 13483 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Tell the user if a AVI is non interleaved.Michael Niedermayer2008-05-28
| | | | Originally committed as revision 13482 to svn://svn.ffmpeg.org/ffmpeg/trunk
* consistency cosmetics: indices --> indexesDiego Biurrun2008-05-26
| | | | Originally committed as revision 13444 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support non interleaved avi with phantom streams.Michael Niedermayer2008-05-26
| | | | Originally committed as revision 13436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print warning if scale/rate is invalid.Michael Niedermayer2008-04-13
| | | | Originally committed as revision 12806 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2008-04-13
| | | | Originally committed as revision 12805 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Restructure if/else a little.Michael Niedermayer2008-04-13
| | | | Originally committed as revision 12804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2008-03-28
| | | | Originally committed as revision 12618 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1000l to myself, dereferencing uninitalized pointer.Michael Niedermayer2008-03-28
| | | | Originally committed as revision 12614 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support wb00+dc00 chunk mix.Michael Niedermayer2008-03-27
| | | | | | fixes issue402 Originally committed as revision 12609 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix aspect ratio.Michael Niedermayer2008-03-27
| | | | | | | fixes issue404 avienc.c change by StevieS Originally committed as revision 12601 to svn://svn.ffmpeg.org/ffmpeg/trunk
* One non functional AVPalette chunk less, one heap overflow less.Michael Niedermayer2008-03-20
| | | | | | Fixes playback of CIMOVI01.avi. Originally committed as revision 12517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use block_align as the avi spec says.Michael Niedermayer2008-03-03
| | | | | | fix issue274 Originally committed as revision 12296 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print slightly more useful info.Michael Niedermayer2008-03-03
| | | | Originally committed as revision 12295 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extract aspect ratio from ODML/vprp.Michael Niedermayer2008-01-01
| | | | Originally committed as revision 11365 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use dynamically allocated ByteIOContext in AVFormatContextBjörn Axelsson2007-11-21
| | | | | | | 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
* Add support for AMV variants of AVI files.Vladimir Voroshilov2007-09-29
| | | | | | | | patch by Vladimir Voroshilov, voroshil gmail com Date: Sun, 30 Sep 2007 00:30:34 +0700 Subject: Re: [FFmpeg-devel] [PATCH] Demuxer for AMV files Originally committed as revision 10623 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add support for AVI files with On2 headerAurelien Jacobs2007-09-26
| | | | Originally committed as revision 10591 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use a table to parse AVI file headerAurelien Jacobs2007-09-26
| | | | Originally committed as revision 10590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove broken movi_end skip-hack-checkMichael Niedermayer2007-08-14
| | | | | | this should fix seeking over the first riff chunk in odml Originally committed as revision 10114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not misuse movi_end for checking chunk sizesMichael Niedermayer2007-08-14
| | | | Originally committed as revision 10113 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Hack to support XSUB subtitles in AVIReimar Döffinger2007-08-05
| | | | Originally committed as revision 9936 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add an enum for need_parsingAurelien Jacobs2007-04-15
| | | | Originally committed as revision 8742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* timestamps generation improvement when parsing aviJoakim Plate2007-04-13
| | | | | | | | | patch by Joakim \ elupus chez ecce dot se / original thread: date: 03/19/2007 01:47 AM subject: [Ffmpeg-devel] [RFC] Improvement for the odd timestamp generation when parser is in use. Originally committed as revision 8725 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-08
| | | | | | buf_size checks Originally committed as revision 8677 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix demuxing of broken MVI_3011.aviMichael Niedermayer2007-03-10
| | | | Originally committed as revision 8317 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support yet another broken avi (filedoesitbetter.avi) which has a wrong ↵Michael Niedermayer2007-02-13
| | | | | | stream count Originally committed as revision 7961 to svn://svn.ffmpeg.org/ffmpeg/trunk
* supporting files with A,V,I,0x19 headerMichael Niedermayer2007-02-07
| | | | Originally committed as revision 7876 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2007-02-05
| | | | Originally committed as revision 7845 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dynamic index building so forward and backward seeking in avi without an ↵Michael Niedermayer2007-02-05
| | | | | | index is possible Originally committed as revision 7842 to svn://svn.ffmpeg.org/ffmpeg/trunk