FFmpeg
|
#include "config.h"
#include "libavutil/attributes.h"
#include "libavutil/internal.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avcodec.h"
#include "dv.h"
#include "dv_profile_internal.h"
#include "dv_tablegen.h"
#include "fdctdsp.h"
#include "internal.h"
#include "mathops.h"
#include "me_cmp.h"
#include "pixblockdsp.h"
#include "put_bits.h"
Go to the source code of this file.
Data Structures | |
struct | EncBlockInfo |
Macros | |
#define | DV100_SACRIFICE_QUALITY_FOR_SPEED 1 |
#define | DV100_ENABLE_FINER 1 |
#define | DV100_MAKE_QLEVEL(qno, cno) ((qno<<2) | (cno)) |
#define | DV100_QLEVEL_QNO(qlevel) (qlevel>>2) |
#define | DV100_QLEVEL_CNO(qlevel) (qlevel&0x3) |
#define | DV100_NUM_QLEVELS 31 |
#define | VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM |
#define | OFFSET(x) offsetof(DVVideoContext, x) |
Variables | |
static const int | vs_total_ac_bits_hd = (68 * 6 + 52*2) * 5 |
static const int | vs_total_ac_bits = (100 * 4 + 68 * 2) * 5 |
static const int | mb_area_start [5] = { 1, 6, 21, 43, 64 } |
static const int | dv_weight_bits = 18 |
static const int | dv_weight_88 [64] |
static const int | dv_weight_248 [64] |
static const uint8_t | dv100_qlevels [DV100_NUM_QLEVELS] |
static const int | dv100_min_bias = 0 |
static const int | dv100_chroma_bias = 0 |
static const int | dv100_starting_qno = 1 |
static const int | dv100_qlevel_inc = 4 |
static const int | dv100_qstep_bits = 16 |
static const int | dv100_qstep_inv [16] |
static const int | dv100_weight_shift = 16 |
static const int | dv_weight_1080 [2][64] |
static const int | dv_weight_720 [2][64] |
static const AVOption | dv_options [] |
static const AVClass | dvvideo_encode_class |
AVCodec | ff_dvvideo_encoder |
DV encoder
Definition in file dvenc.c.
#define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM |
#define OFFSET | ( | x | ) | offsetof(DVVideoContext, x) |
|
static |
|
static |
Definition at line 135 of file dvenc.c.
Referenced by dv_encode_ac().
|
static |
Definition at line 141 of file dvenc.c.
Referenced by dv100_actual_quantize(), dv_guess_qnos(), and dv_set_class_number_sd().
|
static |
Definition at line 166 of file dvenc.c.
Referenced by dv_encode_video_segment().
|
static |
Definition at line 212 of file dvenc.c.
Referenced by dv_encode_video_segment(), and dv_init_enc_block().
|
static |
Definition at line 361 of file dvenc.c.
Referenced by dv_init_enc_block().
|
inlinestatic |
Definition at line 445 of file dvenc.c.
Referenced by dv_init_enc_block().
|
static |
Definition at line 502 of file dvenc.c.
Referenced by dv_encode_video_segment().
|
static |
Definition at line 553 of file dvenc.c.
Referenced by dv100_actual_quantize().
|
static |
Definition at line 566 of file dvenc.c.
Referenced by dv_guess_qnos_hd().
|
inlinestatic |
Definition at line 604 of file dvenc.c.
Referenced by dv_encode_video_segment().
|
inlinestatic |
Definition at line 746 of file dvenc.c.
Referenced by dv_encode_video_segment().
|
inlinestatic |
Definition at line 820 of file dvenc.c.
Referenced by dv_encode_video_segment().
|
static |
Definition at line 838 of file dvenc.c.
Referenced by dvvideo_encode_frame().
|
inlinestatic |
Definition at line 997 of file dvenc.c.
Referenced by dv_format_frame().
|
inlinestatic |
Definition at line 1081 of file dvenc.c.
Referenced by dv_format_frame().
Definition at line 1097 of file dvenc.c.
Referenced by dv_format_frame().
|
static |
Definition at line 1117 of file dvenc.c.
Referenced by dvvideo_encode_frame().
|
static |
|
static |
Definition at line 90 of file dvenc.c.
Referenced by dv_guess_qnos_hd().
|
static |
Definition at line 91 of file dvenc.c.
Referenced by dv_encode_video_segment(), and dv_guess_qnos().
|
static |
Definition at line 92 of file dvenc.c.
Referenced by dv_guess_qnos(), and dv_set_class_number_sd().
|
static |
Definition at line 227 of file dvenc.c.
Referenced by dv_set_class_number_sd().
|
static |
Definition at line 228 of file dvenc.c.
Referenced by dv_init_enc_block().
|
static |
Definition at line 238 of file dvenc.c.
Referenced by dv_init_enc_block().
|
static |
Definition at line 269 of file dvenc.c.
Referenced by dv100_actual_quantize(), and dv_guess_qnos_hd().
|
static |
Definition at line 304 of file dvenc.c.
Referenced by dv_init_enc_block().
|
static |
Definition at line 305 of file dvenc.c.
Referenced by dv_init_enc_block().
|
static |
Definition at line 306 of file dvenc.c.
Referenced by dv_guess_qnos_hd().
|
static |
Definition at line 309 of file dvenc.c.
Referenced by dv_guess_qnos_hd().
|
static |
Definition at line 315 of file dvenc.c.
Referenced by dv100_quantize().
|
static |
Definition at line 316 of file dvenc.c.
Referenced by dv100_actual_quantize().
|
static |
Definition at line 323 of file dvenc.c.
Referenced by dv_init_enc_block().
|
static |
Definition at line 342 of file dvenc.c.
Referenced by dv_init_enc_block().
|
static |
|
static |
AVCodec ff_dvvideo_encoder |