MS RLE video decoder by Mike Melanson (melanson@pcisys.net) For more information about the MS RLE format, visit: http://www.pcisys.net/~melanson/codecs/. More...
#include <stdio.h>#include <stdlib.h>#include <string.h>#include "avcodec.h"#include "dsputil.h"#include "msrledec.h"Go to the source code of this file.
Data Structures | |
| struct | MsrleContext |
Typedefs | |
| typedef struct MsrleContext | MsrleContext |
Functions | |
| static av_cold int | msrle_decode_init (AVCodecContext *avctx) |
| static int | msrle_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
| static av_cold int | msrle_decode_end (AVCodecContext *avctx) |
Variables | |
| AVCodec | ff_msrle_decoder |
MS RLE video decoder by Mike Melanson (melanson@pcisys.net) For more information about the MS RLE format, visit: http://www.pcisys.net/~melanson/codecs/.
The MS RLE decoder outputs PAL8 colorspace data.
Definition in file msrle.c.
| typedef struct MsrleContext MsrleContext |
| static av_cold int msrle_decode_end | ( | AVCodecContext * | avctx | ) | [static] |
| static int msrle_decode_frame | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | data_size, | |||
| AVPacket * | avpkt | |||
| ) | [static] |
| static av_cold int msrle_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
{
.name = "msrle",
.type = AVMEDIA_TYPE_VIDEO,
.id = CODEC_ID_MSRLE,
.priv_data_size = sizeof(MsrleContext),
.init = msrle_decode_init,
.close = msrle_decode_end,
.decode = msrle_decode_frame,
.capabilities = CODEC_CAP_DR1,
.long_name= NULL_IF_CONFIG_SMALL("Microsoft RLE"),
}