Mercurial > mplayer.hg
changeset 24808:1318366cf2da
fix warning:
vf_ow.c: In function 'filter':
vf_ow.c:168: warning: unused variable 'sum'
author | diego |
---|---|
date | Mon, 22 Oct 2007 16:37:51 +0000 |
parents | 11ef78f23235 |
children | 8bd58d68083a |
files | libmpcodecs/vf_ow.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpcodecs/vf_ow.c Mon Oct 22 13:30:36 2007 +0000 +++ b/libmpcodecs/vf_ow.c Mon Oct 22 16:37:51 2007 +0000 @@ -165,7 +165,7 @@ 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;