FFmpeg
|
#include "avcodec.h"
#include "hpeldsp.h"
#include "me_cmp.h"
#include "mpegvideo.h"
#include "h263.h"
#include "internal.h"
#include "mpegutils.h"
#include "svq1.h"
#include "svq1enc.h"
#include "svq1enc_cb.h"
#include "libavutil/avassert.h"
Go to the source code of this file.
Macros | |
#define | QUALITY_THRESHOLD 100 |
#define | THRESHOLD_MULTIPLIER 0.6 |
#define | OFFSET(x) offsetof(struct SVQ1EncContext, x) |
#define | VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM |
Functions | |
static void | svq1_write_header (SVQ1EncContext *s, int frame_type) |
static int | ssd_int8_vs_int16_c (const int8_t *pix1, const int16_t *pix2, intptr_t size) |
static int | encode_block (SVQ1EncContext *s, uint8_t *src, uint8_t *ref, uint8_t *decoded, int stride, int level, int threshold, int lambda, int intra) |
static void | init_block_index (MpegEncContext *s) |
static int | svq1_encode_plane (SVQ1EncContext *s, int plane, unsigned char *src_plane, unsigned char *ref_plane, unsigned char *decoded_plane, int width, int height, int src_stride, int stride) |
static av_cold int | svq1_encode_end (AVCodecContext *avctx) |
static av_cold int | svq1_encode_init (AVCodecContext *avctx) |
static int | svq1_encode_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pict, int *got_packet) |
Variables | |
static const AVOption | options [] |
static const AVClass | svq1enc_class |
AVCodec | ff_svq1_encoder |
Sorenson Vector Quantizer #1 (SVQ1) video codec. For more information of the SVQ1 algorithm, visit: http://www.pcisys.net/~melanson/codecs/
Definition in file svq1enc.c.
#define OFFSET | ( | x | ) | offsetof(struct SVQ1EncContext, x) |
#define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM |
|
static |
Definition at line 42 of file svq1enc.c.
Referenced by svq1_encode_frame().
|
static |
Definition at line 79 of file svq1enc.c.
Referenced by svq1_encode_init().
|
static |
Definition at line 89 of file svq1enc.c.
Referenced by svq1_encode_plane().
|
static |
Definition at line 237 of file svq1enc.c.
Referenced by svq1_encode_plane().
|
static |
Definition at line 246 of file svq1enc.c.
Referenced by svq1_encode_frame().
|
static |
Definition at line 484 of file svq1enc.c.
Referenced by svq1_encode_init().
|
static |
|
static |
|
static |
|
static |
AVCodec ff_svq1_encoder |