aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2011-03-03 19:33:44 -0800
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2011-03-03 19:34:59 -0800
commit08c866345cfe15cd17406e93c54a52068e41eb9e (patch)
tree58dca17f7d0eb6cf83e63ef4ecadb043a45e0cb5 /libavformat
parentad82bf9ce0de510f758d08f8c396dcd0460df8fd (diff)
downloadffmpeg-08c866345cfe15cd17406e93c54a52068e41eb9e.tar.gz
In retry_transfer_wrapper, do not check url_interrupt_cb,
causes problems when writing and pressing q during encoding.
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/avio.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/avio.c b/libavformat/avio.c
index a19ec37cb1..cf07c6da52 100644
--- a/libavformat/avio.c
+++ b/libavformat/avio.c
@@ -214,8 +214,6 @@ static inline int retry_transfer_wrapper(URLContext *h, unsigned char *buf, int
len = 0;
while (len < size_min) {
- if (url_interrupt_cb())
- return AVERROR(EINTR);
ret = transfer_func(h, buf+len, size-len);
if (ret == AVERROR(EINTR))
continue;