projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad82bf9
)
In retry_transfer_wrapper, do not check url_interrupt_cb,
author
Baptiste Coudurier
<baptiste.coudurier@gmail.com>
Fri, 4 Mar 2011 03:33:44 +0000
(19:33 -0800)
committer
Baptiste Coudurier
<baptiste.coudurier@gmail.com>
Fri, 4 Mar 2011 03:34:59 +0000
(19:34 -0800)
causes problems when writing and pressing q during encoding.
libavformat/avio.c
patch
|
blob
|
history
diff --git
a/libavformat/avio.c
b/libavformat/avio.c
index
a19ec37
..
cf07c6d
100644
(file)
--- 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;