summaryrefslogtreecommitdiff
path: root/libavformat/rtsp.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2008-11-30 20:39:16 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2008-11-30 20:39:16 +0000
commite0d1eabf14ec84f6a2114740d092d31381a98086 (patch)
treeeeb7b1d259f0070c4d72528d32ad6a6d7b68c702 /libavformat/rtsp.c
parent640760da3efeffa5893caa905d2a0fe39b1e55ff (diff)
Change function prototype from taking an AVStream to taking an index to the
stream itself, plus a name change to signify that there may be multiple AVStreams per RDT set. See discussion in "[PATCH] RDT/Realmedia patches #2" thread on ML. Originally committed as revision 15962 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r--libavformat/rtsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index 4db95ee8a0..33f0e5539e 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -901,7 +901,7 @@ rtsp_open_transport_ctx(AVFormatContext *s, RTSPStream *rtsp_st)
s->ctx_flags |= AVFMTCTX_NOHEADER;
if (rt->transport == RTSP_TRANSPORT_RDT)
- rtsp_st->tx_ctx = ff_rdt_parse_open(s, st,
+ rtsp_st->tx_ctx = ff_rdt_parse_open(s, st->index,
rtsp_st->dynamic_protocol_context,
rtsp_st->dynamic_handler);
else