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
67e21020
Commit
67e21020
authored
Mar 21, 2008
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document a few url_* functions.
Originally committed as revision 12537 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
117a9190
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
avio.h
libavformat/avio.h
+25
-0
No files found.
libavformat/avio.h
View file @
67e21020
...
...
@@ -207,11 +207,36 @@ void put_tag(ByteIOContext *s, const char *tag);
void
put_strz
(
ByteIOContext
*
s
,
const
char
*
buf
);
/**
* fseek() equivalent for ByteIOContext.
* @return new position or AVERROR.
*/
offset_t
url_fseek
(
ByteIOContext
*
s
,
offset_t
offset
,
int
whence
);
/**
* Skip given number of bytes forward.
* @param offset number of bytes
*/
void
url_fskip
(
ByteIOContext
*
s
,
offset_t
offset
);
/**
* ftell() equivalent for ByteIOContext.
* @return position or AVERROR.
*/
offset_t
url_ftell
(
ByteIOContext
*
s
);
/**
* Gets the filesize.
* @return filesize or AVERROR
*/
offset_t
url_fsize
(
ByteIOContext
*
s
);
/**
* feof() equivalent for ByteIOContext.
* @return non zero if and only if end of file
*/
int
url_feof
(
ByteIOContext
*
s
);
int
url_ferror
(
ByteIOContext
*
s
);
int
av_url_read_fpause
(
ByteIOContext
*
h
,
int
pause
);
...
...
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