diff mpegvideo.c @ 3776:1843a85123b7 libavcodec

fix some signedness warnings
author mru
date Wed, 27 Sep 2006 19:47:39 +0000
parents acf9ca729bd2
children 20545fbb6f7c
line wrap: on
line diff
--- a/mpegvideo.c	Wed Sep 27 19:46:19 2006 +0000
+++ b/mpegvideo.c	Wed Sep 27 19:47:39 2006 +0000
@@ -217,7 +217,7 @@
 }
 
 #ifdef CONFIG_ENCODERS
-void ff_write_quant_matrix(PutBitContext *pb, int16_t *matrix){
+void ff_write_quant_matrix(PutBitContext *pb, uint16_t *matrix){
     int i;
 
     if(matrix){