#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:
{
.name = "bmp",
.type = AVMEDIA_TYPE_VIDEO,
.id = CODEC_ID_BMP,
.priv_data_size = sizeof(BMPContext),
.init = bmp_decode_init,
.close = bmp_decode_end,
.decode = bmp_decode_frame,
.capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("BMP image"),
}
1.5.8