[FFmpeg-cvslog] r17072 - in trunk/libavutil: base64.c base64.h
stefano
subversion
Sun Feb 8 22:19:04 CET 2009
Author: stefano
Date: Sun Feb 8 22:19:04 2009
New Revision: 17072
Log:
Cosmetics: "* out" -> "*out" for consistency with the other
parameters.
Modified:
trunk/libavutil/base64.c
trunk/libavutil/base64.h
Modified: trunk/libavutil/base64.c
==============================================================================
--- trunk/libavutil/base64.c Sun Feb 8 22:16:36 2009 (r17071)
+++ trunk/libavutil/base64.c Sun Feb 8 22:19:04 2009 (r17072)
@@ -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;
Modified: trunk/libavutil/base64.h
==============================================================================
--- trunk/libavutil/base64.h Sun Feb 8 22:16:36 2009 (r17071)
+++ trunk/libavutil/base64.h Sun Feb 8 22:19:04 2009 (r17072)
@@ -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.
More information about the ffmpeg-cvslog
mailing list