[FFmpeg-devel] [PATCH] libavformat/network: use defined constant in poll
Zhao Zhili
wantlamy at gmail.com
Wed Jan 27 04:08:37 CET 2016
From: Zhao Zhili <wantlamy at gmail.com>
---
libavformat/network.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/network.c b/libavformat/network.c
index 7a326d2..2fb1c8b 100644
--- a/libavformat/network.c
+++ b/libavformat/network.c
@@ -75,7 +75,7 @@ int ff_network_wait_fd(int fd, int write)
int ev = write ? POLLOUT : POLLIN;
struct pollfd p = { .fd = fd, .events = ev, .revents = 0 };
int ret;
- ret = poll(&p, 1, 100);
+ ret = poll(&p, 1, POLLING_TIME);
return ret < 0 ? ff_neterrno() : p.revents & (ev | POLLERR | POLLHUP)
? 0 : AVERROR(EAGAIN);
}
--
1.9.1
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-libavformat-network-use-defined-constant-in-poll.patch
Type: text/x-patch
Size: 802 bytes
Desc: not available
URL: <http://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20160127/4e11afa8/attachment.bin>
More information about the ffmpeg-devel
mailing list