From 9168f7e671a8a07de2b9c408ce372a315f53490b Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Mon, 17 Nov 2008 18:10:02 +0000 Subject: [PATCH] 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 --- libavformat/rdt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/rdt.c b/libavformat/rdt.c index d55c1a824f..08b76fa449 100644 --- a/libavformat/rdt.c +++ b/libavformat/rdt.c @@ -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 *