Use os/2 palette even if it contains less than 256 entries.

Fixes 11Bios13.bmp.
pull/76/merge
Carl Eugen Hoyos 11 years ago
parent 8f6a04a279
commit 810294ce3d
  1. 2
      libavcodec/bmp.c

@ -248,6 +248,8 @@ static int bmp_decode_frame(AVCodecContext *avctx,
} else if (t) { } else if (t) {
colors = t; colors = t;
} }
} else {
colors = FFMIN(256, (hsize-ihsize-14) / 3);
} }
buf = buf0 + 14 + ihsize; //palette location buf = buf0 + 14 + ihsize; //palette location
// OS/2 bitmap, 3 bytes per palette entry // OS/2 bitmap, 3 bytes per palette entry

Loading…
Cancel
Save