aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
Commit message (Collapse)AuthorAgeFilesLines
* simplifyMichael Niedermayer2008-04-161-2/+1
| | | | Originally committed as revision 12855 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid reverse addressing, not sure if this is faster or slower but peopleMichael Niedermayer2008-04-161-3/+3
| | | | | | maybe are confused by it. The code needs to be optimized anyway. Originally committed as revision 12854 to svn://svn.ffmpeg.org/ffmpeg/trunk
* commutative law based cleanupMichael Niedermayer2008-04-161-1/+1
| | | | Originally committed as revision 12853 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do the -1 outside of the transformMichael Niedermayer2008-04-161-4/+4
| | | | Originally committed as revision 12852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* normalize signsMichael Niedermayer2008-04-161-4/+2
| | | | Originally committed as revision 12851 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l lost add_biasMichael Niedermayer2008-04-161-2/+2
| | | | Originally committed as revision 12849 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify transformMichael Niedermayer2008-04-161-20/+10
| | | | Originally committed as revision 12848 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Redo r12838, this time using svn copy to create h264_i386.h from cabac.h.Jeff Downs2008-04-163-110/+147
| | | | | | | | | | | Move decode_significance_x86() and decode_significance_8x8_x86() to i386-specific file from cabac.h. New file is h264-oriented and only included from h264.c Resolves compilation when configured with --disable-optimizations due to decode_significance_8x8_x86 using last_coeff_flag_offset_8x8, which is only defined in h264.c Originally committed as revision 12846 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert 12838 to redo it the right way (use svn copy to create newJeff Downs2008-04-163-147/+110
| | | | | | file based on old). Originally committed as revision 12845 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Test idct_xvid_sse2() in dct-test.Alexander Strange2008-04-161-1/+7
| | | | Originally committed as revision 12844 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a new xvid-style IDCT using SSE2.Alexander Strange2008-04-164-1/+403
| | | | Originally committed as revision 12843 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a new IDCT permutation, used in xvid_sse2 and possibly future similar IDCTs.Alexander Strange2008-04-162-0/+7
| | | | Originally committed as revision 12842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move decode_significance_x86() and decode_significance_8x8_x86() toJeff Downs2008-04-153-110/+147
| | | | | | | | | | i386-specific file from cabac.h. New file is h264-oriented and only included from h264.c Resolves compilation when configured with --disable-optimizations due to decode_significance_8x8_x86 using last_coeff_flag_offset_8x8, which is only defined in h264.c Originally committed as revision 12838 to svn://svn.ffmpeg.org/ffmpeg/trunk
* DCA frame size is constantKostya Shishkov2008-04-151-1/+6
| | | | Originally committed as revision 12835 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Eliminate movdqu in vp3dsp_sse2, patch from Alexander Strange ↵Luca Barbato2008-04-141-146/+146
| | | | | | astrangeAtithinkswDoTcom Originally committed as revision 12824 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Maxis XA demuxer and decoder.Robert Marston2008-04-143-1/+28
| | | | | | | | Patch by Robert Marston rmarston (\at/) gmail point com Original thread: [FFmpeg-soc] [Patch] Maxis EA XA decoder - GSoC Task Date: 04/08/2008 01:36 AM Originally committed as revision 12817 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IndentationBenoit Fouet2008-04-141-2/+2
| | | | Originally committed as revision 12816 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support for BMP os2v1.Benoit Fouet2008-04-141-1/+9
| | | | Originally committed as revision 12815 to svn://svn.ffmpeg.org/ffmpeg/trunk
* BFI demuxerSisir Koppaka2008-04-131-0/+1
| | | | | | Patch by Sisir Koppaka (sisir.koppaka at G.M!A.I!L.com) Originally committed as revision 12808 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ILP64 fixes (untested)Michael Niedermayer2008-04-131-5/+5
| | | | Originally committed as revision 12807 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clear DIRS variable in common.mak, so it does not have to be cleared inDiego Biurrun2008-04-131-2/+0
| | | | | | each subdirectory Makefile. Originally committed as revision 12803 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Unset DIRS after including subdir.mak so that the variable is not usedDiego Biurrun2008-04-131-0/+2
| | | | | | in the other subdirectory Makefiles. Originally committed as revision 12801 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Generate the list of files to clean in subdirectories in common.mak.Diego Biurrun2008-04-131-3/+1
| | | | | | This way, it can be used from all directories. Originally committed as revision 12800 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify CLEANFILES generation.Diego Biurrun2008-04-131-11/+4
| | | | Originally committed as revision 12798 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add explanatory comments to enum CodecID.Diego Biurrun2008-04-131-0/+3
| | | | Originally committed as revision 12796 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant &.Michael Niedermayer2008-04-131-19/+19
| | | | Originally committed as revision 12795 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a header file to declare Xvid IDCT functions.Alexander Strange2008-04-123-5/+34
| | | | | | patch by Alexander Strange, astrange ithinksw com Originally committed as revision 12794 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Crop parameters are unsigned, having them negative could be bad and leadMichael Niedermayer2008-04-111-4/+4
| | | | | | to crashes or maybe exploits (not checked at all if this is possible). Originally committed as revision 12789 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid crash with idiotic cropping. Fixes crash with CVFC1_Sony_C.jsvMichael Niedermayer2008-04-111-3/+6
| | | | | | and closes issue333. Originally committed as revision 12788 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Break an overly long line.Keiji Costantini2008-04-101-1/+3
| | | | | | patch by Keiji Costantini, lists strites net Originally committed as revision 12783 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Break some overly long lines.Keiji Costantini2008-04-101-13/+28
| | | | | | patch by Keiji Costantini, lists strites net Originally committed as revision 12782 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Break some overly long lines.Keiji Costantini2008-04-101-16/+30
| | | | | | patch by Keiji Costantini, lists strites net Originally committed as revision 12781 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only set channels in the stream if previously unset, fixes resampling crash ↵Benjamin Larsson2008-04-101-1/+8
| | | | | | on broken dca frames Originally committed as revision 12780 to svn://svn.ffmpeg.org/ffmpeg/trunk
* undo changes in aac_ac3_parserBartlomiej Wolowiec2008-04-094-61/+61
| | | | Originally committed as revision 12778 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix H.264 interframe decoding when compiling with icc. Patch by LorenLoren Merritt2008-04-081-2/+3
| | | | | | | | | | | Merritt: "It seems that icc copies the constants from their global var onto the stack, at which point they're not aligned, hence the crash. [This change] really shouldn't mean anything different, but maybe it'll confuse icc into not performing that 'optimization'." Originally committed as revision 12772 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix reference to a file in MPlayer that was renamed.Diego Biurrun2008-04-081-1/+1
| | | | Originally committed as revision 12770 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add CODEC_ID_DIRACMichael Niedermayer2008-04-081-0/+1
| | | | Originally committed as revision 12769 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correction of typo in aac_ac3_parserBartlomiej Wolowiec2008-04-081-1/+1
| | | | Originally committed as revision 12768 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase alignment for DCT block arrays from 8 to 16Alexander Strange2008-04-085-5/+5
| | | | | | Patch by Alexander Strange ( astrange ithinksw com ) Originally committed as revision 12767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a missing comma in tiff_encoder.pix_fmtsStefano Sabatini2008-04-081-1/+1
| | | | | | Patch by Stefano Sabatini ( stefano sabatini-lala poste it ) Originally committed as revision 12765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace some ifeq with prettier ifdefMåns Rullgård2008-04-071-2/+2
| | | | Originally committed as revision 12764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* append TESTS-yes to TESTS; one ifeq lessMåns Rullgård2008-04-071-3/+1
| | | | Originally committed as revision 12763 to svn://svn.ffmpeg.org/ffmpeg/trunk
* non-recursive makefilesMåns Rullgård2008-04-071-22/+21
| | | | Originally committed as revision 12760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Corrections of errors in aac_ac3_parserBartlomiej Wolowiec2008-04-074-3/+11
| | | | Originally committed as revision 12759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change of aac_ac3_parser, so it is able to send complete portion of data to ↵Bartlomiej Wolowiec2008-04-054-61/+53
| | | | | | decoder Originally committed as revision 12758 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable the split function. This should end the mpeg1/2 global header issues.Michael Niedermayer2008-04-041-1/+0
| | | | Originally committed as revision 12684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Decode stuff from extradata as well.Michael Niedermayer2008-04-031-0/+3
| | | | Originally committed as revision 12675 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize code a little.Michael Niedermayer2008-04-031-8/+18
| | | | Originally committed as revision 12674 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use common aac sample rate tablesAurelien Jacobs2008-04-021-2/+3
| | | | Originally committed as revision 12671 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not use the mlib IDCT by default. We do not want videos which are onlyMichael Niedermayer2008-04-021-1/+1
| | | | | | | | | decodable with the mlib IDCT. If anyone knows of other IDCTs which are not binary identical to a widely available one, ensure that they are not used by default. Such IDCTs should never have been default anyway, but possibly something slipped through the reviews ... Originally committed as revision 12666 to svn://svn.ffmpeg.org/ffmpeg/trunk