Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
31878fcf
Commit
31878fcf
authored
Jun 04, 2010
by
Howard Chu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add AV_BASE64_SIZE() macro
Originally committed as revision 23461 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
27b0d365
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
base64.h
libavutil/base64.h
+5
-0
No files found.
libavutil/base64.h
View file @
31878fcf
...
...
@@ -46,4 +46,9 @@ int av_base64_decode(uint8_t *out, const char *in, int out_size);
*/
char
*
av_base64_encode
(
char
*
out
,
int
out_size
,
const
uint8_t
*
in
,
int
in_size
);
/**
* Calculate the output size needed to base64-encode x bytes.
*/
#define AV_BASE64_SIZE(x) (((x)+2) / 3 * 4 + 1)
#endif
/* AVUTIL_BASE64_H */
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