[vlc-commits] bandlimited: signedness correction
    Jean-Baptiste Kempf 
    git at videolan.org
       
    Sat Feb 26 01:46:11 CET 2011
    
    
  
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sat Feb 26 01:32:32 2011 +0100| [567cde95807a1751aaa2893273366dc6bfa70a55] | committer: Jean-Baptiste Kempf
bandlimited: signedness correction
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=567cde95807a1751aaa2893273366dc6bfa70a55
---
 modules/audio_filter/resampler/bandlimited.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/audio_filter/resampler/bandlimited.c b/modules/audio_filter/resampler/bandlimited.c
index d0f447d..5368fc4 100644
--- a/modules/audio_filter/resampler/bandlimited.c
+++ b/modules/audio_filter/resampler/bandlimited.c
@@ -72,7 +72,7 @@ struct filter_sys_t
     size_t i_buf_size;
 
     double d_old_factor;
-    int i_old_wing;
+    size_t i_old_wing;
 
     unsigned int i_remainder;                /* remainder of previous sample */
     bool b_first;
    
    
More information about the vlc-commits
mailing list