diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2011-03-03 19:33:44 -0800 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2011-03-03 19:34:59 -0800 |
commit | 08c866345cfe15cd17406e93c54a52068e41eb9e (patch) | |
tree | 58dca17f7d0eb6cf83e63ef4ecadb043a45e0cb5 /libavformat | |
parent | ad82bf9ce0de510f758d08f8c396dcd0460df8fd (diff) | |
download | ffmpeg-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.c | 2 |
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; |