]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/bink.c
pcm: switch to ff_alloc_packet2().
[ffmpeg] / libavcodec / bink.c
index c501688ae8ccc9840713026703569f5d016a586b..4ca96e5f76c8915c879b7415d78b4f87f4be722f 100644 (file)
@@ -146,6 +146,8 @@ enum BlockTypes {
  */
 static void init_lengths(BinkContext *c, int width, int bw)
 {
+    width = FFALIGN(width, 8);
+
     c->bundle[BINK_SRC_BLOCK_TYPES].len = av_log2((width >> 3) + 511) + 1;
 
     c->bundle[BINK_SRC_SUB_BLOCK_TYPES].len = av_log2((width >> 4) + 511) + 1;