diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2012-03-20 18:43:00 +0100 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2012-03-20 18:57:51 +0100 |
commit | 1d10afd581a4e6310ac146b270863ffe5e8635f2 (patch) | |
tree | 1dba5c5df1fd470dd11c469c31a5048d8dcaa23a | |
parent | 8ae28ac0f37a9971bcf0ed82e591ebd582479fde (diff) | |
download | ffmpeg-1d10afd581a4e6310ac146b270863ffe5e8635f2.tar.gz |
bink: fix typo in FFALIGN() argument
-rw-r--r-- | libavcodec/bink.c | 2 |
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; |