bmp.c 6.76 KB
Newer Older
Måns Rullgård's avatar
Måns Rullgård committed
1
/*
2
 * BMP image format decoder
Måns Rullgård's avatar
Måns Rullgård committed
3 4
 * Copyright (c) 2005 Mans Rullgard
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
Måns Rullgård's avatar
Måns Rullgård committed
8 9
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
Måns Rullgård's avatar
Måns Rullgård committed
11
 *
12
 * FFmpeg is distributed in the hope that it will be useful,
Måns Rullgård's avatar
Måns Rullgård committed
13 14 15 16 17
 * 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
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
Måns Rullgård's avatar
Måns Rullgård committed
20 21 22
 */

#include "avcodec.h"
23
#include "bytestream.h"
24
#include "bmp.h"
Måns Rullgård's avatar
Måns Rullgård committed
25

26
static av_cold int bmp_decode_init(AVCodecContext *avctx){
Måns Rullgård's avatar
Måns Rullgård committed
27 28 29 30 31 32 33 34
    BMPContext *s = avctx->priv_data;

    avcodec_get_frame_defaults((AVFrame*)&s->picture);
    avctx->coded_frame = (AVFrame*)&s->picture;

    return 0;
}

35
static int bmp_decode_frame(AVCodecContext *avctx,
Måns Rullgård's avatar
Måns Rullgård committed
36
                            void *data, int *data_size,
Michael Niedermayer's avatar
Michael Niedermayer committed
37
                            const uint8_t *buf, int buf_size)
Måns Rullgård's avatar
Måns Rullgård committed
38 39 40 41 42 43 44
{
    BMPContext *s = avctx->priv_data;
    AVFrame *picture = data;
    AVFrame *p = &s->picture;
    unsigned int fsize, hsize;
    int width, height;
    unsigned int depth;
Michael Niedermayer's avatar
Michael Niedermayer committed
45
    BiCompression comp;
Måns Rullgård's avatar
Måns Rullgård committed
46 47 48 49 50
    unsigned int ihsize;
    int i, j, n, linesize;
    uint32_t rgb[3];
    uint8_t *ptr;
    int dsize;
Michael Niedermayer's avatar
Michael Niedermayer committed
51
    const uint8_t *buf0 = buf;
Måns Rullgård's avatar
Måns Rullgård committed
52 53 54 55 56 57

    if(buf_size < 14){
        av_log(avctx, AV_LOG_ERROR, "buf size too small (%d)\n", buf_size);
        return -1;
    }

58 59
    if(bytestream_get_byte(&buf) != 'B' ||
       bytestream_get_byte(&buf) != 'M') {
Måns Rullgård's avatar
Måns Rullgård committed
60 61 62 63
        av_log(avctx, AV_LOG_ERROR, "bad magic number\n");
        return -1;
    }

64
    fsize = bytestream_get_le32(&buf);
Måns Rullgård's avatar
Måns Rullgård committed
65 66 67 68 69 70
    if(buf_size < fsize){
        av_log(avctx, AV_LOG_ERROR, "not enough data (%d < %d)\n",
               buf_size, fsize);
        return -1;
    }

71 72
    buf += 2; /* reserved1 */
    buf += 2; /* reserved2 */
Måns Rullgård's avatar
Måns Rullgård committed
73

74
    hsize = bytestream_get_le32(&buf); /* header size */
Måns Rullgård's avatar
Måns Rullgård committed
75 76 77 78 79 80
    if(fsize <= hsize){
        av_log(avctx, AV_LOG_ERROR, "not enough data (%d < %d)\n",
               fsize, hsize);
        return -1;
    }

81
    ihsize = bytestream_get_le32(&buf);       /* more header size */
Måns Rullgård's avatar
Måns Rullgård committed
82 83 84 85 86
    if(ihsize + 14 > hsize){
        av_log(avctx, AV_LOG_ERROR, "invalid header size %d\n", hsize);
        return -1;
    }

Benoit Fouet's avatar
Benoit Fouet committed
87
    if (ihsize == 40) {
Benoit Fouet's avatar
Benoit Fouet committed
88 89
        width = bytestream_get_le32(&buf);
        height = bytestream_get_le32(&buf);
Benoit Fouet's avatar
Benoit Fouet committed
90 91 92 93 94 95 96
    } else if (ihsize == 12) {
        width  = bytestream_get_le16(&buf);
        height = bytestream_get_le16(&buf);
    } else {
        av_log(avctx, AV_LOG_ERROR, "unsupported BMP file, patch welcome");
        return -1;
    }
Måns Rullgård's avatar
Måns Rullgård committed
97

98
    if(bytestream_get_le16(&buf) != 1){ /* planes */
Måns Rullgård's avatar
Måns Rullgård committed
99 100 101 102
        av_log(avctx, AV_LOG_ERROR, "invalid BMP header\n");
        return -1;
    }

103
    depth = bytestream_get_le16(&buf);
Måns Rullgård's avatar
Måns Rullgård committed
104

Benoit Fouet's avatar
Benoit Fouet committed
105
    if(ihsize == 40)
106
        comp = bytestream_get_le32(&buf);
Måns Rullgård's avatar
Måns Rullgård committed
107 108 109 110 111 112 113 114 115
    else
        comp = BMP_RGB;

    if(comp != BMP_RGB && comp != BMP_BITFIELDS){
        av_log(avctx, AV_LOG_ERROR, "BMP coding %d not supported\n", comp);
        return -1;
    }

    if(comp == BMP_BITFIELDS){
116 117 118 119
        buf += 20;
        rgb[0] = bytestream_get_le32(&buf);
        rgb[1] = bytestream_get_le32(&buf);
        rgb[2] = bytestream_get_le32(&buf);
Måns Rullgård's avatar
Måns Rullgård committed
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
    }

    avctx->width = width;
    avctx->height = height > 0? height: -height;

    avctx->pix_fmt = PIX_FMT_NONE;

    switch(depth){
    case 32:
        if(comp == BMP_BITFIELDS){
            rgb[0] = (rgb[0] >> 15) & 3;
            rgb[1] = (rgb[1] >> 15) & 3;
            rgb[2] = (rgb[2] >> 15) & 3;

            if(rgb[0] + rgb[1] + rgb[2] != 3 ||
               rgb[0] == rgb[1] || rgb[0] == rgb[2] || rgb[1] == rgb[2]){
                break;
            }
        } else {
            rgb[0] = 2;
            rgb[1] = 1;
            rgb[2] = 0;
        }

        avctx->pix_fmt = PIX_FMT_BGR24;
        break;
    case 24:
        avctx->pix_fmt = PIX_FMT_BGR24;
        break;
    case 16:
        if(comp == BMP_RGB)
            avctx->pix_fmt = PIX_FMT_RGB555;
        break;
    default:
        av_log(avctx, AV_LOG_ERROR, "depth %d not supported\n", depth);
        return -1;
    }

    if(avctx->pix_fmt == PIX_FMT_NONE){
        av_log(avctx, AV_LOG_ERROR, "unsupported pixel format\n");
        return -1;
    }

163 164 165
    if(p->data[0])
        avctx->release_buffer(avctx, p);

Måns Rullgård's avatar
Måns Rullgård committed
166 167 168 169 170 171 172 173
    p->reference = 0;
    if(avctx->get_buffer(avctx, p) < 0){
        av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
        return -1;
    }
    p->pict_type = FF_I_TYPE;
    p->key_frame = 1;

174
    buf = buf0 + hsize;
Måns Rullgård's avatar
Måns Rullgård committed
175 176
    dsize = buf_size - hsize;

177 178
    /* Line size in file multiple of 4 */
    n = (avctx->width * (depth / 8) + 3) & ~3;
Måns Rullgård's avatar
Måns Rullgård committed
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196

    if(n * avctx->height > dsize){
        av_log(avctx, AV_LOG_ERROR, "not enough data (%d < %d)\n",
               dsize, n * avctx->height);
        return -1;
    }

    if(height > 0){
        ptr = p->data[0] + (avctx->height - 1) * p->linesize[0];
        linesize = -p->linesize[0];
    } else {
        ptr = p->data[0];
        linesize = p->linesize[0];
    }

    switch(depth){
    case 24:
        for(i = 0; i < avctx->height; i++){
197
            memcpy(ptr, buf, avctx->width*(depth>>3));
Måns Rullgård's avatar
Måns Rullgård committed
198 199 200 201 202 203
            buf += n;
            ptr += linesize;
        }
        break;
    case 16:
        for(i = 0; i < avctx->height; i++){
Michael Niedermayer's avatar
Michael Niedermayer committed
204
            const uint16_t *src = (const uint16_t *) buf;
Måns Rullgård's avatar
Måns Rullgård committed
205 206 207 208 209 210 211 212 213 214 215
            uint16_t *dst = (uint16_t *) ptr;

            for(j = 0; j < avctx->width; j++)
                *dst++ = le2me_16(*src++);

            buf += n;
            ptr += linesize;
        }
        break;
    case 32:
        for(i = 0; i < avctx->height; i++){
Michael Niedermayer's avatar
Michael Niedermayer committed
216
            const uint8_t *src = buf;
Måns Rullgård's avatar
Måns Rullgård committed
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
            uint8_t *dst = ptr;

            for(j = 0; j < avctx->width; j++){
                dst[0] = src[rgb[2]];
                dst[1] = src[rgb[1]];
                dst[2] = src[rgb[0]];
                dst += 3;
                src += 4;
            }

            buf += n;
            ptr += linesize;
        }
        break;
    default:
        av_log(avctx, AV_LOG_ERROR, "BMP decoder is broken\n");
        return -1;
    }

    *picture = s->picture;
    *data_size = sizeof(AVPicture);

    return buf_size;
}

242
static av_cold int bmp_decode_end(AVCodecContext *avctx)
243 244 245 246 247 248 249 250 251
{
    BMPContext* c = avctx->priv_data;

    if (c->picture.data[0])
        avctx->release_buffer(avctx, &c->picture);

    return 0;
}

Måns Rullgård's avatar
Måns Rullgård committed
252 253 254 255 256 257 258
AVCodec bmp_decoder = {
    "bmp",
    CODEC_TYPE_VIDEO,
    CODEC_ID_BMP,
    sizeof(BMPContext),
    bmp_decode_init,
    NULL,
259
    bmp_decode_end,
260
    bmp_decode_frame,
261
    .long_name = NULL_IF_CONFIG_SMALL("BMP image"),
Måns Rullgård's avatar
Måns Rullgård committed
262
};