Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | lavf: Use RTP_MAX_PACKET_LENGTH instead of 1500 | Andrew Van Til | 2013-04-09 | 1 | -2/+3 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | avformat: Drop pointless "format" from container long names | Diego Biurrun | 2012-07-30 | 1 | -1/+1 |
| | |||||
* | Remove unnecessary inclusions of [sys/]time.h | Mans Rullgard | 2012-06-20 | 1 | -1/+0 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | cosmetics: Align muxer/demuxer declarations | Martin Storsjö | 2012-04-06 | 1 | -1/+1 |
| | | | | | | | Also add missing trailing commas, break long codec_tag lines and add spaces in codec_tag declarations. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | cosmetics: Remove extra newlines at EOF | Alex Converse | 2012-01-27 | 1 | -1/+0 |
| | |||||
* | lavf: remove AVFormatParameters from AVFormatContext.read_header signature | Anton Khirnov | 2012-01-27 | 1 | -2/+1 |
| | |||||
* | Replace all uses of av_close_input_file() with avformat_close_input(). | Anton Khirnov | 2011-12-12 | 1 | -1/+1 |
| | |||||
* | avio: add support for passing options to protocols. | Anton Khirnov | 2011-11-13 | 1 | -1/+2 |
| | | | | | Not used anywhere yet, support for passing options from avio_open() will follow. | ||||
* | avformat: Pass the interrupt callback on to chained muxers/demuxers | Martin Storsjö | 2011-11-13 | 1 | -0/+1 |
| | | | | | | There are a few more cases of chained demuxers, but they only use custom IO which don't do any blocking IO and thus don't need the callback. | ||||
* | avio: Add an AVIOInterruptCB parameter to ffurl_open/ffurl_alloc | Martin Storsjö | 2011-11-13 | 1 | -1/+1 |
| | | | | | Change all uses of these function to pass the relevant callback on. | ||||
* | lavf: replace av_new_stream->avformat_new_stream part II. | Anton Khirnov | 2011-10-19 | 1 | -2/+4 |
| | | | | | | | | Manual replacements are done in this commit. In many cases, the id is some constant made up number (e.g. 0 for video and 1 for audio), which is then not used in the demuxer for anything. Those ids are removed. | ||||
* | lavf: use designated initialisers for all (de)muxers. | Anton Khirnov | 2011-07-17 | 1 | -7/+7 |
| | | | | It's more readable and less prone to breakage. | ||||
* | Deprecate av_open_input_* and remove their uses. | Anton Khirnov | 2011-06-16 | 1 | -4/+3 |
| | | | | Deprecate the last remaining member of AVFormatParameters. | ||||
* | avio: remove AVIO_* access symbols in favor of new AVIO_FLAG_* symbols | Stefano Sabatini | 2011-04-19 | 1 | -1/+1 |
| | | | | | | | | 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 | -1/+1 |
| | |||||
* | avio: make url_get_file_handle() internal. | Anton Khirnov | 2011-04-04 | 1 | -1/+1 |
| | |||||
* | avio: make url_close() internal. | Anton Khirnov | 2011-04-04 | 1 | -1/+1 |
| | |||||
* | avio: make url_read() internal. | Anton Khirnov | 2011-04-04 | 1 | -2/+2 |
| | |||||
* | avio: make url_open() internal. | Anton Khirnov | 2011-04-04 | 1 | -1/+2 |
| | |||||
* | Replace FFmpeg with Libav in licence headers | Mans Rullgard | 2011-03-19 | 1 | -4/+4 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | avio: move init_put_byte() to a new private header and rename it | Anton Khirnov | 2011-02-20 | 1 | -1/+2 |
| | | | | | | | init_put_byte should never be used outside of lavf, since sizeof(AVIOContext) isn't part of public ABI. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> | ||||
* | avio: rename ByteIOContext to AVIOContext. | Anton Khirnov | 2011-02-20 | 1 | -1/+1 |
| | | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> | ||||
* | os: replace select with poll | Luca Barbato | 2011-01-28 | 1 | -9/+5 |
| | | | | | Select has limitations on the fd values it could accept and silently breaks when it is reached. | ||||
* | 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. | ||||
* | sapdec: Include sys/time.h for struct timeval | Martin Storsjö | 2010-10-13 | 1 | -0/+1 |
| | | | | | | This hopefully fixes compile errors on OS/2 Originally committed as revision 25466 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Add a SAP demuxer | Martin Storsjö | 2010-10-13 | 1 | -0/+238 |
Originally committed as revision 25463 to svn://svn.ffmpeg.org/ffmpeg/trunk |