Commit 489b0d4d authored by Luca Barbato's avatar Luca Barbato

Make av_read_frame with rtsp client return EINTR on interrupt

patch from elupusateccedotse (missing hunk from r11072)

Originally committed as revision 11076 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 594ff7cc
...@@ -1196,7 +1196,7 @@ static int rtsp_read_packet(AVFormatContext *s, ...@@ -1196,7 +1196,7 @@ static int rtsp_read_packet(AVFormatContext *s,
break; break;
} }
if (len < 0) if (len < 0)
return AVERROR(EIO); return len;
ret = rtp_parse_packet(rtsp_st->rtp_ctx, pkt, buf, len); ret = rtp_parse_packet(rtsp_st->rtp_ctx, pkt, buf, len);
if (ret < 0) if (ret < 0)
goto redo; goto redo;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment