FFmpeg
|
#include "config_components.h"
#include "libavutil/attributes.h"
#include "libavutil/mem.h"
#include "libavutil/mem_internal.h"
#include "aandcttab.h"
#include "asv.h"
#include "avcodec.h"
#include "codec_internal.h"
#include "encode.h"
#include "fdctdsp.h"
#include "mpeg12data.h"
#include "pixblockdsp.h"
#include "put_bits.h"
Go to the source code of this file.
Data Structures | |
struct | ASVEncContext |
Macros | |
#define | MAX_MB_SIZE (30 * 16 * 16 * 3 / 2 / 8) |
Functions | |
static void | asv1_put_level (PutBitContext *pb, int level) |
static void | asv2_put_level (ASVEncContext *a, PutBitContext *pb, int level) |
static void | asv1_encode_block (ASVEncContext *a, int16_t block[64]) |
static void | asv2_encode_block (ASVEncContext *a, int16_t block[64]) |
static int | encode_mb (ASVEncContext *a, int16_t block[6][64]) |
static void | dct_get (ASVEncContext *a, const AVFrame *frame, int mb_x, int mb_y) |
static int | encode_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pict, int *got_packet) |
static av_cold int | encode_init (AVCodecContext *avctx) |
ASUS V1/V2 encoder.
Definition in file asvenc.c.
|
inlinestatic |
Definition at line 53 of file asvenc.c.
Referenced by asv1_encode_block().
|
inlinestatic |
Definition at line 65 of file asvenc.c.
Referenced by asv2_encode_block().
|
inlinestatic |
Definition at line 81 of file asvenc.c.
Referenced by encode_mb().
|
inlinestatic |
Definition at line 127 of file asvenc.c.
Referenced by encode_mb().
|
inlinestatic |
Definition at line 182 of file asvenc.c.
Referenced by encode_frame().
|
inlinestatic |
Definition at line 199 of file asvenc.c.
Referenced by encode_frame().
|
static |
|
static |