Libav
Data Structures | Functions | Variables
msrle.c File Reference

MS RLE video decoder by Mike Melanson (melan.nosp@m.son@.nosp@m.pcisy.nosp@m.s.ne.nosp@m.t) 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 "internal.h"
#include "msrledec.h"

Go to the source code of this file.

Data Structures

struct  MsrleContext
 

Functions

static av_cold int msrle_decode_init (AVCodecContext *avctx)
 
static int msrle_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
static av_cold int msrle_decode_end (AVCodecContext *avctx)
 

Variables

AVCodec ff_msrle_decoder
 

Detailed Description

MS RLE video decoder by Mike Melanson (melan.nosp@m.son@.nosp@m.pcisy.nosp@m.s.ne.nosp@m.t) 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.

Function Documentation

§ msrle_decode_init()

static av_cold int msrle_decode_init ( AVCodecContext avctx)
static

Definition at line 50 of file msrle.c.

§ msrle_decode_frame()

static int msrle_decode_frame ( AVCodecContext avctx,
void data,
int *  got_frame,
AVPacket avpkt 
)
static

Definition at line 76 of file msrle.c.

§ msrle_decode_end()

static av_cold int msrle_decode_end ( AVCodecContext avctx)
static

Definition at line 141 of file msrle.c.

Variable Documentation

§ ff_msrle_decoder

AVCodec ff_msrle_decoder
Initial value:
= {
.name = "msrle",
.long_name = NULL_IF_CONFIG_SMALL("Microsoft RLE"),
.priv_data_size = sizeof(MsrleContext),
.capabilities = CODEC_CAP_DR1,
}
static int decode(MimicContext *ctx, int quality, int num_coeffs, int is_iframe)
Definition: mimic.c:275
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:684
static int msrle_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: msrle.c:76
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:145
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:490
static av_cold int init(AVCodecParserContext *s)
Definition: h264_parser.c:499
static av_cold int msrle_decode_init(AVCodecContext *avctx)
Definition: msrle.c:50
static av_cold int msrle_decode_end(AVCodecContext *avctx)
Definition: msrle.c:141

Definition at line 151 of file msrle.c.