Bink version 'h' also has chroma planes swapped

Originally committed as revision 22236 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Kostya Shishkov 2010-03-06 15:09:14 +00:00
parent 1429224b04
commit 0bf5a0cf46
1 changed files with 1 additions and 1 deletions

View 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];