diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-12-30 11:05:53 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-12-30 11:05:53 +0000 |
commit | 6a7f407a96d21b79e99981d39b390e5c86b91719 (patch) | |
tree | 21e9a842f6e137c39e16421210196a8cce994e85 /libvo | |
parent | 09260c18d117697382d2d310985b757bfc2753fd (diff) | |
download | mpv-6a7f407a96d21b79e99981d39b390e5c86b91719.tar.bz2 mpv-6a7f407a96d21b79e99981d39b390e5c86b91719.tar.xz |
Remove unused variables, fixes the warnings:
vo_bl.c: In function 'draw_slice':
vo_bl.c:329: warning: unused variable 'src2'
vo_bl.c:328: warning: unused variable 'src1'
vo_bl.c:325: warning: unused variable 'j'
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25548 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/vo_bl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libvo/vo_bl.c b/libvo/vo_bl.c index 23981d7eea..4638f4438b 100644 --- a/libvo/vo_bl.c +++ b/libvo/vo_bl.c @@ -322,11 +322,9 @@ static void check_events(void) { static int draw_slice(uint8_t *srcimg[], int stride[], int wf, int hf, int xf, int yf) { - int i, j, w, h, x, y; + int i, w, h, x, y; uint8_t *dst; uint8_t *src=srcimg[0]; - uint8_t *src1=srcimg[1]; - uint8_t *src2=srcimg[2]; w = wf; h = hf; x = xf; y = yf; dst=image; /* + zr->off_y + zr->image_width*(y/zr->vdec)+x;*/ // copy Y: |