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.

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