[FFmpeg-cvslog] avutil/camellia: Fix doxy @param typo
Marvin Scholz
git at videolan.org
Mon Oct 17 11:01:17 EEST 2022
ffmpeg | branch: master | Marvin Scholz <epirat07 at gmail.com> | Sat Sep 24 22:05:11 2022 +0200| [e3c5b8c610a8d55cf3921926434e6c7b13cda210] | committer: Anton Khirnov
avutil/camellia: Fix doxy @param typo
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e3c5b8c610a8d55cf3921926434e6c7b13cda210
---
libavutil/camellia.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavutil/camellia.h b/libavutil/camellia.h
index e674c9b9a4..96787102e2 100644
--- a/libavutil/camellia.h
+++ b/libavutil/camellia.h
@@ -59,7 +59,7 @@ int av_camellia_init(struct AVCAMELLIA *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_camellia_crypt(struct AVCAMELLIA *ctx, uint8_t *dst, const uint8_t *src, int count, uint8_t* iv, int decrypt);
More information about the ffmpeg-cvslog
mailing list