summaryrefslogtreecommitdiff
path: root/libavcodec/i386/dsputil_mmx_qns.h
Commit message (Collapse)AuthorAge
* Rename template included sources from .h to _template.c.Diego Pettenò2008-10-27
| | | | | | | | | | | | There are multiple source files that are #include'd rather than compiled, as they are used as template for generation of similar code, like asm-optimised code. Some of these files are right now named with a .h extension, although they are not header in any reasonable sense. Rename them so that instead of being named with .h extension they are named with _template.c as final part. Originally committed as revision 15730 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
* Do not misuse long as the size of a register in x86.Ramiro Polla2008-05-08
| | | | | | typedef x86_reg as the appropriate size and use it instead. Originally committed as revision 13081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Explain why there are no multiple inclusion guards in these header files.Diego Biurrun2007-10-17
| | | | Originally committed as revision 10771 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove wrong multiple inclusion guards.Aurelien Jacobs2007-10-17
| | | | | | Those files are really meant to be included several times. Originally committed as revision 10766 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing multiple inclusion guards.Diego Biurrun2007-10-17
| | | | Originally committed as revision 10763 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
* 3DNow! and SSSE3 optimization to QNS DSP functions; use pmulhrw/pmulhrsw ↵Zuxy Meng2007-05-18
instead of pmulhw Originally committed as revision 9053 to svn://svn.ffmpeg.org/ffmpeg/trunk