avutil/twofish: Fix doxy @param typo

This commit is contained in:
Marvin Scholz 2022-09-24 19:07:02 +02:00 committed by Anton Khirnov
parent f29dde49d2
commit c468a8c04f
1 changed files with 1 additions and 1 deletions

View File

@ -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);