summaryrefslogtreecommitdiff
path: root/libavutil/aes_ctr.h
diff options
context:
space:
mode:
authorMarvin Scholz <epirat07@gmail.com>2022-09-25 01:51:42 +0200
committerAnton Khirnov <anton@khirnov.net>2022-10-17 09:56:47 +0200
commit3973d4fbc7b4849a1832f255a67b186d37266e46 (patch)
treec32dc97d810560660948153f69951e03f31f9883 /libavutil/aes_ctr.h
parent0baa6871acef3dccbb208b4b6101b34c281305ae (diff)
downloadffmpeg-3973d4fbc7b4849a1832f255a67b186d37266e46.tar.gz
avutil/aes_ctr: document some missing arguments
Diffstat (limited to 'libavutil/aes_ctr.h')
-rw-r--r--libavutil/aes_ctr.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavutil/aes_ctr.h b/libavutil/aes_ctr.h
index 4d80c71326..d98c071227 100644
--- a/libavutil/aes_ctr.h
+++ b/libavutil/aes_ctr.h
@@ -44,17 +44,23 @@ struct AVAESCTR *av_aes_ctr_alloc(void);
/**
* Initialize an AVAESCTR context.
+ *
+ * @param a The AVAESCTR context to initialize
* @param key encryption key, must have a length of AES_CTR_KEY_SIZE
*/
int av_aes_ctr_init(struct AVAESCTR *a, const uint8_t *key);
/**
* Release an AVAESCTR context.
+ *
+ * @param a The AVAESCTR context
*/
void av_aes_ctr_free(struct AVAESCTR *a);
/**
* Process a buffer using a previously initialized context.
+ *
+ * @param a The AVAESCTR context
* @param dst destination array, can be equal to src
* @param src source array, can be equal to dst
* @param size the size of src and dst