#include "libavutil/imgutils.h"
#include "avcodec.h"
#include "bytestream.h"
#include "bmp.h"
Go to the source code of this file.
Macro Definition Documentation
#define SIZE_BITMAPFILEHEADER 14 |
#define SIZE_BITMAPINFOHEADER 40 |
Function Documentation
static int bmp_encode_frame |
( |
AVCodecContext * |
avctx, |
|
|
unsigned char * |
buf, |
|
|
int |
buf_size, |
|
|
void * |
data |
|
) |
| |
|
static |
Variable Documentation
Initial value:
Definition at line 157 of file bmpenc.c.
const uint32_t monoblack_pal[] = { 0x000000, 0xFFFFFF } |
|
static |
const uint32_t rgb444_masks[] = { 0x0F00, 0x00F0, 0x000F } |
|
static |
const uint32_t rgb565_masks[] = { 0xF800, 0x07E0, 0x001F } |
|
static |