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.

354 lines
11KB

  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. av_log(avctx, AV_LOG_ERROR, "unsupported BMP file, patch welcome\n");
  93. return AVERROR_PATCHWELCOME;
  94. }
  95. /* planes */
  96. if (bytestream_get_le16(&buf) != 1) {
  97. av_log(avctx, AV_LOG_ERROR, "invalid BMP header\n");
  98. return AVERROR_INVALIDDATA;
  99. }
  100. depth = bytestream_get_le16(&buf);
  101. if (ihsize >= 40)
  102. comp = bytestream_get_le32(&buf);
  103. else
  104. comp = BMP_RGB;
  105. if (comp != BMP_RGB && comp != BMP_BITFIELDS && comp != BMP_RLE4 &&
  106. comp != BMP_RLE8) {
  107. av_log(avctx, AV_LOG_ERROR, "BMP coding %d not supported\n", comp);
  108. return AVERROR_INVALIDDATA;
  109. }
  110. if (comp == BMP_BITFIELDS) {
  111. buf += 20;
  112. rgb[0] = bytestream_get_le32(&buf);
  113. rgb[1] = bytestream_get_le32(&buf);
  114. rgb[2] = bytestream_get_le32(&buf);
  115. if (ihsize > 40)
  116. alpha = bytestream_get_le32(&buf);
  117. }
  118. avctx->width = width;
  119. avctx->height = height > 0 ? height : -height;
  120. avctx->pix_fmt = AV_PIX_FMT_NONE;
  121. switch (depth) {
  122. case 32:
  123. if (comp == BMP_BITFIELDS) {
  124. if (rgb[0] == 0xFF000000 && rgb[1] == 0x00FF0000 && rgb[2] == 0x0000FF00)
  125. avctx->pix_fmt = alpha ? AV_PIX_FMT_ABGR : AV_PIX_FMT_0BGR;
  126. else if (rgb[0] == 0x00FF0000 && rgb[1] == 0x0000FF00 && rgb[2] == 0x000000FF)
  127. avctx->pix_fmt = alpha ? AV_PIX_FMT_BGRA : AV_PIX_FMT_BGR0;
  128. else if (rgb[0] == 0x0000FF00 && rgb[1] == 0x00FF0000 && rgb[2] == 0xFF000000)
  129. avctx->pix_fmt = alpha ? AV_PIX_FMT_ARGB : AV_PIX_FMT_0RGB;
  130. else if (rgb[0] == 0x000000FF && rgb[1] == 0x0000FF00 && rgb[2] == 0x00FF0000)
  131. avctx->pix_fmt = alpha ? AV_PIX_FMT_RGBA : AV_PIX_FMT_RGB0;
  132. else {
  133. av_log(avctx, AV_LOG_ERROR, "Unknown bitfields %0X %0X %0X\n", rgb[0], rgb[1], rgb[2]);
  134. return AVERROR(EINVAL);
  135. }
  136. } else {
  137. avctx->pix_fmt = AV_PIX_FMT_BGRA;
  138. }
  139. break;
  140. case 24:
  141. avctx->pix_fmt = AV_PIX_FMT_BGR24;
  142. break;
  143. case 16:
  144. if (comp == BMP_RGB)
  145. avctx->pix_fmt = AV_PIX_FMT_RGB555;
  146. else if (comp == BMP_BITFIELDS) {
  147. if (rgb[0] == 0xF800 && rgb[1] == 0x07E0 && rgb[2] == 0x001F)
  148. avctx->pix_fmt = AV_PIX_FMT_RGB565;
  149. else if (rgb[0] == 0x7C00 && rgb[1] == 0x03E0 && rgb[2] == 0x001F)
  150. avctx->pix_fmt = AV_PIX_FMT_RGB555;
  151. else if (rgb[0] == 0x0F00 && rgb[1] == 0x00F0 && rgb[2] == 0x000F)
  152. avctx->pix_fmt = AV_PIX_FMT_RGB444;
  153. else {
  154. av_log(avctx, AV_LOG_ERROR,
  155. "Unknown bitfields %0"PRIX32" %0"PRIX32" %0"PRIX32"\n",
  156. rgb[0], rgb[1], rgb[2]);
  157. return AVERROR(EINVAL);
  158. }
  159. }
  160. break;
  161. case 8:
  162. if (hsize - ihsize - 14 > 0)
  163. avctx->pix_fmt = AV_PIX_FMT_PAL8;
  164. else
  165. avctx->pix_fmt = AV_PIX_FMT_GRAY8;
  166. break;
  167. case 1:
  168. case 4:
  169. if (hsize - ihsize - 14 > 0) {
  170. avctx->pix_fmt = AV_PIX_FMT_PAL8;
  171. } else {
  172. av_log(avctx, AV_LOG_ERROR, "Unknown palette for %u-colour BMP\n",
  173. 1 << depth);
  174. return AVERROR_INVALIDDATA;
  175. }
  176. break;
  177. default:
  178. av_log(avctx, AV_LOG_ERROR, "depth %u not supported\n", depth);
  179. return AVERROR_INVALIDDATA;
  180. }
  181. if (avctx->pix_fmt == AV_PIX_FMT_NONE) {
  182. av_log(avctx, AV_LOG_ERROR, "unsupported pixel format\n");
  183. return AVERROR_INVALIDDATA;
  184. }
  185. if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
  186. return ret;
  187. p->pict_type = AV_PICTURE_TYPE_I;
  188. p->key_frame = 1;
  189. buf = buf0 + hsize;
  190. dsize = buf_size - hsize;
  191. /* Line size in file multiple of 4 */
  192. n = ((avctx->width * depth + 31) / 8) & ~3;
  193. if (n * avctx->height > dsize && comp != BMP_RLE4 && comp != BMP_RLE8) {
  194. n = (avctx->width * depth + 7) / 8;
  195. if (n * avctx->height > dsize) {
  196. av_log(avctx, AV_LOG_ERROR, "not enough data (%d < %d)\n",
  197. dsize, n * avctx->height);
  198. return AVERROR_INVALIDDATA;
  199. }
  200. av_log(avctx, AV_LOG_ERROR, "data size too small, assuming missing line alignment\n");
  201. }
  202. // RLE may skip decoding some picture areas, so blank picture before decoding
  203. if (comp == BMP_RLE4 || comp == BMP_RLE8)
  204. memset(p->data[0], 0, avctx->height * p->linesize[0]);
  205. if (height > 0) {
  206. ptr = p->data[0] + (avctx->height - 1) * p->linesize[0];
  207. linesize = -p->linesize[0];
  208. } else {
  209. ptr = p->data[0];
  210. linesize = p->linesize[0];
  211. }
  212. if (avctx->pix_fmt == AV_PIX_FMT_PAL8) {
  213. int colors = 1 << depth;
  214. memset(p->data[1], 0, 1024);
  215. if (ihsize >= 36) {
  216. int t;
  217. buf = buf0 + 46;
  218. t = bytestream_get_le32(&buf);
  219. if (t < 0 || t > (1 << depth)) {
  220. av_log(avctx, AV_LOG_ERROR,
  221. "Incorrect number of colors - %X for bitdepth %u\n",
  222. t, depth);
  223. } else if (t) {
  224. colors = t;
  225. }
  226. } else {
  227. colors = FFMIN(256, (hsize-ihsize-14) / 3);
  228. }
  229. buf = buf0 + 14 + ihsize; //palette location
  230. // OS/2 bitmap, 3 bytes per palette entry
  231. if ((hsize-ihsize-14) < (colors << 2)) {
  232. if ((hsize-ihsize-14) < colors * 3) {
  233. av_log(avctx, AV_LOG_ERROR, "palette doesn't fit in packet\n");
  234. return AVERROR_INVALIDDATA;
  235. }
  236. for (i = 0; i < colors; i++)
  237. ((uint32_t*)p->data[1])[i] = (0xFFU<<24) | bytestream_get_le24(&buf);
  238. } else {
  239. for (i = 0; i < colors; i++)
  240. ((uint32_t*)p->data[1])[i] = 0xFFU << 24 | bytestream_get_le32(&buf);
  241. }
  242. buf = buf0 + hsize;
  243. }
  244. if (comp == BMP_RLE4 || comp == BMP_RLE8) {
  245. if (comp == BMP_RLE8 && height < 0) {
  246. p->data[0] += p->linesize[0] * (avctx->height - 1);
  247. p->linesize[0] = -p->linesize[0];
  248. }
  249. bytestream2_init(&gb, buf, dsize);
  250. ff_msrle_decode(avctx, (AVPicture*)p, depth, &gb);
  251. if (height < 0) {
  252. p->data[0] += p->linesize[0] * (avctx->height - 1);
  253. p->linesize[0] = -p->linesize[0];
  254. }
  255. } else {
  256. switch (depth) {
  257. case 1:
  258. for (i = 0; i < avctx->height; i++) {
  259. int j;
  260. for (j = 0; j < n; j++) {
  261. ptr[j*8+0] = buf[j] >> 7;
  262. ptr[j*8+1] = (buf[j] >> 6) & 1;
  263. ptr[j*8+2] = (buf[j] >> 5) & 1;
  264. ptr[j*8+3] = (buf[j] >> 4) & 1;
  265. ptr[j*8+4] = (buf[j] >> 3) & 1;
  266. ptr[j*8+5] = (buf[j] >> 2) & 1;
  267. ptr[j*8+6] = (buf[j] >> 1) & 1;
  268. ptr[j*8+7] = buf[j] & 1;
  269. }
  270. buf += n;
  271. ptr += linesize;
  272. }
  273. break;
  274. case 8:
  275. case 24:
  276. case 32:
  277. for (i = 0; i < avctx->height; i++) {
  278. memcpy(ptr, buf, n);
  279. buf += n;
  280. ptr += linesize;
  281. }
  282. break;
  283. case 4:
  284. for (i = 0; i < avctx->height; i++) {
  285. int j;
  286. for (j = 0; j < n; j++) {
  287. ptr[j*2+0] = (buf[j] >> 4) & 0xF;
  288. ptr[j*2+1] = buf[j] & 0xF;
  289. }
  290. buf += n;
  291. ptr += linesize;
  292. }
  293. break;
  294. case 16:
  295. for (i = 0; i < avctx->height; i++) {
  296. const uint16_t *src = (const uint16_t *) buf;
  297. uint16_t *dst = (uint16_t *) ptr;
  298. for (j = 0; j < avctx->width; j++)
  299. *dst++ = av_le2ne16(*src++);
  300. buf += n;
  301. ptr += linesize;
  302. }
  303. break;
  304. default:
  305. av_log(avctx, AV_LOG_ERROR, "BMP decoder is broken\n");
  306. return AVERROR_INVALIDDATA;
  307. }
  308. }
  309. *got_frame = 1;
  310. return buf_size;
  311. }
  312. AVCodec ff_bmp_decoder = {
  313. .name = "bmp",
  314. .long_name = NULL_IF_CONFIG_SMALL("BMP (Windows and OS/2 bitmap)"),
  315. .type = AVMEDIA_TYPE_VIDEO,
  316. .id = AV_CODEC_ID_BMP,
  317. .decode = bmp_decode_frame,
  318. .capabilities = AV_CODEC_CAP_DR1,
  319. };