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.

185 lines
6.9KB

  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 FFmpeg.
  7. *
  8. * FFmpeg 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. * FFmpeg 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 FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "libavutil/imgutils.h"
  23. #include "avcodec.h"
  24. #include "bytestream.h"
  25. #include "bmp.h"
  26. #include <assert.h>
  27. #include "internal.h"
  28. static const uint32_t monoblack_pal[] = { 0x000000, 0xFFFFFF };
  29. static const uint32_t rgb565_masks[] = { 0xF800, 0x07E0, 0x001F };
  30. static const uint32_t rgb444_masks[] = { 0x0F00, 0x00F0, 0x000F };
  31. static av_cold int bmp_encode_init(AVCodecContext *avctx){
  32. BMPContext *s = avctx->priv_data;
  33. avcodec_get_frame_defaults((AVFrame*)&s->picture);
  34. avctx->coded_frame = (AVFrame*)&s->picture;
  35. switch (avctx->pix_fmt) {
  36. case PIX_FMT_BGRA:
  37. avctx->bits_per_coded_sample = 32;
  38. break;
  39. case PIX_FMT_BGR24:
  40. avctx->bits_per_coded_sample = 24;
  41. break;
  42. case PIX_FMT_RGB555:
  43. case PIX_FMT_RGB565:
  44. case PIX_FMT_RGB444:
  45. avctx->bits_per_coded_sample = 16;
  46. break;
  47. case PIX_FMT_RGB8:
  48. case PIX_FMT_BGR8:
  49. case PIX_FMT_RGB4_BYTE:
  50. case PIX_FMT_BGR4_BYTE:
  51. case PIX_FMT_GRAY8:
  52. case PIX_FMT_PAL8:
  53. avctx->bits_per_coded_sample = 8;
  54. break;
  55. case PIX_FMT_MONOBLACK:
  56. avctx->bits_per_coded_sample = 1;
  57. break;
  58. default:
  59. av_log(avctx, AV_LOG_INFO, "unsupported pixel format\n");
  60. return -1;
  61. }
  62. return 0;
  63. }
  64. static int bmp_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
  65. const AVFrame *pict, int *got_packet)
  66. {
  67. BMPContext *s = avctx->priv_data;
  68. AVFrame * const p= (AVFrame*)&s->picture;
  69. int n_bytes_image, n_bytes_per_row, n_bytes, i, n, hsize, ret;
  70. const uint32_t *pal = NULL;
  71. uint32_t palette256[256];
  72. int pad_bytes_per_row, pal_entries = 0, compression = BMP_RGB;
  73. int bit_count = avctx->bits_per_coded_sample;
  74. uint8_t *ptr, *buf;
  75. *p = *pict;
  76. p->pict_type= AV_PICTURE_TYPE_I;
  77. p->key_frame= 1;
  78. switch (avctx->pix_fmt) {
  79. case PIX_FMT_RGB444:
  80. compression = BMP_BITFIELDS;
  81. pal = rgb444_masks; // abuse pal to hold color masks
  82. pal_entries = 3;
  83. break;
  84. case PIX_FMT_RGB565:
  85. compression = BMP_BITFIELDS;
  86. pal = rgb565_masks; // abuse pal to hold color masks
  87. pal_entries = 3;
  88. break;
  89. case PIX_FMT_RGB8:
  90. case PIX_FMT_BGR8:
  91. case PIX_FMT_RGB4_BYTE:
  92. case PIX_FMT_BGR4_BYTE:
  93. case PIX_FMT_GRAY8:
  94. assert(bit_count == 8);
  95. ff_set_systematic_pal2(palette256, avctx->pix_fmt);
  96. pal = palette256;
  97. break;
  98. case PIX_FMT_PAL8:
  99. pal = (uint32_t *)p->data[1];
  100. break;
  101. case PIX_FMT_MONOBLACK:
  102. pal = monoblack_pal;
  103. break;
  104. }
  105. if (pal && !pal_entries) pal_entries = 1 << bit_count;
  106. n_bytes_per_row = ((int64_t)avctx->width * (int64_t)bit_count + 7LL) >> 3LL;
  107. pad_bytes_per_row = (4 - n_bytes_per_row) & 3;
  108. n_bytes_image = avctx->height * (n_bytes_per_row + pad_bytes_per_row);
  109. // STRUCTURE.field refer to the MSVC documentation for BITMAPFILEHEADER
  110. // and related pages.
  111. #define SIZE_BITMAPFILEHEADER 14
  112. #define SIZE_BITMAPINFOHEADER 40
  113. hsize = SIZE_BITMAPFILEHEADER + SIZE_BITMAPINFOHEADER + (pal_entries << 2);
  114. n_bytes = n_bytes_image + hsize;
  115. if ((ret = ff_alloc_packet(pkt, n_bytes)) < 0) {
  116. av_log(avctx, AV_LOG_ERROR, "Error getting output packet.\n");
  117. return ret;
  118. }
  119. buf = pkt->data;
  120. bytestream_put_byte(&buf, 'B'); // BITMAPFILEHEADER.bfType
  121. bytestream_put_byte(&buf, 'M'); // do.
  122. bytestream_put_le32(&buf, n_bytes); // BITMAPFILEHEADER.bfSize
  123. bytestream_put_le16(&buf, 0); // BITMAPFILEHEADER.bfReserved1
  124. bytestream_put_le16(&buf, 0); // BITMAPFILEHEADER.bfReserved2
  125. bytestream_put_le32(&buf, hsize); // BITMAPFILEHEADER.bfOffBits
  126. bytestream_put_le32(&buf, SIZE_BITMAPINFOHEADER); // BITMAPINFOHEADER.biSize
  127. bytestream_put_le32(&buf, avctx->width); // BITMAPINFOHEADER.biWidth
  128. bytestream_put_le32(&buf, avctx->height); // BITMAPINFOHEADER.biHeight
  129. bytestream_put_le16(&buf, 1); // BITMAPINFOHEADER.biPlanes
  130. bytestream_put_le16(&buf, bit_count); // BITMAPINFOHEADER.biBitCount
  131. bytestream_put_le32(&buf, compression); // BITMAPINFOHEADER.biCompression
  132. bytestream_put_le32(&buf, n_bytes_image); // BITMAPINFOHEADER.biSizeImage
  133. bytestream_put_le32(&buf, 0); // BITMAPINFOHEADER.biXPelsPerMeter
  134. bytestream_put_le32(&buf, 0); // BITMAPINFOHEADER.biYPelsPerMeter
  135. bytestream_put_le32(&buf, 0); // BITMAPINFOHEADER.biClrUsed
  136. bytestream_put_le32(&buf, 0); // BITMAPINFOHEADER.biClrImportant
  137. for (i = 0; i < pal_entries; i++)
  138. bytestream_put_le32(&buf, pal[i] & 0xFFFFFF);
  139. // BMP files are bottom-to-top so we start from the end...
  140. ptr = p->data[0] + (avctx->height - 1) * p->linesize[0];
  141. buf = pkt->data + hsize;
  142. for(i = 0; i < avctx->height; i++) {
  143. if (bit_count == 16) {
  144. const uint16_t *src = (const uint16_t *) ptr;
  145. uint16_t *dst = (uint16_t *) buf;
  146. for(n = 0; n < avctx->width; n++)
  147. AV_WL16(dst + n, src[n]);
  148. } else {
  149. memcpy(buf, ptr, n_bytes_per_row);
  150. }
  151. buf += n_bytes_per_row;
  152. memset(buf, 0, pad_bytes_per_row);
  153. buf += pad_bytes_per_row;
  154. ptr -= p->linesize[0]; // ... and go back
  155. }
  156. pkt->flags |= AV_PKT_FLAG_KEY;
  157. *got_packet = 1;
  158. return 0;
  159. }
  160. AVCodec ff_bmp_encoder = {
  161. .name = "bmp",
  162. .type = AVMEDIA_TYPE_VIDEO,
  163. .id = CODEC_ID_BMP,
  164. .priv_data_size = sizeof(BMPContext),
  165. .init = bmp_encode_init,
  166. .encode2 = bmp_encode_frame,
  167. .pix_fmts = (const enum PixelFormat[]){
  168. PIX_FMT_BGRA, PIX_FMT_BGR24,
  169. PIX_FMT_RGB565, PIX_FMT_RGB555, PIX_FMT_RGB444,
  170. PIX_FMT_RGB8, PIX_FMT_BGR8, PIX_FMT_RGB4_BYTE, PIX_FMT_BGR4_BYTE, PIX_FMT_GRAY8, PIX_FMT_PAL8,
  171. PIX_FMT_MONOBLACK,
  172. PIX_FMT_NONE},
  173. .long_name = NULL_IF_CONFIG_SMALL("BMP image"),
  174. };