summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
Commit message (Collapse)AuthorAge
* 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
* Make sure we dont write more bytes into filename than the array is long.Michael Niedermayer2010-02-20
| | | | | | | just a precaution in case the size of the source array is increased or made dynamically allocateable. Originally committed as revision 21926 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not attempt to open references through absolute pathes.Michael Niedermayer2010-02-20
| | | | | | This would allow an attacker to test remotely if a local file exists. Originally committed as revision 21925 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a list of generic tags and change demuxers to follow it.Anton Khirnov2010-02-01
| | | | | | Patch by Anton Khirnov, wyskas at gmail dot com Originally committed as revision 21587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Force codec_tag I420 for Quicktime Planar Y'CbCr 8-bit 4:2:0 raw codec,Carl Eugen Hoyos2010-01-24
| | | | | | because YV12 triggers an UV swap in rawdec.c, fixes issue 1687. Originally committed as revision 21436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindentBaptiste Coudurier2010-01-18
| | | | Originally committed as revision 21311 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set average frame rate in mov demuxerBaptiste Coudurier2010-01-18
| | | | Originally committed as revision 21310 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move aspect ratio code at the end of the track parsing, fix ↵Baptiste Coudurier2010-01-18
| | | | | | cathedral-beta2-400extra-crop-avc.mp4 Originally committed as revision 21301 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set stream aspect from mov tkhd width/height, patch by Andrew Wason, ↵Andrew Wason2010-01-14
| | | | | | | | rectalogic at rectalogic dot com Fixes issue 671. Originally committed as revision 21210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not skip mdat data if it's the last atom, avoids one seekBaptiste Coudurier2010-01-13
| | | | Originally committed as revision 21209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, remove useless parentheses, add spaceBaptiste Coudurier2010-01-04
| | | | Originally committed as revision 21025 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify error handling in mov_read_defaultBaptiste Coudurier2010-01-04
| | | | Originally committed as revision 21024 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove no more needed MOVAtom.offset fieldBaptiste Coudurier2010-01-04
| | | | Originally committed as revision 21023 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless code skipping data at end of hdlr atom, already done in ↵Baptiste Coudurier2010-01-04
| | | | | | mov_read_default Originally committed as revision 21022 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo.Jai Menon2009-11-27
| | | | Originally committed as revision 20628 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MOV: cprt is another tag used for copyrightDavid Conrad2009-11-23
| | | | Originally committed as revision 20587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MOV: Add several iTunes metadata tagsDavid Conrad2009-11-23
| | | | Originally committed as revision 20586 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use AVFormatContext in dprintfBaptiste Coudurier2009-11-19
| | | | Originally committed as revision 20554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Search relative path according to alias record when opening mov reference files.Baptiste Coudurier2009-11-15
| | | | | | Based on patch by Maksym Veremeyenko, verem at m1stereo dot tv Originally committed as revision 20539 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Debug print MP4 objectTypeIndication in hex not decimal as values are listed inAlex Converse2009-11-12
| | | | | | hex in all official documents. Originally committed as revision 20523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a channels field to MPEG4AudioConfig.Alex Converse2009-11-11
| | | | Originally committed as revision 20512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change \0xa9enc tag metadata name to encoder to match id3v2Baptiste Coudurier2009-11-06
| | | | Originally committed as revision 20469 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, typoBaptiste Coudurier2009-11-05
| | | | Originally committed as revision 20462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not redundantly set stream nb_frames, it's already set in read_sttsBaptiste Coudurier2009-11-05
| | | | Originally committed as revision 20459 to svn://svn.ffmpeg.org/ffmpeg/trunk
* compute dts shift with ctts value, cslg atom might be missing, fix #419Baptiste Coudurier2009-11-05
| | | | Originally committed as revision 20458 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check that duration is set to avoid fpeBaptiste Coudurier2009-11-05
| | | | Originally committed as revision 20457 to svn://svn.ffmpeg.org/ffmpeg/trunk
* warn if stream timescale is not set and set it to 1 to avoid FPEBaptiste Coudurier2009-11-05
| | | | Originally committed as revision 20456 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix \0xa9wrt metadata, to composer, fix issue #1501Baptiste Coudurier2009-11-05
| | | | Originally committed as revision 20453 to svn://svn.ffmpeg.org/ffmpeg/trunk
* compute codec bitrate in mov demuxer, patch by haim alon, haim dot alter at ↵haim alon2009-10-24
| | | | | | gmail dot com Originally committed as revision 20368 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l in code reading codec_name, the first byte is the length and should notReimar Döffinger2009-09-30
| | | | | | become part of the string. Originally committed as revision 20102 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert latin1 codec_name in mov to UTF-8, since all strings in FFmpegReimar Döffinger2009-09-30
| | | | | | must be valid UTF-8. Originally committed as revision 20092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, typoBaptiste Coudurier2009-09-26
| | | | Originally committed as revision 20033 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Export mov/mp4 major and compatible brands as metadata.haim alon2009-09-26
| | | | | | Patch by haim alon, haim dot alter at gmail dot com Originally committed as revision 20032 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make mov LPCM and AAC parsing functions publicPeter Ross2009-09-16
| | | | Originally committed as revision 19878 to svn://svn.ffmpeg.org/ffmpeg/trunk