From 1d10afd581a4e6310ac146b270863ffe5e8635f2 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Tue, 20 Mar 2012 18:43:00 +0100 Subject: bink: fix typo in FFALIGN() argument --- libavcodec/bink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/bink.c') diff --git a/libavcodec/bink.c b/libavcodec/bink.c index 7a08f49a82..4e9b1a8ca2 100644 --- a/libavcodec/bink.c +++ b/libavcodec/bink.c @@ -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; -- cgit v1.2.3