diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2008-11-15 20:41:59 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2008-11-15 20:41:59 +0000 |
commit | 114732f4c72a854a3e4409d01ff0e8eb1fb2c20d (patch) | |
tree | 6250635dd386763c20bb8da3bed6e728e5a35aab /libavformat/rtsp.c | |
parent | 92765276fbe0e586a8c122521c5bc2d1da9e257a (diff) | |
download | ffmpeg-114732f4c72a854a3e4409d01ff0e8eb1fb2c20d.tar.gz |
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.c | 2 |
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 */ |