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
ffd31cfe
Commit
ffd31cfe
authored
Jun 30, 2010
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
base64: improve documentation
Originally committed as revision 23905 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
49bd8e4b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
base64.h
libavutil/base64.h
+13
-13
No files found.
libavutil/base64.h
View file @
ffd31cfe
...
...
@@ -24,25 +24,25 @@
#include <stdint.h>
/**
* Decode the base64-encoded string in in and put the decoded
* data in out.
* Decode a base64-encoded string.
*
* @param out_size size in bytes of the out buffer, it should be at
* least 3/4 of the length of in
* @return the number of bytes written, or a negative value in case of
* error
* @param out buffer for decoded data
* @param in null-terminated input string
* @param out_size size in bytes of the out buffer, must be at
* least 3/4 of the length of in
* @return number of bytes written, or a negative value in case of
* invalid input
*/
int
av_base64_decode
(
uint8_t
*
out
,
const
char
*
in
,
int
out_size
);
/**
* Encode in base64 the data in in and put the resulting string
* in out.
* Encode data to base64 and null-terminate.
*
* @param out
_size size in bytes of the out string, it should be at
*
least ((in_size + 2) / 3) * 4 + 1
*
@param in_size size in bytes of the in buffer
* @
return the string containing the encoded data, or NULL in case of
* error
* @param out
buffer for encoded data
*
@param out_size size in bytes of the output buffer, must be at
*
least AV_BASE64_SIZE(in_size)
* @
param in_size size in bytes of the 'in' buffer
*
@return 'out' or NULL in case of
error
*/
char
*
av_base64_encode
(
char
*
out
,
int
out_size
,
const
uint8_t
*
in
,
int
in_size
);
...
...
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