diff parser.c @ 3776:1843a85123b7 libavcodec

fix some signedness warnings
author mru
date Wed, 27 Sep 2006 19:47:39 +0000
parents 949bc256f1e3
children c8c591fe26f8
line wrap: on
line diff
--- a/parser.c	Wed Sep 27 19:46:19 2006 +0000
+++ b/parser.c	Wed Sep 27 19:47:39 2006 +0000
@@ -306,7 +306,7 @@
 {
     ParseContext1 *pc = s->priv_data;
     const uint8_t *buf_end;
-    int32_t start_code;
+    uint32_t start_code;
     int frame_rate_index, ext_type, bytes_left;
     int frame_rate_ext_n, frame_rate_ext_d;
     int picture_structure, top_field_first, repeat_first_field, progressive_frame;