Commit c5bea1b0 authored by Michael Niedermayer's avatar Michael Niedermayer

xtea: fix unused variable warning for config_small

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e0a99d54
......@@ -39,10 +39,12 @@ static void xtea_crypt_ecb(AVXTEA *ctx, uint8_t *dst, const uint8_t *src,
int decrypt, uint8_t *iv)
{
uint32_t v0, v1;
#if !CONFIG_SMALL
uint32_t k0 = ctx->key[0];
uint32_t k1 = ctx->key[1];
uint32_t k2 = ctx->key[2];
uint32_t k3 = ctx->key[3];
#endif
v0 = AV_RB32(src);
v1 = AV_RB32(src + 4);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment