FFmpeg
Classes | Typedefs | Variables
mss1.c File Reference

Microsoft Screen 1 (aka Windows Media Video V7 Screen) decoder. More...

#include "avcodec.h"
#include "internal.h"
#include "mss12.h"

Classes

struct  MSS1Context
 

Typedefs

typedef struct MSS1Context MSS1Context
 

Variables

AVCodec ff_mss1_decoder
 

Detailed Description

Microsoft Screen 1 (aka Windows Media Video V7 Screen) decoder.

Variable Documentation

§ ff_mss1_decoder

AVCodec ff_mss1_decoder
Initial value:
= {
.name = "mss1",
.long_name = NULL_IF_CONFIG_SMALL("MS Screen 1"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_MSS1,
.priv_data_size = sizeof(MSS1Context),
.init = mss1_decode_init,
.close = mss1_decode_end,
.decode = mss1_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: mss1.c:31
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959