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-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>
2012-06-22cosmetics: do not use full path for local headersDiego Biurrun
2012-06-21fix hardcoded tables compililation caused by missing math constantsJanne Grunau
Add -D_XOPEN_SOURCE=600 to host cflags to make the constants in math.h available. Include math.h where necessary and remove redundant M_PI defines.
2012-06-21twinvq: give massive struct a name.Ronald S. Bultje
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-21lavc: remove stats_in from AVCodecContext options table.Anton Khirnov
Its documentation states that it is allocated/freed by the caller, but it is declared as an AV_OPT_TYPE_STRING AVOption. Since 367732832faaf1bac4ece37cf7fef8c911e16312 the AVOptions system frees strings automatically. This can be considered an API break, since it won't work when the caller doesn't use av_malloc() to allocate the memory or wants to use the string after closing the codec. Since there is not much value in this field being an AVOption, the best solution is to remove it from the options table.
2012-06-20MS Screen 1 decoderKostya Shishkov
2012-06-20aacdec: Fix popping channel layouts.Alex Converse
'channel_layout' not 'channels' from the stored configuration should go to AVCodecContext's 'channel_layout'.
2012-06-20Use av_gettime() in various placesMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-06-20dct-test: use emms_c() from libavutil instead of duplicating itMans Rullgard
2012-06-19flvdec: remove incomplete, disabled seeking codeDiego Biurrun
2012-06-19lavc: Extend the documentation for avcodec_init_packetSimon A. Eugster
Add a note that pkt->data and pkt->size must be initialized. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-19float_dsp: Move vector_fmac_scalar() from libavcodec to libavutilJustin Ruggles
2012-06-18Add support for iLBC decoding/encoding via the external library libilbcMartin Storsjö
The library is 3-clause BSD licensed. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-18dirac: replace compound literal with normal initialiserRonald S. Bultje
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-06-18vorbisdec: replace div/mod in loop with a counterMans Rullgard
2x speedup of surround decoding on Cortex-A9. Signed-off-by: Mans Rullgard <mans@mansr.com>