Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | movenc: Deprecate the global RTP hinting flag, use a private AVOption instead | Martin Storsjö | 2011-05-27 | 5 | -3/+24 |
| | | | | | | Instead of -fflags rtphint, set -movflags rtphint instead. Signed-off-by: Martin Storsjö <[email protected]> | ||||
* | movenc: Add an AVClass for setting muxer specific options | Martin Storsjö | 2011-05-27 | 2 | -0/+19 |
| | | | | Signed-off-by: Martin Storsjö <[email protected]> | ||||
* | tcp: make connect() timeout properly | Luca Barbato | 2011-05-27 | 1 | -8/+17 |
| | | | | | The connect() timeout can take minutes, gets misreported as EIO and isn't interruptible. | ||||
* | rawdec: factor video demuxer definitions into a macro. | Anton Khirnov | 2011-05-27 | 10 | -105/+22 |
| | |||||
* | rtspdec: add initial_pause private option. | Anton Khirnov | 2011-05-27 | 3 | -3/+30 |
| | | | | Deprecate corresponding AVFormatParameters field. | ||||
* | lavf: deprecate AVFormatParameters.width/height. | Anton Khirnov | 2011-05-27 | 1 | -2/+2 |
| | |||||
* | tty: add video_size private option. | Anton Khirnov | 2011-05-27 | 1 | -2/+23 |
| | |||||
* | rawdec: add video_size private option. | Anton Khirnov | 2011-05-27 | 3 | -4/+45 |
| | |||||
* | id3v2: Check malloc result. ID3v2 tags can be very large. | Alex Converse | 2011-05-26 | 1 | -1/+6 |
| | |||||
* | id3v2: Initialize tflags for version 2.2. | Alex Converse | 2011-05-26 | 1 | -1/+1 |
| | |||||
* | lavf: initialize demuxer private options. | Anton Khirnov | 2011-05-26 | 1 | -0/+4 |
| | |||||
* | Mark parameterless function declarations as 'void'. | Diego Biurrun | 2011-05-26 | 1 | -1/+2 |
| | |||||
* | avformat: Add fpsprobesize as an AVOption. | Alex Converse | 2011-05-25 | 4 | -2/+10 |
| | |||||
* | rtmp: Reindent | Martin Storsjö | 2011-05-25 | 1 | -3/+3 |
| | | | | Signed-off-by: Martin Storsjö <[email protected]> | ||||
* | rtmp: Don't try to do av_malloc(0) | Martin Storsjö | 2011-05-25 | 2 | -1/+3 |
| | | | | | | | | | Some received packets can have size 0. The return value from av_malloc(0) may be NULL, which is ok if the size was 0. On OS X, however, the returned pointer is non-null but leads to crashes when trying to free it. Signed-off-by: Martin Storsjö <[email protected]> | ||||
* | tty: replace AVFormatParameters.sample_rate abuse with a private option. | Anton Khirnov | 2011-05-25 | 1 | -3/+21 |
| | |||||
* | Fix end time of last chapter in compute_chapters_end | John Stebbins | 2011-05-25 | 1 | -1/+1 |
| | | | | | | Parenthesis are misplaced in calculation of max_time. Signed-off-by: Anton Khirnov <[email protected]> | ||||
* | lavf: deprecate AVFormatParameters.channel. | Anton Khirnov | 2011-05-25 | 1 | -1/+1 |
| | |||||
* | lavf: deprecate AVFormatParameters.standard. | Anton Khirnov | 2011-05-25 | 1 | -1/+1 |
| | |||||
* | lavf: deprecate AVFormatParameters.{channels,sample_rate}. | Anton Khirnov | 2011-05-25 | 2 | -2/+6 |
| | |||||
* | rawdec: add sample_rate/channels private options. | Anton Khirnov | 2011-05-25 | 3 | -6/+42 |
| | |||||
* | lavf: deprecate AVFormatParameters.mpeg2ts_raw. | Anton Khirnov | 2011-05-25 | 2 | -3/+3 |
| | | | | It doesn't do anything except produce an error message when set. | ||||
* | mpegts: add compute_pcr option. | Anton Khirnov | 2011-05-25 | 3 | -4/+28 |
| | | | | Deprecate the corresponding AVFormatParameters field. | ||||
* | lavf: add priv_class field to AVInputFormat. | Anton Khirnov | 2011-05-25 | 1 | -0/+2 |
| | |||||
* | rtsp: use strtoul to parse rtptime and seq values. | Ilya | 2011-05-24 | 1 | -2/+2 |
| | | | | | | | strtol could return negative values, leading to various error messages, mainly "non-monotonically increasing dts". Signed-off-by: Anton Khirnov <[email protected]> | ||||
* | ape: Allow demuxing of files with metadata tags. | Carl Eugen Hoyos | 2011-05-24 | 1 | -3/+3 |
| | | | | Signed-off-by: Anton Khirnov <[email protected]> | ||||
* | multiple inclusion guard cleanup | Diego Biurrun | 2011-05-21 | 6 | -7/+13 |
| | | | | | Add missing multiple inclusion guards; clean up #endif comments; add missing library prefixes; keep guard names consistent. | ||||
* | avio: document buffer must created with av_malloc() and friends | Can Wu | 2011-05-21 | 1 | -0/+1 |
| | | | | | | Else a later buffer resize in ffio_set_buf_size() will ABORT. Signed-off-by: Anton Khirnov <[email protected]> | ||||
* | avio: check AVIOContext malloc failure | Can Wu | 2011-05-21 | 1 | -0/+2 |
| | | | | Signed-off-by: Anton Khirnov <[email protected]> | ||||
* | mpegtsenc: Add an AVClass pointer to the private data | Martin Storsjö | 2011-05-20 | 1 | -0/+1 |
| | | | | | | | | | | Since a private class is set for this muxer, the callers will assume that the private data starts with an AVClass pointer. If no such member exists, the first few bytes of the struct will be overwritten, and the class pointer may be broken at any later time. Signed-off-by: Martin Storsjö <[email protected]> | ||||
* | Remove silly insults from avformat_version() Doxygen documentation. | Diego Biurrun | 2011-05-19 | 1 | -2/+1 |
| | |||||
* | asfdec: add missing #include for av_bswap32() | Mans Rullgard | 2011-05-19 | 1 | -0/+1 |
| | | | | Signed-off-by: Mans Rullgard <[email protected]> | ||||
* | lavf: remove duplicate assignment in avformat_alloc_context. | Anton Khirnov | 2011-05-17 | 1 | -1/+0 |
| | | | | AVClass is already initialized in avformat_get_context_defaults. | ||||
* | lavf: use designated initializers for AVClasses. | Anton Khirnov | 2011-05-17 | 7 | -14/+34 |
| | |||||
* | flvdec: clenup debug code | Alex Converse | 2011-05-17 | 1 | -2/+2 |
| | |||||
* | asfdec: fix possible overread on broken files. | Uoti Urpala | 2011-05-17 | 1 | -1/+4 |
| | |||||
* | asfdec: do not fall back to binary/generic search | Vladimir Pantelic | 2011-05-17 | 3 | -2/+7 |
| | | | | | | | | | | asf_read_seek() inside the asf demuxer already does the right thing, it tries the index and if that fails it uses binary search. If binary search is called from outside of asfdec.c it will fail because the asf code cannot clean up after itself. Therefore introduce AVFMT_NOBINSEARCH that prevents the seek code to fallback to binary search and AVFMT_NOGENSEARCH that prevents the seek code to fallback to generic search. | ||||
* | asfdec: reindent after previous commit c7bd5ed | Vladimir Pantelic | 2011-05-17 | 1 | -7/+7 |
| | |||||
* | asfdec: fallback to binary search internally | Vladimir Pantelic | 2011-05-17 | 1 | -7/+8 |
| | | | | lavf will do that anyway in case seek by index fails | ||||
* | movenc: always write esds descriptor length using 4 bytes. | Baptiste Coudurier | 2011-05-13 | 1 | -11/+3 |
| | | | | | | ipod shuffle doesn't support anything else. Signed-off-by: Anton Khirnov <[email protected]> | ||||
* | rtpdec_qdm2: Don't try to parse data packet if no configuration is received | Martin Storsjö | 2011-05-13 | 1 | -0/+2 |
| | | | | | | | | The later parsing of payload data depends on the configuration being present. If it hasn't been configured properly yet, parsing a data packet may lead to a crash. Signed-off-by: Martin Storsjö <[email protected]> | ||||
* | matroskaenc: make sure we don't produce invalid file with no codec ID | Aurelien Jacobs | 2011-05-12 | 1 | -0/+4 |
| | | | | | Signed-off-by: Aurelien Jacobs <[email protected]> Signed-off-by: Anton Khirnov <[email protected]> | ||||
* | matroskadec: check that pointers were initialized before accessing them | Aurelien Jacobs | 2011-05-12 | 1 | -3/+5 |
| | | | | | Signed-off-by: Aurelien Jacobs <[email protected]> Signed-off-by: Anton Khirnov <[email protected]> | ||||
* | lavf: fix function name in compute_pkt_fields2 av_dlog message | Stefano Sabatini | 2011-05-12 | 1 | -1/+1 |
| | | | | Signed-off-by: Anton Khirnov <[email protected]> | ||||
* | lavf: fix av_find_best_stream when providing a wanted stream. | Marton Balint | 2011-05-12 | 1 | -4/+5 |
| | | | | | | | | | | | | | In the main loop, stream_number is incremented after checking the stream type, so the search usually will not find the wanted stream. This patch eliminates the useless stream_number variable and introduces a new one, called real_stream_index to store the real stream index of the current stream, no matter if we are looping through all the streams or only the streams of a program. Signed-off-by: Michael Niedermayer <[email protected]> Signed-off-by: Anton Khirnov <[email protected]> | ||||
* | lavf: fix av_find_best_stream when decoder_ret is given and using a related ↵ | Marton Balint | 2011-05-12 | 1 | -1/+1 |
| | | | | | | | | | stream. Yet another fix for the code originally designed for use without related_stream. Signed-off-by: Michael Niedermayer <[email protected]> Signed-off-by: Anton Khirnov <[email protected]> | ||||
* | mov: Support edit list atom version 1. | Yusuke Nakamura | 2011-05-12 | 2 | -6/+12 |
| | | | | Signed-off-by: Diego Biurrun <[email protected]> | ||||
* | Cosmetics: fix prototypes in oggdec | Clément Bœsch | 2011-05-12 | 1 | -33/+18 |
| | | | | Signed-off-by: Diego Biurrun <[email protected]> | ||||
* | oggdec: fix memleak with continuous streams. | Clément Bœsch | 2011-05-12 | 1 | -6/+10 |
| | | | | | | | This avoids the creation of a new AVStream instead of replacing it when a stream reset occurs (track change with some webradios for example). Signed-off-by: Diego Biurrun <[email protected]> | ||||
* | matroskaenc: add missing new line in av_log() call | Aurelien Jacobs | 2011-05-12 | 1 | -1/+1 |
| | | | | | Signed-off-by: Aurelien Jacobs <[email protected]> Signed-off-by: Anton Khirnov <[email protected]> |