comparison mpegaudiodec.c @ 3776:1843a85123b7 libavcodec

fix some signedness warnings
author mru
date Wed, 27 Sep 2006 19:47:39 +0000
parents 32b2da1060ea
children 20545fbb6f7c
comparison
equal deleted inserted replaced
3775:8e1ed8300165 3776:1843a85123b7
84 #ifdef DEBUG 84 #ifdef DEBUG
85 int frame_count; 85 int frame_count;
86 #endif 86 #endif
87 void (*compute_antialias)(struct MPADecodeContext *s, struct GranuleDef *g); 87 void (*compute_antialias)(struct MPADecodeContext *s, struct GranuleDef *g);
88 int adu_mode; ///< 0 for standard mp3, 1 for adu formatted mp3 88 int adu_mode; ///< 0 for standard mp3, 1 for adu formatted mp3
89 unsigned int dither_state; 89 int dither_state;
90 } MPADecodeContext; 90 } MPADecodeContext;
91 91
92 /** 92 /**
93 * Context for MP3On4 decoder 93 * Context for MP3On4 decoder
94 */ 94 */