From 1e2c2622120cd4dfb2a2cf32ee957807cee1e3f3 Mon Sep 17 00:00:00 2001 From: Zhao Zhili Date: Wed, 27 Jan 2016 11:00:17 +0800 Subject: [PATCH] libavformat/network: use defined constant in poll Signed-off-by: Michael Niedermayer --- libavformat/network.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/network.c b/libavformat/network.c index 7a326d2c4e..2fb1c8b02a 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); }