summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
...
* 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
* typo fix: inited --> initializedDiego Biurrun2008-02-13
| | | | Originally committed as revision 11920 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
* fcp imx 40 fourccsBaptiste Coudurier2008-02-11
| | | | Originally committed as revision 11906 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
* Do not use GNU-specific (or BSD-specific or whatever they may be)D Richard Felker III2008-02-11
| | | | | | | constants which are completely unneeded anyway. Note that 3 is a cheap integer bound for log10(1<<CHAR_BIT). Originally committed as revision 11902 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, remove whitespaces before and after parenthesisBaptiste Coudurier2008-02-06
| | | | Originally committed as revision 11879 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for speex in oggReimar Döffinger2008-02-06
| | | | Originally committed as revision 11878 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
* Fix issue 338:Baptiste Coudurier2008-02-05
| | | | | | | | | Correctly interleave ogg packets per granule and set eos correctly, 2 packets buffering is needed. It duplicates interleave_per_dts a bit, if someone has a good solution, I'll implement it. Originally committed as revision 11867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* it seems ogg requires granule to be -1 on unfinished packetsBaptiste Coudurier2008-02-05
| | | | Originally committed as revision 11866 to svn://svn.ffmpeg.org/ffmpeg/trunk
* String pointers of ogg_codec_t should have const attribute.Reimar Döffinger2008-02-04
| | | | Originally committed as revision 11860 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add dv50 tag to support samples with dv50 fourcc in AVI.Christophe Lorenz2008-02-04
| | | | | | patch by christophelorenz christophelorenz gmail com Originally committed as revision 11859 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a possible use of an uninitialized pointer.Reimar Döffinger2008-02-04
| | | | Originally committed as revision 11857 to svn://svn.ffmpeg.org/ffmpeg/trunk
* back_ptr calculation used wrong timebase when searching for back syncpointOded Shimon2008-02-04
| | | | Originally committed as revision 11856 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix intented algo in syncpoint writing before keyframes in NUT muxerOded Shimon2008-02-04
| | | | Originally committed as revision 11855 to svn://svn.ffmpeg.org/ffmpeg/trunk
* nut->max_distance was not set at all anywhere in the NUT muxerOded Shimon2008-02-04
| | | | Originally committed as revision 11854 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove old workaround in nutdec.c for libnut bugOded Shimon2008-02-04
| | | | Originally committed as revision 11853 to svn://svn.ffmpeg.org/ffmpeg/trunk
* missing " && j<syncpoint_count" protection in the index parsing, as theOded Shimon2008-02-04
| | | | | | spec instructs... Originally committed as revision 11852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ff_nut_reset_ts() expected to get 'ts*time_base_count', but muxer onlyOded Shimon2008-02-04
| | | | | | gave it 'ts'. Fixed by changing ff_nut_reset_ts() and demuxer params Originally committed as revision 11851 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 2 more missing consts found by -Wwrite-strings.Michael Niedermayer2008-02-04
| | | | Originally committed as revision 11849 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove incorrect cast found by -Wwrite-strings.Michael Niedermayer2008-02-04
| | | | Originally committed as revision 11848 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Another const found by -Wwrite-strings.Michael Niedermayer2008-02-04
| | | | Originally committed as revision 11847 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix 8 "initialization discards qualifiers from pointer target type"Michael Niedermayer2008-02-04
| | | | | | warnings Originally committed as revision 11845 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix info packet type, found by oded as well as the new pedantic constMichael Niedermayer2008-02-04
| | | | | | warnings. Originally committed as revision 11843 to svn://svn.ffmpeg.org/ffmpeg/trunk
* -Wwrite-strings nitpicking fixMichael Niedermayer2008-02-04
| | | | Originally committed as revision 11842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Missing const found by -Wwrite-strings.Michael Niedermayer2008-02-04
| | | | Originally committed as revision 11841 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove ff_mms_set_stream_selection again from asf demuxer,Reimar Döffinger2008-02-03
| | | | | | | it does not seem like a good solution to the problem and will cause dependency problems if a libavprotocols should be split out. Originally committed as revision 11827 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove incorrect casts that should have never been there.Michael Niedermayer2008-02-02
| | | | Originally committed as revision 11824 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove a pointless cast.Reimar Döffinger2008-02-02
| | | | Originally committed as revision 11819 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Put is_mms under ifdef CONFIG_MMSH_PROTOCOL, avoids warning:Reimar Döffinger2008-02-02
| | | | | | libavformat/asf.c:112: warning: 'is_mms' defined but not used Originally committed as revision 11815 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Missing 'const' in cast.Reimar Döffinger2008-02-02
| | | | Originally committed as revision 11814 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: sort ogg_codec_t listDiego Biurrun2008-02-02
| | | | Originally committed as revision 11810 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constBaptiste Coudurier2008-02-01
| | | | Originally committed as revision 11763 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constBaptiste Coudurier2008-02-01
| | | | Originally committed as revision 11762 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add constBaptiste Coudurier2008-02-01
| | | | Originally committed as revision 11756 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for ogg text subtitles.Reimar Döffinger2008-01-31
| | | | Originally committed as revision 11698 to svn://svn.ffmpeg.org/ffmpeg/trunk
* stupid typoBaptiste Coudurier2008-01-31
| | | | Originally committed as revision 11693 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support rawvideo in movBaptiste Coudurier2008-01-31
| | | | Originally committed as revision 11691 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo, typedef uint8_t GUID[16] in asf.h, and fix warning: asf-enc.c:202: ↵Baptiste Coudurier2008-01-31
| | | | | | warning: passing argument 2 of 'put_buffer' from incompatible pointer type Originally committed as revision 11684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* init to 0, fix warning: mpegenc.c:1022: warning: 'avail_space' may be used ↵Baptiste Coudurier2008-01-31
| | | | | | uninitialized in this function Originally committed as revision 11683 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add parenthesis, fix warning: mpegenc.c:303: warning: suggest parentheses ↵Baptiste Coudurier2008-01-31
| | | | | | around && within || Originally committed as revision 11682 to svn://svn.ffmpeg.org/ffmpeg/trunk