FFmpeg
Classes | Typedefs | Variables
smvjpegdec.c File Reference

SMV JPEG decoder. More...

#include "avcodec.h"
#include "libavutil/opt.h"
#include "libavutil/imgutils.h"
#include "mjpegdec.h"
#include "internal.h"

Classes

struct  SMVJpegDecodeContext
 

Typedefs

typedef struct SMVJpegDecodeContext SMVJpegDecodeContext
 

Variables

AVCodec ff_smvjpeg_decoder
 

Detailed Description

SMV JPEG decoder.

Variable Documentation

§ ff_smvjpeg_decoder

AVCodec ff_smvjpeg_decoder
Initial value:
= {
.name = "smvjpeg",
.long_name = NULL_IF_CONFIG_SMALL("SMV JPEG"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_SMVJPEG,
.priv_data_size = sizeof(SMVJpegDecodeContext),
.init = smvjpeg_decode_init,
.close = smvjpeg_decode_end,
.decode = smvjpeg_decode_frame,
.priv_class = &smvjpegdec_class,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: smvjpegdec.c:34