summaryrefslogtreecommitdiff
path: root/libavformat/allformats.c
Commit message (Collapse)AuthorAge
* add XMV demuxerSven Hesse2011-08-17
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* Add a protocol handler for AES CBC decryption with PKCS7 paddingMartin Storsjö2011-04-23
| | | | | | | | | | | | This can later be extended to support other AES bit sizes, encryption, other crypto algorithms, reading the key from a URL, etc. In order to use it, the key and initialization vector has to be passed via AVOptions. Since such options can't be passed to protocols from the command line, the protocol is currently only for libavformat internal use. Signed-off-by: Martin Storsjö <martin@martin.st>
* add xWMA demuxerMax Horn2011-04-14
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* avio: make av_register_protocol2 internal.Anton Khirnov2011-04-07
|
* Chronomaster DFA decoderKostya Shishkov2011-03-28
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Bitmap Brothers JV demuxerPeter Ross2011-03-14
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Add Apple HTTP Live Streaming protocol handlerMartin Storsjö2011-03-06
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò2011-01-26
| | | | | This also lists the objects from those two libraries as internal (by adding the ff_ prefix) so that they can then be hidden via linker scripts.
* Missing parts of IVF muxer support.Reimar Döffinger2011-01-18
|
* Metadata demuxer.Anton Khirnov2010-12-27
| | | | Originally committed as revision 26102 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Metadata muxerAnton Khirnov2010-12-27
| | | | | | Dumps all metadata to a text file for easy manual editing. Originally committed as revision 26101 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Windows Televison (WTV) demuxerPeter Ross2010-12-26
| | | | Originally committed as revision 26094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mobotix .mxg demuxerAnatoly Nenashev2010-11-26
| | | | | | Patch by Anatoly Nenashev, anatoly d nenashev a ovsoft d ru Originally committed as revision 25831 to svn://svn.ffmpeg.org/ffmpeg/trunk
* S/PDIF demuxerAnssi Hannula2010-11-22
| | | | | | Patch by Anssi Hannula, anssi d hannula a iki d fi Originally committed as revision 25804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Untangle the dependencies between the RTSP/SDP demuxers and RTSP muxerMartin Storsjö2010-10-21
| | | | | | | This allows compilation of one of them without requiring the others' dependencies to be present. Originally committed as revision 25535 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a demuxer for receiving raw rtp:// URLs without an SDP descriptionMartin Storsjö2010-10-19
| | | | | | | The demuxer inspects the payload type of a received RTP packet and handles the cases where the content is fully described by the payload type. Originally committed as revision 25527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a SAP demuxerMartin Storsjö2010-10-13
| | | | Originally committed as revision 25463 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a SAP (Session Announcement Protocol, RFC 2974) muxerMartin Storsjö2010-10-08
| | | | Originally committed as revision 25413 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add demuxer for LXF (Leitch/Harris' VR native stream format)Tomas Härdin2010-10-01
| | | | Originally committed as revision 25281 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a muxer and demuxer for raw G.722Martin Storsjö2010-09-09
| | | | Originally committed as revision 25087 to svn://svn.ffmpeg.org/ffmpeg/trunk
* enabling codec and muxer by registering it in allcodec.c and allformat.c and ↵Tobias Bindhammer2010-08-23
| | | | | | adding files to the build-system Originally committed as revision 24878 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MMSH support, the most popular and widely used of all MMS variants. Written byRonald S. Bultje2010-08-21
| | | | | | Zhentan Feng <spyfeng gmail com> as part of Google's Summer of Code program. Originally committed as revision 24861 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Apple HTTP Live Streaming demuxerMartin Storsjö2010-08-19
| | | | Originally committed as revision 24834 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Place the concat protocol entry at the begin of the registeredStefano Sabatini2010-07-27
| | | | | | protocol list, restore alphabetical order. Originally committed as revision 24545 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add Chinese AVS encoding via external library libxavsStefan Gehrer2010-07-27
| | | | Originally committed as revision 24533 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add SubRip muxer and demuxerAurelien Jacobs2010-07-24
| | | | Originally committed as revision 24488 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Lego Mindstorms RSO muxer and demuxer.Rafaël Carré2010-07-20
| | | | | | Patch by Rafaël Carré, rafael d carre a gmail Originally committed as revision 24355 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add MD5 protocolMåns Rullgård2010-07-18
| | | | | | | | | This is a write-only protocol which computes the md5sum of data written, and on close writes this to the designated output or stdout if none is specified. It can be used to test muxers without writing an actual file. Originally committed as revision 24309 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Tele-typewriter demuxerPeter Ross2010-07-18
| | | | Originally committed as revision 24301 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an av_register_protocol2 function that takes a size parameterMartin Storsjö2010-06-22
| | | | | | | This allows extending the URLProtocol struct without breaking binary compatibility with code compiled with older definitions of the struct. Originally committed as revision 23702 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add WebM muxerJames Zern2010-06-04
| | | | | | Patch by James Zern <jzern at google> Originally committed as revision 23474 to svn://svn.ffmpeg.org/ffmpeg/trunk
* On2 IVF demuxerDavid Conrad2010-05-27
| | | | Originally committed as revision 23357 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.Zhentan Feng2010-05-24
| | | | Originally committed as revision 23301 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add -f framemd5 muxer similar to framecrc.Reimar Döffinger2010-05-24
| | | | Originally committed as revision 23289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a md5 muxer that allows checking the md5 sums of generated streams withoutReimar Döffinger2010-05-23
| | | | | | needing an external MD5 command. Originally committed as revision 23257 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement YOP demuxer and video decoder.Mohamed Naufal2010-03-29
| | | | | | Patch by Mohamed Naufal gmailify(naufal11). Originally committed as revision 22724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement support to RTMP, RTMPT, RTMPE, RTMPTE, RTMPS protocols viaHoward Chu2010-03-28
| | | | | | | | librtmp. Patch by Howard Chu <hyc * highlandsun * com>. Originally committed as revision 22710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an RTSP muxerMartin Storsjö2010-02-22
| | | | Originally committed as revision 21971 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement a physical concatenation protocol.Michele Orrù2010-02-07
| | | | | | Patch by Michele Orrù reverse(<moc.liamg@yp.rekam>). Originally committed as revision 21666 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bink demuxerPeter Ross2010-01-31
| | | | Originally committed as revision 21569 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Adobe Filmstrip muxer and demuxerPeter Ross2010-01-14
| | | | Originally committed as revision 21212 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deluxe Paint Animation demuxerPeter Ross2010-01-10
| | | | Originally committed as revision 21118 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
* Support "A format generated by IndigoVision 8000 video server".Michael Niedermayer2009-12-01
| | | | Originally committed as revision 20681 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove ancient redir demuxer.Diego Biurrun2009-10-24
| | | | | | HTTP supports redirection just fine without it. Originally committed as revision 20361 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Hook up the MD studio demuxer and Atrac1 decoder.Benjamin Larsson2009-09-22
| | | | Originally committed as revision 19969 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Core Audio Format demuxerPeter Ross2009-09-16
| | | | Originally committed as revision 19879 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for S/PDIF encapsulation.Bartlomiej Wolowiec2009-08-21
| | | | Originally committed as revision 19674 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Sony Wave64 demuxerDaniel Verkamp2009-08-10
| | | | | | patch by Daniel Verkamp, daniel drv nu Originally committed as revision 19617 to svn://svn.ffmpeg.org/ffmpeg/trunk