summaryrefslogtreecommitdiffstats
path: root/TOOLS/bmovl-test.c
Commit message (Collapse)AuthorAgeFilesLines
* TOOLS: remove useless crapwm42012-07-281-136/+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
* Do not cast the results of malloc/calloc/realloc.diego2010-02-261-1/+1
| | | | | | | | These functions return void*, which is compatible with any pointer, so there is no need for casts. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30744 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add standard license header to C tools missing them.diego2010-01-301-1/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30458 b3059339-0415-0410-9bf9-f77b7e298cf2
* whitespace cosmetics: Remove all trailing whitespace.diego2009-05-131-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29305 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove unused variables.diego2007-07-041-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23720 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add explicit SDL include path. This should allow compilation even whendiego2007-03-201-2/+2
| | | | | | | MPlayer was configured without SDL support. Change the Makefile accordingly. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22759 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add return 0 to fix the following warning:diego2007-03-201-0/+2
| | | | | | | bmovl-test.c:118: warning: control reaches end of non-void function git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22758 b3059339-0415-0410-9bf9-f77b7e298cf2
* Include stdlib.h and string.h to fix the following warnings:diego2007-03-201-0/+2
| | | | | | | | | | | bmovl-test.c:22: warning: implicit declaration of function `strlen' bmovl-test.c:64: warning: implicit declaration of function `exit' bmovl-test.c:67: warning: implicit declaration of function `atoi' bmovl-test.c:89: warning: implicit declaration of function `malloc' bmovl-test.c:114: warning: implicit declaration of function `free' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22757 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move gltest and bmovl-test into the main TOOLS directory, subdirectoriesdiego2007-03-201-0/+116
for single files are silly. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22755 b3059339-0415-0410-9bf9-f77b7e298cf2