Commit 5149f191 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

ASF: fix a warning

An negative integer would make no sense here. I guess we could use an
unsigned char here, since it can only be between 0 and 127, as far as I
understand
parent 1c7048c5
......@@ -501,7 +501,7 @@ static int DemuxPacket( demux_t *p_demux )
asf_track_t *tk;
int i_packet_keyframe;
int i_stream_number;
unsigned int i_stream_number;
int i_media_object_number;
int i_media_object_offset;
int i_replicated_data_length;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment