FFmpeg
|
#include "avcodec.h"
#include "codec_internal.h"
#include "mpegutils.h"
#include "mpegvideo.h"
#include "mpegvideodec.h"
#include "golomb.h"
#include "rv34.h"
#include "rv30data.h"
Go to the source code of this file.
Functions | |
static int | rv30_parse_slice_header (RV34DecContext *r, GetBitContext *gb, SliceInfo *si) |
static int | rv30_decode_intra_types (RV34DecContext *r, GetBitContext *gb, int8_t *dst) |
Decode 4x4 intra types array. More... | |
static int | rv30_decode_mb_info (RV34DecContext *r) |
Decode macroblock information. More... | |
static void | rv30_weak_loop_filter (uint8_t *src, const int step, const int stride, const int lim) |
static void | rv30_loop_filter (RV34DecContext *r, int row) |
static av_cold int | rv30_decode_init (AVCodecContext *avctx) |
Initialize decoder. More... | |
Variables | |
const FFCodec | ff_rv30_decoder |
RV30 decoder
Definition in file rv30.c.
|
static |
Definition at line 38 of file rv30.c.
Referenced by rv30_decode_init().
|
static |
Decode 4x4 intra types array.
Definition at line 88 of file rv30.c.
Referenced by rv30_decode_init().
|
static |
Decode macroblock information.
Definition at line 116 of file rv30.c.
Referenced by rv30_decode_init().
|
inlinestatic |
Definition at line 138 of file rv30.c.
Referenced by rv30_loop_filter().
|
static |
Definition at line 153 of file rv30.c.
Referenced by rv30_decode_init().
|
static |
const FFCodec ff_rv30_decoder |