Mercurial > libavcodec.hg
comparison parser.c @ 3776:1843a85123b7 libavcodec
fix some signedness warnings
| author | mru |
|---|---|
| date | Wed, 27 Sep 2006 19:47:39 +0000 |
| parents | 949bc256f1e3 |
| children | c8c591fe26f8 |
comparison
equal
deleted
inserted
replaced
| 3775:8e1ed8300165 | 3776:1843a85123b7 |
|---|---|
| 304 AVCodecContext *avctx, | 304 AVCodecContext *avctx, |
| 305 const uint8_t *buf, int buf_size) | 305 const uint8_t *buf, int buf_size) |
| 306 { | 306 { |
| 307 ParseContext1 *pc = s->priv_data; | 307 ParseContext1 *pc = s->priv_data; |
| 308 const uint8_t *buf_end; | 308 const uint8_t *buf_end; |
| 309 int32_t start_code; | 309 uint32_t start_code; |
| 310 int frame_rate_index, ext_type, bytes_left; | 310 int frame_rate_index, ext_type, bytes_left; |
| 311 int frame_rate_ext_n, frame_rate_ext_d; | 311 int frame_rate_ext_n, frame_rate_ext_d; |
| 312 int picture_structure, top_field_first, repeat_first_field, progressive_frame; | 312 int picture_structure, top_field_first, repeat_first_field, progressive_frame; |
| 313 int horiz_size_ext, vert_size_ext, bit_rate_ext; | 313 int horiz_size_ext, vert_size_ext, bit_rate_ext; |
| 314 //FIXME replace the crap with get_bits() | 314 //FIXME replace the crap with get_bits() |
