Commit 404164f2 authored by rbultje's avatar rbultje

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.



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15864 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a302bdeb
......@@ -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