From: Limin Wang <[email protected]>
Signed-off-by: Limin Wang <[email protected]>
---
libavformat/rtspdec.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/libavformat/rtspdec.c b/libavformat/rtspdec.c
index 3abf34b..a4cd1f6 100644
--- a/libavformat/rtspdec.c
+++ b/libavformat/rtspdec.c
@@ -768,7 +768,7 @@ redo:
}
ret = ffurl_read_complete(rt->rtsp_hd, buf, 3);
if (ret != 3)
- return -1;
+ return AVERROR(EIO);
id = buf[0];
len = AV_RB16(buf + 1);
av_log(s, AV_LOG_TRACE, "id=%d len=%d\n", id, len);
@@ -777,10 +777,10 @@ redo:
/* get the data */
ret = ffurl_read_complete(rt->rtsp_hd, buf, len);
if (ret != len)
- return -1;
+ return AVERROR(EIO);
if (rt->transport == RTSP_TRANSPORT_RDT &&
- ff_rdt_parse_header(buf, len, &id, NULL, NULL, NULL, NULL) < 0)
- return -1;
+ (ret = ff_rdt_parse_header(buf, len, &id, NULL, NULL, NULL, NULL)) < 0)
+ return ret;
/* find the matching stream */
for (i = 0; i < rt->nb_rtsp_streams; i++) {
--
1.8.3.1
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".