Commit 1d10afd5 authored by Kostya Shishkov's avatar Kostya Shishkov

bink: fix typo in FFALIGN() argument

parent 8ae28ac0
......@@ -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;
......
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