diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-12-30 10:54:04 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-12-30 10:54:04 +0000 |
commit | 09260c18d117697382d2d310985b757bfc2753fd (patch) | |
tree | 8029310ee7539e9954952626349c1eb011728497 /libvo | |
parent | 1dabdaa11ed9b3de9df1e6ed7c54040121ac69ad (diff) | |
download | mpv-09260c18d117697382d2d310985b757bfc2753fd.tar.bz2 mpv-09260c18d117697382d2d310985b757bfc2753fd.tar.xz |
Disable unused code, fixes the warning:
vesa_lvo.c: At top level:
vesa_lvo.c:248: warning: 'draw_alpha' defined but not used
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25547 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/vesa_lvo.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libvo/vesa_lvo.c b/libvo/vesa_lvo.c index b42cef1ec5..637bb20633 100644 --- a/libvo/vesa_lvo.c +++ b/libvo/vesa_lvo.c @@ -234,6 +234,7 @@ void vlvo_flip_page(void) } } +#if 0 static void draw_alpha_null(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride) { UNUSED(x0); @@ -280,6 +281,7 @@ static void draw_alpha(int x0,int y0, int w,int h, unsigned char* src, unsigned draw_alpha_null(x0,y0,w,h,src,srca,stride); } } +#endif void vlvo_draw_osd(void) { |