1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-04-29 12:54:10 +02:00
Files
FFmpeg/libavcodec/bmp.c
T

368 lines
12 KiB
C
Raw Normal View History

2005-11-30 01:40:50 +00:00
/*
* BMP image format decoder
2005-11-30 01:40:50 +00:00
* Copyright (c) 2005 Mans Rullgard
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
2005-11-30 01:40:50 +00:00
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
2005-11-30 01:40:50 +00:00
*
* FFmpeg is distributed in the hope that it will be useful,
2005-11-30 01:40:50 +00:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2005-11-30 01:40:50 +00:00
*/
2014-03-13 12:13:33 +01:00
#include <inttypes.h>
2005-11-30 01:40:50 +00:00
#include "avcodec.h"
#include "bytestream.h"
#include "bmp.h"
#include "internal.h"
2008-09-23 08:45:12 +00:00
#include "msrledec.h"
2005-11-30 01:40:50 +00:00
2005-12-17 18:14:38 +00:00
static int bmp_decode_frame(AVCodecContext *avctx,
void *data, int *got_frame,
AVPacket *avpkt)
2005-11-30 01:40:50 +00:00
{
const uint8_t *buf = avpkt->data;
2012-11-15 09:23:55 +01:00
int buf_size = avpkt->size;
2012-11-21 21:34:46 +01:00
AVFrame *p = data;
2005-11-30 01:40:50 +00:00
unsigned int fsize, hsize;
int width, height;
unsigned int depth;
2007-01-24 10:41:03 +00:00
BiCompression comp;
2005-11-30 01:40:50 +00:00
unsigned int ihsize;
2012-11-15 09:26:36 +01:00
int i, j, n, linesize, ret;
uint32_t rgb[3] = {0};
2012-01-12 01:47:59 +00:00
uint32_t alpha = 0;
2005-11-30 01:40:50 +00:00
uint8_t *ptr;
int dsize;
2008-02-01 15:01:05 +00:00
const uint8_t *buf0 = buf;
GetByteContext gb;
2005-11-30 01:40:50 +00:00
2012-11-15 09:23:55 +01:00
if (buf_size < 14) {
2005-11-30 01:40:50 +00:00
av_log(avctx, AV_LOG_ERROR, "buf size too small (%d)\n", buf_size);
2012-11-15 09:26:36 +01:00
return AVERROR_INVALIDDATA;
2005-11-30 01:40:50 +00:00
}
2012-11-15 09:23:55 +01:00
if (bytestream_get_byte(&buf) != 'B' ||
bytestream_get_byte(&buf) != 'M') {
2005-11-30 01:40:50 +00:00
av_log(avctx, AV_LOG_ERROR, "bad magic number\n");
2012-11-15 09:26:36 +01:00
return AVERROR_INVALIDDATA;
2005-11-30 01:40:50 +00:00
}
fsize = bytestream_get_le32(&buf);
2012-11-15 09:23:55 +01:00
if (buf_size < fsize) {
2014-03-13 12:13:33 +01:00
av_log(avctx, AV_LOG_ERROR, "not enough data (%d < %u), trying to decode anyway\n",
2005-11-30 01:40:50 +00:00
buf_size, fsize);
fsize = buf_size;
2005-11-30 01:40:50 +00:00
}
buf += 2; /* reserved1 */
buf += 2; /* reserved2 */
2005-11-30 01:40:50 +00:00
2012-11-15 09:23:55 +01:00
hsize = bytestream_get_le32(&buf); /* header size */
ihsize = bytestream_get_le32(&buf); /* more header size */
if (ihsize + 14LL > hsize) {
2014-03-13 12:13:33 +01:00
av_log(avctx, AV_LOG_ERROR, "invalid header size %u\n", hsize);
2012-11-15 09:26:36 +01:00
return AVERROR_INVALIDDATA;
2005-11-30 01:40:50 +00:00
}
/* sometimes file size is set to some headers size, set a real size in that case */
2012-11-15 09:23:55 +01:00
if (fsize == 14 || fsize == ihsize + 14)
fsize = buf_size - 2;
2012-11-15 09:23:55 +01:00
if (fsize <= hsize) {
2014-03-13 12:13:33 +01:00
av_log(avctx, AV_LOG_ERROR,
"Declared file size is less than header size (%u < %u)\n",
fsize, hsize);
2012-11-15 09:26:36 +01:00
return AVERROR_INVALIDDATA;
}
2012-11-15 09:23:55 +01:00
switch (ihsize) {
case 40: // windib
case 56: // windib v3
2008-11-24 10:53:13 +00:00
case 64: // OS/2 v2
case 108: // windib v4
case 124: // windib v5
2012-11-15 09:23:55 +01:00
width = bytestream_get_le32(&buf);
2008-04-14 13:15:16 +00:00
height = bytestream_get_le32(&buf);
2008-11-24 10:53:13 +00:00
break;
case 12: // OS/2 v1
2008-04-14 13:13:08 +00:00
width = bytestream_get_le16(&buf);
height = bytestream_get_le16(&buf);
2008-11-24 10:53:13 +00:00
break;
default:
2008-09-18 14:08:44 +00:00
av_log(avctx, AV_LOG_ERROR, "unsupported BMP file, patch welcome\n");
2012-11-15 09:26:36 +01:00
return AVERROR_PATCHWELCOME;
2008-04-14 13:13:08 +00:00
}
2005-11-30 01:40:50 +00:00
2012-11-15 09:23:55 +01:00
/* planes */
if (bytestream_get_le16(&buf) != 1) {
2005-11-30 01:40:50 +00:00
av_log(avctx, AV_LOG_ERROR, "invalid BMP header\n");
2012-11-15 09:26:36 +01:00
return AVERROR_INVALIDDATA;
2005-11-30 01:40:50 +00:00
}
depth = bytestream_get_le16(&buf);
2005-11-30 01:40:50 +00:00
if (ihsize >= 40)
comp = bytestream_get_le32(&buf);
2005-11-30 01:40:50 +00:00
else
comp = BMP_RGB;
2012-11-15 09:23:55 +01:00
if (comp != BMP_RGB && comp != BMP_BITFIELDS && comp != BMP_RLE4 &&
comp != BMP_RLE8) {
2005-11-30 01:40:50 +00:00
av_log(avctx, AV_LOG_ERROR, "BMP coding %d not supported\n", comp);
2012-11-15 09:26:36 +01:00
return AVERROR_INVALIDDATA;
2005-11-30 01:40:50 +00:00
}
2012-11-15 09:23:55 +01:00
if (comp == BMP_BITFIELDS) {
buf += 20;
rgb[0] = bytestream_get_le32(&buf);
rgb[1] = bytestream_get_le32(&buf);
rgb[2] = bytestream_get_le32(&buf);
if (ihsize > 40)
alpha = bytestream_get_le32(&buf);
2005-11-30 01:40:50 +00:00
}
2012-11-15 09:23:55 +01:00
avctx->width = width;
avctx->height = height > 0 ? height : -(unsigned)height;
2005-11-30 01:40:50 +00:00
avctx->pix_fmt = AV_PIX_FMT_NONE;
2005-11-30 01:40:50 +00:00
2012-11-15 09:23:55 +01:00
switch (depth) {
2005-11-30 01:40:50 +00:00
case 32:
2012-11-15 09:23:55 +01:00
if (comp == BMP_BITFIELDS) {
if (rgb[0] == 0xFF000000 && rgb[1] == 0x00FF0000 && rgb[2] == 0x0000FF00)
avctx->pix_fmt = alpha ? AV_PIX_FMT_ABGR : AV_PIX_FMT_0BGR;
else if (rgb[0] == 0x00FF0000 && rgb[1] == 0x0000FF00 && rgb[2] == 0x000000FF)
avctx->pix_fmt = alpha ? AV_PIX_FMT_BGRA : AV_PIX_FMT_BGR0;
else if (rgb[0] == 0x0000FF00 && rgb[1] == 0x00FF0000 && rgb[2] == 0xFF000000)
avctx->pix_fmt = alpha ? AV_PIX_FMT_ARGB : AV_PIX_FMT_0RGB;
else if (rgb[0] == 0x000000FF && rgb[1] == 0x0000FF00 && rgb[2] == 0x00FF0000)
avctx->pix_fmt = alpha ? AV_PIX_FMT_RGBA : AV_PIX_FMT_RGB0;
else {
av_log(avctx, AV_LOG_ERROR, "Unknown bitfields %0X %0X %0X\n", rgb[0], rgb[1], rgb[2]);
return AVERROR(EINVAL);
2005-11-30 01:40:50 +00:00
}
} else {
avctx->pix_fmt = AV_PIX_FMT_BGRA;
2005-11-30 01:40:50 +00:00
}
break;
case 24:
avctx->pix_fmt = AV_PIX_FMT_BGR24;
2005-11-30 01:40:50 +00:00
break;
case 16:
2012-11-15 09:23:55 +01:00
if (comp == BMP_RGB)
avctx->pix_fmt = AV_PIX_FMT_RGB555;
else if (comp == BMP_BITFIELDS) {
if (rgb[0] == 0xF800 && rgb[1] == 0x07E0 && rgb[2] == 0x001F)
avctx->pix_fmt = AV_PIX_FMT_RGB565;
else if (rgb[0] == 0x7C00 && rgb[1] == 0x03E0 && rgb[2] == 0x001F)
avctx->pix_fmt = AV_PIX_FMT_RGB555;
else if (rgb[0] == 0x0F00 && rgb[1] == 0x00F0 && rgb[2] == 0x000F)
avctx->pix_fmt = AV_PIX_FMT_RGB444;
else {
2014-03-13 12:13:33 +01:00
av_log(avctx, AV_LOG_ERROR,
"Unknown bitfields %0"PRIX32" %0"PRIX32" %0"PRIX32"\n",
rgb[0], rgb[1], rgb[2]);
return AVERROR(EINVAL);
}
}
break;
case 8:
2012-11-15 09:23:55 +01:00
if (hsize - ihsize - 14 > 0)
avctx->pix_fmt = AV_PIX_FMT_PAL8;
else
avctx->pix_fmt = AV_PIX_FMT_GRAY8;
break;
case 1:
case 4:
2012-11-15 09:23:55 +01:00
if (hsize - ihsize - 14 > 0) {
avctx->pix_fmt = AV_PIX_FMT_PAL8;
2012-11-15 09:23:55 +01:00
} else {
2014-03-13 12:13:33 +01:00
av_log(avctx, AV_LOG_ERROR, "Unknown palette for %u-colour BMP\n",
1 << depth);
2012-11-15 09:26:36 +01:00
return AVERROR_INVALIDDATA;
}
break;
2005-11-30 01:40:50 +00:00
default:
2014-03-13 12:13:33 +01:00
av_log(avctx, AV_LOG_ERROR, "depth %u not supported\n", depth);
2012-11-15 09:26:36 +01:00
return AVERROR_INVALIDDATA;
2005-11-30 01:40:50 +00:00
}
2012-11-15 09:23:55 +01:00
if (avctx->pix_fmt == AV_PIX_FMT_NONE) {
2005-11-30 01:40:50 +00:00
av_log(avctx, AV_LOG_ERROR, "unsupported pixel format\n");
2012-11-15 09:26:36 +01:00
return AVERROR_INVALIDDATA;
2005-11-30 01:40:50 +00:00
}
if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
2012-11-15 09:26:36 +01:00
return ret;
p->pict_type = AV_PICTURE_TYPE_I;
2005-11-30 01:40:50 +00:00
p->key_frame = 1;
2012-11-15 09:23:55 +01:00
buf = buf0 + hsize;
2005-11-30 01:40:50 +00:00
dsize = buf_size - hsize;
2006-10-30 20:43:07 +00:00
/* Line size in file multiple of 4 */
2011-12-15 19:23:07 +01:00
n = ((avctx->width * depth + 31) / 8) & ~3;
2005-11-30 01:40:50 +00:00
2012-11-15 09:23:55 +01:00
if (n * avctx->height > dsize && comp != BMP_RLE4 && comp != BMP_RLE8) {
n = (avctx->width * depth + 7) / 8;
if (n * avctx->height > dsize) {
av_log(avctx, AV_LOG_ERROR, "not enough data (%d < %d)\n",
dsize, n * avctx->height);
return AVERROR_INVALIDDATA;
}
av_log(avctx, AV_LOG_ERROR, "data size too small, assuming missing line alignment\n");
2005-11-30 01:40:50 +00:00
}
2008-09-23 08:45:12 +00:00
// RLE may skip decoding some picture areas, so blank picture before decoding
2012-11-15 09:23:55 +01:00
if (comp == BMP_RLE4 || comp == BMP_RLE8)
2008-09-23 08:45:12 +00:00
memset(p->data[0], 0, avctx->height * p->linesize[0]);
2012-11-15 09:23:55 +01:00
if (height > 0) {
ptr = p->data[0] + (avctx->height - 1) * p->linesize[0];
2005-11-30 01:40:50 +00:00
linesize = -p->linesize[0];
} else {
2012-11-15 09:23:55 +01:00
ptr = p->data[0];
2005-11-30 01:40:50 +00:00
linesize = p->linesize[0];
}
2012-11-15 09:23:55 +01:00
if (avctx->pix_fmt == AV_PIX_FMT_PAL8) {
int colors = 1 << depth;
2012-09-16 08:33:09 +02:00
memset(p->data[1], 0, 1024);
2012-11-15 09:23:55 +01:00
if (ihsize >= 36) {
int t;
buf = buf0 + 46;
2012-11-15 09:23:55 +01:00
t = bytestream_get_le32(&buf);
if (t < 0 || t > (1 << depth)) {
2014-03-13 12:13:33 +01:00
av_log(avctx, AV_LOG_ERROR,
"Incorrect number of colors - %X for bitdepth %u\n",
t, depth);
2012-11-15 09:23:55 +01:00
} else if (t) {
colors = t;
}
} else {
colors = FFMIN(256, (hsize-ihsize-14) / 3);
}
buf = buf0 + 14 + ihsize; //palette location
2012-11-15 09:23:55 +01:00
// OS/2 bitmap, 3 bytes per palette entry
if ((hsize-ihsize-14) < (colors << 2)) {
if ((hsize-ihsize-14) < colors * 3) {
2013-06-28 17:24:26 -07:00
av_log(avctx, AV_LOG_ERROR, "palette doesn't fit in packet\n");
return AVERROR_INVALIDDATA;
}
2012-11-15 09:23:55 +01:00
for (i = 0; i < colors; i++)
((uint32_t*)p->data[1])[i] = (0xFFU<<24) | bytestream_get_le24(&buf);
2012-11-15 09:23:55 +01:00
} else {
for (i = 0; i < colors; i++)
((uint32_t*)p->data[1])[i] = 0xFFU << 24 | bytestream_get_le32(&buf);
}
buf = buf0 + hsize;
}
2012-11-15 09:23:55 +01:00
if (comp == BMP_RLE4 || comp == BMP_RLE8) {
2013-07-18 09:36:05 +02:00
if (comp == BMP_RLE8 && height < 0) {
2012-11-15 09:23:55 +01:00
p->data[0] += p->linesize[0] * (avctx->height - 1);
p->linesize[0] = -p->linesize[0];
}
bytestream2_init(&gb, buf, dsize);
2015-10-14 11:33:18 +02:00
ff_msrle_decode(avctx, p, depth, &gb);
2012-11-15 09:23:55 +01:00
if (height < 0) {
p->data[0] += p->linesize[0] * (avctx->height - 1);
p->linesize[0] = -p->linesize[0];
}
2012-11-15 09:23:55 +01:00
} else {
switch (depth) {
2008-09-23 08:45:46 +00:00
case 1:
2011-11-10 23:07:27 +01:00
for (i = 0; i < avctx->height; i++) {
int j;
2011-11-10 23:07:27 +01:00
for (j = 0; j < n; j++) {
ptr[j*8+0] = buf[j] >> 7;
ptr[j*8+1] = (buf[j] >> 6) & 1;
ptr[j*8+2] = (buf[j] >> 5) & 1;
ptr[j*8+3] = (buf[j] >> 4) & 1;
ptr[j*8+4] = (buf[j] >> 3) & 1;
ptr[j*8+5] = (buf[j] >> 2) & 1;
ptr[j*8+6] = (buf[j] >> 1) & 1;
ptr[j*8+7] = buf[j] & 1;
}
buf += n;
ptr += linesize;
}
break;
case 8:
case 24:
case 32:
2012-11-15 09:23:55 +01:00
for (i = 0; i < avctx->height; i++) {
2008-09-23 08:45:46 +00:00
memcpy(ptr, buf, n);
buf += n;
ptr += linesize;
}
2008-09-23 08:45:46 +00:00
break;
case 4:
2012-11-15 09:23:55 +01:00
for (i = 0; i < avctx->height; i++) {
2008-09-23 08:45:46 +00:00
int j;
2012-11-15 09:23:55 +01:00
for (j = 0; j < n; j++) {
2008-09-23 08:45:46 +00:00
ptr[j*2+0] = (buf[j] >> 4) & 0xF;
ptr[j*2+1] = buf[j] & 0xF;
}
buf += n;
ptr += linesize;
}
break;
case 16:
2012-11-15 09:23:55 +01:00
for (i = 0; i < avctx->height; i++) {
2008-09-23 08:45:46 +00:00
const uint16_t *src = (const uint16_t *) buf;
2012-11-15 09:23:55 +01:00
uint16_t *dst = (uint16_t *) ptr;
2005-11-30 01:40:50 +00:00
2012-11-15 09:23:55 +01:00
for (j = 0; j < avctx->width; j++)
2010-07-10 22:12:30 +00:00
*dst++ = av_le2ne16(*src++);
2005-11-30 01:40:50 +00:00
2008-09-23 08:45:46 +00:00
buf += n;
ptr += linesize;
2005-11-30 01:40:50 +00:00
}
2008-09-23 08:45:46 +00:00
break;
default:
av_log(avctx, AV_LOG_ERROR, "BMP decoder is broken\n");
2012-11-15 09:26:36 +01:00
return AVERROR_INVALIDDATA;
2005-11-30 01:40:50 +00:00
}
2008-09-23 08:45:12 +00:00
}
if (avctx->pix_fmt == AV_PIX_FMT_BGRA) {
for (i = 0; i < avctx->height; i++) {
int j;
uint8_t *ptr = p->data[0] + p->linesize[0]*i + 3;
for (j = 0; j < avctx->width; j++) {
if (ptr[4*j])
break;
}
if (j < avctx->width)
break;
}
if (i == avctx->height)
avctx->pix_fmt = p->format = AV_PIX_FMT_BGR0;
}
2005-11-30 01:40:50 +00:00
*got_frame = 1;
2005-11-30 01:40:50 +00:00
return buf_size;
}
AVCodec ff_bmp_decoder = {
.name = "bmp",
.long_name = NULL_IF_CONFIG_SMALL("BMP (Windows and OS/2 bitmap)"),
.type = AVMEDIA_TYPE_VIDEO,
2012-08-05 11:11:04 +02:00
.id = AV_CODEC_ID_BMP,
.decode = bmp_decode_frame,
2015-07-07 01:41:27 +01:00
.capabilities = AV_CODEC_CAP_DR1,
2005-11-30 01:40:50 +00:00
};