summaryrefslogtreecommitdiffstats
path: root/libavcodec/dct-test.c
Commit message (Collapse)AuthorAgeFilesLines
* Mark non-exported functions in test and example programs as static.Diego Biurrun2009-03-311-6/+6
| | | | Originally committed as revision 18259 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Give better names to reference DCT functions.Dylan Yudaken2009-03-311-32/+32
| | | | | | patch by Dylan Yudaken, dyudaken gmail com Originally committed as revision 18257 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace random() usage in test programs by av_lfg_*().Diego Biurrun2009-03-201-13/+16
| | | | Originally committed as revision 18070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Nicely align output columns.Diego Biurrun2009-03-191-1/+1
| | | | Originally committed as revision 18042 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove period after copyright statement non-sentence.Diego Biurrun2009-02-011-1/+1
| | | | Originally committed as revision 16919 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-011-1/+1
| | | | | | | 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
* Add missing void keyword to parameterless function declarations.Diego Biurrun2009-01-301-1/+1
| | | | Originally committed as revision 16860 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dct-test: add Alpha idctMåns Rullgård2009-01-181-0/+6
| | | | Originally committed as revision 16669 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-131-10/+10
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename libavcodec/i386/ --> libavcodec/x86/.Diego Biurrun2008-12-221-1/+1
| | | | | | | It contains optimizations that are not specific to i386 and libavutil uses this naming scheme already. Originally committed as revision 16270 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: replace "armv4l" with "arm"Måns Rullgård2008-12-171-2/+2
| | | | Originally committed as revision 16179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dct-test: add ARM IDCTsMåns Rullgård2008-12-161-0/+20
| | | | Originally committed as revision 16170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dct-test: add PARTTRANS permutationMåns Rullgård2008-12-161-1/+4
| | | | Originally committed as revision 16169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Delete unnecessary 'extern' keywords.Diego Biurrun2008-12-031-10/+10
| | | | Originally committed as revision 15990 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not duplicate AAN DCT tables in dct-test.c.Diego Biurrun2008-11-281-12/+2
| | | | Originally committed as revision 15948 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add sse2 fdctBaptiste Coudurier2008-11-131-0/+1
| | | | Originally committed as revision 15817 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicated MM_* macros for CPU capabilities from dsputil.h.Dominik Mierzejewski2008-11-031-10/+10
| | | | | | | 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-161-1/+1
| | | | | | | | | | | | | 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
* Make code independent/less dependent on dsputil.Michael Niedermayer2008-06-281-5/+14
| | | | | | This also makes the mmx parts work again ... Originally committed as revision 14021 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert "add libmpeg2 permutation to dct-test"Måns Rullgård2008-06-261-4/+1
| | | | | | | 10l to me for not noticing that dct-test.c calls this permutation MMX. Note to self: don't code after 2am. Originally committed as revision 13991 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add libmpeg2 permutation to dct-testMåns Rullgård2008-06-261-1/+4
| | | | Originally committed as revision 13985 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use a local variable instead of mm_flags in dct-test.Alexander Strange2008-06-251-5/+2
| | | | Originally committed as revision 13967 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define mm_flags/support to be 0 on architectures where they don't exist.Alexander Strange2008-06-241-0/+3
| | | | | | | Make sure we don't try to set them if that's the case. This lets dct-test and fft-test build with --disable-mmx on x86, but not yet on ARM. Originally committed as revision 13957 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace redundant MAX macro declaration by proper use of FFMAX.Diego Biurrun2008-06-241-5/+2
| | | | Originally committed as revision 13948 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark constant structure member as const to avoid some warnings.Laurent Desnogues2008-06-241-1/+1
| | | | | | patch by Laurent Desnogues, laurent.desnogues gmail com Originally committed as revision 13942 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Test idct_xvid_sse2() in dct-test.Alexander Strange2008-04-161-1/+7
| | | | Originally committed as revision 12844 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a header file to declare Xvid IDCT functions.Alexander Strange2008-04-121-2/+1
| | | | | | patch by Alexander Strange, astrange ithinksw com Originally committed as revision 12794 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Altivec and SSE2 require 16-byte alignment, so make sure they get itAlexander Strange2008-03-301-1/+1
| | | | | | patch by Alexander Strange %astrange A ithinksw P com% Originally committed as revision 12629 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check mm_flags for each DCT and skips the ones that can't be runAlexander Strange2008-03-301-9/+10
| | | | | | patch by Alexander Strange %astrange A ithinksw P com% Originally committed as revision 12628 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of the useless DCT_ERROR() macroAlexander Strange2008-03-301-21/+18
| | | | | | patch by Alexander Strange %astrange A ithinksw P com% Originally committed as revision 12627 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set mm_flags in dct-test to fix floating math.Alexander Strange2008-03-251-0/+1
| | | | | | Patch by Alexander Strange \astrange ithinksw com/ Originally committed as revision 12580 to svn://svn.ffmpeg.org/ffmpeg/trunk
* floating point AAN IDCTMichael Niedermayer2008-02-261-0/+2
| | | | Originally committed as revision 12233 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add ff_ prefix to all simple_idct symbolsAurelien Jacobs2007-12-081-2/+2
| | | | Originally committed as revision 11192 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the compilation of dct-test, fft-test and motion-test which are usingPanagiotis Issaris2007-07-191-0/+1
| | | | | | random(). Originally committed as revision 9754 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2007-06-121-2/+2
| | | | Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some #includes to allow compilation without HAVE_AV_CONFIG_H.Ronald S. Bultje2007-06-091-0/+1
| | | | | | taken from a patch by Ronald S. Bultje, rbultje ronald.bitfreak net Originally committed as revision 9263 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only run MMX2 tests when MMX2 is available.Diego Biurrun2007-06-071-0/+2
| | | | Originally committed as revision 9245 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix linking when GPL code has been disabled.Diego Biurrun2007-06-071-0/+2
| | | | Originally committed as revision 9244 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation when MMX is disabled.Ronald S. Bultje2007-06-071-1/+1
| | | | | | inspired by a patch by Ronald S. Bultje, rbultje ronald.bitfreak net Originally committed as revision 9243 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FAAN is not x86-specific.Diego Biurrun2007-06-071-1/+1
| | | | Originally committed as revision 9242 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant extern declaration of j_rev_dct that is alreadyDiego Biurrun2007-05-121-1/+0
| | | | | | present in the #included header file dsputil.h. Originally committed as revision 9005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* platform-independent restructuring and code simplificationMarc Hoffman2007-03-311-37/+68
| | | | | | patch by Marc Hoffman, mmh pleasantst com Originally committed as revision 8576 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove illegal call to exit().Marc Hoffman2007-03-311-2/+1
| | | | | | patch by Marc Hoffman, mmh pleasantst com Originally committed as revision 8575 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace emms() with emms_c(), patch by Marc Hoffman, mmh pleasantst com.Marc Hoffman2007-03-311-3/+3
| | | | Originally committed as revision 8571 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert bad checkinMåns Rullgård2006-11-141-4/+4
| | | | Originally committed as revision 7044 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move some CFLAGS settings away from config.* writing sectionMåns Rullgård2006-11-141-4/+4
| | | | Originally committed as revision 7043 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ABS macro to FFABS.Diego Biurrun2006-10-111-1/+1
| | | | Originally committed as revision 6666 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
* Add official LGPL license headers to the files that were missing them.Diego Biurrun2006-09-101-0/+18
| | | | Originally committed as revision 6219 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move REG_* macros from libavcodec/i386/mmx.h to libavutil/x86_cpu.hLuca Abeni2006-07-031-1/+0
| | | | Originally committed as revision 5595 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud