]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/base64.h
Rename string.c to avstring.c so that the name of header and C file match.
[ffmpeg] / libavutil / base64.h
index e95e4ea3e30579c7297355c3e49857a37614707c..843e362495f406ed38c7a3cfea5d3b9bca7a01ba 100644 (file)
@@ -1,5 +1,4 @@
 /*
- * Base64.c
  * Copyright (c) 2006 Ryan Martell. (rdm4@martellventures.com)
  *
  * This file is part of FFmpeg.
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-#ifndef FFMPEG_BASE64_H
-#define FFMPEG_BASE64_H
+#ifndef AVUTIL_BASE64_H
+#define AVUTIL_BASE64_H
 
 #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
  */
 char *av_base64_encode(char * buf, int buf_len, const uint8_t * src, int len);
 
-#endif /* FFMPEG_BASE64_H */
+#endif /* AVUTIL_BASE64_H */