summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorMarvin Scholz <epirat07@gmail.com>2022-09-24 19:07:02 +0200
committerAnton Khirnov <anton@khirnov.net>2022-10-17 09:51:47 +0200
commitc468a8c04ff8469e59c62ece66af2787b35939da (patch)
tree7ea5d14188f920b49f5e7e0937686d42fbc9f409 /libavutil
parentf29dde49d292a4dbba0e1efaf686dda0eebdd8f1 (diff)
avutil/twofish: Fix doxy @param typo
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/twofish.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/twofish.h b/libavutil/twofish.h
index 813cfecdf8..67f359e88c 100644
--- a/libavutil/twofish.h
+++ b/libavutil/twofish.h
@@ -59,7 +59,7 @@ int av_twofish_init(struct AVTWOFISH *ctx, const uint8_t *key, int key_bits);
* @param dst destination array, can be equal to src
* @param src source array, can be equal to dst
* @param count number of 16 byte blocks
- * @paran iv initialization vector for CBC mode, NULL for ECB mode
+ * @param iv initialization vector for CBC mode, NULL for ECB mode
* @param decrypt 0 for encryption, 1 for decryption
*/
void av_twofish_crypt(struct AVTWOFISH *ctx, uint8_t *dst, const uint8_t *src, int count, uint8_t* iv, int decrypt);