1 Dec 2008 01:08
r15966 - trunk/libavformat/rdt.c
rbultje <subversion <at> mplayerhq.hu>
2008-12-01 00:08:42 GMT
2008-12-01 00:08:42 GMT
Author: rbultje
Date: Mon Dec 1 01:08:42 2008
New Revision: 15966
Log:
Implement rule-number parsing, the initial step in stream (and bitrate)
selection. See discussion in ML thread "[PATCH] RDT/Realmedia patches #2".
Modified:
trunk/libavformat/rdt.c
Modified: trunk/libavformat/rdt.c
==============================================================================
--- trunk/libavformat/rdt.c (original)
+++ trunk/libavformat/rdt.c Mon Dec 1 01:08:42 2008
<at> <at> -47,7 +47,7 <at> <at> struct RDTDemuxContext {
void *dynamic_protocol_context;
DynamicPayloadPacketHandlerProc parse_packet;
uint32_t prev_timestamp;
- int prev_set_id;
+ int prev_set_id, prev_stream_id;
};
RDTDemuxContext *
<at> <at> -65,6 +65,7 <at> <at> ff_rdt_parse_open(AVFormatContext *ic, i
} while (first_stream_of_set_idx + s->n_streams < ic->nb_streams &&
s->streams[s->n_streams]->priv_data == s->streams[0]->priv_data);
s->prev_set_id = -1;
+ s->prev_stream_id = -1;
s->prev_timestamp = -1;
(Continue reading)
RSS Feed