summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* dpx: stop using deprecated avcodec_set_dimensionsAnton Khirnov2013-10-311-3/+2
|
* dnxhddec: stop using deprecated avcodec_set_dimensionsAnton Khirnov2013-10-311-3/+3
|
* dirac: stop using deprecated avcodec_set_dimensionsAnton Khirnov2013-10-311-3/+3
|
* cdxl: stop using deprecated avcodec_set_dimensionsAnton Khirnov2013-10-311-3/+1
|
* avs: stop using deprecated avcodec_set_dimensionsAnton Khirnov2013-10-311-1/+1
|
* ansi: stop using deprecated avcodec_set_dimensionsAnton Khirnov2013-10-311-2/+4
|
* lavc/utils: stop using deprecated avcodec_set_dimensionsAnton Khirnov2013-10-311-5/+9
|
* oggparsetheora: stop using deprecated avcodec_set_dimensionsAnton Khirnov2013-10-311-8/+8
|
* lavc: replace avcodec_set_dimensions with ff_set_dimensionsAnton Khirnov2013-10-314-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 framesJohn Stebbins2013-10-318-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 decoderDavid Kment2013-10-3112-2/+681
| | | | Signed-off-by: Diego Biurrun <[email protected]>
* gradfun: x86: Factor out common code for some gradfun_filter_line() variantsDiego Biurrun2013-10-311-16/+13
|
* avfilter: x86: K&R formatting cosmeticsDiego Biurrun2013-10-312-23/+42
|
* build: Ensure that strip commands are run silentlyDiego Biurrun2013-10-311-1/+1
|
* lavf: Remove a now useless parameter to ffurl_register_protocolMartin Storsjö2013-10-303-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 resultAnton Khirnov2013-10-301-0/+2
|
* oggparsetheora: return meaningful error codesAnton Khirnov2013-10-301-3/+3
|
* oggparsetheora: K&R cosmetics, reformatAnton Khirnov2013-10-301-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 Khirnov2013-10-301-14/+37
|
* libopenjpegdec: return meaningful error codesAnton Khirnov2013-10-301-6/+9
|
* build: remove pointless conditionIngo Brückl2013-10-291-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 allocationsDerek Buitenhuis2013-10-291-7/+18
| | | | Signed-off-by: Derek Buitenhuis <[email protected]>
* fate.sh: Allow non-fast-forwards when updating sourcesDiego Biurrun2013-10-291-1/+1
|
* avconv: stop accessing AVStream.parserAnton Khirnov2013-10-292-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 avconvAnton Khirnov2013-10-292-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 dataDerek Buitenhuis2013-10-291-0/+7
| | | | Signed-off-by: Derek Buitenhuis <[email protected]>
* timefilter: Handle memory allocation failureDerek Buitenhuis2013-10-293-1/+15
| | | | Signed-off-by: Derek Buitenhuis <[email protected]>
* configure: Provide an hardened toolchain optionLuca Barbato2013-10-291-0/+4
|
* configure: Move gcc-only -W option where it belongsLuca Barbato2013-10-291-1/+1
|
* lavfi: do not export the filters from shared objectsAnton Khirnov2013-10-2856-69/+69
|
* lavf: do not export av_register_{rtp,rdt}_dynamic_payload_handlers from ↵Anton Khirnov2013-10-285-6/+6
| | | | shared objects
* lavc: remove old unused audio conversion functions.Anton Khirnov2013-10-283-187/+0
|
* ac3dec: fix outptr increment.Michael Niedermayer2013-10-281-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 Khirnov2013-10-283-10/+0
|
* lavf: remove unreliable timestamp guessing heuristicAnton Khirnov2013-10-284-34/+0
|
* g722dec: Change bits_per_codeword to the right option typeMartin Storsjö2013-10-281-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_nextVittorio Giovara2013-10-281-2/+2
| | | | Signed-off-by: Anton Khirnov <[email protected]>
* avfilter: have avfilter_get_by_name return const for next bumpVittorio Giovara2013-10-283-0/+9
| | | | Signed-off-by: Anton Khirnov <[email protected]>
* lavc: disable CRC checking by defaultAnton Khirnov2013-10-281-1/+1
|
* lavc: change all decoders to behave consistently with AV_EF_CRCCHECK.Anton Khirnov2013-10-286-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 Khirnov2013-10-281-3/+3
| | | | | err_recognition is supposed to trigger detecting and reporting errors, not trying to fix them.
* avio: K&R formatting cosmeticsLuca Barbato2013-10-281-40/+50
|
* h263: Check init_get_bits return valueMichael Niedermayer2013-10-281-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 errorsLuca Barbato2013-10-281-21/+30
|
* configure: Disable -Wmaybe-uninitialized by defaultLuca Barbato2013-10-281-0/+1
| | | | | It is by definition unreliable and causes pointless noise on valid code.
* AVOptions: do not range check flag options.Anton Khirnov2013-10-271-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 setAnton Khirnov2013-10-271-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 testPaul B Mahol2013-10-272-26/+26
| | | | | | swscale is called for the 420 to 422 conversion Signed-off-by: Anton Khirnov <[email protected]>
* avconv: drop a now useless variableAnton Khirnov2013-10-271-2/+0
|
* avframe: mark source frame const in _ref and _cloneVittorio Giovara2013-10-272-4/+4
| | | | Signed-off-by: Anton Khirnov <[email protected]>