summaryrefslogtreecommitdiff
path: root/libavcodec/ppc
Commit message (Collapse)AuthorAge
...
* Unbreak imgresample altivecLuca Barbato2008-12-13
| | | | Originally committed as revision 16091 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add Altivec implementation of clear_blockGuillaume Poirier2008-12-12
| | | | Originally committed as revision 16078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Delete unnecessary 'extern' keywords.Diego Biurrun2008-12-03
| | | | Originally committed as revision 15990 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicated MM_* macros for CPU capabilities from dsputil.h.Dominik Mierzejewski2008-11-03
| | | | | | | Add missing one for FF_MM_ALTIVEC to avcodec.h. Rename all the occurences of MM_* to the corresponding FF_MM_*. Originally committed as revision 15770 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
* spelling cosmeticsDiego Biurrun2008-09-22
| | | | Originally committed as revision 15383 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AltiVec detection support for OpenBSD, patch by Brad, brad comstyle com.Brad2008-09-22
| | | | Originally committed as revision 15382 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation on Mac OS X 10.4: Defining _POSIX_C_SOURCE hides the u_char &David Conrad2008-09-13
| | | | | | | | similar typedefs that sysctl.h needs. Since sysctl() itself isn't POSIX undefining _POSIX_C_SOURCE for check_altivec.c seems the best way to fix this. patch by David Conrad lessen42 at gmail com Originally committed as revision 15306 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally rename the header inclusion guard names.Stefano Sabatini2008-08-31
| | | | | | | | | Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_". Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Missing static in float_to_int16_altivec declarationLuca Barbato2008-08-25
| | | | Originally committed as revision 14967 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variablesLuca Barbato2008-08-23
| | | | Originally committed as revision 14929 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce float_to_int16_interleave_altivec, tested with vorbisLuca Barbato2008-08-23
| | | | Originally committed as revision 14928 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce float_to_int16_one_altivecLuca Barbato2008-08-23
| | | | Originally committed as revision 14927 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix indentation after last commit.Diego Biurrun2008-07-24
| | | | Originally committed as revision 14370 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove AltiVec vector declaration compiler compatibility macros.Diego Biurrun2008-07-24
| | | | | | | | | | The original problem was that FSF and Apple gcc used a different syntax for vector declarations, i.e. {} vs. (). Nowadays Apple gcc versions support the standard {} syntax and versions that support {} are available on all relevant Mac OS X versions. Thus the greater compatibility is no longer worth cluttering the code with macros. Originally committed as revision 14366 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Make libavcodec/ppc/dsputil_altivec.c conform to style guidelines.Diego Biurrun2008-07-20
| | | | | | | This includes indentation changes, comment reformatting, consistent brace placement and some prettyprinting. Originally committed as revision 14318 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Reindent two misplaced braces.Diego Biurrun2008-07-20
| | | | Originally committed as revision 14317 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Reformat PPC code in libavcodec according to style guidelines.Diego Biurrun2008-07-20
| | | | | | | This includes indentation changes, comment reformatting, consistent brace placement and some prettyprinting. Originally committed as revision 14316 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove wrong casts from vector declarations, this would cause errors whenDiego Biurrun2008-07-08
| | | | | | compiling with -std=gnu99. Blessed by Luca Barbato. Originally committed as revision 14129 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Altivec implementation of APE vector functionsKostya Shishkov2008-07-06
| | | | Originally committed as revision 14082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* consistency cosmetics: indices --> indexes in variable namesDiego Biurrun2008-05-26
| | | | Originally committed as revision 13446 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
* Remove unnecessary parentheses from return calls.Diego Biurrun2008-05-06
| | | | Originally committed as revision 13069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo: add missing \ in multi-line macroMåns Rullgård2008-03-17
| | | | Originally committed as revision 12466 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2008-03-10
| | | | Originally committed as revision 12410 to svn://svn.ffmpeg.org/ffmpeg/trunk
* arg 10000l. Fix wrong fix committed in r12141Guillaume Poirier2008-02-19
| | | | Originally committed as revision 12143 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix broken indentationGuillaume Poirier2008-02-19
| | | | Originally committed as revision 12142 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: fix always false test: Binary & has lower precedence than ==Guillaume Poirier2008-02-19
| | | | Originally committed as revision 12141 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Refactor vcprm and vcii macros by using the AVV macro.Diego Biurrun2008-02-18
| | | | Originally committed as revision 12140 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Refactor the FOUROF macro using the AVV macro.Diego Biurrun2008-02-18
| | | | Originally committed as revision 12139 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove stray #undef.Diego Biurrun2008-02-18
| | | | Originally committed as revision 12138 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix crash on non-AltiVec powered machines: MPV_common_init_altivec doesn't ↵Alexander Strange2008-02-18
| | | | | | | | check mm_flags Patch by Alexander Strange %astrange A ithinksw PP com % Originally committed as revision 12137 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add mfspr-based AltiVec detection code.Reimar Döffinger2008-01-19
| | | | | | | Currently not enabled in FFmpeg, because it crashes if the OS does not emulate mfspr. Originally committed as revision 11569 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify preprocessor expression as suggested by Mans.Diego Biurrun2008-01-17
| | | | Originally committed as revision 11549 to svn://svn.ffmpeg.org/ffmpeg/trunk
* gcc2 doesn't have bogus mergel, patch from Sigbjørn Skjæret ↵Luca Barbato2008-01-13
| | | | | | cisc...broadpark___no Originally committed as revision 11523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change some files to only include the necessary headers.Diego Biurrun2008-01-04
| | | | Originally committed as revision 11394 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix make checkheaders.Diego Biurrun2007-12-27
| | | | Originally committed as revision 11331 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add necessary #include, fixes the warnings:Diego Biurrun2007-12-27
| | | | | | | | | | | ppc/h264_altivec.c: In function ‘put_h264_qpel16_mc00_altivec’: ppc/h264_altivec.c:394: warning: implicit declaration of function ‘put_pixels16_altivec’ ppc/h264_altivec.c: In function ‘avg_h264_qpel16_mc00_altivec’: ppc/h264_altivec.c:395: warning: implicit declaration of function ‘avg_pixels16_altivec’ ppc/h264_altivec.c: In function ‘dsputil_h264_init_ppc’: ppc/h264_altivec.c:872: warning: implicit declaration of function ‘has_altivec’ Originally committed as revision 11330 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentLuca Barbato2007-12-23
| | | | Originally committed as revision 11311 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Minor fixLuca Barbato2007-12-23
| | | | Originally committed as revision 11310 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l do not load after the buffer...Luca Barbato2007-12-23
| | | | Originally committed as revision 11308 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add C/B == 0 cases, 2% slower on CELL but should address Issue299 eventuallyLuca Barbato2007-12-22
| | | | Originally committed as revision 11306 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentLuca Barbato2007-12-22
| | | | Originally committed as revision 11304 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Partially address issue299, no performance change apparentlyLuca Barbato2007-12-22
| | | | Originally committed as revision 11303 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid a vec_add, directly start with sumLuca Barbato2007-12-22
| | | | Originally committed as revision 11302 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentLuca Barbato2007-12-22
| | | | Originally committed as revision 11301 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize common code (almost cosmetic)Luca Barbato2007-12-22
| | | | Originally committed as revision 11300 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CosmeticsLuca Barbato2007-12-22
| | | | Originally committed as revision 11299 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make strict altivec parsers happy (gcc-4.3 and others)Luca Barbato2007-12-16
| | | | Originally committed as revision 11231 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after last commitKostya Shishkov2007-12-08
| | | | Originally committed as revision 11191 to svn://svn.ffmpeg.org/ffmpeg/trunk