Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | dpx: stop using deprecated avcodec_set_dimensions | Anton Khirnov | 2013-10-31 | 1 | -3/+2 | |
| | ||||||
* | dnxhddec: stop using deprecated avcodec_set_dimensions | Anton Khirnov | 2013-10-31 | 1 | -3/+3 | |
| | ||||||
* | dirac: stop using deprecated avcodec_set_dimensions | Anton Khirnov | 2013-10-31 | 1 | -3/+3 | |
| | ||||||
* | cdxl: stop using deprecated avcodec_set_dimensions | Anton Khirnov | 2013-10-31 | 1 | -3/+1 | |
| | ||||||
* | avs: stop using deprecated avcodec_set_dimensions | Anton Khirnov | 2013-10-31 | 1 | -1/+1 | |
| | ||||||
* | ansi: stop using deprecated avcodec_set_dimensions | Anton Khirnov | 2013-10-31 | 1 | -2/+4 | |
| | ||||||
* | lavc/utils: stop using deprecated avcodec_set_dimensions | Anton Khirnov | 2013-10-31 | 1 | -5/+9 | |
| | ||||||
* | oggparsetheora: stop using deprecated avcodec_set_dimensions | Anton Khirnov | 2013-10-31 | 1 | -8/+8 | |
| | ||||||
* | lavc: replace avcodec_set_dimensions with ff_set_dimensions | Anton Khirnov | 2013-10-31 | 4 | -4/+30 | |
| | | | | | | avcodec_set_dimensions() is supposed to be an internal utility function, there is no reason whatsoever for it to be public. Therefore deprecate it. | |||||
* | h264: wait for initial complete frame before outputing frames | John Stebbins | 2013-10-31 | 8 | -5/+78 | |
| | | | | | | | | This can be optionally disabled whith the "output_corrupt" flags option. When in "output_corrupt" mode, incomplete frames are signalled through AVFrame.flags FRAME_FLAG_INCOMPLETE_FRAME. Signed-off-by: Anton Khirnov <[email protected]> | |||||
* | HNM4/HNM4A demuxer & video decoder | David Kment | 2013-10-31 | 12 | -2/+681 | |
| | | | | Signed-off-by: Diego Biurrun <[email protected]> | |||||
* | gradfun: x86: Factor out common code for some gradfun_filter_line() variants | Diego Biurrun | 2013-10-31 | 1 | -16/+13 | |
| | ||||||
* | avfilter: x86: K&R formatting cosmetics | Diego Biurrun | 2013-10-31 | 2 | -23/+42 | |
| | ||||||
* | build: Ensure that strip commands are run silently | Diego Biurrun | 2013-10-31 | 1 | -1/+1 | |
| | ||||||
* | lavf: Remove a now useless parameter to ffurl_register_protocol | Martin Storsjö | 2013-10-30 | 3 | -11/+3 | |
| | | | | | | | | | | | | | | This was added in 9b07a2dc02e9 as an ABI hack to allow older code built with lavf 52 to register protocols even if the size of the URLProtocol struct was increased. Later, registering protocols from outside of lavf was removed and this workaround isn't needed any longer since lavf 53. This removes an unchecked malloc and a memory leak for the cases when this workaround actually was used - which it hasn't since lavf 53. Signed-off-by: Martin Storsjö <[email protected]> | |||||
* | oggparsetheora: check av_mallocz result | Anton Khirnov | 2013-10-30 | 1 | -0/+2 | |
| | ||||||
* | oggparsetheora: return meaningful error codes | Anton Khirnov | 2013-10-30 | 1 | -3/+3 | |
| | ||||||
* | oggparsetheora: K&R cosmetics, reformat | Anton Khirnov | 2013-10-30 | 1 | -53/+53 | |
| | | | | | | | | Also typedef the private data struct and make its name consistent with the rest of Libav. Signed-off-by: Vittorio Giovara <[email protected]> Signed-off-by: Anton Khirnov <[email protected]> | |||||
* | lavc: add error checking to apply_param_change. | Anton Khirnov | 2013-10-30 | 1 | -14/+37 | |
| | ||||||
* | libopenjpegdec: return meaningful error codes | Anton Khirnov | 2013-10-30 | 1 | -6/+9 | |
| | ||||||
* | build: remove pointless condition | Ingo Brückl | 2013-10-29 | 1 | -1/+1 | |
| | | | | | | | | $(STRIP) always expands to something, because it is one of the commands in the BRIEF list. This renders the condition pointless. Signed-off-by: Ingo Brückl <[email protected]> Signed-off-by: Derek Buitenhuis <[email protected]> | |||||
* | h264: Check all allocations | Derek Buitenhuis | 2013-10-29 | 1 | -7/+18 | |
| | | | | Signed-off-by: Derek Buitenhuis <[email protected]> | |||||
* | fate.sh: Allow non-fast-forwards when updating sources | Diego Biurrun | 2013-10-29 | 1 | -1/+1 | |
| | ||||||
* | avconv: stop accessing AVStream.parser | Anton Khirnov | 2013-10-29 | 2 | -1/+10 | |
| | | | | It is private and must not be touched from outside of lavf. | |||||
* | lavc: add a dummy field to AVStream to preserve ABI compatibility for avconv | Anton Khirnov | 2013-10-29 | 2 | -0/+8 | |
| | | | | | | | | avconv abuses the API by accessing AVStream.parser (which is private). Removing AVStream.reference_dts in 2ba68dd044ca8fc591139c05563840f546a9c0c0 breaks ABI compatibility for an old avconv using a newer lavf. Fix this by adding a dummy field until the next bump. | |||||
* | avio: Check for memory allocation failure of private data | Derek Buitenhuis | 2013-10-29 | 1 | -0/+7 | |
| | | | | Signed-off-by: Derek Buitenhuis <[email protected]> | |||||
* | timefilter: Handle memory allocation failure | Derek Buitenhuis | 2013-10-29 | 3 | -1/+15 | |
| | | | | Signed-off-by: Derek Buitenhuis <[email protected]> | |||||
* | configure: Provide an hardened toolchain option | Luca Barbato | 2013-10-29 | 1 | -0/+4 | |
| | ||||||
* | configure: Move gcc-only -W option where it belongs | Luca Barbato | 2013-10-29 | 1 | -1/+1 | |
| | ||||||
* | lavfi: do not export the filters from shared objects | Anton Khirnov | 2013-10-28 | 56 | -69/+69 | |
| | ||||||
* | lavf: do not export av_register_{rtp,rdt}_dynamic_payload_handlers from ↵ | Anton Khirnov | 2013-10-28 | 5 | -6/+6 | |
| | | | | shared objects | |||||
* | lavc: remove old unused audio conversion functions. | Anton Khirnov | 2013-10-28 | 3 | -187/+0 | |
| | ||||||
* | ac3dec: fix outptr increment. | Michael Niedermayer | 2013-10-28 | 1 | -1/+1 | |
| | | | | | | | | | Fixes corrupt data errors when downmixing in the AC-3 decoder. Signed-off-by: Michael Niedermayer <[email protected]> Signed-off-by: Justin Ruggles <[email protected]> CC:[email protected] | |||||
* | lavc: don't set AVFrame.pts to random numbers in decoders. | Anton Khirnov | 2013-10-28 | 3 | -10/+0 | |
| | ||||||
* | lavf: remove unreliable timestamp guessing heuristic | Anton Khirnov | 2013-10-28 | 4 | -34/+0 | |
| | ||||||
* | g722dec: Change bits_per_codeword to the right option type | Martin Storsjö | 2013-10-28 | 1 | -1/+1 | |
| | | | | | | | This isn't a set of flags but just a plain integer in the range 6-8. Signed-off-by: Martin Storsjö <[email protected]> | |||||
* | avfilter: fix const use of avfilter_next | Vittorio Giovara | 2013-10-28 | 1 | -2/+2 | |
| | | | | Signed-off-by: Anton Khirnov <[email protected]> | |||||
* | avfilter: have avfilter_get_by_name return const for next bump | Vittorio Giovara | 2013-10-28 | 3 | -0/+9 | |
| | | | | Signed-off-by: Anton Khirnov <[email protected]> | |||||
* | lavc: disable CRC checking by default | Anton Khirnov | 2013-10-28 | 1 | -1/+1 | |
| | ||||||
* | lavc: change all decoders to behave consistently with AV_EF_CRCCHECK. | Anton Khirnov | 2013-10-28 | 6 | -7/+24 | |
| | | | | | | Just crccheck prints a warning, crccheck+explode returns an error. Also document this behavior. | |||||
* | error resilience: check error_concealment, not err_recognition. | Anton Khirnov | 2013-10-28 | 1 | -3/+3 | |
| | | | | | err_recognition is supposed to trigger detecting and reporting errors, not trying to fix them. | |||||
* | avio: K&R formatting cosmetics | Luca Barbato | 2013-10-28 | 1 | -40/+50 | |
| | ||||||
* | h263: Check init_get_bits return value | Michael Niedermayer | 2013-10-28 | 1 | -6/+11 | |
| | | | | | | | And use init_get_bits8 to check for integer overflows while at it. CC: [email protected] Signed-off-by: Luca Barbato <[email protected]> | |||||
* | h263: Return meaningful errors | Luca Barbato | 2013-10-28 | 1 | -21/+30 | |
| | ||||||
* | configure: Disable -Wmaybe-uninitialized by default | Luca Barbato | 2013-10-28 | 1 | -0/+1 | |
| | | | | | It is by definition unreliable and causes pointless noise on valid code. | |||||
* | AVOptions: do not range check flag options. | Anton Khirnov | 2013-10-27 | 1 | -1/+2 | |
| | | | | | | | It does not make sense in the vast majority of use cases, no currently defined AV_OPT_TYPE_FLAGS options in Libav set the range to anything nontrivial, and many of those get it wrong (the "correct" range is INT_MIN to INT_MAX so that the builtin constant "all" works). | |||||
* | h264_ps: when parsing a VUI fails, only abort when explode is set | Anton Khirnov | 2013-10-27 | 1 | -2/+4 | |
| | | | | | | A VUI doesn't contain anything strictly necessary for decoding. Apparently there are many samples with truncated VUIs in the wild, this commit should allow decoding them. | |||||
* | FATE: add bitexact sws flags to the fieldorder test | Paul B Mahol | 2013-10-27 | 2 | -26/+26 | |
| | | | | | | swscale is called for the 420 to 422 conversion Signed-off-by: Anton Khirnov <[email protected]> | |||||
* | avconv: drop a now useless variable | Anton Khirnov | 2013-10-27 | 1 | -2/+0 | |
| | ||||||
* | avframe: mark source frame const in _ref and _clone | Vittorio Giovara | 2013-10-27 | 2 | -4/+4 | |
| | | | | Signed-off-by: Anton Khirnov <[email protected]> |