|
FFmpeg
|
#include "libavutil/attributes.h"#include "libavutil/avassert.h"#include "libavutil/crc.h"#include "libavutil/opt.h"#include "libavutil/imgutils.h"#include "libavutil/pixdesc.h"#include "libavutil/timer.h"#include "avcodec.h"#include "internal.h"#include "put_bits.h"#include "rangecoder.h"#include "golomb.h"#include "mathops.h"#include "ffv1.h"#include "ffv1enc_template.c"Go to the source code of this file.
Macros | |
| #define | put_rac(C, S, B) |
| #define | TYPE int16_t |
| #define | RENAME(name) name |
| #define | TYPE int32_t |
| #define | RENAME(name) name ## 32 |
| #define | COST(old, new) |
| #define | COST2(old, new) COST(old, new) + COST(256 - (old), 256 - (new)) |
| #define | STATS_OUT_SIZE 1024 * 1024 * 6 |
| #define | NB_Y_COEFF 15 |
| #define | OFFSET(x) offsetof(FFV1Context, x) |
| #define | VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM |
Variables | |
| static const int8_t | quant5_10bit [256] |
| static const int8_t | quant5 [256] |
| static const int8_t | quant9_10bit [256] |
| static const int8_t | quant11 [256] |
| static const uint8_t | ver2_state [256] |
| static const AVOption | options [] |
| static const AVClass | ffv1_class |
| static const AVCodecDefault | ffv1_defaults [] |
| AVCodec | ff_ffv1_encoder |
FF Video Codec 1 (a lossless codec) encoder
Definition in file ffv1enc.c.
| #define COST | ( | old, | |
| new | |||
| ) |
| #define STATS_OUT_SIZE 1024 * 1024 * 6 |
| #define NB_Y_COEFF 15 |
| #define OFFSET | ( | x | ) | offsetof(FFV1Context, x) |
| #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM |
Definition at line 139 of file ffv1enc.c.
Referenced by encode_init().
|
static |
Definition at line 185 of file ffv1enc.c.
Referenced by encode_line_TMPL(), and put_symbol().
|
static |
Definition at line 233 of file ffv1enc.c.
Referenced by encode_header(), encode_q_branch(), encode_q_branch2(), encode_qlogs(), encode_slice_header(), write_extradata(), write_header(), and write_quant_table().
|
inlinestatic |
Definition at line 240 of file ffv1enc.c.
Referenced by encode_line_TMPL().
|
static |
Definition at line 274 of file ffv1enc.c.
Referenced by encode_slice().
|
static |
Definition at line 314 of file ffv1enc.c.
Referenced by write_quant_tables().
|
static |
Definition at line 329 of file ffv1enc.c.
Referenced by write_extradata(), and write_header().
|
static |
Definition at line 337 of file ffv1enc.c.
Referenced by encode_frame(), and segment_start().
|
static |
Definition at line 384 of file ffv1enc.c.
Referenced by encode_init().
|
static |
Definition at line 460 of file ffv1enc.c.
Referenced by encode_init().
|
static |
|
static |
Definition at line 921 of file ffv1enc.c.
Referenced by encode_slice().
|
static |
Definition at line 954 of file ffv1enc.c.
Referenced by encode_slice().
|
static |
Definition at line 1036 of file ffv1enc.c.
Referenced by encode_frame().
|
static |
|
static |
|
static |
Definition at line 44 of file ffv1enc.c.
Referenced by encode_init().
|
static |
Definition at line 63 of file ffv1enc.c.
Referenced by encode_init().
|
static |
Definition at line 82 of file ffv1enc.c.
Referenced by encode_init().
|
static |
Definition at line 101 of file ffv1enc.c.
Referenced by encode_init().
|
static |
Definition at line 120 of file ffv1enc.c.
Referenced by encode_init().
|
static |
|
static |
|
static |
1.8.17