]> git.sesse.net Git - vlc/commitdiff
AVI: use i_samplesize as an unsigned int (was an int)
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 19 Aug 2009 21:27:26 +0000 (23:27 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 19 Aug 2009 21:43:13 +0000 (23:43 +0200)
modules/demux/avi/avi.c

index a473bf4d68b97212ba82c706f41c13f53f084206..6f91eba0c587a6fdcc68b59f93d2581aebc7b5f5 100644 (file)
@@ -120,7 +120,7 @@ typedef struct
 
     int             i_rate;
     int             i_scale;
-    int             i_samplesize;
+    unsigned int    i_samplesize;
 
     es_out_id_t     *p_es;