Mercurial > libavcodec.hg
comparison mpegvideo.c @ 3776:1843a85123b7 libavcodec
fix some signedness warnings
author | mru |
---|---|
date | Wed, 27 Sep 2006 19:47:39 +0000 |
parents | acf9ca729bd2 |
children | 20545fbb6f7c |
comparison
equal
deleted
inserted
replaced
3775:8e1ed8300165 | 3776:1843a85123b7 |
---|---|
215 st->raster_end[i]= end; | 215 st->raster_end[i]= end; |
216 } | 216 } |
217 } | 217 } |
218 | 218 |
219 #ifdef CONFIG_ENCODERS | 219 #ifdef CONFIG_ENCODERS |
220 void ff_write_quant_matrix(PutBitContext *pb, int16_t *matrix){ | 220 void ff_write_quant_matrix(PutBitContext *pb, uint16_t *matrix){ |
221 int i; | 221 int i; |
222 | 222 |
223 if(matrix){ | 223 if(matrix){ |
224 put_bits(pb, 1, 1); | 224 put_bits(pb, 1, 1); |
225 for(i=0;i<64;i++) { | 225 for(i=0;i<64;i++) { |