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
b0335fd9
Commit
b0335fd9
authored
Jul 21, 2010
by
Aurelien Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
document ff_get_line()
Originally committed as revision 24401 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
a43416a5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
internal.h
libavformat/internal.h
+11
-0
No files found.
libavformat/internal.h
View file @
b0335fd9
...
...
@@ -167,6 +167,17 @@ int ff_get_v_length(uint64_t val);
*/
void
ff_put_v
(
ByteIOContext
*
bc
,
uint64_t
val
);
/**
* Read a whole line of text from ByteIOContext. Stop reading after reaching
* either a \n, a \0 or EOF. The returned string is always \0 terminated,
* and may be truncated if the buffer is too small.
*
* @param s the read-only ByteIOContext
* @param buf buffer to store the read line
* @param maxlen size of the buffer
* @return the length of the string written in the buffer, not including the
* final \0
*/
int
ff_get_line
(
ByteIOContext
*
s
,
char
*
buf
,
int
maxlen
);
#define SPACE_CHARS " \t\r\n"
...
...
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