Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-07-04vp8: loopfilter >=sse2 functions need aligned stack on x86-32.Martin Storsjö
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2012-07-04amr: remove shift out of the AMR_BIT() macro.Ronald S. Bultje
MSVC doesn't like the offsetof(..) >> 1 construct, it interprets it as a non-literal, thus causing use of this in static tables to fail compilation.
2012-07-04dsputilenc: group yasm and inline asm function pointer assignment.Ronald S. Bultje
2012-07-04Clarify Doxygen comment for FF_API_* #defines.Diego Biurrun
2012-07-04mpegvideo: remove VLAsRonald S. Bultje
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-04flacdec: move lpc filter to flacdspMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-04flacdec: split off channel decorrelation as flacdspMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-04flacdec: factor out code setting avctx->sample_fmtMans Rullgard
2012-07-04flac: make FLAC_CHMODE_* constants consecutiveMans Rullgard
2012-07-04flacdec: allocate sample buffers with av_mallocMans Rullgard
The buffers are only allocated once, although it can happen from any of a few different places, so there is no need to use realloc. Using av_malloc() ensures they are aligned suitably for SIMD optimisations. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-04flacdec: remove curr_bps from FLACContextMans Rullgard
This value does not need to be persistent across calls.
2012-07-04flacenc: add option for forcing stereo decorrelation modeMans Rullgard
This is mainly useful for testing. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-03anm: fix a few Doxygen commentsDiego Biurrun
2012-07-03misc typo and wording fixesDiego Biurrun
2012-07-03snow: remove a VLA used for edge emulationRonald S. Bultje
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-03snow: remove the runs[] VLA.Ronald S. Bultje
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-03snow: Check mallocs at initMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-03flacdec: remove redundant setting of avctx->sample_fmtMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-02snow: remove VLA in mc_block()Mans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-02snow: remove a VLA.Ronald S. Bultje
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-02MS ATC Screen (aka MSS3) decoderKostya Shishkov
2012-07-02roqvideo: Remove a totally unused dspcontextMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-01smacker: remove some unused codeMans Rullgard
This removes some code apparently left over from vlc reader debugging. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-01dsicin: remove dead assignmentMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-01aacdec: remove dead assignmentMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-01rl2: remove dead assignmentMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-01proresenc: make a variable local to the loop where it is usedMans Rullgard
This moves the mbs_per_slice declaration inside the only loop where it is used. Fixes a dead assignment. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-01alsdec: remove dead assignmentsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-01wma: Lower the maximum number of channels to 2Martin Storsjö
ff_wma_init is used only by wmadec and wmaenc, and neither of them can handle more than 2 channels. This fixes crashes with invalid files. Based on patch by Piotr Bandurski and Michael Niedermayer. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-01ARM: generate position independent code to access data symbolsMans Rullgard
This creates proper position independent code when accessing data symbols if CONFIG_PIC is set. References to external symbols should now use the movrelx macro. Some additional code changes are required since this macro may need a register to hold the GOT pointer. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-06-30dsputilenc_mmx: split assignment of ff_sse16_sse2 to SSE2 section.Ronald S. Bultje
2012-06-30dnxhdenc: add space between function argument type and comment.Ronald S. Bultje
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-30x86: fmtconvert: add special asm for float_to_int16_interleave_misc_*Ronald S. Bultje
This gets rid of a variable-length array and a for loop in C code. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-30x86: vc1: fix and enable optimised loop filterMans Rullgard
The problem is that the ssse3 psign instruction does the wrong thing here. Commit ea60dfe incorrectly removed a macro emulating this instruction for pre-ssse3 code. However, the emulation is incorrect, and the code relies on the behaviour of the macro. Specifically, the psign sets destination elements to zero where the corresponding source element is zero, whereas the emulation only negates destination elements where the source is negative. Furthermore, the PSIGNW_MMX macro in x86util.asm is totally bogus, which is why the original VC-1 code had an additional right shift when using it. Since the psign instruction cannot be used here, skip all the macro hell and use the working instruction sequence directly. None of this was noticed due a stray return statement in ff_vc1dsp_init_mmx() which meant that only the mmx version of the loop filter was ever used (before being removed in ea60dfe). Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-06-27mss1: validate number of changeable palette entriesKostya Shishkov
2012-06-27mss1: report palette changed when some additional colours were decodedKostya Shishkov
2012-06-27x86: fft: replace call to memcpy by a loopChristophe Gisquet
The function call was a mess to handle, and memcpy cannot make the assumptions we do in the new code. Tested on an IMC sample: 430c -> 370c. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-06-27dxva2: include dxva.h if foundRonald S. Bultje
Apparently, some build environments require dxva.h even for dxva2, while others lack this header entirely. Including it conditionally allows building in both cases. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-26dxva2_h264: fix signaling of mbaff framesHendrik Leppkes
The MBAFF flag may only be signaled if we're actually dealing with a full frame, and not singular fields, as it can happen in mixed content. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-26x86: fft: elf64: fix PIC buildMans Rullgard
In a 64-bit PIC build, external functions must be called through the PLT. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-06-25x86: fft: win64: fix stack alignment for memcpy() callMans Rullgard
2012-06-25x86: fft: convert sse inline asm to yasmMans Rullgard
2012-06-25x86: place some inline asm under #if HAVE_INLINE_ASMRonald S. Bultje
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-06-24h264: use asm cabac reader under a generic conditionMans Rullgard
This removes a dependency on implementation details from generic code and allows easy addition of the equivalent optimisation for other architectures than x86. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-06-23x86: Only use optimizations with cmov if the CPU supports the instructionDiego Biurrun
2012-06-23x86: remove unused inline asm macros from dsputil_mmx.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-06-23x86: move some inline asm macros to the only places they are usedMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-06-22libspeexenc: add supported sample rates and channel layouts.Anton Khirnov
2012-06-22utvideo: mark interlaced frames as suchHendrik Leppkes
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2012-06-22utvideo: Fix interlaced prediction for RGB utvideo.Carl Eugen Hoyos
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>