summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
Commit message (Collapse)AuthorAge
...
* according to specs, only color table id set to 0, have it in stsd, fix ↵Baptiste Coudurier2008-03-27
| | | | | | 4colors.mov Originally committed as revision 12604 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only use chunk demuxing for old uncompressed audio mechanism specified by stts.Baptiste Coudurier2008-03-27
| | | | | | | This will split amr/aac cbr samples correctly in isom files which do not set audio cid to -2. Originally committed as revision 12603 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo: occured --> occurredDiego Biurrun2008-03-22
| | | | Originally committed as revision 12549 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sample size to 1 might happen for data, fix GMCMidiaASX.mov, fallback is ↵Baptiste Coudurier2008-03-21
| | | | | | better than failing Originally committed as revision 12547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support fragments when non streamableBaptiste Coudurier2008-03-21
| | | | Originally committed as revision 12542 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mp4 fragments supportBaptiste Coudurier2008-03-21
| | | | Originally committed as revision 12541 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, split or move too long linesBaptiste Coudurier2008-03-21
| | | | Originally committed as revision 12536 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify, and only stop parsing when non streamableBaptiste Coudurier2008-03-21
| | | | Originally committed as revision 12534 to svn://svn.ffmpeg.org/ffmpeg/trunk
* atoms are not mp4 only, and yes probe is sufficientBaptiste Coudurier2008-03-21
| | | | Originally committed as revision 12532 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update descriptionBaptiste Coudurier2008-03-21
| | | | Originally committed as revision 12531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* return ENOMEMBaptiste Coudurier2008-03-21
| | | | Originally committed as revision 12530 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cannot free AVStream like this, and return ENOMEMBaptiste Coudurier2008-03-21
| | | | Originally committed as revision 12529 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentationBaptiste Coudurier2008-03-21
| | | | Originally committed as revision 12528 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless debug print since now mov_build_index will doBaptiste Coudurier2008-03-20
| | | | Originally committed as revision 12516 to svn://svn.ffmpeg.org/ffmpeg/trunk
* free track data asapBaptiste Coudurier2008-03-20
| | | | Originally committed as revision 12515 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move mov_build_index before mov_read_trak to avoid useless declarationBaptiste Coudurier2008-03-20
| | | | Originally committed as revision 12514 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move specific end treatment when trak is detected, will be needed for fragmentsBaptiste Coudurier2008-03-20
| | | | Originally committed as revision 12513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify, flags is 24bits according to specsBaptiste Coudurier2008-03-16
| | | | Originally committed as revision 12460 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2008-03-10
| | | | Originally committed as revision 12410 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set codec bps to grayscale bits, fix 256grey.movBaptiste Coudurier2008-02-28
| | | | Originally committed as revision 12272 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add weird first atom to probe, finally fix bartjones.movBaptiste Coudurier2008-02-27
| | | | Originally committed as revision 12265 to svn://svn.ffmpeg.org/ffmpeg/trunk
* free in case of multiple type == 2Baptiste Coudurier2008-02-27
| | | | Originally committed as revision 12263 to svn://svn.ffmpeg.org/ffmpeg/trunk
* return error if malloc failsBaptiste Coudurier2008-02-27
| | | | Originally committed as revision 12262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix possible overflow with memmoveBaptiste Coudurier2008-02-27
| | | | Originally committed as revision 12261 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support keyframes indexes starting at 0, broken files created by omneon, fix ↵Baptiste Coudurier2008-02-26
| | | | | | ref.mov seeking Originally committed as revision 12242 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.movBaptiste Coudurier2008-02-26
| | | | Originally committed as revision 12241 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless bracesBaptiste Coudurier2008-02-26
| | | | Originally committed as revision 12232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentationBaptiste Coudurier2008-02-26
| | | | Originally committed as revision 12231 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rescale frame size, fix i.3g2Baptiste Coudurier2008-02-26
| | | | Originally committed as revision 12230 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move parameters reset after setting stream parameters, will need those infosBaptiste Coudurier2008-02-26
| | | | Originally committed as revision 12229 to svn://svn.ffmpeg.org/ffmpeg/trunk
* protect malloc overflowBaptiste Coudurier2008-02-25
| | | | Originally committed as revision 12208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentationBaptiste Coudurier2008-02-25
| | | | Originally committed as revision 12207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fail if extradata cannot be allocatedBaptiste Coudurier2008-02-25
| | | | Originally committed as revision 12206 to svn://svn.ffmpeg.org/ffmpeg/trunk
* honor stsd v1 first, fix mace surge-2-8-MAC3.mov, beware of mulaw,alawBaptiste Coudurier2008-02-13
| | | | Originally committed as revision 11928 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, forgot alaw/mulaw mono, use bits_per_sample in fact,Baptiste Coudurier2008-02-13
| | | | | | it should correctly set by av_get_bits_per_sample if recognized Originally committed as revision 11925 to svn://svn.ffmpeg.org/ffmpeg/trunk
* warn use if edit list is not starting at 0, a/v desync might occurBaptiste Coudurier2008-02-13
| | | | Originally committed as revision 11923 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove now useless codeBaptiste Coudurier2008-02-13
| | | | Originally committed as revision 11922 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove messy and not always correct chunk size workaround, use correct ↵Baptiste Coudurier2008-02-13
| | | | | | values instead Originally committed as revision 11921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* return error when dv audio extraction failsBaptiste Coudurier2008-02-11
| | | | Originally committed as revision 11913 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove obsolete commentsBaptiste Coudurier2008-02-11
| | | | Originally committed as revision 11912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless bracesBaptiste Coudurier2008-02-11
| | | | Originally committed as revision 11911 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, indentation, bracesBaptiste Coudurier2008-02-11
| | | | Originally committed as revision 11910 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split chunks in the case of big compressed audio frames,Baptiste Coudurier2008-02-11
| | | | | | might be tweaked, fix qt_dv_pal_test.mov. Originally committed as revision 11909 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use correct demux mechanism when audio compression id is -2, dv audio does ↵Baptiste Coudurier2008-02-11
| | | | | | not matter, demux partially qt_dv_pal_test.mov which does NOT use cid -2 Originally committed as revision 11908 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentationBaptiste Coudurier2008-02-11
| | | | Originally committed as revision 11905 to svn://svn.ffmpeg.org/ffmpeg/trunk
* more correct and simplerBaptiste Coudurier2008-02-11
| | | | Originally committed as revision 11904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow the user to select which codec out of several in stsd he wants.Michael Niedermayer2008-02-06
| | | | Originally committed as revision 11873 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add CODEC_ID_MOV_TEXT and use it instead of modifying the stream in the mov ↵Reimar Döffinger2008-01-27
| | | | | | demuxer. Originally committed as revision 11638 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set subtitle codec id correctly, i hope this does not break anything.Michael Niedermayer2008-01-26
| | | | Originally committed as revision 11627 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extract the pure plaintext from mov text subtitles.Reimar Döffinger2008-01-26
| | | | | | Formatting information etc. is discarded. Originally committed as revision 11625 to svn://svn.ffmpeg.org/ffmpeg/trunk