#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, const uint8_t *buf, int buf_size) | 
| static av_cold int | bmp_decode_end (AVCodecContext *avctx) | 
Variables | |
| AVCodec | bmp_decoder | 
| static av_cold int bmp_decode_end | ( | AVCodecContext * | avctx | ) |  [static] | 
        
| static int bmp_decode_frame | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | data_size, | |||
| const uint8_t * | buf, | |||
| int | buf_size | |||
| ) |  [static] | 
        
| static av_cold int bmp_decode_init | ( | AVCodecContext * | avctx | ) |  [static] | 
        
Initial value:
 {
    "bmp",
    CODEC_TYPE_VIDEO,
    CODEC_ID_BMP,
    sizeof(BMPContext),
    bmp_decode_init,
    NULL,
    bmp_decode_end,
    bmp_decode_frame,
    .long_name = NULL_IF_CONFIG_SMALL("BMP image"),
}
 1.5.8