[MPlayer-cvslog] r25548 - trunk/libvo/vo_bl.c
diego
subversion at mplayerhq.hu
Sun Dec 30 12:05:53 CET 2007
Author: diego
Date: Sun Dec 30 12:05:53 2007
New Revision: 25548
Log:
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'
Modified:
trunk/libvo/vo_bl.c
Modified: trunk/libvo/vo_bl.c
==============================================================================
--- trunk/libvo/vo_bl.c (original)
+++ trunk/libvo/vo_bl.c Sun Dec 30 12:05:53 2007
@@ -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:
More information about the MPlayer-cvslog
mailing list