Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | x86inc: fix stack alignment on win64 | Ronald S. Bultje | 2012-12-12 | 1 | -4/+6 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | x86inc: support stack mem allocation and re-alignment in PROLOGUE | Ronald S. Bultje | 2012-12-12 | 1 | -36/+149 |
| | | | | | | | Use this in VP8/H264-8bit loopfilter functions so they can be used if there is no aligned stack (e.g. MSVC 32bit or ICC 10.x). Signed-off-by: Luca Barbato <lu_zero@gentoo.org> | ||||
* | x86: float_dsp: fix loading of the len parameter on x86-32 | Justin Ruggles | 2012-12-07 | 1 | -1/+4 |
| | |||||
* | arm: detect cpu features at runtime on Linux | Mans Rullgard | 2012-12-07 | 1 | -0/+83 |
| | | | | | | | | This allows compiling optimised functions for features not enabled in the core build and selecting these at runtime if the system has the necessary support. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | arm: rename ARMVFP config symbol to VFP | Mans Rullgard | 2012-12-07 | 4 | -5/+5 |
| | | | | | | | This is consistent with usual ARM nomenclature as well as with the VFPV3 and NEON symbols which both lack the ARM prefix. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | arm: use HAVE*_INLINE/EXTERNAL macros for conditional compilation | Mans Rullgard | 2012-12-07 | 3 | -8/+8 |
| | | | | | | These macros reflect the actual capabilities required here. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | x86: float_dsp: fix compilation of ff_vector_dmul_scalar_avx() on x86-32 | Justin Ruggles | 2012-12-06 | 1 | -1/+1 |
| | | | | Signed-off-by: Janne Grunau <janne-libav@jannau.net> | ||||
* | pixdesc: fix yuva 10bit bit depth | Paul B Mahol | 2012-12-05 | 1 | -20/+20 |
| | | | | | | | It was wrongly set as the yuva 16bit one. Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Luca Barbato <lu_zero@gentoo.org> | ||||
* | x86: af_volume: add SSE2/SSSE3/AVX-optimized s32 volume scaling | Justin Ruggles | 2012-12-05 | 1 | -0/+1 |
| | |||||
* | lavu/opt: do not filter out the initial sign character except for flags | Justin Ruggles | 2012-12-05 | 1 | -3/+8 |
| | | | | This allows parsing of special-case negative numbers like decibels. | ||||
* | eval: treat dB as decibels instead of decibytes | Justin Ruggles | 2012-12-05 | 1 | -3/+24 |
| | |||||
* | float_dsp: add vector_dmul_scalar() to multiply a vector of doubles | Justin Ruggles | 2012-12-05 | 5 | -0/+89 |
| | | | | Include x86-optimized versions for SSE2 and AVX. | ||||
* | Remove pointless #undefs of previously forbidden functions. | Anton Khirnov | 2012-12-04 | 15 | -29/+0 |
| | |||||
* | avutil: Use a configure check to enable windows console functions | Martin Storsjö | 2012-11-30 | 1 | -2/+2 |
| | | | | | | Not all versions or API subsets of windows have these functions. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | avutil: Include io.h with a separate condition from windows console functions | Martin Storsjö | 2012-11-30 | 1 | -1/+3 |
| | | | | | | | | Not all versions of windows have the console color functions, while io.h might be needed for isatty (which can be found in unistd.h or io.h). Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | avutil: Include io.h with a separate condition from MapViewOfFile | Martin Storsjö | 2012-11-29 | 1 | -1/+3 |
| | | | | | | | | | | | The existence of MapViewOfFile isn't linked to the existence of io.h. Not all versions of windows have MapViewOfFile (in particular, Windows Phone 8 and the "metro" windows 8 API subset don't), while they still have io.h (and need it for open/read/close). Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | x86: cpu: Drop unused HAVE_RWEFLAGS condition | Diego Biurrun | 2012-11-28 | 1 | -1/+1 |
| | | | | The test for rweflags was dropped in a previous commit. | ||||
* | x86: float_dsp: add SSE version of vector_fmul_scalar() | Justin Ruggles | 2012-11-26 | 2 | -0/+33 |
| | |||||
* | dsputil: move vector_fmul_scalar() to AVFloatDSPContext in libavutil | Justin Ruggles | 2012-11-26 | 4 | -0/+66 |
| | |||||
* | base64: fix signed overflow in shift | Mans Rullgard | 2012-11-26 | 1 | -2/+2 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | remove #defines to prevent use of discouraged external functions | Janne Grunau | 2012-11-25 | 1 | -34/+0 |
| | | | | | | | | | | | Preventing the use of discouraged or 'insecure' external functions through defines in an internal header is not a good solution. The header is not guaranteed to be included universally which makes overlooking bad use of said functions during review more likely. There are cases were those functions either are the most straight forward solution or even have to be used. Using malloc or free is required if the allocation or release is done by other libraries. | ||||
* | av_memcpy_backptr: optimise some special cases | Mans Rullgard | 2012-11-23 | 1 | -17/+103 |
| | | | | | | | | | - Add special cases for offsets of 2, 3, or 4 bytes. This means the offset is always >4 in the generic case, allowing 32-bit copies to be used there. - Don't use memcpy() for sizes less than 16 bytes. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | pixdesc: add PIX_FMT_ALPHA flag | Luca Barbato | 2012-11-20 | 2 | -24/+28 |
| | |||||
* | x86: SPLATD: port to cpuflags | Diego Biurrun | 2012-11-18 | 1 | -16/+6 |
| | |||||
* | cpu.h: define AV_CPU_FLAG_MMX2 for libavutil major 52 | Janne Grunau | 2012-11-16 | 2 | -1/+4 |
| | |||||
* | crc: av_crc() parameter names should match between .c, .h and doxygen | Diego Biurrun | 2012-11-16 | 1 | -1/+2 |
| | |||||
* | avutil: change GET_UTF8 to not use av_log2() | Mans Rullgard | 2012-11-14 | 1 | -4/+5 |
| | | | | | | | This removes an inter-library dependency on ff_log2_tab causing linking errors in some configurations. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | x86: mmx2 ---> mmxext in asm constructs | Diego Biurrun | 2012-11-14 | 1 | -1/+1 |
| | |||||
* | pixdesc: add av_pix_fmt_get_chroma_sub_sample | Luca Barbato | 2012-11-13 | 2 | -0/+26 |
| | | | | Deprecate avcodec_get_chroma_sub_sample. | ||||
* | build: Drop AVX assembly ifdefs | Diego Biurrun | 2012-11-11 | 1 | -4/+0 |
| | | | | An assembler able to cope with AVX instructions is now required. | ||||
* | lavu: rename audioconvert.* to channel_layout.* and deprecate audioconvert.h | Justin Ruggles | 2012-11-11 | 5 | -184/+194 |
| | |||||
* | x86inc: Set program_name outside of x86inc.asm | Diego Biurrun | 2012-11-11 | 2 | -1/+2 |
| | | | | This reduces the local difference to the x264 upstream version. | ||||
* | x86: PALIGNR: port to cpuflags | Diego Biurrun | 2012-11-09 | 1 | -8/+8 |
| | |||||
* | lavu: add av_ctz() for trailing zero bit count | Justin Ruggles | 2012-11-05 | 4 | -2/+62 |
| | |||||
* | x86: PABSW: port to cpuflags | Diego Biurrun | 2012-11-05 | 1 | -12/+10 |
| | |||||
* | crc: move doxy to the header | Anton Khirnov | 2012-11-02 | 2 | -28/+30 |
| | |||||
* | x86: Refactor PSWAPD fallback implementations and port to cpuflags | Diego Biurrun | 2012-11-02 | 1 | -0/+12 |
| | |||||
* | x86: PMINUB: port to cpuflags | Diego Biurrun | 2012-11-02 | 1 | -5/+5 |
| | |||||
* | x86util: Add cpuflags_mmxext alias for cpuflags_mmx2 | Diego Biurrun | 2012-11-02 | 1 | -0/+2 |
| | | | | "mmxext" is a more sensible name and more common in outside projects. | ||||
* | x86inc: Only define program_name if the macro is unset | Diego Biurrun | 2012-11-02 | 1 | -1/+3 |
| | | | | This allows overriding the value from outside of the file. | ||||
* | x86: Fix assembly with NASM | Dave Yeo | 2012-10-31 | 1 | -1/+1 |
| | | | | | | | Unlike YASM, NASM only looks for include files in the current directory, not in the directory that included files reside in. Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | x86: MMX2 ---> MMXEXT in macro names | Diego Biurrun | 2012-10-31 | 1 | -3/+3 |
| | |||||
* | x86: include x86inc.asm in x86util.asm | Diego Biurrun | 2012-10-31 | 3 | -2/+3 |
| | | | | This is necessary to allow refactoring some x86util macros with cpuflags. | ||||
* | pixfmt: support more yuva formats | Luca Barbato | 2012-10-30 | 2 | -0/+262 |
| | | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org> | ||||
* | Remove INIT_AVX from x86inc.asm. | Ronald S. Bultje | 2012-10-29 | 1 | -8/+0 |
| | |||||
* | lavr: add general API usage doxy | Anton Khirnov | 2012-10-29 | 1 | -0/+1 |
| | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | avutil: Make LZO decoder code configure-time selectable | Diego Biurrun | 2012-10-25 | 1 | -2/+4 |
| | |||||
* | avutil: Move memcpy_backptr() to mem.c | Diego Biurrun | 2012-10-25 | 4 | -54/+50 |
| | | | | The function is used elsewhere and does not belong with the LZO code. | ||||
* | Remove need for padding in av_memcpy_backptr() | Mans Rullgard | 2012-10-23 | 2 | -9/+9 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | lzo: Use AV_COPY*U macros where appropriate | Diego Biurrun | 2012-10-23 | 1 | -20/+8 |
| |