1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

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
This commit is contained in:
Ronald S. Bultje 2008-11-17 18:10:02 +00:00
parent c6786edb3c
commit 9168f7e671

View File

@ -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 *