summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* mpegaudioenc: Remove broken integer-only quantization code pathDiego Biurrun2013-11-10
|
* hwaccel: Simplify ff_find_hwaccelLuca Barbato2013-11-10
| | | | It is always called by passing fields from an AVCodecContext.
* avienc: drop the vfr flag.Anton Khirnov2013-11-08
| | | | | AVI does not really support vfr properly, only by padding with null packets.
* metasound: Fix error message argumentKostya Shishkov2013-11-08
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* h263dsp: K&R formatting cosmeticsDiego Biurrun2013-11-08
| | | | Also remove array element numbering comments.
* dsputil: Split off H.263 bits into their own H263DSPContextDiego Biurrun2013-11-08
|
* Remove #undefs for formerly forbidden system functionsDiego Biurrun2013-11-07
| | | | | The macros forbidding the system functions no longer exist, obviating the need for the #undefs.
* avfilter/graphparser: Directly free filter memory if initialization failsDiego Biurrun2013-11-06
|
* configure: Move -Wno-maybe-uninitialized check into gcc sectionDiego Biurrun2013-11-05
| | | | | | As another example of bizarre compiler behavior clang groks the -Wmaybe-uninitialized option, but not -Wno-maybe-uninitialized and spews a warning for every file that gets compiled.
* avfilter/buffer: Suppress deprecation warning for avfilter_unref_bufferDiego Biurrun2013-11-04
| | | | The function is used in a block of code that is deprecated anyway.
* graph2dot: Add missing #include for av_get_channel_layout_string()Diego Biurrun2013-11-04
|
* graph2dot: Fix use of deprecated APIDiego Biurrun2013-11-04
|
* vdpau: Add missing #includes to fix standalone header compilationDiego Biurrun2013-11-04
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* x86: rv40dsp: Use PAVGB instruction macro where appropriateDiego Biurrun2013-11-04
|
* omadec: loosen format probing constraintsDavid Goldwich2013-11-04
| | | | | | | | | | Imporoves detection of some files in the wild: - ID3v2 a.k.a. "ea3" header is optional. - Version and flags in ID3v2 header are unspecified. Signed-off-by: David Goldwich <david.goldwich@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* omadec: check GEOB sizes against buffer sizeMichael Niedermayer2013-11-04
| | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: David Goldwich <david.goldwich@gmail.com> CC:libav-stable@libav.org Signed-off-by: Anton Khirnov <anton@khirnov.net>
* omadec: Fix wrong number of array elementsMichael Niedermayer2013-11-04
| | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: David Goldwich <david.goldwich@gmail.com> CC:libav-stable@libav.org Signed-off-by: Anton Khirnov <anton@khirnov.net>
* filtfmts-test: Fix use of deprecated APIDiego Biurrun2013-11-04
| | | | Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* hevc_ps: Use AV_PIX_FMT_YUVJ420P if YUV 4:2:0 8-bit full scaleYusuke Nakamura2013-11-04
| | | | Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* hevc: Use parsed VUI colorimetry in avcodecJan Ekström2013-11-04
| | | | | | Also limit the parsed VUI values to known valid ones. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* lavc: Add colorimetry values for BT.2020, other non-included onesJan Ekström2013-11-04
| | | | Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* vf_fieldorder: remove superfluous get_video_bufferVittorio Giovara2013-11-04
|
* aacdec: Set the profile during decodingGian-Carlo Pascutto2013-11-04
| | | | | | | Previously the profile would not be set if the bitstream needs to be decoded to know the profile. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavc: move AVCodecContext.pkt to AVCodecInternalAnton Khirnov2013-11-04
| | | | It's a private field, not meant to be accessed from outside lavc.
* pthread: store thread contexts in AVCodecInternal instead of AVCodecContextAnton Khirnov2013-11-04
| | | | | | It's a private field, it should not be visible to callers. Deprecate AVCodecContext.thread_opaque
* pthread_slice: rename ThreadContext -> SliceThreadContextAnton Khirnov2013-11-04
| | | | This should prevent confusion with frame threading.
* lavc: split slice and frame threading functions into separate filesAnton Khirnov2013-11-04
|
* pthread: drop avcodec_ prefixes from static functionsAnton Khirnov2013-11-04
|
* x86: hpeldsp: Use PAVGB instruction macro where necessaryMikulas Patocka2013-11-04
| | | | | Signed-off-by: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> Signed-off-by: Diego Biurrun <diego@biurrun.de>
* build: Remove redundant OBJS declaration intended for programsDiego Biurrun2013-11-03
|
* rtmpproto: Reorder conditions to help dead code eliminationVittorio Giovara2013-11-03
| | | | | This makes sure that these branches are eliminated properly with clang with optimizations disabled.
* ansi: fix possible use of uninitialized variablesVittorio Giovara2013-11-03
|
* wtv: fix variable sign in formatVittorio Giovara2013-11-03
|
* attributes: disable flatten on llvm/clangVittorio Giovara2013-11-03
|
* vf_scale: make the dar variable return the DAR.Rudolf Polzer2013-11-02
| | | | | | | | | Before, it just returned width/height. Correct is width/height*sar. That way it is consistent with DAR as in probe output and setdar. Signed-off-by: Rudolf Polzer <divverent@xonotic.org> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* vf_aspect: support variables in evaluating the aspect ratiosRudolf Polzer2013-11-02
| | | | | | | Example: -vf setsar=sar="sar*9/10" Signed-off-by: Rudolf Polzer <divverent@xonotic.org> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* os_support: Add #endif comments for better readabilityDiego Biurrun2013-11-02
|
* mpeg4video_parser: K&R formatting cosmeticsVittorio Giovara2013-11-02
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* Add an HDS live fragmenting muxerMartin Storsjö2013-11-02
| | | | | | | HDS fragments basically are FLV fragments wrapped in an ISO media mdat atom. Signed-off-by: Martin Storsjö <martin@martin.st>
* mpeg4video: K&R formatting cosmeticsVittorio Giovara2013-11-01
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* flashsv: K&R formatting cosmeticsLuca Barbato2013-11-01
| | | | | | Also improve some log message wording/spelling. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* x86: vp8dsp: Split loopfilter code into a separate fileDiego Biurrun2013-11-01
|
* configure: Properly check for availability of -Wno-foo warning flagsDiego Biurrun2013-11-01
| | | | | | | | | | | | | For some weird reason gcc does not check if the -Wno disabling variants of warning flags match existing warning flags. Instead it swallows them silently. That is, unless other warning or error messages are generated, because then - for some even more bizarre reason - a complaint about the unknown disable warning flag is issued along with the error or warning message. Thus to check for the availability of a warning disabling option, one needs to check for the enabling variant instead and then add the disabling variant to CFLAGS.
* configure: Split test_cflags function off from check_cflagsDiego Biurrun2013-11-01
| | | | This is useful to test flags without directly adding them to CFLAGS.
* lavf: do not use int to store an int64Anton Khirnov2013-11-01
|
* flashsv: Check diff_start diff_height valuesMichael Niedermayer2013-11-01
| | | | | | | Fix out of array accesses. Found-by: ami_stuff Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* flashsv: Refactor a littleLuca Barbato2013-11-01
|
* rtspenc: Make sure BYE packets are sent before TEARDOWNMartin Storsjö2013-11-01
| | | | | | | Also make sure the BYE packets are sent at all when using TCP interleaved transport. Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpenc: Add a rtpflag option for sending BYE packets when finishingMartin Storsjö2013-11-01
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpenc: Remove some superfluous parenthesesMartin Storsjö2013-11-01
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>