]> git.sesse.net Git - ffmpeg/blob - libavcodec/bmpenc.c
Gather all coded_frame allocations and free functions to a single place
[ffmpeg] / libavcodec / bmpenc.c
1 /*
2  * BMP image format encoder
3  * Copyright (c) 2006, 2007 Michel Bardiaux
4  * Copyright (c) 2009 Daniel Verkamp <daniel at drv.nu>
5  *
6  * This file is part of Libav.
7  *
8  * Libav is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * Libav is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with Libav; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #include "libavutil/imgutils.h"
24 #include "avcodec.h"
25 #include "bytestream.h"
26 #include "bmp.h"
27 #include "internal.h"
28
29 static const uint32_t monoblack_pal[] = { 0x000000, 0xFFFFFF };
30 static const uint32_t rgb565_masks[]  = { 0xF800, 0x07E0, 0x001F };
31 static const uint32_t rgb444_masks[]  = { 0x0F00, 0x00F0, 0x000F };
32
33 static av_cold int bmp_encode_init(AVCodecContext *avctx){
34     switch (avctx->pix_fmt) {
35     case AV_PIX_FMT_BGR24:
36         avctx->bits_per_coded_sample = 24;
37         break;
38     case AV_PIX_FMT_RGB555:
39     case AV_PIX_FMT_RGB565:
40     case AV_PIX_FMT_RGB444:
41         avctx->bits_per_coded_sample = 16;
42         break;
43     case AV_PIX_FMT_RGB8:
44     case AV_PIX_FMT_BGR8:
45     case AV_PIX_FMT_RGB4_BYTE:
46     case AV_PIX_FMT_BGR4_BYTE:
47     case AV_PIX_FMT_GRAY8:
48     case AV_PIX_FMT_PAL8:
49         avctx->bits_per_coded_sample = 8;
50         break;
51     case AV_PIX_FMT_MONOBLACK:
52         avctx->bits_per_coded_sample = 1;
53         break;
54     default:
55         av_log(avctx, AV_LOG_INFO, "unsupported pixel format\n");
56         return -1;
57     }
58
59     return 0;
60 }
61
62 static int bmp_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
63                             const AVFrame *pict, int *got_packet)
64 {
65     const AVFrame * const p = pict;
66     int n_bytes_image, n_bytes_per_row, n_bytes, i, n, hsize, ret;
67     const uint32_t *pal = NULL;
68     int pad_bytes_per_row, pal_entries = 0, compression = BMP_RGB;
69     int bit_count = avctx->bits_per_coded_sample;
70     uint8_t *ptr, *buf;
71
72     avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
73     avctx->coded_frame->key_frame = 1;
74     switch (avctx->pix_fmt) {
75     case AV_PIX_FMT_RGB444:
76         compression = BMP_BITFIELDS;
77         pal = rgb444_masks; // abuse pal to hold color masks
78         pal_entries = 3;
79         break;
80     case AV_PIX_FMT_RGB565:
81         compression = BMP_BITFIELDS;
82         pal = rgb565_masks; // abuse pal to hold color masks
83         pal_entries = 3;
84         break;
85     case AV_PIX_FMT_RGB8:
86     case AV_PIX_FMT_BGR8:
87     case AV_PIX_FMT_RGB4_BYTE:
88     case AV_PIX_FMT_BGR4_BYTE:
89     case AV_PIX_FMT_GRAY8:
90         avpriv_set_systematic_pal2((uint32_t*)p->data[1], avctx->pix_fmt);
91     case AV_PIX_FMT_PAL8:
92         pal = (uint32_t *)p->data[1];
93         break;
94     case AV_PIX_FMT_MONOBLACK:
95         pal = monoblack_pal;
96         break;
97     }
98     if (pal && !pal_entries) pal_entries = 1 << bit_count;
99     n_bytes_per_row = ((int64_t)avctx->width * (int64_t)bit_count + 7LL) >> 3LL;
100     pad_bytes_per_row = (4 - n_bytes_per_row) & 3;
101     n_bytes_image = avctx->height * (n_bytes_per_row + pad_bytes_per_row);
102
103     // STRUCTURE.field refer to the MSVC documentation for BITMAPFILEHEADER
104     // and related pages.
105 #define SIZE_BITMAPFILEHEADER 14
106 #define SIZE_BITMAPINFOHEADER 40
107     hsize = SIZE_BITMAPFILEHEADER + SIZE_BITMAPINFOHEADER + (pal_entries << 2);
108     n_bytes = n_bytes_image + hsize;
109     if ((ret = ff_alloc_packet(pkt, n_bytes)) < 0) {
110         av_log(avctx, AV_LOG_ERROR, "Error getting output packet.\n");
111         return ret;
112     }
113     buf = pkt->data;
114     bytestream_put_byte(&buf, 'B');                   // BITMAPFILEHEADER.bfType
115     bytestream_put_byte(&buf, 'M');                   // do.
116     bytestream_put_le32(&buf, n_bytes);               // BITMAPFILEHEADER.bfSize
117     bytestream_put_le16(&buf, 0);                     // BITMAPFILEHEADER.bfReserved1
118     bytestream_put_le16(&buf, 0);                     // BITMAPFILEHEADER.bfReserved2
119     bytestream_put_le32(&buf, hsize);                 // BITMAPFILEHEADER.bfOffBits
120     bytestream_put_le32(&buf, SIZE_BITMAPINFOHEADER); // BITMAPINFOHEADER.biSize
121     bytestream_put_le32(&buf, avctx->width);          // BITMAPINFOHEADER.biWidth
122     bytestream_put_le32(&buf, avctx->height);         // BITMAPINFOHEADER.biHeight
123     bytestream_put_le16(&buf, 1);                     // BITMAPINFOHEADER.biPlanes
124     bytestream_put_le16(&buf, bit_count);             // BITMAPINFOHEADER.biBitCount
125     bytestream_put_le32(&buf, compression);           // BITMAPINFOHEADER.biCompression
126     bytestream_put_le32(&buf, n_bytes_image);         // BITMAPINFOHEADER.biSizeImage
127     bytestream_put_le32(&buf, 0);                     // BITMAPINFOHEADER.biXPelsPerMeter
128     bytestream_put_le32(&buf, 0);                     // BITMAPINFOHEADER.biYPelsPerMeter
129     bytestream_put_le32(&buf, 0);                     // BITMAPINFOHEADER.biClrUsed
130     bytestream_put_le32(&buf, 0);                     // BITMAPINFOHEADER.biClrImportant
131     for (i = 0; i < pal_entries; i++)
132         bytestream_put_le32(&buf, pal[i] & 0xFFFFFF);
133     // BMP files are bottom-to-top so we start from the end...
134     ptr = p->data[0] + (avctx->height - 1) * p->linesize[0];
135     buf = pkt->data + hsize;
136     for(i = 0; i < avctx->height; i++) {
137         if (bit_count == 16) {
138             const uint16_t *src = (const uint16_t *) ptr;
139             uint16_t *dst = (uint16_t *) buf;
140             for(n = 0; n < avctx->width; n++)
141                 AV_WL16(dst + n, src[n]);
142         } else {
143             memcpy(buf, ptr, n_bytes_per_row);
144         }
145         buf += n_bytes_per_row;
146         memset(buf, 0, pad_bytes_per_row);
147         buf += pad_bytes_per_row;
148         ptr -= p->linesize[0]; // ... and go back
149     }
150
151     pkt->flags |= AV_PKT_FLAG_KEY;
152     *got_packet = 1;
153     return 0;
154 }
155
156 AVCodec ff_bmp_encoder = {
157     .name           = "bmp",
158     .long_name      = NULL_IF_CONFIG_SMALL("BMP (Windows and OS/2 bitmap)"),
159     .type           = AVMEDIA_TYPE_VIDEO,
160     .id             = AV_CODEC_ID_BMP,
161     .init           = bmp_encode_init,
162     .encode2        = bmp_encode_frame,
163     .pix_fmts       = (const enum AVPixelFormat[]){
164         AV_PIX_FMT_BGR24,
165         AV_PIX_FMT_RGB555, AV_PIX_FMT_RGB444, AV_PIX_FMT_RGB565,
166         AV_PIX_FMT_RGB8, AV_PIX_FMT_BGR8, AV_PIX_FMT_RGB4_BYTE, AV_PIX_FMT_BGR4_BYTE, AV_PIX_FMT_GRAY8, AV_PIX_FMT_PAL8,
167         AV_PIX_FMT_MONOBLACK,
168         AV_PIX_FMT_NONE
169     },
170 };