diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-05-23 23:43:00 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-05-23 23:43:00 +0200 |
commit | 37f4983b76f90efb4e5715f3eca693daf668310a (patch) | |
tree | 0b374d0f89f92d31191dc75b43ff35c2d2e5712a /src/video_out/yuv2rgb_mlib.c | |
parent | 157f5234c463abe1b23a2f86dd182f40f99020fe (diff) | |
download | xine-lib-37f4983b76f90efb4e5715f3eca693daf668310a.tar.gz xine-lib-37f4983b76f90efb4e5715f3eca693daf668310a.tar.bz2 |
Remove MIN/MAX macro definitions on unit.
Now that the macro are either imported from the system or defined by
configure. don't define them in every source file.
Diffstat (limited to 'src/video_out/yuv2rgb_mlib.c')
-rw-r--r-- | src/video_out/yuv2rgb_mlib.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/video_out/yuv2rgb_mlib.c b/src/video_out/yuv2rgb_mlib.c index 8635526ed..22e67efa8 100644 --- a/src/video_out/yuv2rgb_mlib.c +++ b/src/video_out/yuv2rgb_mlib.c @@ -38,8 +38,6 @@ #include "xineutils.h" #include "yuv2rgb.h" -#define MIN(a, b) (((a) < (b)) ? (a) : (b)) - static void mlib_yuv420_rgb24(yuv2rgb_t *this, uint8_t * image, uint8_t * py, uint8_t * pu, uint8_t * pv) |