From a960a1e041fd2647b806f744ca0e409c30bd8d32 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Wed, 21 Nov 2007 10:26:11 +0000 Subject: [PATCH] Make av_read_frame with rtsp client return EINTR on interrupt patch from elupusateccedotse Originally committed as revision 11072 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index d71479c358..4fec5b4094 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1130,7 +1130,7 @@ static int udp_read_packet(AVFormatContext *s, RTSPStream **prtsp_st, for(;;) { if (url_interrupt_cb()) - return -1; + return AVERROR(EINTR); FD_ZERO(&rfds); fd_max = -1; for(i = 0; i < rt->nb_rtsp_streams; i++) {