diff mpegaudiodec.c @ 3776:1843a85123b7 libavcodec

fix some signedness warnings
author mru
date Wed, 27 Sep 2006 19:47:39 +0000
parents 32b2da1060ea
children 20545fbb6f7c
line wrap: on
line diff
--- a/mpegaudiodec.c	Wed Sep 27 19:46:19 2006 +0000
+++ b/mpegaudiodec.c	Wed Sep 27 19:47:39 2006 +0000
@@ -86,7 +86,7 @@
 #endif
     void (*compute_antialias)(struct MPADecodeContext *s, struct GranuleDef *g);
     int adu_mode; ///< 0 for standard mp3, 1 for adu formatted mp3
-    unsigned int dither_state;
+    int dither_state;
 } MPADecodeContext;
 
 /**