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
01b0ade6
Commit
01b0ade6
authored
Mar 15, 2012
by
Nicolas George
Committed by
Martin Storsjö
Mar 19, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
url: Document the expected behaviour of url_read
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
57151f86
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
url.h
libavformat/url.h
+13
-0
No files found.
libavformat/url.h
View file @
01b0ade6
...
...
@@ -59,6 +59,19 @@ typedef struct URLProtocol {
* for those nested protocols.
*/
int
(
*
url_open2
)(
URLContext
*
h
,
const
char
*
url
,
int
flags
,
AVDictionary
**
options
);
/**
* Read data from the protocol.
* If data is immediately available (even less than size), EOF is
* reached or an error occurs (including EINTR), return immediately.
* Otherwise:
* In non-blocking mode, return AVERROR(EAGAIN) immediately.
* In blocking mode, wait for data/EOF/error with a short timeout (0.1s),
* and return AVERROR(EAGAIN) on timeout.
* Checking interrupt_callback, looping on EINTR and EAGAIN and until
* enough data has been read is left to the calling function; see
* retry_transfer_wrapper in avio.c.
*/
int
(
*
url_read
)(
URLContext
*
h
,
unsigned
char
*
buf
,
int
size
);
int
(
*
url_write
)(
URLContext
*
h
,
const
unsigned
char
*
buf
,
int
size
);
int64_t
(
*
url_seek
)(
URLContext
*
h
,
int64_t
pos
,
int
whence
);
...
...
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