FFmpeg
Classes | Macros | Typedefs | Variables
svq3.c File Reference

svq3 decoder. More...

#include <inttypes.h>
#include "libavutil/attributes.h"
#include "internal.h"
#include "avcodec.h"
#include "mpegutils.h"
#include "h264dec.h"
#include "h264data.h"
#include "golomb.h"
#include "hpeldsp.h"
#include "mathops.h"
#include "rectangle.h"
#include "tpeldsp.h"
#include "svq1.h"

Classes

struct  SVQ3Frame
 
struct  SVQ3Context
 

Macros

#define FULLPEL_MODE   1
 
#define HALFPEL_MODE   2
 
#define THIRDPEL_MODE   3
 
#define PREDICT_MODE   4
 
#define stride   16
 

Typedefs

typedef struct SVQ3Frame SVQ3Frame
 
typedef struct SVQ3Context SVQ3Context
 

Variables

AVCodec ff_svq3_decoder
 

Detailed Description

svq3 decoder.

Variable Documentation

§ ff_svq3_decoder

AVCodec ff_svq3_decoder
Initial value:
= {
.name = "svq3",
.long_name = NULL_IF_CONFIG_SMALL("Sorenson Vector Quantizer 3 / Sorenson Video 3 / SVQ3"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_SVQ3,
.priv_data_size = sizeof(SVQ3Context),
.init = svq3_decode_init,
.close = svq3_decode_end,
.decode = svq3_decode_frame,
.capabilities = AV_CODEC_CAP_DRAW_HORIZ_BAND |
.pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUVJ420P,
AV_PIX_FMT_NONE},
}
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: avcodec.h:984
#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_DRAW_HORIZ_BAND
Decoder can use draw_horiz_band callback.
Definition: avcodec.h:953
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
Definition: pixfmt.h:74
Definition: svq3.c:82
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959