summaryrefslogtreecommitdiffstats
path: root/TOOLS/fastmemcpybench.c
Commit message (Collapse)AuthorAgeFilesLines
* TOOLS: remove useless crapwm42012-07-281-241/+0
| | | | | | | | | | | | | | | | | | | | Most of the scripts in TOOLS seem entirely useless. Remove them. There were about 3 types of scripts: - apparent developer tools (like file format dumpers, benchmarks) => I doubt any mplayer developer still alive even uses these - helpers for encoding or ripping stuff => mencoder is gone, at least from this version of mplayer - helpers meant for users (launching mplayer in weird ways, etc.) => just no, it will cause you more pain than gain So no, there is nothing useful. Under the scripts not deleted, these are needed for building mplayer: file2string.py matroska.py vdpau_functions.py These might have _some_ use (but still questionable): binary_codecs.sh checktree.sh
* Add standard license header to C tools missing them.diego2010-01-301-1/+15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30458 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replace duplicated code by a macro.diego2009-03-121-45/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28938 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix and restructure fastmemcpybench. It is now one binary that runs alldiego2009-03-101-5/+137
| | | | | | | available memcpy variants and prints benchmark results about them. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28929 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make fastmemcpybench almost working - only thing missing is a way toreimar2009-03-091-1/+2
| | | | | | | override HAVE_MMX etc. from config.h. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28906 b3059339-0415-0410-9bf9-f77b7e298cf2
* comment/output cosmeticsdiego2009-03-091-9/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28904 b3059339-0415-0410-9bf9-f77b7e298cf2
* whitespace cosmetics:diego2009-03-091-74/+75
| | | | | | | | | - Remove all tabs and trailing whitespace. - Indent with 4 spaces. - K&R-ify and prettyprint some parts. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28903 b3059339-0415-0410-9bf9-f77b7e298cf2
* Revert michael2009-03-081-2/+2
| | | | | | | | | r3082 | michael | 2001-11-23 13:00:40 +0100 (Fri, 23 Nov 2001) | 2 lines missaligned arrays, as nick requested Reason: idiotic idea git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28890 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add missing 'void' keyword to parameterless function declarations.diego2009-01-051-3/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28267 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replace all occurrences of '__volatile__' and '__volatile' by plain 'volatile'.diego2008-10-161-1/+1
| | | | | | | | We were using an inconsistent mix of the three variants and 'volatile' should be the most correct and portable variant. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27791 b3059339-0415-0410-9bf9-f77b7e298cf2
* Change all occurrences of asm and __asm to __asm__, same as was done for FFmpeg.diego2008-10-161-1/+1
| | | | | | | Neither variant is valid C99 syntax, but __asm__ is the most portable variant. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27788 b3059339-0415-0410-9bf9-f77b7e298cf2
* Change a bunch of video-output-specific preprocessor directives from a HAVE_diego2008-08-021-2/+2
| | | | | | | prefix to a CONFIG_ prefix. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27397 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: Remove useless parentheses from return statements.diego2008-05-161-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26791 b3059339-0415-0410-9bf9-f77b7e298cf2
* Mark all functions that are only used within the file as static.diego2008-04-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26607 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove unused #include.diego2007-08-271-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24231 b3059339-0415-0410-9bf9-f77b7e298cf2
* warning fix:diego2007-08-271-2/+0
| | | | | | | | fastmemcpybench.c: At top level: fastmemcpybench.c:29: warning: 'mga_next_frame' defined but not used git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24225 b3059339-0415-0410-9bf9-f77b7e298cf2
* warning fix:diego2007-08-271-1/+0
| | | | | | | | fastmemcpybench.c: In function 'mga_init': fastmemcpybench.c:36: warning: unused variable 'frame_mem' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24224 b3059339-0415-0410-9bf9-f77b7e298cf2
* Unify include path handling by using -I.diego2005-11-181-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17018 b3059339-0415-0410-9bf9-f77b7e298cf2
* small compilation fixrathann2004-11-011-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13840 b3059339-0415-0410-9bf9-f77b7e298cf2
* bugfixmichael2001-11-231-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3083 b3059339-0415-0410-9bf9-f77b7e298cf2
* missaligned arrays, as nick requestedmichael2001-11-231-3/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3082 b3059339-0415-0410-9bf9-f77b7e298cf2
* newly allocated memory seems to point to only 1 zero filled 4k page or ↵michael2001-11-221-3/+6
| | | | | | something so there is a near 100% cache hit rate ... not very realistic, writeing something in the source array fixes that so the benchmark scores are meaningfull now git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3077 b3059339-0415-0410-9bf9-f77b7e298cf2
* slight proofreadingnickols_k2001-05-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@688 b3059339-0415-0410-9bf9-f77b7e298cf2
* added mga_vid support (systemram->videoram tests)arpi_esp2001-04-221-6/+90
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@573 b3059339-0415-0410-9bf9-f77b7e298cf2
* Initial release, used to benchmark fastmemcpy.h code from libvo.atmosfear2001-04-211-0/+37
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@563 b3059339-0415-0410-9bf9-f77b7e298cf2