summaryrefslogtreecommitdiff
path: root/libavcodec/bink.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2012-03-20 18:43:00 +0100
committerKostya Shishkov <kostya.shishkov@gmail.com>2012-03-20 18:57:51 +0100
commit1d10afd581a4e6310ac146b270863ffe5e8635f2 (patch)
tree1dba5c5df1fd470dd11c469c31a5048d8dcaa23a /libavcodec/bink.c
parent8ae28ac0f37a9971bcf0ed82e591ebd582479fde (diff)
bink: fix typo in FFALIGN() argument
Diffstat (limited to 'libavcodec/bink.c')
-rw-r--r--libavcodec/bink.c2
1 files changed, 1 insertions, 1 deletions
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;