You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

370 lines
12KB

  1. /*
  2. * BMP image format decoder
  3. * Copyright (c) 2005 Mans Rullgard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <inttypes.h>
  22. #include "avcodec.h"
  23. #include "bytestream.h"
  24. #include "bmp.h"
  25. #include "internal.h"
  26. #include "msrledec.h"
  27. static int bmp_decode_frame(AVCodecContext *avctx,
  28. void *data, int *got_frame,
  29. AVPacket *avpkt)
  30. {
  31. const uint8_t *buf = avpkt->data;
  32. int buf_size = avpkt->size;
  33. AVFrame *p = data;
  34. unsigned int fsize, hsize;
  35. int width, height;
  36. unsigned int depth;
  37. BiCompression comp;
  38. unsigned int ihsize;
  39. int i, j, n, linesize, ret;
  40. uint32_t rgb[3] = {0};
  41. uint32_t alpha = 0;
  42. uint8_t *ptr;
  43. int dsize;
  44. const uint8_t *buf0 = buf;
  45. GetByteContext gb;
  46. if (buf_size < 14) {
  47. av_log(avctx, AV_LOG_ERROR, "buf size too small (%d)\n", buf_size);
  48. return AVERROR_INVALIDDATA;
  49. }
  50. if (bytestream_get_byte(&buf) != 'B' ||
  51. bytestream_get_byte(&buf) != 'M') {
  52. av_log(avctx, AV_LOG_ERROR, "bad magic number\n");
  53. return AVERROR_INVALIDDATA;
  54. }
  55. fsize = bytestream_get_le32(&buf);
  56. if (buf_size < fsize) {
  57. av_log(avctx, AV_LOG_ERROR, "not enough data (%d < %u), trying to decode anyway\n",
  58. buf_size, fsize);
  59. fsize = buf_size;
  60. }
  61. buf += 2; /* reserved1 */
  62. buf += 2; /* reserved2 */
  63. hsize = bytestream_get_le32(&buf); /* header size */
  64. ihsize = bytestream_get_le32(&buf); /* more header size */
  65. if (ihsize + 14LL > hsize) {
  66. av_log(avctx, AV_LOG_ERROR, "invalid header size %u\n", hsize);
  67. return AVERROR_INVALIDDATA;
  68. }
  69. /* sometimes file size is set to some headers size, set a real size in that case */
  70. if (fsize == 14 || fsize == ihsize + 14)
  71. fsize = buf_size - 2;
  72. if (fsize <= hsize) {
  73. av_log(avctx, AV_LOG_ERROR,
  74. "Declared file size is less than header size (%u < %u)\n",
  75. fsize, hsize);
  76. return AVERROR_INVALIDDATA;
  77. }
  78. switch (ihsize) {
  79. case 40: // windib
  80. case 56: // windib v3
  81. case 64: // OS/2 v2
  82. case 108: // windib v4
  83. case 124: // windib v5
  84. width = bytestream_get_le32(&buf);
  85. height = bytestream_get_le32(&buf);
  86. break;
  87. case 12: // OS/2 v1
  88. width = bytestream_get_le16(&buf);
  89. height = bytestream_get_le16(&buf);
  90. break;
  91. default:
  92. avpriv_report_missing_feature(avctx, "Information header size %u",
  93. ihsize);
  94. return AVERROR_PATCHWELCOME;
  95. }
  96. /* planes */
  97. if (bytestream_get_le16(&buf) != 1) {
  98. av_log(avctx, AV_LOG_ERROR, "invalid BMP header\n");
  99. return AVERROR_INVALIDDATA;
  100. }
  101. depth = bytestream_get_le16(&buf);
  102. if (ihsize >= 40)
  103. comp = bytestream_get_le32(&buf);
  104. else
  105. comp = BMP_RGB;
  106. if (comp != BMP_RGB && comp != BMP_BITFIELDS && comp != BMP_RLE4 &&
  107. comp != BMP_RLE8) {
  108. av_log(avctx, AV_LOG_ERROR, "BMP coding %d not supported\n", comp);
  109. return AVERROR_INVALIDDATA;
  110. }
  111. if (comp == BMP_BITFIELDS) {
  112. buf += 20;
  113. rgb[0] = bytestream_get_le32(&buf);
  114. rgb[1] = bytestream_get_le32(&buf);
  115. rgb[2] = bytestream_get_le32(&buf);
  116. if (ihsize > 40)
  117. alpha = bytestream_get_le32(&buf);
  118. }
  119. avctx->width = width;
  120. avctx->height = height > 0 ? height : -(unsigned)height;
  121. avctx->pix_fmt = AV_PIX_FMT_NONE;
  122. switch (depth) {
  123. case 32:
  124. if (comp == BMP_BITFIELDS) {
  125. if (rgb[0] == 0xFF000000 && rgb[1] == 0x00FF0000 && rgb[2] == 0x0000FF00)
  126. avctx->pix_fmt = alpha ? AV_PIX_FMT_ABGR : AV_PIX_FMT_0BGR;
  127. else if (rgb[0] == 0x00FF0000 && rgb[1] == 0x0000FF00 && rgb[2] == 0x000000FF)
  128. avctx->pix_fmt = alpha ? AV_PIX_FMT_BGRA : AV_PIX_FMT_BGR0;
  129. else if (rgb[0] == 0x0000FF00 && rgb[1] == 0x00FF0000 && rgb[2] == 0xFF000000)
  130. avctx->pix_fmt = alpha ? AV_PIX_FMT_ARGB : AV_PIX_FMT_0RGB;
  131. else if (rgb[0] == 0x000000FF && rgb[1] == 0x0000FF00 && rgb[2] == 0x00FF0000)
  132. avctx->pix_fmt = alpha ? AV_PIX_FMT_RGBA : AV_PIX_FMT_RGB0;
  133. else {
  134. av_log(avctx, AV_LOG_ERROR, "Unknown bitfields "
  135. "%0"PRIX32" %0"PRIX32" %0"PRIX32"\n", rgb[0], rgb[1], rgb[2]);
  136. return AVERROR(EINVAL);
  137. }
  138. } else {
  139. avctx->pix_fmt = AV_PIX_FMT_BGRA;
  140. }
  141. break;
  142. case 24:
  143. avctx->pix_fmt = AV_PIX_FMT_BGR24;
  144. break;
  145. case 16:
  146. if (comp == BMP_RGB)
  147. avctx->pix_fmt = AV_PIX_FMT_RGB555;
  148. else if (comp == BMP_BITFIELDS) {
  149. if (rgb[0] == 0xF800 && rgb[1] == 0x07E0 && rgb[2] == 0x001F)
  150. avctx->pix_fmt = AV_PIX_FMT_RGB565;
  151. else if (rgb[0] == 0x7C00 && rgb[1] == 0x03E0 && rgb[2] == 0x001F)
  152. avctx->pix_fmt = AV_PIX_FMT_RGB555;
  153. else if (rgb[0] == 0x0F00 && rgb[1] == 0x00F0 && rgb[2] == 0x000F)
  154. avctx->pix_fmt = AV_PIX_FMT_RGB444;
  155. else {
  156. av_log(avctx, AV_LOG_ERROR,
  157. "Unknown bitfields %0"PRIX32" %0"PRIX32" %0"PRIX32"\n",
  158. rgb[0], rgb[1], rgb[2]);
  159. return AVERROR(EINVAL);
  160. }
  161. }
  162. break;
  163. case 8:
  164. if (hsize - ihsize - 14 > 0)
  165. avctx->pix_fmt = AV_PIX_FMT_PAL8;
  166. else
  167. avctx->pix_fmt = AV_PIX_FMT_GRAY8;
  168. break;
  169. case 1:
  170. case 4:
  171. if (hsize - ihsize - 14 > 0) {
  172. avctx->pix_fmt = AV_PIX_FMT_PAL8;
  173. } else {
  174. av_log(avctx, AV_LOG_ERROR, "Unknown palette for %u-colour BMP\n",
  175. 1 << depth);
  176. return AVERROR_INVALIDDATA;
  177. }
  178. break;
  179. default:
  180. av_log(avctx, AV_LOG_ERROR, "depth %u not supported\n", depth);
  181. return AVERROR_INVALIDDATA;
  182. }
  183. if (avctx->pix_fmt == AV_PIX_FMT_NONE) {
  184. av_log(avctx, AV_LOG_ERROR, "unsupported pixel format\n");
  185. return AVERROR_INVALIDDATA;
  186. }
  187. if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
  188. return ret;
  189. p->pict_type = AV_PICTURE_TYPE_I;
  190. p->key_frame = 1;
  191. buf = buf0 + hsize;
  192. dsize = buf_size - hsize;
  193. /* Line size in file multiple of 4 */
  194. n = ((avctx->width * depth + 31) / 8) & ~3;
  195. if (n * avctx->height > dsize && comp != BMP_RLE4 && comp != BMP_RLE8) {
  196. n = (avctx->width * depth + 7) / 8;
  197. if (n * avctx->height > dsize) {
  198. av_log(avctx, AV_LOG_ERROR, "not enough data (%d < %d)\n",
  199. dsize, n * avctx->height);
  200. return AVERROR_INVALIDDATA;
  201. }
  202. av_log(avctx, AV_LOG_ERROR, "data size too small, assuming missing line alignment\n");
  203. }
  204. // RLE may skip decoding some picture areas, so blank picture before decoding
  205. if (comp == BMP_RLE4 || comp == BMP_RLE8)
  206. memset(p->data[0], 0, avctx->height * p->linesize[0]);
  207. if (height > 0) {
  208. ptr = p->data[0] + (avctx->height - 1) * p->linesize[0];
  209. linesize = -p->linesize[0];
  210. } else {
  211. ptr = p->data[0];
  212. linesize = p->linesize[0];
  213. }
  214. if (avctx->pix_fmt == AV_PIX_FMT_PAL8) {
  215. int colors = 1 << depth;
  216. memset(p->data[1], 0, 1024);
  217. if (ihsize >= 36) {
  218. int t;
  219. buf = buf0 + 46;
  220. t = bytestream_get_le32(&buf);
  221. if (t < 0 || t > (1 << depth)) {
  222. av_log(avctx, AV_LOG_ERROR,
  223. "Incorrect number of colors - %X for bitdepth %u\n",
  224. t, depth);
  225. } else if (t) {
  226. colors = t;
  227. }
  228. } else {
  229. colors = FFMIN(256, (hsize-ihsize-14) / 3);
  230. }
  231. buf = buf0 + 14 + ihsize; //palette location
  232. // OS/2 bitmap, 3 bytes per palette entry
  233. if ((hsize-ihsize-14) < (colors << 2)) {
  234. if ((hsize-ihsize-14) < colors * 3) {
  235. av_log(avctx, AV_LOG_ERROR, "palette doesn't fit in packet\n");
  236. return AVERROR_INVALIDDATA;
  237. }
  238. for (i = 0; i < colors; i++)
  239. ((uint32_t*)p->data[1])[i] = (0xFFU<<24) | bytestream_get_le24(&buf);
  240. } else {
  241. for (i = 0; i < colors; i++)
  242. ((uint32_t*)p->data[1])[i] = 0xFFU << 24 | bytestream_get_le32(&buf);
  243. }
  244. buf = buf0 + hsize;
  245. }
  246. if (comp == BMP_RLE4 || comp == BMP_RLE8) {
  247. if (comp == BMP_RLE8 && height < 0) {
  248. p->data[0] += p->linesize[0] * (avctx->height - 1);
  249. p->linesize[0] = -p->linesize[0];
  250. }
  251. bytestream2_init(&gb, buf, dsize);
  252. ff_msrle_decode(avctx, p, depth, &gb);
  253. if (height < 0) {
  254. p->data[0] += p->linesize[0] * (avctx->height - 1);
  255. p->linesize[0] = -p->linesize[0];
  256. }
  257. } else {
  258. switch (depth) {
  259. case 1:
  260. for (i = 0; i < avctx->height; i++) {
  261. int j;
  262. for (j = 0; j < n; j++) {
  263. ptr[j*8+0] = buf[j] >> 7;
  264. ptr[j*8+1] = (buf[j] >> 6) & 1;
  265. ptr[j*8+2] = (buf[j] >> 5) & 1;
  266. ptr[j*8+3] = (buf[j] >> 4) & 1;
  267. ptr[j*8+4] = (buf[j] >> 3) & 1;
  268. ptr[j*8+5] = (buf[j] >> 2) & 1;
  269. ptr[j*8+6] = (buf[j] >> 1) & 1;
  270. ptr[j*8+7] = buf[j] & 1;
  271. }
  272. buf += n;
  273. ptr += linesize;
  274. }
  275. break;
  276. case 8:
  277. case 24:
  278. case 32:
  279. for (i = 0; i < avctx->height; i++) {
  280. memcpy(ptr, buf, n);
  281. buf += n;
  282. ptr += linesize;
  283. }
  284. break;
  285. case 4:
  286. for (i = 0; i < avctx->height; i++) {
  287. int j;
  288. for (j = 0; j < n; j++) {
  289. ptr[j*2+0] = (buf[j] >> 4) & 0xF;
  290. ptr[j*2+1] = buf[j] & 0xF;
  291. }
  292. buf += n;
  293. ptr += linesize;
  294. }
  295. break;
  296. case 16:
  297. for (i = 0; i < avctx->height; i++) {
  298. const uint16_t *src = (const uint16_t *) buf;
  299. uint16_t *dst = (uint16_t *) ptr;
  300. for (j = 0; j < avctx->width; j++)
  301. *dst++ = av_le2ne16(*src++);
  302. buf += n;
  303. ptr += linesize;
  304. }
  305. break;
  306. default:
  307. av_log(avctx, AV_LOG_ERROR, "BMP decoder is broken\n");
  308. return AVERROR_INVALIDDATA;
  309. }
  310. }
  311. if (avctx->pix_fmt == AV_PIX_FMT_BGRA) {
  312. for (i = 0; i < avctx->height; i++) {
  313. int j;
  314. uint8_t *ptr = p->data[0] + p->linesize[0]*i + 3;
  315. for (j = 0; j < avctx->width; j++) {
  316. if (ptr[4*j])
  317. break;
  318. }
  319. if (j < avctx->width)
  320. break;
  321. }
  322. if (i == avctx->height)
  323. avctx->pix_fmt = p->format = AV_PIX_FMT_BGR0;
  324. }
  325. *got_frame = 1;
  326. return buf_size;
  327. }
  328. AVCodec ff_bmp_decoder = {
  329. .name = "bmp",
  330. .long_name = NULL_IF_CONFIG_SMALL("BMP (Windows and OS/2 bitmap)"),
  331. .type = AVMEDIA_TYPE_VIDEO,
  332. .id = AV_CODEC_ID_BMP,
  333. .decode = bmp_decode_frame,
  334. .capabilities = AV_CODEC_CAP_DR1,
  335. };