Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | avio: Add an URLProtocol flag for indicating that a protocol uses network | Martin Storsjö | 2012-01-05 | 1 | -0/+1 |
| | | | | | | | This definition is in two files, since the definitions will move to the private header at the next bump. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | proto: Realign struct initializers | Martin Storsjö | 2011-12-01 | 1 | -4/+4 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | proto: Use .priv_data_size to allocate the private context | Martin Storsjö | 2011-12-01 | 1 | -5/+2 |
| | | | | | | | | This simplifies the open functions by avoiding one function call that needs error checking, reducing the amount of extra bulk code. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | mmsh: Properly clean up if the second ffurl_alloc failed | Martin Storsjö | 2011-12-01 | 1 | -3/+3 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | Eliminate pointless 0/NULL initializers in AVCodec and similar declarations. | Diego Biurrun | 2011-11-28 | 1 | -2/+0 |
| | |||||
* | avio: add support for passing options to protocols. | Anton Khirnov | 2011-11-13 | 1 | -2/+2 |
| | | | | | Not used anywhere yet, support for passing options from avio_open() will follow. | ||||
* | avio: Add an AVIOInterruptCB parameter to ffurl_open/ffurl_alloc | Martin Storsjö | 2011-11-13 | 1 | -2/+4 |
| | | | | | Change all uses of these function to pass the relevant callback on. | ||||
* | mms: Set http custom headers via the AVOption | Martin Storsjö | 2011-11-10 | 1 | -2/+3 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | Remove return statements following infinite loops without break | Mans Rullgard | 2011-07-03 | 1 | -1/+0 |
| | | | | | | | These statements cannot be reached and are thus not needed. This removes a number of compiler warnings. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | mmsh: fixed printf injection bug in mmsh request | Kirill Zorin | 2011-06-16 | 1 | -1/+1 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | Drop unnecessary directory prefixes from #include directives. | Diego Biurrun | 2011-06-07 | 1 | -1/+1 |
| | |||||
* | avio: remove AVIO_* access symbols in favor of new AVIO_FLAG_* symbols | Stefano Sabatini | 2011-04-19 | 1 | -2/+2 |
| | | | | | | | | Make AVIO_FLAG_ access constants work as flags, and in particular fix the behavior of functions (such as avio_check()) which expect them to be flags rather than modes. This breaks API. | ||||
* | avio: AVIO_ prefixes for URL_ open flags. | Anton Khirnov | 2011-04-07 | 1 | -2/+2 |
| | |||||
* | avio: make url_close() internal. | Anton Khirnov | 2011-04-04 | 1 | -2/+2 |
| | |||||
* | avio: make url_read_complete() internal. | Anton Khirnov | 2011-04-04 | 1 | -5/+5 |
| | |||||
* | avio: make url_connect internal. | Anton Khirnov | 2011-04-04 | 1 | -2/+2 |
| | |||||
* | avio: make url_alloc internal. | Anton Khirnov | 2011-04-04 | 1 | -2/+3 |
| | |||||
* | Replace FFmpeg with Libav in licence headers | Mans Rullgard | 2011-03-19 | 1 | -4/+4 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | Replace dprintf with av_dlog | Luca Barbato | 2011-01-29 | 1 | -6/+6 |
| | | | | dprintf clashes with POSIX.1-2008 | ||||
* | Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice. | Diego Elio Pettenò | 2011-01-26 | 1 | -1/+1 |
| | | | | | 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. | ||||
* | Check return value of get_chunk_header(). Since enum can be unsigned, the | Ronald S. Bultje | 2010-09-29 | 1 | -3/+3 |
| | | | | | | | | current code wouldn't always error out on errors. Based on patch by Stephen d'Angelo <sdangelo evertz com>. Originally committed as revision 25260 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Fix two compiler arnings related to printf-format of sizeof()-statements. | Ronald S. Bultje | 2010-08-28 | 1 | -2/+2 |
| | | | | Originally committed as revision 24961 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | stream_selection can be freed in the fail case, in which case it's unassigned. | Zhentan Feng | 2010-08-28 | 1 | -1/+1 |
| | | | | | | | | Therefore, init it with NULL to prevent a crash on invalid streams. Patch by Zhentan Feng <spyfeng gmail com>. Originally committed as revision 24960 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | MMSH support, the most popular and widely used of all MMS variants. Written by | Ronald S. Bultje | 2010-08-21 | 1 | -0/+369 |
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 |