FFmpeg
|
FF Video Codec 1 (a lossless codec) decoder. More...
#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 "get_bits.h"
#include "rangecoder.h"
#include "golomb.h"
#include "mathops.h"
#include "ffv1.h"
#include "ffv1dec_template.c"
Go to the source code of this file.
Macros | |
#define | TYPE int16_t |
#define | RENAME(name) name |
#define | TYPE int32_t |
#define | RENAME(name) name ## 32 |
Functions | |
static av_flatten int | get_symbol_inline (RangeCoder *c, uint8_t *state, int is_signed) |
static av_noinline int | get_symbol (RangeCoder *c, uint8_t *state, int is_signed) |
static int | get_vlc_symbol (GetBitContext *gb, VlcState *const state, int bits) |
static void | decode_plane (FFV1Context *s, uint8_t *src, int w, int h, int stride, int plane_index, int pixel_stride) |
static int | decode_slice_header (FFV1Context *f, FFV1Context *fs) |
static int | decode_slice (AVCodecContext *c, void *arg) |
static int | read_quant_table (RangeCoder *c, int16_t *quant_table, int scale) |
static int | read_quant_tables (RangeCoder *c, int16_t quant_table[MAX_CONTEXT_INPUTS][256]) |
static int | read_extra_header (FFV1Context *f) |
static int | read_header (FFV1Context *f) |
static av_cold int | decode_init (AVCodecContext *avctx) |
static int | decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) |
static void | copy_fields (FFV1Context *fsdst, FFV1Context *fssrc, FFV1Context *fsrc) |
Variables | |
AVCodec | ff_ffv1_decoder |
FF Video Codec 1 (a lossless codec) decoder.
Definition in file ffv1dec.c.
|
inlinestatic |
Definition at line 42 of file ffv1dec.c.
Referenced by decode_line_TMPL(), and get_symbol().
|
static |
Definition at line 65 of file ffv1dec.c.
Referenced by decode_header(), decode_q_branch(), decode_qlogs(), decode_slice_header(), read_extra_header(), read_header(), and read_quant_table().
|
inlinestatic |
Definition at line 70 of file ffv1dec.c.
Referenced by decode_line_TMPL().
|
static |
|
static |
Definition at line 153 of file ffv1dec.c.
Referenced by decode_slice().
|
static |
Definition at line 232 of file ffv1dec.c.
Referenced by decode_frame(), and dxtory_decode_v2().
|
static |
Definition at line 352 of file ffv1dec.c.
Referenced by read_quant_tables().
|
static |
Definition at line 379 of file ffv1dec.c.
Referenced by read_extra_header(), and read_header().
|
static |
Definition at line 397 of file ffv1dec.c.
Referenced by decode_init().
|
static |
Definition at line 514 of file ffv1dec.c.
Referenced by decode_frame(), and mjpegb_decode_frame().
|
static |
|
static |
|
static |
AVCodec ff_ffv1_decoder |