mirror of https://github.com/mpv-player/mpv
little fix
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6790 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
fdd0d5522e
commit
e354f2b7c1
|
@ -109,6 +109,10 @@ static int swap_fourcc __initdata = 0;
|
|||
#define RTRACE(...) ((void)0)
|
||||
#endif
|
||||
|
||||
#ifndef min
|
||||
#define min(a,b) (a < b ? a : b)
|
||||
#endif
|
||||
|
||||
#ifndef RAGE128
|
||||
#if defined(__i386__)
|
||||
/* Ugly but only way */
|
||||
|
|
Loading…
Reference in New Issue