Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
d2b18c8f
Commit
d2b18c8f
authored
Oct 09, 2012
by
Andrey Utkin
Committed by
Michael Niedermayer
Oct 09, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Introduce ff_network_wait_fd_timeout()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
3a45688a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
0 deletions
+35
-0
network.c
libavformat/network.c
+22
-0
network.h
libavformat/network.h
+13
-0
No files found.
libavformat/network.c
View file @
d2b18c8f
...
@@ -22,6 +22,8 @@
...
@@ -22,6 +22,8 @@
#include "network.h"
#include "network.h"
#include "libavcodec/internal.h"
#include "libavcodec/internal.h"
#include "libavutil/mem.h"
#include "libavutil/mem.h"
#include "url.h"
#include "libavutil/time.h"
#define THREADS (HAVE_PTHREADS || (defined(WIN32) && !defined(__MINGW32CE__)))
#define THREADS (HAVE_PTHREADS || (defined(WIN32) && !defined(__MINGW32CE__)))
...
@@ -150,6 +152,26 @@ int ff_network_wait_fd(int fd, int write)
...
@@ -150,6 +152,26 @@ int ff_network_wait_fd(int fd, int write)
return
ret
<
0
?
ff_neterrno
()
:
p
.
revents
&
(
ev
|
POLLERR
|
POLLHUP
)
?
0
:
AVERROR
(
EAGAIN
);
return
ret
<
0
?
ff_neterrno
()
:
p
.
revents
&
(
ev
|
POLLERR
|
POLLHUP
)
?
0
:
AVERROR
(
EAGAIN
);
}
}
int
ff_network_wait_fd_timeout
(
int
fd
,
int
write
,
int64_t
timeout
,
AVIOInterruptCB
*
int_cb
)
{
int
ret
;
int64_t
wait_start
=
0
;
while
(
1
)
{
ret
=
ff_network_wait_fd
(
fd
,
write
);
if
(
ret
!=
AVERROR
(
EAGAIN
))
return
ret
;
if
(
ff_check_interrupt
(
int_cb
))
return
AVERROR_EXIT
;
if
(
timeout
)
{
if
(
!
wait_start
)
wait_start
=
av_gettime
();
else
if
(
av_gettime
()
-
wait_start
>
timeout
)
return
AVERROR
(
ETIMEDOUT
);
}
}
}
void
ff_network_close
(
void
)
void
ff_network_close
(
void
)
{
{
#if HAVE_WINSOCK2_H
#if HAVE_WINSOCK2_H
...
...
libavformat/network.h
View file @
d2b18c8f
...
@@ -26,6 +26,7 @@
...
@@ -26,6 +26,7 @@
#include "config.h"
#include "config.h"
#include "libavutil/error.h"
#include "libavutil/error.h"
#include "os_support.h"
#include "os_support.h"
#include "avio.h"
#if HAVE_UNISTD_H
#if HAVE_UNISTD_H
#include <unistd.h>
#include <unistd.h>
...
@@ -80,6 +81,18 @@ void ff_tls_deinit(void);
...
@@ -80,6 +81,18 @@ void ff_tls_deinit(void);
int
ff_network_wait_fd
(
int
fd
,
int
write
);
int
ff_network_wait_fd
(
int
fd
,
int
write
);
/**
* This works similarly to ff_network_wait_fd, but waits up to 'timeout' microseconds
* Uses ff_network_wait_fd in a loop
*
* @fd Socket descriptor
* @write Set 1 to wait for socket able to be read, 0 to be written
* @timeout Timeout interval, in microseconds. Actual precision is 100000 mcs, due to ff_network_wait_fd usage
* @param int_cb Interrupt callback, is checked after each ff_network_wait_fd call
* @return 0 if data can be read/written, AVERROR(ETIMEDOUT) if timeout expired, or negative error code
*/
int
ff_network_wait_fd_timeout
(
int
fd
,
int
write
,
int64_t
timeout
,
AVIOInterruptCB
*
int_cb
);
int
ff_inet_aton
(
const
char
*
str
,
struct
in_addr
*
add
);
int
ff_inet_aton
(
const
char
*
str
,
struct
in_addr
*
add
);
#if !HAVE_STRUCT_SOCKADDR_STORAGE
#if !HAVE_STRUCT_SOCKADDR_STORAGE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment