FFmpeg
Classes | Typedefs | Variables
qpeg.c File Reference

QPEG codec. More...

#include "avcodec.h"
#include "bytestream.h"
#include "internal.h"

Classes

struct  QpegContext
 

Typedefs

typedef struct QpegContext QpegContext
 

Variables

AVCodec ff_qpeg_decoder
 

Detailed Description

QPEG codec.

Variable Documentation

§ ff_qpeg_decoder

AVCodec ff_qpeg_decoder
Initial value:
= {
.name = "qpeg",
.long_name = NULL_IF_CONFIG_SMALL("Q-team QPEG"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_QPEG,
.priv_data_size = sizeof(QpegContext),
.init = decode_init,
.close = decode_end,
.decode = decode_frame,
.flush = decode_flush,
.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: qpeg.c:31
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959