[FFmpeg-cvslog] r15864 - trunk/libavformat/rdt.c

rbultje subversion
Mon Nov 17 19:10:02 CET 2008


Author: rbultje
Date: Mon Nov 17 19:10:02 2008
New Revision: 15864

Log:
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.



Modified:
   trunk/libavformat/rdt.c

Modified: trunk/libavformat/rdt.c
==============================================================================
--- trunk/libavformat/rdt.c	(original)
+++ trunk/libavformat/rdt.c	Mon Nov 17 19:10:02 2008
@@ -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 *




More information about the ffmpeg-cvslog mailing list