lzwenc: change assert to av_assert

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-10-18 21:42:04 +02:00
parent 97d1cb5cd4
commit 2472f3facb
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ static inline int hash(int head, const int add)
head ^= (add << LZW_HASH_SHIFT);
if (head >= LZW_HASH_SIZE)
head -= LZW_HASH_SIZE;
assert(head >= 0 && head < LZW_HASH_SIZE);
av_assert2(head >= 0 && head < LZW_HASH_SIZE);
return head;
}