summaryrefslogtreecommitdiff
path: root/libavutil/base64.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-01-28 23:03:17 +0000
committerDiego Biurrun <diego@biurrun.de>2009-01-28 23:03:17 +0000
commitbfe3676feb5548993292b806de45a1cbc746c05f (patch)
tree18ad073de9e9d1ef37ef08fe31de7929e11f04a3 /libavutil/base64.h
parent7b484a7a177b689f6f3ae8f16935dd47ff5120c3 (diff)
spelling/grammar/consistency review part II
Originally committed as revision 16848 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/base64.h')
-rw-r--r--libavutil/base64.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/libavutil/base64.h b/libavutil/base64.h
index 91df541d59..843e362495 100644
--- a/libavutil/base64.h
+++ b/libavutil/base64.h
@@ -1,5 +1,4 @@
/*
- * Base64.c
* Copyright (c) 2006 Ryan Martell. (rdm4@martellventures.com)
*
* This file is part of FFmpeg.
@@ -25,13 +24,13 @@
#include <stdint.h>
/**
- * decodes base64
- * param order as strncpy()
+ * Decodes Base64.
+ * Parameter order is the same as strncpy().
*/
int av_base64_decode(uint8_t * out, const char *in, int out_length);
/**
- * encodes base64
+ * Encodes Base64.
* @param src data, not a string
* @param buf output string
*/