projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b38450
)
tls: use AVIO_FLAG_NONBLOCK instead of deprecated URL_FLAG_NONBLOCK
author
Anton Khirnov
<anton@khirnov.net>
Sat, 5 Nov 2011 11:48:02 +0000
(12:48 +0100)
committer
Anton Khirnov
<anton@khirnov.net>
Thu, 10 Nov 2011 10:36:49 +0000
(11:36 +0100)
libavformat/tls.c
patch
|
blob
|
history
diff --git
a/libavformat/tls.c
b/libavformat/tls.c
index
bd73feb
..
f89a717
100644
(file)
--- a/
libavformat/tls.c
+++ b/
libavformat/tls.c
@@
-91,7
+91,7
@@
static int do_tls_poll(URLContext *h, int ret)
return AVERROR(EIO);
}
#endif
- if (h->flags &
URL
_FLAG_NONBLOCK)
+ if (h->flags &
AVIO
_FLAG_NONBLOCK)
return AVERROR(EAGAIN);
while (1) {
int n = poll(&p, 1, 100);