Commit ac76729c authored by Stefano Sabatini's avatar Stefano Sabatini

Cosmetics: "* out" -> "*out" for consistency with the other

parameters.

Originally committed as revision 17072 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5118bd44
...@@ -42,7 +42,7 @@ static const uint8_t map2[] = ...@@ -42,7 +42,7 @@ static const uint8_t map2[] =
0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33 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; int i, v;
uint8_t *dst = out; uint8_t *dst = out;
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
* Decodes Base64. * Decodes Base64.
* Parameter order is the same as strncpy(). * 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. * Encodes Base64.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment