Commit 08c86634 authored by Baptiste Coudurier's avatar Baptiste Coudurier

In retry_transfer_wrapper, do not check url_interrupt_cb,

causes problems when writing and pressing q during encoding.
parent ad82bf9c
......@@ -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;
......
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