summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Expand)AuthorAgeFilesLines
* ARM: allow building in Thumb2 modeMans Rullgard2011-06-2328-145/+415
* ac3enc: remove unneeded local variable in asym_quant()Justin Ruggles2011-06-221-6/+6
* ac3enc: remove a branch in asym_quant() by doing 2 shiftsJustin Ruggles2011-06-221-8/+2
* ac3enc: avoid masking output in asym_quant() by using signed values forJustin Ruggles2011-06-222-12/+12
* H.264: fix 4:4:4 + deblocking + 8x8dct + cavlc + MBAFFJason Garrett-Glaser2011-06-221-5/+5
* H.264: fix 4:4:4 + deblocking + MBAFFJason Garrett-Glaser2011-06-222-10/+24
* H.264: fix 4:4:4 cropping warningJason Garrett-Glaser2011-06-221-1/+2
* H.264: reference the correct SPS in decode_scaling_matricesJason Garrett-Glaser2011-06-221-2/+2
* H.264: fix bug in lossless 4:4:4 decodingJason Garrett-Glaser2011-06-221-1/+1
* rawdec: Fix decoding of QT WRAW files.ami_stuff2011-06-212-2/+3
* mov: Support Digital Voodoo SD 8 Bit and DTS codec identifiers.Carl Eugen Hoyos2011-06-211-0/+1
* rawvideo: Support auv2 fourcc.ami_stuff2011-06-211-0/+1
* h264: Fix assert that failed to compile with -DDEBUG.Diego Biurrun2011-06-211-1/+1
* h264: Add x86 assembly for 10-bit weight/biweight H.264 functions.Daniel Kang2011-06-213-0/+383
* Replace usages of av_get_bits_per_sample_fmt() with av_get_bytes_per_sample().Justin Ruggles2011-06-208-10/+10
* x86: cabac: fix register constraints for 32-bit modeMans Rullgard2011-06-202-3/+3
* cabac: move x86 asm to libavcodec/x86/cabac.hMans Rullgard2011-06-203-132/+173
* x86: h264: cast pointers to intptr_t rather than intMans Rullgard2011-06-201-3/+3
* x86: h264: remove hardcoded edi in decode_significance_8x8_x86()Mans Rullgard2011-06-201-25/+26
* x86: h264: remove hardcoded esi in decode_significance[_8x8]_x86()Mans Rullgard2011-06-201-31/+34
* x86: h264: remove hardcoded edx in decode_significance[_8x8]_x86()Mans Rullgard2011-06-201-35/+37
* x86: h264: remove hardcoded eax in decode_significance[_8x8]_x86()Mans Rullgard2011-06-201-26/+26
* x86: cabac: change 'a' constraint to 'r' in get_cabac_inline()Mans Rullgard2011-06-201-1/+1
* x86: cabac: remove hardcoded esi in get_cabac_inline()Mans Rullgard2011-06-201-8/+8
* x86: cabac: remove hardcoded edx in get_cabac_inline()Mans Rullgard2011-06-201-8/+8
* x86: cabac: remove unused macro parameterMans Rullgard2011-06-201-3/+3
* x86: cabac: remove hardcoded ebx in inline asmMans Rullgard2011-06-202-60/+63
* x86: cabac: remove hardcoded struct offsets from inline asmMans Rullgard2011-06-202-40/+41
* cabac: remove inline asm under #if 0Mans Rullgard2011-06-201-31/+0
* cabac: remove BRANCHLESS_CABAC_DECODER switchMans Rullgard2011-06-202-113/+1
* cabac: remove #if 0 cascade under never-set #ifdef ARCH_X86_DISABLEDMans Rullgard2011-06-201-62/+0
* error_resilience: skip last-MV predictor step if MVs are not available.Ronald Bultje2011-06-201-0/+4
* error_resilience: actually add counter when adding a MV predictor.Ronald Bultje2011-06-201-0/+1
* qdm2: Fix alignment of local array.Michael Niedermayer2011-06-201-3/+3
* h264-mt: fix deadlock in packets with multiple slices (e.g. MP4).Ronald S. Bultje2011-06-201-0/+2
* sipr: Drop unused DSPContextAlex Converse2011-06-182-3/+0
* sipr: include string.h for mem*()Alex Converse2011-06-181-0/+1
* sipr: Use memmove() to copy overlapped buffers.Alex Converse2011-06-181-1/+1
* h264: drop some ugly castsAlex Converse2011-06-181-2/+2
* Fix build if yasm is not available.Ronald S. Bultje2011-06-181-1/+3
* H.264: Add x86 assembly for 10-bit MC Chroma H.264 functions.Daniel Kang2011-06-183-0/+306
* lavc: add opt_find to AVCodecContext class.Anton Khirnov2011-06-171-1/+20
* h264: Complexify frame num gap shortening codeAlexander Strange2011-06-161-3/+14
* Fix decoding of mpegts streams with h264 video that does *NOT* have b framesMike Scheutzow2011-06-161-1/+2
* ac3enc: use correct alignment and length in channel coupling dsp functions.Justin Ruggles2011-06-151-11/+13
* ARM: update ff_h264_idct8_add4_neon for 4:4:4 changesMans Rullgard2011-06-152-19/+25
* ARM: factor some repetitive code into macrosMans Rullgard2011-06-142-174/+69
* Fix SVQ3 after adding 4:4:4 H.264 supportJason Garrett-Glaser2011-06-131-12/+16
* H.264: fix CODEC_FLAG_GRAYJason Garrett-Glaser2011-06-132-65/+84
* 4:4:4 H.264 decoding supportJason Garrett-Glaser2011-06-1318-646/+1608