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
5cec8971
Commit
5cec8971
authored
Apr 04, 2011
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avio: move extern url_interrupt_cb declaration from avio.h to url.h
parent
8e76a19b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
0 deletions
+8
-0
applehttp.c
libavformat/applehttp.c
+1
-0
avio.h
libavformat/avio.h
+2
-0
tcp.c
libavformat/tcp.c
+1
-0
udp.c
libavformat/udp.c
+1
-0
url.h
libavformat/url.h
+2
-0
utils.c
libavformat/utils.c
+1
-0
No files found.
libavformat/applehttp.c
View file @
5cec8971
...
...
@@ -31,6 +31,7 @@
#include "internal.h"
#include <unistd.h>
#include "avio_internal.h"
#include "url.h"
#define INITIAL_BUFFER_SIZE 32768
...
...
libavformat/avio.h
View file @
5cec8971
...
...
@@ -163,7 +163,9 @@ typedef struct URLProtocol {
extern
URLProtocol
*
first_protocol
;
#endif
#if FF_API_OLD_AVIO
extern
URLInterruptCB
*
url_interrupt_cb
;
#endif
/**
* If protocol is NULL, returns the first registered protocol,
...
...
libavformat/tcp.c
View file @
5cec8971
...
...
@@ -24,6 +24,7 @@
#include "internal.h"
#include "network.h"
#include "os_support.h"
#include "url.h"
#if HAVE_POLL_H
#include <poll.h>
#endif
...
...
libavformat/udp.c
View file @
5cec8971
...
...
@@ -33,6 +33,7 @@
#include "internal.h"
#include "network.h"
#include "os_support.h"
#include "url.h"
#include <sys/time.h>
#ifndef IPV6_ADD_MEMBERSHIP
...
...
libavformat/url.h
View file @
5cec8971
...
...
@@ -30,6 +30,8 @@
#if !FF_API_OLD_AVIO
#define URL_PROTOCOL_FLAG_NESTED_SCHEME 1
/*< The protocol name can be the first part of a nested protocol scheme */
extern
URLInterruptCB
*
url_interrupt_cb
;
#endif
/**
...
...
libavformat/utils.c
View file @
5cec8971
...
...
@@ -31,6 +31,7 @@
#include "libavutil/avstring.h"
#include "riff.h"
#include "audiointerleave.h"
#include "url.h"
#include <sys/time.h>
#include <time.h>
#include <strings.h>
...
...
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