summaryrefslogtreecommitdiff
path: root/libavcodec/sh4
Commit message (Collapse)AuthorAge
* dsputil: update per-arch init funcs for non-h264 high bit depthMans Rullgard2011-07-21
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* simple_idct: add 10-bit versionMans Rullgard2011-07-20
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* multiple inclusion guard cleanupDiego Biurrun2011-05-21
| | | | | Add missing multiple inclusion guards; clean up #endif comments; add missing library prefixes; keep guard names consistent.
* Adds 8-, 9- and 10-bit versions of some of the functions used by the h264 ↵Oskar Arvidsson2011-05-10
| | | | | | | | | | | | | | | | | decoder. This patch lets e.g. dsputil_init chose dsp functions with respect to the bit depth to decode. The naming scheme of bit depth dependent functions is <base name>_<bit depth>[_<prefix>] (i.e. the old clear_blocks_c is now named clear_blocks_8_c). Note: Some of the functions for high bit depth is not dependent on the bit depth, but only on the pixel size. This leaves some room for optimizing binary size. Preparatory patch for high bit depth h264 decoding support. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Remove disabled non-optimized code variants.Diego Biurrun2011-04-29
|
* Eliminate pointless '#if 1' statements without matching '#else'.Diego Biurrun2011-04-26
|
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* consolidate .gitignore patters into a single fileJanne Grunau2011-01-18
| | | | Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
* convert svn:ignore properties to .gitignore filesJanne Grunau2011-01-17
| | | | Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
* Simplify arch-specific object file listsMåns Rullgård2010-03-16
| | | | Originally committed as revision 22570 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move arch-specific makefile parts into $arch/MakefileMåns Rullgård2010-03-16
| | | | Originally committed as revision 22569 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing includes in bfin and sh4 filesMåns Rullgård2010-03-08
| | | | Originally committed as revision 22342 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sh4: move dsputil prototypes to header fileMåns Rullgård2010-03-08
| | | | Originally committed as revision 22312 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sh4: fix about 1000 warningsMåns Rullgård2010-03-08
| | | | Originally committed as revision 22311 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SH4: fix typo in asm constraintMåns Rullgård2009-01-09
| | | | Originally committed as revision 16503 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
* SH4: fix IDCTMåns Rullgård2008-11-20
| | | | Originally committed as revision 15897 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SH4: fix memzero_align8()Måns Rullgård2008-11-20
| | | | Originally committed as revision 15888 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SH4: add macros for setting and restoring FPSCR.PR bitMåns Rullgård2008-11-20
| | | | Originally committed as revision 15887 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SH4: remove some commented out blocks of codeMåns Rullgård2008-11-20
| | | | Originally committed as revision 15886 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SH4: fix IDCTMåns Rullgård2008-11-19
| | | | Originally committed as revision 15882 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SH4: do not mix code and declarationsMåns Rullgård2008-11-19
| | | | Originally committed as revision 15881 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SH4: fix compilation of memzero_align8()Måns Rullgård2008-11-19
| | | | Originally committed as revision 15880 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SH4: remove unused functionsMåns Rullgård2008-11-19
| | | | Originally committed as revision 15879 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SH4: replace missed rnd_avg2 -> rnd_avg32Måns Rullgård2008-11-19
| | | | Originally committed as revision 15878 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SH4: rename functions with conflicting namesMåns Rullgård2008-11-19
| | | | Originally committed as revision 15877 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
* cosmetics: __asm__ __volatile__ --> asm volatileDiego Biurrun2008-04-17
| | | | Originally committed as revision 12885 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)Roman Shaposhnik2007-08-09
| | | | Originally committed as revision 10023 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
* Fix parts missed in clip -> av_clip renameReimar Döffinger2007-04-19
| | | | Originally committed as revision 8760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move copy_block* functions to dsp dsputil.hBrian Foley2006-11-26
| | | | | | | | | Patch by Brian Foley % bfoley A compsoc P nuigalway P ie % Original thread: Date: Nov 26, 2006 6:44 PM Subject: Re: [Ffmpeg-devel] [PATCH] put_mpeg4_qpel16_h_lowpass altivec, take 2 Originally committed as revision 7172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename cropTbl -> ff_cropTblMåns Rullgård2006-11-12
| | | | Originally committed as revision 6992 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
* Add official LGPL license headers to the files that were missing them.Diego Biurrun2006-09-10
| | | | Originally committed as revision 6219 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix some "'static' is not at beginning of declaration" warnings.Diego Biurrun2006-08-08
| | | | Originally committed as revision 5956 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: tabs --> spaces, some prettyprintingDiego Biurrun2005-12-22
| | | | Originally committed as revision 4764 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
* the return of the idct with 16bit output by ("Ivan Kalvachev" <ivan at cacad ↵Michael Niedermayer2003-06-21
| | | | | | dot com>) Originally committed as revision 1983 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanupMichael Niedermayer2003-05-14
| | | | Originally committed as revision 1882 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)BERO2003-05-14
| | | | Originally committed as revision 1880 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make sh4 IDCT optional, so the user can chooseMichael Niedermayer2003-05-14
| | | | Originally committed as revision 1878 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)BERO2003-05-14
Originally committed as revision 1877 to svn://svn.ffmpeg.org/ffmpeg/trunk