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
This commit is contained in:
Luca Barbato 2007-11-22 14:13:23 +00:00
parent 594ff7cc6c
commit 489b0d4d98
1 changed files with 1 additions and 1 deletions

View File

@ -1196,7 +1196,7 @@ static int rtsp_read_packet(AVFormatContext *s,
break;
}
if (len < 0)
return AVERROR(EIO);
return len;
ret = rtp_parse_packet(rtsp_st->rtp_ctx, pkt, buf, len);
if (ret < 0)
goto redo;