FFmpeg
|
Common functions for Microsoft Screen 1 and 2. More...
#include <inttypes.h>
#include "libavutil/intfloat.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "mss12.h"
Go to the source code of this file.
Enumerations | |
enum | SplitMode { SPLIT_VERT = 0, SPLIT_HOR, SPLIT_NONE } |
enum | ContextDirection { TOP_LEFT = 0, TOP, TOP_RIGHT, LEFT } |
Functions | |
static int | model_calc_threshold (Model *m) |
static void | model_reset (Model *m) |
static av_cold void | model_init (Model *m, int num_syms, int thr_weight) |
static void | model_rescale_weights (Model *m) |
void | ff_mss12_model_update (Model *m, int val) |
static void | pixctx_reset (PixContext *ctx) |
static av_cold void | pixctx_init (PixContext *ctx, int cache_size, int full_model_syms, int special_initial_cache) |
static av_always_inline int | decode_pixel (ArithCoder *acoder, PixContext *pctx, uint8_t *ngb, int num_ngb, int any_ngb) |
static int | decode_pixel_in_context (ArithCoder *acoder, PixContext *pctx, uint8_t *src, int stride, int x, int y, int has_right) |
static int | decode_region (ArithCoder *acoder, uint8_t *dst, uint8_t *rgb_pic, int x, int y, int width, int height, int stride, int rgb_stride, PixContext *pctx, const uint32_t *pal) |
static void | copy_rectangles (MSS12Context const *c, int x, int y, int width, int height) |
static int | motion_compensation (MSS12Context const *c, int x, int y, int width, int height) |
static int | decode_region_masked (MSS12Context const *c, ArithCoder *acoder, uint8_t *dst, int stride, uint8_t *mask, int mask_stride, int x, int y, int width, int height, PixContext *pctx) |
static av_cold void | slicecontext_init (SliceContext *sc, int version, int full_model_syms) |
void | ff_mss12_slicecontext_reset (SliceContext *sc) |
static int | decode_pivot (SliceContext *sc, ArithCoder *acoder, int base) |
static int | decode_region_intra (SliceContext *sc, ArithCoder *acoder, int x, int y, int width, int height) |
static int | decode_region_inter (SliceContext *sc, ArithCoder *acoder, int x, int y, int width, int height) |
int | ff_mss12_decode_rect (SliceContext *sc, ArithCoder *acoder, int x, int y, int width, int height) |
av_cold int | ff_mss12_decode_init (MSS12Context *c, int version, SliceContext *sc1, SliceContext *sc2) |
av_cold int | ff_mss12_decode_end (MSS12Context *c) |
Variables | |
static const int | sec_order_sizes [4] = { 1, 7, 6, 1 } |
enum ContextDirection |
|
static |
Definition at line 48 of file mss12.c.
Referenced by model_rescale_weights().
Definition at line 58 of file mss12.c.
Referenced by ff_mss12_slicecontext_reset().
Definition at line 71 of file mss12.c.
Referenced by pixctx_init(), and slicecontext_init().
Definition at line 78 of file mss12.c.
Referenced by ff_mss12_model_update().
|
static |
Definition at line 119 of file mss12.c.
Referenced by ff_mss12_slicecontext_reset().
|
static |
Definition at line 140 of file mss12.c.
Referenced by slicecontext_init().
|
static |
Definition at line 159 of file mss12.c.
Referenced by decode_pixel_in_context(), decode_region(), decode_region_inter(), decode_region_intra(), and decode_region_masked().
|
static |
Definition at line 199 of file mss12.c.
Referenced by decode_region(), and decode_region_masked().
|
static |
Definition at line 292 of file mss12.c.
Referenced by decode_region_inter(), and decode_region_intra().
|
static |
Definition at line 320 of file mss12.c.
Referenced by decode_region_inter(), and decode_region_masked().
|
static |
Definition at line 336 of file mss12.c.
Referenced by decode_region_inter(), and decode_region_masked().
|
static |
Definition at line 370 of file mss12.c.
Referenced by decode_region_inter().
|
static |
Definition at line 413 of file mss12.c.
Referenced by ff_mss12_decode_init().
void ff_mss12_slicecontext_reset | ( | SliceContext * | sc | ) |
Definition at line 428 of file mss12.c.
Referenced by mss1_decode_frame(), and mss2_decode_frame().
|
static |
Definition at line 439 of file mss12.c.
Referenced by ff_mss12_decode_rect().
|
static |
Definition at line 459 of file mss12.c.
Referenced by decode_region_inter(), and ff_mss12_decode_rect().
|
static |
Definition at line 491 of file mss12.c.
Referenced by ff_mss12_decode_rect().
int ff_mss12_decode_rect | ( | SliceContext * | sc, |
ArithCoder * | acoder, | ||
int | x, | ||
int | y, | ||
int | width, | ||
int | height | ||
) |
Definition at line 528 of file mss12.c.
Referenced by ff_mss12_decode_rect(), mss1_decode_frame(), and mss2_decode_frame().
av_cold int ff_mss12_decode_init | ( | MSS12Context * | c, |
int | version, | ||
SliceContext * | sc1, | ||
SliceContext * | sc2 | ||
) |
Definition at line 564 of file mss12.c.
Referenced by mss1_decode_init(), and mss2_decode_init().
av_cold int ff_mss12_decode_end | ( | MSS12Context * | c | ) |
Definition at line 676 of file mss12.c.
Referenced by mss1_decode_end(), and mss2_decode_end().
|
static |
Definition at line 39 of file mss12.c.
Referenced by pixctx_init().