#include "avcodec.h"#include "bytestream.h"#include "bmp.h"#include "msrledec.h"Go to the source code of this file.
Functions | |
| static av_cold int | bmp_decode_init (AVCodecContext *avctx) |
| static int | bmp_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
| static av_cold int | bmp_decode_end (AVCodecContext *avctx) |
Variables | |
| AVCodec | ff_bmp_decoder |
| static av_cold int bmp_decode_end | ( | AVCodecContext * | avctx | ) | [static] |
| static int bmp_decode_frame | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | data_size, | |||
| AVPacket * | avpkt | |||
| ) | [static] |
| static av_cold int bmp_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{
"bmp",
AVMEDIA_TYPE_VIDEO,
CODEC_ID_BMP,
sizeof(BMPContext),
bmp_decode_init,
NULL,
bmp_decode_end,
bmp_decode_frame,
CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("BMP image"),
}
1.5.8