summaryrefslogtreecommitdiff
path: root/libavcodec/i386/idct_mmx_xvid.c
Commit message (Collapse)AuthorAge
* Rename libavcodec/i386/ --> libavcodec/x86/.Diego Biurrun2008-12-22
| | | | | | | It contains optimizations that are not specific to i386 and libavutil uses this naming scheme already. Originally committed as revision 16270 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert asm keyword into __asm__.Diego Pettenò2008-10-16
| | | | | | | | | | | | | Neither the asm() nor the __asm__() keyword is part of the C99 standard, but while GCC accepts the former in C89 syntax, it is not accepted in C99 unless GNU extensions are turned on (with -fasm). The latter form is accepted in any syntax as an extension (without requiring further command-line options). Sun Studio C99 compiler also does not accept asm() while accepting __asm__(), albeit reporting warnings that it's not valid C99 syntax. Originally committed as revision 15627 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use DECLARE_ALIGNED and remove unneeded attribute_usedReimar Döffinger2008-01-27
| | | | Originally committed as revision 11639 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Group all copyright and author notices together.Diego Biurrun2007-07-05
| | | | Originally committed as revision 9483 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add libavcodec to compiler include flags in order to simplify headerRonald S. Bultje2007-05-16
| | | | | | | include paths in the source files. mostly from a patch by Ronald S. Bultje, rbultje ronald.bitfreak net Originally committed as revision 9034 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Switch idct_mmx_xvid.c from GPL to LGPL as permitted by theDiego Biurrun2006-10-05
| | | | | | author, Peter Ross (pross xvid org). Originally committed as revision 6557 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support for Mac OS X Intel, part 3: binary integer constants:John Dalgliesh2006-08-10
| | | | | | | | | | Apple's assembler only understands the same integer constants as C does: hex, decimal, octal. It doesn't understand binary integer constants (0b...) so this patch replaces binary integer constants with hex ones. Patch by John Dalgliesh % johnd AH defyne P org % Original thread: Date: Aug 10, 2006 8:16 AM Subject: [Ffmpeg-devel] Mac OS X Intel part 3: binary integer constants Originally committed as revision 5970 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-12
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-17
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unused table entriesMichael Niedermayer2005-09-10
| | | | | | change non portable table access Originally committed as revision 4574 to svn://svn.ffmpeg.org/ffmpeg/trunk
* xvids mmx&mmx2 idctsMichael Niedermayer2005-09-10
needed to decode xvid without some minor artefacts under #ifdef CONFIG_GPL of course Originally committed as revision 4572 to svn://svn.ffmpeg.org/ffmpeg/trunk