| 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 "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 138 of file ffv1enc.c.
Referenced by encode_init().
| 
 | static | 
Definition at line 184 of file ffv1enc.c.
Referenced by encode_line_TMPL(), and put_symbol().
| 
 | static | 
Definition at line 232 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 239 of file ffv1enc.c.
Referenced by encode_line_TMPL().
| 
 | static | 
Definition at line 273 of file ffv1enc.c.
Referenced by encode_slice().
| 
 | static | 
Definition at line 311 of file ffv1enc.c.
Referenced by write_quant_tables().
| 
 | static | 
Definition at line 326 of file ffv1enc.c.
Referenced by write_extradata(), and write_header().
Definition at line 334 of file ffv1enc.c.
Referenced by write_extradata().
| 
 | static | 
Definition at line 346 of file ffv1enc.c.
Referenced by encode_frame(), and segment_start().
| 
 | static | 
Definition at line 393 of file ffv1enc.c.
Referenced by encode_init().
| 
 | static | 
Definition at line 466 of file ffv1enc.c.
Referenced by encode_init().
| 
 | static | 
| 
 | static | 
Definition at line 927 of file ffv1enc.c.
Referenced by encode_slice().
| 
 | static | 
Definition at line 960 of file ffv1enc.c.
Referenced by encode_slice().
| 
 | static | 
Definition at line 1042 of file ffv1enc.c.
Referenced by encode_frame().
| 
 | static | 
| 
 | static | 
| 
 | static | 
Definition at line 43 of file ffv1enc.c.
Referenced by encode_init().
| 
 | static | 
Definition at line 62 of file ffv1enc.c.
Referenced by encode_init().
| 
 | static | 
Definition at line 81 of file ffv1enc.c.
Referenced by encode_init().
| 
 | static | 
Definition at line 100 of file ffv1enc.c.
Referenced by encode_init().
| 
 | static | 
Definition at line 119 of file ffv1enc.c.
Referenced by encode_init().
| 
 | static | 
| 
 | static | 
| 
 | static | 
 1.8.17
 1.8.17