summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
Commit message (Collapse)AuthorAge
* avio: avio_ prefix for url_fsizeAnton Khirnov2011-03-07
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: add avio_tell macro as a replacement for url_ftellAnton Khirnov2011-03-04
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* lavf: deprecate get_strz() in favor of avio_get_strAnton Khirnov2011-03-04
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* lavf: replace all uses of url_fskip with avio_seekAnton Khirnov2011-03-01
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: avio_ prefix for url_fseekAnton Khirnov2011-03-01
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: rename url_fopen/fclose -> avio_open/close.Anton Khirnov2011-02-23
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: avio_ prefixes for get_* functionsAnton Khirnov2011-02-21
| | | | | | | | | | | | | | 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>
* avio: move init_put_byte() to a new private header and rename itAnton Khirnov2011-02-20
| | | | | | | init_put_byte should never be used outside of lavf, since sizeof(AVIOContext) isn't part of public ABI. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: rename ByteIOContext to AVIOContext.Anton Khirnov2011-02-20
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* mov: remove stray semicolonMans Rullgard2011-02-10
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* pass QDMC extradata to the decoderSascha Sommer2011-02-06
| | | | | | | Makes playing QDMC files in MPlayer work when using the libavformat demuxer. Problem was that the extradata was not passed from demuxer to decoder. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Replace dprintf with av_dlogLuca Barbato2011-01-29
| | | | dprintf clashes with POSIX.1-2008
* mov: add support for little-endian utf16 chapter namesJohn Stebbins2011-01-28
| | | | Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
* In mov muxer, mux adpcm_ms and adpcm_ima_wav the way quicktime supports itBaptiste Coudurier2011-01-28
| | | | | | In mov demuxer, set adpcm_ms and adpcm_ima_wav frame size to stsd samples per packet. Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
* Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò2011-01-26
| | | | | 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.
* mov: simplify mov_read_chapters() by using avio_get_str16beAnton Khirnov2011-01-26
| | | | | | It probably also fixes a memleak or two. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Revert "mov: simplify mov_read_chapters() by using avio_get_str16be"Mans Rullgard2011-01-26
| | | | | This reverts commit c34461b35b68ff1f3d04540e0279383c51be8cee. The wrong version of the patch was committed.
* mov: simplify mov_read_chapters() by using avio_get_str16beAnton Khirnov2011-01-25
| | | | | | It probably also fixes a memleak or two. Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
* In mov demuxer, handle better wrong time scale, fix issue #2528Baptiste Coudurier2011-01-11
| | | | Originally committed as revision 26311 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, set r_frame_rate for cfr filesBaptiste Coudurier2011-01-11
| | | | Originally committed as revision 26310 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, check that gmtime returns a valid value, fix crash, issue #2490Baptiste Coudurier2011-01-05
| | | | Originally committed as revision 26228 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, check that stts data exists, fix crash, issue #2479Baptiste Coudurier2011-01-05
| | | | Originally committed as revision 26227 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, read alac sample from extradata, fix #2406Baptiste Coudurier2010-12-07
| | | | Originally committed as revision 25901 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, if multiple h264 stsd are present, do not concatenate ↵Baptiste Coudurier2010-11-25
| | | | | | streams, fix #2069 Originally committed as revision 25825 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In ts demuxer, support aac flexmux using extradata in iods, issue #2346Baptiste Coudurier2010-11-23
| | | | Originally committed as revision 25806 to svn://svn.ffmpeg.org/ffmpeg/trunk
* movdec: export creation_date as metadataAurelien Jacobs2010-11-21
| | | | Originally committed as revision 25786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, export .mov encoder metadata tagBaptiste Coudurier2010-11-16
| | | | Originally committed as revision 25757 to svn://svn.ffmpeg.org/ffmpeg/trunk
* movdec: Free the previous extradataMartin Storsjö2010-10-05
| | | | | | | If multiple stsd atoms are parsed for the same stream, the old extradata would be leaked. Originally committed as revision 25360 to svn://svn.ffmpeg.org/ffmpeg/trunk
* movdec: Split out ff_mov_read_stsdMartin Storsjö2010-10-05
| | | | Originally committed as revision 25359 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, check that nb_streams is valid before using it in read_dac3Baptiste Coudurier2010-09-28
| | | | Originally committed as revision 25240 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check dref size based on a patch by googleBaptiste Coudurier2010-09-08
| | | | Originally committed as revision 25081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, do not override aspect ratio in tkhd by pasp like quicktime, ↵Baptiste Coudurier2010-09-08
| | | | | | fix issue #1539 Originally committed as revision 25080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Read the number of channels from the 'dac3' tag for AC-3 in MP4.Justin Ruggles2010-09-06
| | | | Originally committed as revision 25054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_ prefix to bswap macrosMåns Rullgård2010-07-10
| | | | Originally committed as revision 24170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mov: Read Flash's chpl variantDavid Conrad2010-07-04
| | | | | | This is based off of F4V specs rather than any actual files Originally committed as revision 24035 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, fix seeking to the beginning when file has edit lists.John Stebbins2010-07-02
| | | | | | | Patch by John Stebbins, stebbins at jetheaddev dot com Fixes issue #2046 Originally committed as revision 23966 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, only set sar if not already set, patch by Andrew Wason,Andrew Wason2010-07-01
| | | | | | | rectalogic at rectalogic dot com Fixes issue #1754 Originally committed as revision 23948 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use ext sample from mpeg4audio config if set with AAC SBRBaptiste Coudurier2010-07-01
| | | | Originally committed as revision 23947 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, increase total size after debugging messageBaptiste Coudurier2010-06-28
| | | | Originally committed as revision 23864 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve mov atom parsing debug message, print parent atom and size in decimalBaptiste Coudurier2010-06-25
| | | | Originally committed as revision 23764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change author metadata to artist in mov de/muxerBaptiste Coudurier2010-05-23
| | | | Originally committed as revision 23266 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mov: Read nero chaptersDavid Conrad2010-05-05
| | | | Originally committed as revision 23020 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark av_metadata_set() as deprecated, and use av_metadata_set2()Stefano Sabatini2010-04-25
| | | | | | | | in its place. av_metadata_set() is going to be dropped at the next major bump. Originally committed as revision 22961 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mov: Read QuickTime chaptersDavid Conrad2010-04-21
| | | | Originally committed as revision 22928 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parse strf mov atomsMartin Storsjö2010-04-16
| | | | | | This fixes roundup issue 1270. Originally committed as revision 22894 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY.Jean-Daniel Dupas2010-03-31
| | | | | | Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 22744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, convert mac encoded strings to utf-8Baptiste Coudurier2010-03-09
| | | | Originally committed as revision 22365 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Preallocate index entries in mov demuxer, huge speedupBaptiste Coudurier2010-03-09
| | | | Originally committed as revision 22363 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make mp4_read_descr static: It is only used inside libavformat/mov.c.Carl Eugen Hoyos2010-02-28
| | | | Originally committed as revision 22097 to svn://svn.ffmpeg.org/ffmpeg/trunk