summaryrefslogtreecommitdiff
path: root/libavformat/rtsp.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2008-11-15 20:41:59 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2008-11-15 20:41:59 +0000
commit114732f4c72a854a3e4409d01ff0e8eb1fb2c20d (patch)
tree6250635dd386763c20bb8da3bed6e728e5a35aab /libavformat/rtsp.c
parent92765276fbe0e586a8c122521c5bc2d1da9e257a (diff)
Add is_keyframe param to ff_rdt_parse_header(). See ML discussion in
"[PATCH] RDT/Realmedia patches #2" thread. Originally committed as revision 15833 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 543032e35c..4db95ee8a0 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -1281,7 +1281,7 @@ static int tcp_read_packet(AVFormatContext *s, RTSPStream **prtsp_st,
if (ret != len)
return -1;
if (rt->transport == RTSP_TRANSPORT_RDT &&
- ff_rdt_parse_header(buf, len, &id, NULL, NULL, NULL) < 0)
+ ff_rdt_parse_header(buf, len, &id, NULL, NULL, NULL, NULL) < 0)
return -1;
/* find the matching stream */