[MPlayer-cvslog] r24836 - trunk/libmpcodecs/vf_ow.c
diego
subversion at mplayerhq.hu
Mon Oct 22 18:37:51 CEST 2007
Author: diego
Date: Mon Oct 22 18:37:51 2007
New Revision: 24836
Log:
fix warning:
vf_ow.c: In function 'filter':
vf_ow.c:168: warning: unused variable 'sum'
Modified:
trunk/libmpcodecs/vf_ow.c
Modified: trunk/libmpcodecs/vf_ow.c
==============================================================================
--- trunk/libmpcodecs/vf_ow.c (original)
+++ trunk/libmpcodecs/vf_ow.c Mon Oct 22 18:37:51 2007
@@ -165,7 +165,7 @@ static void compose2D2(float *dst, float
static void filter(struct vf_priv_s *p, uint8_t *dst, uint8_t *src, int dst_stride, int src_stride, int width, int height, int is_luma){
int x,y, i, j;
- double sum=0;
+// double sum=0;
double s= p->strength[!is_luma];
int depth= p->depth;
More information about the MPlayer-cvslog
mailing list