Bink version 'h' also has chroma planes swapped
authorKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 6 Mar 2010 15:09:14 +0000 (15:09 +0000)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 6 Mar 2010 15:09:14 +0000 (15:09 +0000)
Originally committed as revision 22236 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/bink.c

index ebe9571..7465d21 100644 (file)
@@ -956,7 +956,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
     }
     flags = AV_RL32(avctx->extradata);
     c->has_alpha = flags & BINK_FLAG_ALPHA;
-    c->swap_planes = c->version >= 'i';
+    c->swap_planes = c->version >= 'h';
     if (!bink_trees[15].table) {
         for (i = 0; i < 16; i++) {
             const int maxbits = bink_tree_lens[i][15];