diff options
author | Timothy Gu <timothygu99@gmail.com> | 2016-08-01 19:18:44 -0700 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2016-08-02 07:48:08 -0700 |
commit | 19d7098c9e7b8568ce47f62a72af742eba478150 (patch) | |
tree | 1fff4b741f3ab70a65309a4f5c384e691e68c2b2 /libavutil/hash.h | |
parent | fbe22355b7d44ab02fa2c7ed059c03e606970009 (diff) | |
download | ffmpeg-19d7098c9e7b8568ce47f62a72af742eba478150.tar.gz |
avutil: Group hash functions separately in Doxygen
Diffstat (limited to 'libavutil/hash.h')
-rw-r--r-- | libavutil/hash.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libavutil/hash.h b/libavutil/hash.h index d4bcbf8cc8..dae39cd86f 100644 --- a/libavutil/hash.h +++ b/libavutil/hash.h @@ -18,11 +18,28 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +/** + * @file + * @ingroup lavu_hash_generic + * Generic hashing API + */ + #ifndef AVUTIL_HASH_H #define AVUTIL_HASH_H #include <stdint.h> +/** + * @defgroup lavu_hash Hash Functions + * @ingroup lavu_crypto + * + * @{ + * + * @defgroup lavu_hash_generic Generic Hashing API + * + * @{ + */ + struct AVHashContext; /** @@ -109,4 +126,9 @@ void av_hash_final_b64(struct AVHashContext *ctx, uint8_t *dst, int size); */ void av_hash_freep(struct AVHashContext **ctx); +/** + * @} + * @} + */ + #endif /* AVUTIL_HASH_H */ |