FFmpeg
Classes | Typedefs | Variables
mxpegdec.c File Reference

MxPEG decoder. More...

#include "internal.h"
#include "mjpeg.h"
#include "mjpegdec.h"

Classes

struct  MXpegDecodeContext
 

Typedefs

typedef struct MXpegDecodeContext MXpegDecodeContext
 

Variables

AVCodec ff_mxpeg_decoder
 

Detailed Description

MxPEG decoder.

Variable Documentation

§ ff_mxpeg_decoder

AVCodec ff_mxpeg_decoder
Initial value:
= {
.name = "mxpeg",
.long_name = NULL_IF_CONFIG_SMALL("Mobotix MxPEG video"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_MXPEG,
.priv_data_size = sizeof(MXpegDecodeContext),
.init = mxpeg_decode_init,
.close = mxpeg_decode_end,
.decode = mxpeg_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
.max_lowres = 3,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
}
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
Definition: internal.h:40
Definition: mxpegdec.c:32
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959