summaryrefslogtreecommitdiff
path: root/libavcodec/ppc
Commit message (Collapse)AuthorAge
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-01
| | | | | | | Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use '#if defined()' for OS-specific preprocessor checks.Diego Biurrun2009-01-30
| | | | | | Avoids some warnings about undefined preprocessor directives. Originally committed as revision 16869 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add required headers to fix warnings during 'make checkheaders'.Diego Biurrun2009-01-25
| | | | Originally committed as revision 16769 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a check for ppc4xx instructions; rename preprocessor directive accordingly.Diego Biurrun2009-01-24
| | | | Originally committed as revision 16756 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove pointless #if HAVE_ALTIVEC around internal header #includeDiego Biurrun2009-01-24
| | | | | | and function declarations. Originally committed as revision 16755 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-19
| | | | Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace all occurrence of ENABLE_ by the corresponding CONFIG_, HAVE_ or ARCH_Aurelien Jacobs2009-01-14
| | | | | | and remove all ENABLE_ definitions. Originally committed as revision 16600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AltiVec versions of h264_idct_add(8|16|16intra),David Conrad2009-01-07
| | | | | | | | allowing to re-enable ff_h264_idct_add_altivec's usage. Patch by David Conrad %lessen42 A gmail P com% Originally committed as revision 16465 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Altivec version of vector_fmul_window.David Conrad2009-01-06
| | | | | | Patch by David Conrad %lessen42 A gmail P com% Originally committed as revision 16459 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add AltiVec implementation of weight_h264_pixels(16|8)x(16|8|4)David Conrad2009-01-06
| | | | | | Patch by David Conrad %lessen42 A gmail P com% Originally committed as revision 16458 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix float_to_int16_altivec prototype to match float_to_int16's in dsputil.hDavid Conrad2009-01-06
| | | | | | | (parameter 'len' is a long not an int). Patch by David Conrad % lessen42 A gmail P com % Originally committed as revision 16451 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix compilation with GCC-4.3+David Conrad2009-01-06
| | | | | | patch by David Conrad + fix by myself Originally committed as revision 16450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* offset and weights are signed, fixes some non-bitexact issues.David Conrad2009-01-06
| | | | | | Patch by David Conrad %lessen42 A gmail P com% Originally committed as revision 16449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add AltiVec implementation of biweight_h264_pixels(16|8)x(16|8|4)David Conrad2009-01-05
| | | | | | Patch by David Conrad %lessen42 A gmail P com% Originally committed as revision 16443 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AltiVec version of h264_idct(8)_dc_addDavid Conrad2009-01-05
| | | | | | Patch by David Conrad %lessen42 A gmail P com% Originally committed as revision 16442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* consistency cosmetics: Rename POWERPC identifiers to PPC.Diego Biurrun2008-12-27
| | | | Originally committed as revision 16359 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove stray codeLuca Barbato2008-12-27
| | | | Originally committed as revision 16358 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cleanup _t types in libavcodec/ppcLuca Barbato2008-12-27
| | | | Originally committed as revision 16357 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable usage of ff_h264_idct_add_altivec since AltiVec versions of ↵Guillaume Poirier2008-12-25
| | | | | | | | | | | h264_idct_add16, h264_idct_add16intra, h264_idct_add8 need to be implemented. Add C version of ff_h264_idct8_dc_add in AltiVec so that ff_h264_idct8_add_altivec can be used. Originally committed as revision 16311 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add AltiVec implementation of int32_to_float_fmul_scalarGuillaume Poirier2008-12-17
| | | | Originally committed as revision 16186 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cleanup typesLuca Barbato2008-12-13
| | | | Originally committed as revision 16092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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