#include "avcodec.h"#include "internal.h"Go to the source code of this file.
Functions | |
| static av_cold int | xbm_decode_init (AVCodecContext *avctx) |
| static int | convert (uint8_t x) |
| static int | xbm_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
| static av_cold int | xbm_decode_close (AVCodecContext *avctx) |
Variables | |
| AVCodec | ff_xbm_decoder |
| static int convert | ( | uint8_t | x | ) | [static] |
| static av_cold int xbm_decode_close | ( | AVCodecContext * | avctx | ) | [static] |
| static int xbm_decode_frame | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | data_size, | |||
| AVPacket * | avpkt | |||
| ) | [static] |
| static av_cold int xbm_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{
.name = "xbm",
.type = AVMEDIA_TYPE_VIDEO,
.id = CODEC_ID_XBM,
.init = xbm_decode_init,
.close = xbm_decode_close,
.decode = xbm_decode_frame,
.capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("XBM (X BitMap) image"),
}
1.5.8