bink: fix typo in FFALIGN() argument

This commit is contained in:
Kostya Shishkov 2012-03-20 18:43:00 +01:00
parent 8ae28ac0f3
commit 1d10afd581
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ enum BlockTypes {
*/
static void init_lengths(BinkContext *c, int width, int bw)
{
width = FFALIGN(width, 7);
width = FFALIGN(width, 8);
c->bundle[BINK_SRC_BLOCK_TYPES].len = av_log2((width >> 3) + 511) + 1;