summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
Commit message (Collapse)AuthorAge
...
* add one missing check for stream existence in read_elst, fix #1364Baptiste Coudurier2009-09-07
| | | | Originally committed as revision 19792 to svn://svn.ffmpeg.org/ffmpeg/trunk
* only set par if it does not indicates a rotation, ex iphone 3GSBaptiste Coudurier2009-06-25
| | | | Originally committed as revision 19271 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after last patch.Reimar Döffinger2009-06-24
| | | | Originally committed as revision 19265 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mov demuxer: Track the current position also for streams that have ↵Reimar Döffinger2009-06-24
| | | | | | | | | AVDISCARD_ALL set. This allows for seamless switching of e.g. audio streams, with the previous code playback started always from the beginning when removing AVDISCARD_ALL. Originally committed as revision 19264 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mov_read_packet: extract code that searches for the stream/sample to demux nextReimar Döffinger2009-06-24
| | | | | | into a separate function. Originally committed as revision 19263 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mov_read_packet: if dv_get_packet fails, return exactly its error valueReimar Döffinger2009-06-24
| | | | | | | instead of always -1 (makes no real difference currently since dv_get_packet always returns -1 so far). Originally committed as revision 19262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov_read_packet remember the AVStream we want to demux next instead of theReimar Döffinger2009-06-24
| | | | | | | MOVStreamContext. We need the AVStream anyway and it is easier to get the MOVStreamContext from the AVStream than the other way around. Originally committed as revision 19261 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check stream existence before assignment, fix #1222Baptiste Coudurier2009-06-24
| | | | Originally committed as revision 19259 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ff_ prefixes to exported symbols in libavformat/riff.h.Daniel Verkamp2009-06-22
| | | | | | patch by Daniel Verkamp, aniel drv nu Originally committed as revision 19254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check atom size against edit_count to avoid very long loopBaptiste Coudurier2009-06-15
| | | | Originally committed as revision 19198 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Also accept TS as a prefix for wav twoccs (used by Flip4Mac) instead ofDavid Conrad2009-06-13
| | | | | | | | adding entries to codec_movaudio_tags. This ensures ADPCM_IMA_WAV uses the standard ms prefix when muxing to mov rather than TS. Originally committed as revision 19177 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove time_rate, we cannot compute exactly when fragments areBaptiste Coudurier2009-06-11
| | | | | | | used and we cannot determine if fragments are present or not in streamed mode. Originally committed as revision 19148 to svn://svn.ffmpeg.org/ffmpeg/trunk
* broken stsd length might be < 16, fix elst-assert.mp4Baptiste Coudurier2009-06-03
| | | | Originally committed as revision 19084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split audio chunks in mov demuxerBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19018 to svn://svn.ffmpeg.org/ffmpeg/trunk
* return AVERROR_EOFBaptiste Coudurier2009-05-30
| | | | Originally committed as revision 18992 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move increment after debug printBaptiste Coudurier2009-05-16
| | | | Originally committed as revision 18851 to svn://svn.ffmpeg.org/ffmpeg/trunk
* parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gopBaptiste Coudurier2009-05-13
| | | | Originally committed as revision 18813 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove commentBaptiste Coudurier2009-05-13
| | | | Originally committed as revision 18811 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parse 'cslg' atom to retrieve dts shift when 'ctts' duration is negative.Baptiste Coudurier2009-05-13
| | | | | | | We have now dts <= pts, note that for some B frames dts+1 == pts can happen if a crappy timebase is used instead of correct /1001. Originally committed as revision 18810 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce codec id for MPEG-4 ALS and associate it with correspondingJai Menon2009-04-17
| | | | | | AudioObjectType. Also bump libavcodec minor version. Originally committed as revision 18591 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename bitstream.h to get_bits.h.Stefano Sabatini2009-04-13
| | | | Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* force sample for qcelp when not stored in mov, fix #968Baptiste Coudurier2009-04-08
| | | | Originally committed as revision 18374 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentReimar Döffinger2009-04-02
| | | | Originally committed as revision 18315 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support DVD subtitles in mov/mp4 as created by Nero.Reimar Döffinger2009-04-02
| | | | | | See also http://samples.mplayerhq.hu/sub/NeroMP4/unsupported-embedded-subs-2.mp4 Originally committed as revision 18314 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set wrong_dts for iMovie created files which has huge ctts delay, fix ↵Baptiste Coudurier2009-03-25
| | | | | | ffmpeg_sample.m4v Originally committed as revision 18181 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove alpha channel from default colorspace tables, since it is unused. SeeRonald S. Bultje2009-03-22
| | | | | | "qtpalette.h" thread on mailinglist. Originally committed as revision 18144 to svn://svn.ffmpeg.org/ffmpeg/trunk
* since code now use get_bits_long, allocate padding bufferBaptiste Coudurier2009-03-22
| | | | Originally committed as revision 18138 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reset codec width/height for h264 forcing decoder to parse extradataBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18134 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MOV: Use the AOT enum for the mp4_audio_types mapping.Alex Converse2009-03-19
| | | | Originally committed as revision 18044 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend mov edit list support to work for a first padding entry withReimar Döffinger2009-03-16
| | | | | | | time == -1 and duration. Complicated since time is relative to stream, duration relative to container time base. Originally committed as revision 18019 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Re-indent after last commitAlex Converse2009-03-16
| | | | Originally committed as revision 18017 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MOV: Support stz2 "Compact Sample Size Box"Alex Converse2009-03-16
| | | | Originally committed as revision 18016 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, remove useless bracesBaptiste Coudurier2009-03-16
| | | | Originally committed as revision 18004 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify printingBaptiste Coudurier2009-03-16
| | | | Originally committed as revision 18003 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindentBaptiste Coudurier2009-03-16
| | | | Originally committed as revision 18002 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix trkn metadata parsingBaptiste Coudurier2009-03-16
| | | | Originally committed as revision 18001 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move read_udta_string up to avoid forward declarationBaptiste Coudurier2009-03-16
| | | | Originally committed as revision 18000 to svn://svn.ffmpeg.org/ffmpeg/trunk
* more generic metadata handlingBaptiste Coudurier2009-03-16
| | | | Originally committed as revision 17999 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not set isom if ctype is not set, happens in movBaptiste Coudurier2009-03-16
| | | | Originally committed as revision 17998 to svn://svn.ffmpeg.org/ffmpeg/trunk
* search for hdlr atom in meta, some files do not store version+flagsBaptiste Coudurier2009-03-15
| | | | Originally committed as revision 17996 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo in the mail, the 4am commit is always the worstBaptiste Coudurier2009-03-15
| | | | Originally committed as revision 17981 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add my copyright in mov de/muxerBaptiste Coudurier2009-03-15
| | | | Originally committed as revision 17979 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allocate palette in codec directlyBaptiste Coudurier2009-03-15
| | | | Originally committed as revision 17976 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, add some whitespaces and empty linesBaptiste Coudurier2009-03-15
| | | | Originally committed as revision 17975 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not modify sample_count, check against index entriesBaptiste Coudurier2009-03-15
| | | | Originally committed as revision 17972 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]Ronald S. Bultje2009-03-09
| | | | | | move MOVContext from mov.c to isom.h" thread on ML. Originally committed as revision 17915 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MOV: fix demuxing fragmented filesAlex Converse2009-03-04
| | | | Originally committed as revision 17803 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MOV: fix crash when 'meta' occurs before first 'trak'Alex Converse2009-03-03
| | | | Originally committed as revision 17781 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix missed usage of old metadata API in mov demuxerAurelien Jacobs2009-03-01
| | | | Originally committed as revision 17689 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a context to av_log() call.Benoit Fouet2009-02-27
| | | | Originally committed as revision 17638 to svn://svn.ffmpeg.org/ffmpeg/trunk