]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/base64.h
aac: fix infinite loop on end-of-frame with sequence of 1-bits.
[ffmpeg] / libavutil / base64.h
index 96c0a4a41e339a5f155f2391e3e9bd02d50c32bd..4750cf5c724aeea26a3940fb8ba9ffe6264507df 100644 (file)
 
 #include <stdint.h>
 
+/**
+ * @defgroup lavu_base64 Base64
+ * @ingroup lavu_crypto
+ * @{
+ */
+
+
 /**
  * Decode a base64-encoded string.
  *
@@ -51,4 +58,8 @@ char *av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size);
  */
 #define AV_BASE64_SIZE(x)  (((x)+2) / 3 * 4 + 1)
 
+ /**
+  * @}
+  */
+
 #endif /* AVUTIL_BASE64_H */