diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2008-11-17 18:10:02 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2008-11-17 18:10:02 +0000 |
commit | 9168f7e671a8a07de2b9c408ce372a315f53490b (patch) | |
tree | 7f8b4a4411e8e185139e7fdf75e0325dfea86cc0 /libavformat/rdt.c | |
parent | c6786edb3c04ec44f78b2fe7483c53a822023a03 (diff) | |
download | ffmpeg-9168f7e671a8a07de2b9c408ce372a315f53490b.tar.gz |
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
Diffstat (limited to 'libavformat/rdt.c')
-rw-r--r-- | libavformat/rdt.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 * |