summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
* Add support for mp3 over RTP in rtpdec.cLuca Abeni2009-12-23
| | | | Originally committed as revision 20916 to svn://svn.ffmpeg.org/ffmpeg/trunk
* It appears that waveformatextensible is mandatory for more cases thanMichael Niedermayer2009-12-18
| | | | | | | just channels>2. The 16bit case is from MSDN, the 48khz is from less a reliable www page (sorry i cant find the URL anymore). Originally committed as revision 20892 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add decoder for R210 (uncompressed 10-bit RGB) codec.Reimar Döffinger2009-12-17
| | | | Originally committed as revision 20891 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CD+G demuxer and decoderMichael Tison2009-12-17
| | | | | | Patch by Michael Tison (gmail address: blackspike@....) Originally committed as revision 20890 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l : make sure probe buffer is large enough.Jai Menon2009-12-17
| | | | Originally committed as revision 20889 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only add 1 index entry per keyframe.Michael Niedermayer2009-12-16
| | | | | | Idea from a patch by samsung. Originally committed as revision 20888 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parse ID3v[12] metadata from TTA files.Jai Menon2009-12-16
| | | | | | As a side-effect, this commit also fixes issue 1310. Originally committed as revision 20886 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reply to RTMP ping with the same value as received by client.Martin Storsjö2009-12-16
| | | | | | Patch by Martin Storsjö ($name at $name dot \163\164) Originally committed as revision 20881 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable, fixes the warning:Diego Biurrun2009-12-15
| | | | | | libavformat/apetag.c:38: warning: unused variable `l' Originally committed as revision 20878 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix breakage introduced by setting the sample_fmt to SAMPLE_FMT_NONE ↵Benjamin Larsson2009-12-14
| | | | | | | | (r20623). This makes streaming to ffserver work again. Originally committed as revision 20869 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert flvdec.c part of r20836Michael Niedermayer2009-12-14
| | | | | | | | | | Log: Use AV_METADATA_DONT_STRDUP* / use av_malloced metadata instead of strduped arrays of fixed length. Code from ffmbc with changes to adapt to our metadata API. Reason: memleak & fix is not trivial Originally committed as revision 20866 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FLV 8-bit PCM is unsigned, not signedDaniel Verkamp2009-12-14
| | | | | | Fixes issue #1569 Originally committed as revision 20853 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure the Metadata: header is not printed if the only metadata will notMichael Niedermayer2009-12-13
| | | | | | be displayed. (idea from ffmbc) Originally committed as revision 20850 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move dump_metadata() to where it is in ffmbc, looks better.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20849 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2009-12-13
| | | | Originally committed as revision 20848 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Skip dumping language twice.Michael Niedermayer2009-12-13
| | | | | | This looks too ugly. Idea also from ffmbc. Originally committed as revision 20847 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dump metadata for AVStreams & AVPrograms too.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20846 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize dump_metadata() out.Michael Niedermayer2009-12-13
| | | | | | | Idea from ffmbc, code not, mine is a fraction of the size due to simpler metadata API. Originally committed as revision 20845 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Try to simplify av_estimate_timings_from_pts() like in ffmbc.Michael Niedermayer2009-12-13
| | | | | | Note if this breaks for some file, report it please! Originally committed as revision 20844 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct truncated ID3v1 genre name.Alexander Strange2009-12-13
| | | | Originally committed as revision 20843 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Debug av_log() about stream probing from ffmbc.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add CODEC_ID_DNXHD into the 25 fps case.Michael Niedermayer2009-12-13
| | | | | | Merged from ffmbc. Originally committed as revision 20841 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify code by using av_metadata_set2().Michael Niedermayer2009-12-13
| | | | | | somewhat based on ffmbc Originally committed as revision 20840 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More entries for ff_id3v2_metadata_conv from ffmbc.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20839 to svn://svn.ffmpeg.org/ffmpeg/trunk
* s/author/artist/ for ID3Michael Niedermayer2009-12-13
| | | | | | from ffmbc Originally committed as revision 20838 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More ID3v1 genres from ffmbc.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20837 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use AV_METADATA_DONT_STRDUP* / use av_malloced metadata instead of strdupedMichael Niedermayer2009-12-13
| | | | | | | arrays of fixed length. Code from ffmbc with changes to adapt to our metadata API. Originally committed as revision 20836 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add flags to prevent strdup() on arguments to av_metadata_set2().Michael Niedermayer2009-12-13
| | | | | | | | I cannot use the same ABI as ffmbc as value 2 is already used in ffmpeg, besides the name AV_METADATA_NONCONST* makes no sense to me. Add av_metadata_set2() that takes flags. Originally committed as revision 20834 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of useless casts.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20831 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print extradata in case of failure. I had this in my local tree and itMichael Niedermayer2009-12-13
| | | | | | might be usefull for others ... Originally committed as revision 20828 to svn://svn.ffmpeg.org/ffmpeg/trunk
* APIChanges & minor bump due to avg_frame_rate addition.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20827 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add avg_frame_rate.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20826 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use constant CODEC_ID_NONE instead of 0 where appropriate.Carl Eugen Hoyos2009-12-13
| | | | Originally committed as revision 20824 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove commented out code.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20823 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factor out extradata reading code.Kostya Shishkov2009-12-13
| | | | | | Borrowed from RM demuxer in FFmbc. Originally committed as revision 20821 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RM audio stream version should be 16-bit followed by header size or reservedKostya Shishkov2009-12-13
| | | | | | | word, so treat it this way instead of extracting different parts from 32-bit value. Originally committed as revision 20820 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make RM demuxer look more like proper demuxer by introducing codec tagsKostya Shishkov2009-12-13
| | | | | | | instead of many strcmp() on always four-byte strings. Idea borrowed from RM demuxer in FFmbc by Baptiste Coudurier. Originally committed as revision 20819 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factor out variable declarationKostya Shishkov2009-12-13
| | | | Originally committed as revision 20818 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix PTS for OGM codecs.David Conrad2009-12-12
| | | | | | Fixes issue251 Originally committed as revision 20815 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reset pts_buffers in av_read_frame_flush().John Stebbins2009-12-12
| | | | | | Patch by John Stebbins, jstebbins jetheaddev com Originally committed as revision 20806 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Dump RTMP packet contents in debug modeKostya Shishkov2009-12-11
| | | | Originally committed as revision 20799 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 5l trocadero: don't forget to free packet in gen_connect()Martin Storsjö2009-12-11
| | | | | | Patch by Martin Storsjö ($name at $name dot `abbreviation for "street"`) Originally committed as revision 20798 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not try to interact with RTMP server after "stop" command was received.Martin Storsjö2009-12-11
| | | | | | Patch by Martin Storsjö ($name at $name dot `Sao Tome and Principe domain`) Originally committed as revision 20797 to svn://svn.ffmpeg.org/ffmpeg/trunk
* (Partly) support Metasoft MJPEG Codec, fixes half of issue 1611.Carl Eugen Hoyos2009-12-10
| | | | Originally committed as revision 20796 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support Etymonix MPEG-2 video codec, fixes issue 1603.Carl Eugen Hoyos2009-12-10
| | | | Originally committed as revision 20795 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add dvcs to dvvideo, fixes issue 1604Ben Littler2009-12-09
| | | | Originally committed as revision 20786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support AVI1 and AVI2 in avi as MJPEG.Carl Eugen Hoyos2009-12-08
| | | | | | Fixes issue 1602. Originally committed as revision 20781 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Raise threshold of h263 probe by 1 to avoid misdetection.Michael Niedermayer2009-12-08
| | | | | | Fixes issue 1588. Originally committed as revision 20765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add out commented av_log to debug h263_probe.Michael Niedermayer2009-12-08
| | | | Originally committed as revision 20764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Also print the number of invalid packets in the debug output.Michael Niedermayer2009-12-08
| | | | Originally committed as revision 20763 to svn://svn.ffmpeg.org/ffmpeg/trunk