aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/armv4l/dsputil_arm.c
Commit message (Collapse)AuthorAgeFilesLines
* ARM: replace "armv4l" with "arm"Måns Rullgård2008-12-171-217/+0
| | | | Originally committed as revision 16179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: NEON optimised simple_idctMåns Rullgård2008-12-151-0/+13
| | | | Originally committed as revision 16146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: NEON optimised put_pixels functionsMåns Rullgård2008-12-151-0/+4
| | | | Originally committed as revision 16145 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: remove some useless commentsMåns Rullgård2008-12-061-10/+10
| | | | Originally committed as revision 16014 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Delete unnecessary 'extern' keywords.Diego Biurrun2008-12-031-16/+12
| | | | 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-031-1/+1
| | | | | | | 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
* ARM: move add_pixels_clamped_ARM() to dsputil_arm_s.SMåns Rullgård2008-10-271-93/+3
| | | | Originally committed as revision 15728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: move prefetch_arm to dsputil_arm_s.SMåns Rullgård2008-10-271-14/+3
| | | | Originally committed as revision 15726 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert asm keyword into __asm__.Diego Pettenò2008-10-161-2/+2
| | | | | | | | | | | | | 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
* ARM: add prefetch function using ARMv5 PLD instructionMåns Rullgård2008-08-251-0/+17
| | | | Originally committed as revision 14962 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify mm_support() for ARM (by Måns).Benoit Fouet2008-06-301-5/+1
| | | | Originally committed as revision 14033 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define mm_support() for ARM.Matthieu Castet2008-06-301-0/+9
| | | | | | Patch by Matthieu Castet <castet matthieu free fr> Originally committed as revision 14032 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some initial optimizations for ARM VFP (floatingSiarhei Siamashka2008-05-111-0/+4
| | | | | | | | | | point coprocessor available in some ARM11 cores). Patch by Siarhei Siamashka % siarhei.siamashka@gmail.com % Original thread: date: Apr 20, 2008 5:41 PM subject: [FFmpeg-devel] [PATCH] Some ARM VFP optimizations (vector_fmul, vector_fmul_reverse, float_to_int16) Originally committed as revision 13128 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-091-1/+1
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ipp.h is a system header, use <> when #including it.Diego Biurrun2008-05-091-1/+1
| | | | Originally committed as revision 13093 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix indentation that was messed up by r11628Guillaume Poirier2008-01-271-32/+32
| | | | Originally committed as revision 11629 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix lowres decoding support on ARM CPUsSiarhei Siamashka2008-01-271-0/+2
| | | | | | | | | Original thread: date: Jan 27, 2008 12:03 AM subject: [FFmpeg-devel] [PATCH] Fix for lowres decoding support on ARM Patch by Siarhei Siamashka $ siarhei P siamashka A gmail P com $ Originally committed as revision 11628 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix put_*_xy2_arm bug and enable put_pixels16_arm and put_pixels8_y2_arm.Tao Huang2007-09-051-7/+7
| | | | | | | Speed up > 4%. patch by Tao Huang, ulysses.huang gmail com Originally committed as revision 10402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add libavcodec to compiler include flags in order to simplify headerRonald S. Bultje2007-05-161-1/+1
| | | | | | | 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
* ARMv6 SIMD IDCTMåns Rullgård2007-01-281-0/+15
| | | | Originally committed as revision 7752 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-071-4/+6
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARMv5TE optimized IDCTMåns Rullgård2006-09-261-1/+16
| | | | Originally committed as revision 6347 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove junk characters in commentMåns Rullgård2006-09-161-1/+1
| | | | Originally committed as revision 6279 to svn://svn.ffmpeg.org/ffmpeg/trunk
* clean up #ifdef HAVE_IPPMåns Rullgård2006-09-151-12/+11
| | | | Originally committed as revision 6278 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-121-1/+1
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: tabs --> spaces, some prettyprintingDiego Biurrun2005-12-221-5/+5
| | | | Originally committed as revision 4764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IWMMXT configure support + runtime selection patch by (Gildas Bazin, gbazin ↵Gildas Bazin2005-06-281-2/+0
| | | | | | : altern org) Originally committed as revision 4409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanupMichael Niedermayer2005-05-261-42/+9
| | | | Originally committed as revision 4312 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Better ARM support for mplayer/ffmpeg, ported from atty forkBernhard Rosenkränzer2005-05-261-0/+211
| | | | | | | | | | | | | | | | | | | | | | while playing with some new hardware, I found it's running a forked mplayer -- and it looks like they're following the GPL. The maintainer's page is here: http://atty.jp/?Zaurus/mplayer Unfortunately it's mostly in Japanese, so it's hard to figure out any details. Their code looks quite interesting (at least to those of us w/ ARM CPUs). The patches I've attached are the patches from atty.jp with a couple of modifications by myself: - ported to current CVS - reverted their change of removing SNOW support from ffmpeg - cleaned up their bswap mess - removed DOS-style linebreaks from various files patch by (Bernhard Rosenkraenzer: bero, arklinux org) Originally committed as revision 4311 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Optimized simple idct for arm by Frederic 'dilb' Boulay ↵Alex Beregszaszi2003-07-071-5/+21
| | | | | | <dilb@handhelds.org>. Currently licensed under the GPLv2, but the author allowed to license it under the LGPL, feel free to change Originally committed as revision 2017 to svn://svn.ffmpeg.org/ffmpeg/trunk
* the return of the idct with 16bit output by ("Ivan Kalvachev" <ivan at cacad ↵Michael Niedermayer2003-06-211-0/+1
| | | | | | dot com>) Originally committed as revision 1983 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MpegEncContext.(i)dct_* -> DspContext.(i)dct_*Michael Niedermayer2003-03-031-2/+28
| | | | | | bitexact cleanup Originally committed as revision 1617 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * compilation fix (ARM users please check)Zdenek Kabelac2002-11-191-1/+1
| | | | Originally committed as revision 1225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* trying to fix the non-x86 IDCTs (untested)Michael Niedermayer2002-10-061-1/+1
| | | | Originally committed as revision 1006 to svn://svn.ffmpeg.org/ffmpeg/trunk
* license/copyright changeFabrice Bellard2002-05-251-10/+10
| | | | Originally committed as revision 599 to svn://svn.ffmpeg.org/ffmpeg/trunk
* arm specific codeFabrice Bellard2001-08-131-0/+27
Originally committed as revision 79 to svn://svn.ffmpeg.org/ffmpeg/trunk