QT 8BPS Video Decoder by Roberto Togni For more information about the 8BPS format, visit: http://www.pcisys.net/~melanson/codecs/. More...
Go to the source code of this file.
Data Structures | |
struct | EightBpsContext |
Typedefs | |
typedef struct EightBpsContext | EightBpsContext |
Functions | |
static int | decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
static av_cold int | decode_init (AVCodecContext *avctx) |
static av_cold int | decode_end (AVCodecContext *avctx) |
Variables | |
static enum PixelFormat | pixfmt_rgb24 [] = {PIX_FMT_BGR24, PIX_FMT_RGB32, PIX_FMT_NONE} |
AVCodec | ff_eightbps_decoder |
QT 8BPS Video Decoder by Roberto Togni For more information about the 8BPS format, visit: http://www.pcisys.net/~melanson/codecs/.
Supports: PAL8 (RGB 8bpp, paletted) : BGR24 (RGB 24bpp) (can also output it as RGB32) : RGB32 (RGB 32bpp, 4th plane is alpha)
Definition in file 8bps.c.
typedef struct EightBpsContext EightBpsContext |
static av_cold int decode_end | ( | AVCodecContext * | avctx | ) | [static] |
static int decode_frame | ( | AVCodecContext * | avctx, |
void * | data, | ||
int * | data_size, | ||
AVPacket * | avpkt | ||
) | [static] |
static av_cold int decode_init | ( | AVCodecContext * | avctx | ) | [static] |
{ .name = "8bps", .type = AVMEDIA_TYPE_VIDEO, .id = CODEC_ID_8BPS, .priv_data_size = sizeof(EightBpsContext), .init = decode_init, .close = decode_end, .decode = decode_frame, .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("QuickTime 8BPS video"), }
enum PixelFormat pixfmt_rgb24[] = {PIX_FMT_BGR24, PIX_FMT_RGB32, PIX_FMT_NONE} [static] |
Definition at line 41 of file 8bps.c.
Referenced by decode_init().