Commit 9168f7e6 authored by Ronald S. Bultje's avatar Ronald S. Bultje

Change type of prev_stream_id from uint32_t to int, since it has a max size

of 16bits. See discussion in "[PATCH] RDT/Realmedia patches #2" thread on ML.

Originally committed as revision 15864 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c6786edb
......@@ -40,7 +40,8 @@ struct RDTDemuxContext {
AVStream *st;
void *dynamic_protocol_context;
DynamicPayloadPacketHandlerProc parse_packet;
uint32_t prev_set_id, prev_timestamp;
uint32_t prev_timestamp;
int prev_set_id;
};
RDTDemuxContext *
......
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