#include "libavutil/imgutils.h"#include "avcodec.h"#include "bytestream.h"#include "bmp.h"Go to the source code of this file.
Defines | |
| #define | SIZE_BITMAPFILEHEADER 14 |
| #define | SIZE_BITMAPINFOHEADER 40 |
Functions | |
| static av_cold int | bmp_encode_init (AVCodecContext *avctx) |
| static int | bmp_encode_frame (AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data) |
Variables | |
| static const uint32_t | monoblack_pal [] = { 0x000000, 0xFFFFFF } |
| static const uint32_t | rgb565_masks [] = { 0xF800, 0x07E0, 0x001F } |
| AVCodec | ff_bmp_encoder |
| #define SIZE_BITMAPFILEHEADER 14 |
Referenced by bmp_encode_frame().
| #define SIZE_BITMAPINFOHEADER 40 |
Referenced by bmp_encode_frame().
| static int bmp_encode_frame | ( | AVCodecContext * | avctx, | |
| unsigned char * | buf, | |||
| int | buf_size, | |||
| void * | data | |||
| ) | [static] |
| static av_cold int bmp_encode_init | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{
"bmp",
AVMEDIA_TYPE_VIDEO,
CODEC_ID_BMP,
sizeof(BMPContext),
bmp_encode_init,
bmp_encode_frame,
NULL,
.pix_fmts = (const enum PixelFormat[]){
PIX_FMT_BGR24,
PIX_FMT_RGB555, PIX_FMT_RGB565,
PIX_FMT_RGB8, PIX_FMT_BGR8, PIX_FMT_RGB4_BYTE, PIX_FMT_BGR4_BYTE, PIX_FMT_GRAY8, PIX_FMT_PAL8,
PIX_FMT_MONOBLACK,
PIX_FMT_NONE},
.long_name = NULL_IF_CONFIG_SMALL("BMP image"),
}
const uint32_t monoblack_pal[] = { 0x000000, 0xFFFFFF } [static] |
const uint32_t rgb565_masks[] = { 0xF800, 0x07E0, 0x001F } [static] |
1.5.8