mirror of https://git.ffmpeg.org/ffmpeg.git
Cosmetics: "* out" -> "*out" for consistency with the other
parameters. Originally committed as revision 17072 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5118bd441d
commit
ac76729c10
|
@ -42,7 +42,7 @@ static const uint8_t map2[] =
|
|||
0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33
|
||||
};
|
||||
|
||||
int av_base64_decode(uint8_t * out, const char *in, int out_size)
|
||||
int av_base64_decode(uint8_t *out, const char *in, int out_size)
|
||||
{
|
||||
int i, v;
|
||||
uint8_t *dst = out;
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
* Decodes Base64.
|
||||
* Parameter order is the same as strncpy().
|
||||
*/
|
||||
int av_base64_decode(uint8_t * out, const char *in, int out_size);
|
||||
int av_base64_decode(uint8_t *out, const char *in, int out_size);
|
||||
|
||||
/**
|
||||
* Encodes Base64.
|
||||
|
|
Loading…
Reference in New Issue