Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | rawdec: Fix decoding of QT WRAW files. | ami_stuff | 2011-06-21 | 2 | -2/+3 |
| | | | | | | | From some tests it results that: 1. All of the AVI/MOV WRAW files need to be flipped. 2. MOV WRAW files need to use AVI color modes. 3. Assigning PAL8 mode by default to WRAW codec is not correct. | ||||
* | configure: report optimization for size separately | Mans Rullgard | 2011-06-21 | 1 | -1/+1 |
| | | | | | | | | This removes an unsightly override of the 'optimizations' setting only to make the configure report print 'small' when --enable-small is used. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | mov: Support Digital Voodoo SD 8 Bit and DTS codec identifiers. | Carl Eugen Hoyos | 2011-06-21 | 2 | -0/+5 |
| | |||||
* | mov: Support R10g codec identifier. | ami_stuff | 2011-06-21 | 1 | -0/+1 |
| | |||||
* | riff/img2: Add JPEG 2000 codec IDs. | Kamil Nowosad | 2011-06-21 | 2 | -0/+2 |
| | |||||
* | riff: Add DAVC fourcc. | ami_stuff | 2011-06-21 | 1 | -0/+1 |
| | | | | | This fourcc is used by the "mpegable AVC" codec and files encoded with this codec decode correctly with our H.264 decoder. | ||||
* | riff: Add M263, XVIX, MMJP, CDV5 fourccs. | Carl Eugen Hoyos | 2011-06-21 | 1 | -0/+4 |
| | |||||
* | rawvideo: Support auv2 fourcc. | ami_stuff | 2011-06-21 | 2 | -0/+2 |
| | |||||
* | swscale: Remove unused variable from ff_bfin_get_unscaled_swscale(). | Diego Biurrun | 2011-06-21 | 1 | -2/+0 |
| | |||||
* | h264: Fix assert that failed to compile with -DDEBUG. | Diego Biurrun | 2011-06-21 | 1 | -1/+1 |
| | | | | The assert referenced a variable that no longer exists since 4:4:4 support. | ||||
* | h264: Add x86 assembly for 10-bit weight/biweight H.264 functions. | Daniel Kang | 2011-06-21 | 3 | -0/+383 |
| | | | | | | Mainly ported from 8-bit H.264 weight/biweight. Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | fate: remove output redirections from old regtest scripts | Mans Rullgard | 2011-06-21 | 5 | -32/+16 |
| | | | | | | | | All tests are run through the fate-run.sh script which already sets up redirections. Using the outputs set there simplifies things somewhat. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | Replace usages of av_get_bits_per_sample_fmt() with av_get_bytes_per_sample(). | Justin Ruggles | 2011-06-20 | 12 | -16/+16 |
| | | | | av_get_bits_per_sample_fmt() is deprecated. | ||||
* | x86: cabac: fix register constraints for 32-bit mode | Mans Rullgard | 2011-06-20 | 2 | -3/+3 |
| | | | | | | | | Some operands need to be accessed in byte mode, which restricts the available registers in 32-bit mode. Using the 'q' constraint selects a suitable register. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | cabac: move x86 asm to libavcodec/x86/cabac.h | Mans Rullgard | 2011-06-20 | 3 | -132/+173 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | x86: h264: cast pointers to intptr_t rather than int | Mans Rullgard | 2011-06-20 | 1 | -3/+3 |
| | | | | | | | Only the low-order bits are used here so the type is not important, but this avoids a compiler warning. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | x86: h264: remove hardcoded edi in decode_significance_8x8_x86() | Mans Rullgard | 2011-06-20 | 1 | -25/+26 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | x86: h264: remove hardcoded esi in decode_significance[_8x8]_x86() | Mans Rullgard | 2011-06-20 | 1 | -31/+34 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | x86: h264: remove hardcoded edx in decode_significance[_8x8]_x86() | Mans Rullgard | 2011-06-20 | 1 | -35/+37 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | x86: h264: remove hardcoded eax in decode_significance[_8x8]_x86() | Mans Rullgard | 2011-06-20 | 1 | -26/+26 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | x86: cabac: change 'a' constraint to 'r' in get_cabac_inline() | Mans Rullgard | 2011-06-20 | 1 | -1/+1 |
| | | | | | | Nothing requires this value in %eax. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | x86: cabac: remove hardcoded esi in get_cabac_inline() | Mans Rullgard | 2011-06-20 | 1 | -8/+8 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | x86: cabac: remove hardcoded edx in get_cabac_inline() | Mans Rullgard | 2011-06-20 | 1 | -8/+8 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | x86: cabac: remove unused macro parameter | Mans Rullgard | 2011-06-20 | 1 | -3/+3 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | x86: cabac: remove hardcoded ebx in inline asm | Mans Rullgard | 2011-06-20 | 2 | -60/+63 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | x86: cabac: remove hardcoded struct offsets from inline asm | Mans Rullgard | 2011-06-20 | 2 | -40/+41 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | cabac: remove inline asm under #if 0 | Mans Rullgard | 2011-06-20 | 1 | -31/+0 |
| | | | | | | A comment says it's not faster than the C code. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | cabac: remove BRANCHLESS_CABAC_DECODER switch | Mans Rullgard | 2011-06-20 | 2 | -113/+1 |
| | | | | | | The code does not compile without this set. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | cabac: remove #if 0 cascade under never-set #ifdef ARCH_X86_DISABLED | Mans Rullgard | 2011-06-20 | 1 | -62/+0 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | document libswscale bump | Reinhard Tartler | 2011-06-20 | 2 | -1/+2 |
| | |||||
* | error_resilience: skip last-MV predictor step if MVs are not available. | Ronald Bultje | 2011-06-20 | 1 | -0/+4 |
| | | | | Fixes crashes when playing broken MPEG2-TS streams. | ||||
* | error_resilience: actually add counter when adding a MV predictor. | Ronald Bultje | 2011-06-20 | 3 | -4/+5 |
| | | | | Without, the predictor isn't actually used. | ||||
* | qdm2: Fix alignment of local array. | Michael Niedermayer | 2011-06-20 | 1 | -3/+3 |
| | | | | | | | Fixes ticket270 Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | ocv: replace FF_INTERNAL_MEM_TYPE_MAX_VALUE with SIZE_MAX | Stefano Sabatini | 2011-06-20 | 1 | -1/+1 |
| | | | | | | | Fix compilatin after removal of FF_INTERNAL_MEM_TYPE_MAX_VALUE. Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it> Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | drawtext: add braces around initialisers for option defaults | Stefano Sabatini | 2011-06-20 | 1 | -29/+29 |
| | | | | | | | | Fix warnings of the type: vf_drawtext.c:NNN: warning: missing braces around initializer vf_drawtext.c:NNN: warning: (near initialization for ‘drawtext_options[X].default_val’) Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | drawtext: reindent after the previous commit | Stefano Sabatini | 2011-06-20 | 1 | -20/+20 |
| | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | drawtext: fix strftime() text expansion | Stefano Sabatini | 2011-06-20 | 1 | -18/+27 |
| | | | | | | | The feature was dropped after the filter was partially rewritten and recommitted. Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | Bump major version for b8e893399ff8755721dc117695ec5ff183c1e07b | Reinhard Tartler | 2011-06-20 | 1 | -4/+4 |
| | | | | | | | | | | | On architectures such as x86 (both 32 bit and 64bit), the stack element size is fixed, which maintains alignment. Here, this change does not break anything. However, we also support also other architectures where this property is not maintained and therefore, applications will crash horribly. This change effectively forces all applications to be recompiled against libswscale. | ||||
* | h264-mt: fix deadlock in packets with multiple slices (e.g. MP4). | Ronald S. Bultje | 2011-06-20 | 1 | -0/+2 |
| | |||||
* | mov: Fix empty edit detection. | Yusuke Nakamura | 2011-06-19 | 1 | -1/+1 |
| | |||||
* | Drop git- prefix from version labels | Mans Rullgard | 2011-06-19 | 1 | -1/+0 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | Use the contents of RELEASE as version fallback instead of 'UNKNOWN' | Reinhard Tartler | 2011-06-19 | 2 | -1/+2 |
| | | | | | | This makes binaries produced by source tarballs identify themselves with the version number of the corresponding release series, unless overriden by a 'VERSION' file. | ||||
* | path64/open64: filter out unsupported flags | Mans Rullgard | 2011-06-19 | 1 | -0/+2 |
| | | | | | | | These flags are accepted without error but produce an annoying warning. Filtering them out makes the build less noisy. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | Add Release Notes | Reinhard Tartler | 2011-06-19 | 1 | -0/+52 |
| | |||||
* | sipr: Drop unused DSPContext | Alex Converse | 2011-06-18 | 2 | -3/+0 |
| | |||||
* | sipr: include string.h for mem*() | Alex Converse | 2011-06-18 | 1 | -0/+1 |
| | |||||
* | sipr: Use memmove() to copy overlapped buffers. | Alex Converse | 2011-06-18 | 1 | -1/+1 |
| | |||||
* | h264: drop some ugly casts | Alex Converse | 2011-06-18 | 1 | -2/+2 |
| | |||||
* | lavf: prevent crash in av_open_input_file() if ap == NULL. | Ronald S. Bultje | 2011-06-18 | 1 | -1/+1 |
| | | | | Needed for proper behaviour in our old API compatibility code. | ||||
* | more Changelog additions | Reinhard Tartler | 2011-06-18 | 1 | -2/+6 |
| |