[FFmpeg-cvslog] bink: fix typo in FFALIGN() argument

Kostya Shishkov git at videolan.org
Wed Mar 21 02:35:02 CET 2012


ffmpeg | branch: master | Kostya Shishkov <kostya.shishkov at gmail.com> | Tue Mar 20 18:43:00 2012 +0100| [1d10afd581a4e6310ac146b270863ffe5e8635f2] | committer: Kostya Shishkov

bink: fix typo in FFALIGN() argument

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1d10afd581a4e6310ac146b270863ffe5e8635f2
---

 libavcodec/bink.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/bink.c b/libavcodec/bink.c
index 7a08f49..4e9b1a8 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;
 



More information about the ffmpeg-cvslog mailing list