summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
Commit message (Collapse)AuthorAge
* partial support for vobsub in mp4, used by nero, unsupported-embedded-subs-2.mp4Baptiste Coudurier2006-11-14
| | | | Originally committed as revision 7032 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support m1a hdlr mpeg elementary audio handler, fix Po-Slow_Death_64K.movBaptiste Coudurier2006-11-09
| | | | Originally committed as revision 6951 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not overwrite codec type if already known, fix conflict between 'raw ' ↵Baptiste Coudurier2006-11-03
| | | | | | fourcc used for audio and video, ae002_wordup.mov Originally committed as revision 6890 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentionBaptiste Coudurier2006-11-03
| | | | Originally committed as revision 6886 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reintroduce isom field and read version 1 audio stsd only if file is not ↵Baptiste Coudurier2006-11-03
| | | | | | isom, fix testclip_wrong_version_1_audio_stsd.mp4 Originally committed as revision 6885 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.Steve L'Homme2006-11-01
| | | | | | patch by Steve Lhomme, slhomme divxcorp com Originally committed as revision 6868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* clean, always write major brand for debugBaptiste Coudurier2006-11-01
| | | | Originally committed as revision 6862 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless mp4 fieldBaptiste Coudurier2006-11-01
| | | | Originally committed as revision 6861 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove mov_read_leaf and remove useless reading function table, ↵Baptiste Coudurier2006-10-25
| | | | | | mov_read_default will skip atom with no parsing function anyway Originally committed as revision 6793 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace coder/decoder file description in libavformat by muxer/demuxerAurelien Jacobs2006-10-23
| | | | Originally committed as revision 6774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* activate gif decoder, seems to work fine on showdown2.movBaptiste Coudurier2006-10-22
| | | | Originally committed as revision 6767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* warn about zlib support needed if file has compressed moov atomBaptiste Coudurier2006-10-20
| | | | Originally committed as revision 6747 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move memory reading ByteIOContext init from mov.c to avobuf.cMichael Niedermayer2006-10-20
| | | | Originally committed as revision 6744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont mess with ByteIOContext internal variables (fixes showdown2.mov)Michael Niedermayer2006-10-19
| | | | Originally committed as revision 6733 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use proper PRI?64 macros for %ll? format to fix printf format warnings:Dominik Mierzejewski2006-10-14
| | | | | | | | | | | | | utils.c:833: warning: format ‘%lld’ expects type ‘long long int’, but argument 5 has type ‘int64_t’ utils.c:833: warning: format ‘%lld’ expects type ‘long long int’, but argument 6 has type ‘int64_t’ utils.c:854: warning: format ‘%lld’ expects type ‘long long int’, but argument 5 has type ‘int64_t’ utils.c:854: warning: format ‘%lld’ expects type ‘long long int’, but argument 6 has type ‘int64_t’ asf.c:872: warning: format ‘%Lx’ expects type ‘long long unsigned int’, but argument 4 has type ‘int64_t’ mov.c:1754: warning: format ‘%llx’ expects type ‘long long unsigned int’, but argument 5 has type ‘int64_t’ Approved by Michael. Originally committed as revision 6692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* TIFF decoderKostya Shishkov2006-10-13
| | | | Originally committed as revision 6682 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Targa image decoderKostya Shishkov2006-10-11
| | | | Originally committed as revision 6640 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless castsBaptiste Coudurier2006-10-04
| | | | Originally committed as revision 6552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless castsBaptiste Coudurier2006-09-29
| | | | Originally committed as revision 6377 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove gcc warnings about void * used in arithmeticBaptiste Coudurier2006-09-29
| | | | Originally committed as revision 6376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move sample size adjusting code after audio stsd v2 parsing to let v2 set ↵Baptiste Coudurier2006-09-28
| | | | | | correct channel number, fix Sony-hdv2.mov Originally committed as revision 6373 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add lpcm fourccBaptiste Coudurier2006-09-28
| | | | Originally committed as revision 6372 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change codec id if sample size field is set to 24 in stsd, fix Sony-mx5p.movBaptiste Coudurier2006-09-28
| | | | Originally committed as revision 6371 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix sound of SampleVideo.mov (mp2 in mov)Michael Niedermayer2006-09-07
| | | | Originally committed as revision 6191 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix mac3audio.mov, pcm_s8 and pcm_u8 can only have sample size of 1 and only ↵Baptiste Coudurier2006-08-24
| | | | | | if mono, dont rely on bits per sample which can be wrong Originally committed as revision 6079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move amr parameters adjusting like other codecsBaptiste Coudurier2006-08-24
| | | | Originally committed as revision 6071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont set width/height for h261/h263/mpeg4 since they are oftenly wrong, let ↵Baptiste Coudurier2006-08-24
| | | | | | decoder init them Originally committed as revision 6069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* put dv demuxing code around ifdefBaptiste Coudurier2006-08-24
| | | | Originally committed as revision 6066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* put dv demuxing code around ifdefBaptiste Coudurier2006-08-24
| | | | Originally committed as revision 6065 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support vdva fourcc (dv + dv audio in mov)Baptiste Coudurier2006-08-24
| | | | Originally committed as revision 6064 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fourcc cleanupBaptiste Coudurier2006-08-09
| | | | Originally committed as revision 5969 to svn://svn.ffmpeg.org/ffmpeg/trunk
* enable 'NONE' audio fourccBaptiste Coudurier2006-08-09
| | | | Originally committed as revision 5968 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sample size is 1 if bits per sample is 8 and mono channelBaptiste Coudurier2006-08-03
| | | | Originally committed as revision 5920 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move common code from mov.c and movenc.c to isom.cBaptiste Coudurier2006-08-01
| | | | Originally committed as revision 5882 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add some useful debug infoBaptiste Coudurier2006-08-01
| | | | Originally committed as revision 5881 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move common stuff from avienc.c and wav.c to new file riff.cMåns Rullgård2006-07-12
| | | | Originally committed as revision 5720 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow individual selection of muxers and demuxersMåns Rullgård2006-07-10
| | | | Originally committed as revision 5707 to svn://svn.ffmpeg.org/ffmpeg/trunk
* assign exact codec id, needed when stream copyBaptiste Coudurier2006-07-10
| | | | Originally committed as revision 5705 to svn://svn.ffmpeg.org/ffmpeg/trunk
* give AVInput/OutputFormat structs consistent namesMåns Rullgård2006-07-09
| | | | Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify, use LE_32, BE_32 macrosBaptiste Coudurier2006-07-08
| | | | Originally committed as revision 5682 to svn://svn.ffmpeg.org/ffmpeg/trunk
* clean up useless codeBaptiste Coudurier2006-07-08
| | | | Originally committed as revision 5669 to svn://svn.ffmpeg.org/ffmpeg/trunk
* better handling of partial filesBaptiste Coudurier2006-07-08
| | | | Originally committed as revision 5668 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new mov_read_packet, mov_read_seek, fix seeking in ni mov, fix demuxing adpcmBaptiste Coudurier2006-07-08
| | | | Originally committed as revision 5667 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add MS ADPCM fourccBaptiste Coudurier2006-07-07
| | | | Originally committed as revision 5655 to svn://svn.ffmpeg.org/ffmpeg/trunk
* skip others fourcc, if presentBaptiste Coudurier2006-07-07
| | | | Originally committed as revision 5654 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanBaptiste Coudurier2006-07-07
| | | | Originally committed as revision 5653 to svn://svn.ffmpeg.org/ffmpeg/trunk
* export all tracks to libavformat layerBaptiste Coudurier2006-06-15
| | | | Originally committed as revision 5482 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check fseek return valueBaptiste Coudurier2006-06-13
| | | | Originally committed as revision 5474 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix unused computed valueBaptiste Coudurier2006-06-13
| | | | Originally committed as revision 5473 to svn://svn.ffmpeg.org/ffmpeg/trunk