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
1f8ad15a
Commit
1f8ad15a
authored
Jan 24, 2010
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Doxument url_read().
Originally committed as revision 21415 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
30b61475
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
avio.h
libavformat/avio.h
+11
-0
No files found.
libavformat/avio.h
View file @
1f8ad15a
...
@@ -68,7 +68,18 @@ typedef int URLInterruptCB(void);
...
@@ -68,7 +68,18 @@ typedef int URLInterruptCB(void);
int
url_open_protocol
(
URLContext
**
puc
,
struct
URLProtocol
*
up
,
int
url_open_protocol
(
URLContext
**
puc
,
struct
URLProtocol
*
up
,
const
char
*
filename
,
int
flags
);
const
char
*
filename
,
int
flags
);
int
url_open
(
URLContext
**
h
,
const
char
*
filename
,
int
flags
);
int
url_open
(
URLContext
**
h
,
const
char
*
filename
,
int
flags
);
/**
* Reads up to size bytes from the resource accessed by h, and stores
* the read bytes in buf.
*
* @return The number of bytes actually read, or a negative value
* corresponding to an AVERROR code in case of error. A value of zero
* indicates that it is not possible to read more from the accessed
* resource (except if the value of the size argument is also zero).
*/
int
url_read
(
URLContext
*
h
,
unsigned
char
*
buf
,
int
size
);
int
url_read
(
URLContext
*
h
,
unsigned
char
*
buf
,
int
size
);
/**
/**
* Read as many bytes as possible (up to size), calling the
* Read as many bytes as possible (up to size), calling the
* read function multiple times if necessary.
* read function multiple times if necessary.
...
...
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