FFmpeg
|
#include "libavutil/common.h"
#include "libavutil/internal.h"
#include "cabac_functions.h"
#include "golomb.h"
#include "hevc.h"
#include "bit_depth_template.c"
Go to the source code of this file.
Macros | |
#define | LUMA 0 |
#define | CB 1 |
#define | CR 2 |
#define | CTB(tab, x, y) ((tab)[(y) * s->ps.sps->ctb_width + (x)]) |
#define | TC_CALC(qp, bs) |
Functions | |
static int | chroma_tc (HEVCContext *s, int qp_y, int c_idx, int tc_offset) |
static int | get_qPy_pred (HEVCContext *s, int xBase, int yBase, int log2_cb_size) |
void | ff_hevc_set_qPy (HEVCContext *s, int xBase, int yBase, int log2_cb_size) |
static int | get_qPy (HEVCContext *s, int xC, int yC) |
static void | copy_CTB (uint8_t *dst, const uint8_t *src, int width, int height, intptr_t stride_dst, intptr_t stride_src) |
static void | copy_pixel (uint8_t *dst, const uint8_t *src, int pixel_shift) |
static void | copy_vert (uint8_t *dst, const uint8_t *src, int pixel_shift, int height, int stride_dst, int stride_src) |
static void | copy_CTB_to_hv (HEVCContext *s, const uint8_t *src, int stride_src, int x, int y, int width, int height, int c_idx, int x_ctb, int y_ctb) |
static void | restore_tqb_pixels (HEVCContext *s, uint8_t *src1, const uint8_t *dst1, ptrdiff_t stride_src, ptrdiff_t stride_dst, int x0, int y0, int width, int height, int c_idx) |
static void | sao_filter_CTB (HEVCContext *s, int x, int y) |
static int | get_pcm (HEVCContext *s, int x, int y) |
static void | deblocking_filter_CTB (HEVCContext *s, int x0, int y0) |
static int | boundary_strength (HEVCContext *s, MvField *curr, MvField *neigh, RefPicList *neigh_refPicList) |
void | ff_hevc_deblocking_boundary_strengths (HEVCContext *s, int x0, int y0, int log2_trafo_size) |
void | ff_hevc_hls_filter (HEVCContext *s, int x, int y, int ctb_size) |
void | ff_hevc_hls_filters (HEVCContext *s, int x_ctb, int y_ctb, int ctb_size) |
Variables | |
static const uint8_t | tctable [54] |
static const uint8_t | betatable [52] |
#define LUMA 0 |
Definition at line 34 of file hevc_filter.c.
Referenced by deblocking_filter_CTB().
#define CB 1 |
Definition at line 35 of file hevc_filter.c.
#define CR 2 |
Definition at line 36 of file hevc_filter.c.
Definition at line 245 of file hevc_filter.c.
Referenced by sao_filter_CTB().
#define TC_CALC | ( | qp, | |
bs | |||
) |
Definition at line 472 of file hevc_filter.c.
Referenced by deblocking_filter_CTB().
|
static |
Definition at line 50 of file hevc_filter.c.
Referenced by deblocking_filter_CTB().
|
static |
Definition at line 79 of file hevc_filter.c.
Referenced by ff_hevc_set_qPy().
void ff_hevc_set_qPy | ( | HEVCContext * | s, |
int | xBase, | ||
int | yBase, | ||
int | log2_cb_size | ||
) |
Definition at line 122 of file hevc_filter.c.
Referenced by hls_coding_unit(), and hls_transform_unit().
|
static |
Definition at line 134 of file hevc_filter.c.
Referenced by deblocking_filter_CTB().
|
static |
Definition at line 142 of file hevc_filter.c.
Referenced by sao_filter_CTB().
Definition at line 164 of file hevc_filter.c.
Referenced by sao_filter_CTB().
|
static |
Definition at line 172 of file hevc_filter.c.
Referenced by copy_CTB_to_hv(), and sao_filter_CTB().
|
static |
Definition at line 192 of file hevc_filter.c.
Referenced by sao_filter_CTB().
|
static |
Definition at line 212 of file hevc_filter.c.
Referenced by sao_filter_CTB().
|
static |
Definition at line 247 of file hevc_filter.c.
Referenced by ff_hevc_hls_filter().
|
static |
Definition at line 456 of file hevc_filter.c.
Referenced by deblocking_filter_CTB().
|
static |
Definition at line 477 of file hevc_filter.c.
Referenced by ff_hevc_hls_filter().
|
static |
Definition at line 651 of file hevc_filter.c.
Referenced by ff_hevc_deblocking_boundary_strengths().
void ff_hevc_deblocking_boundary_strengths | ( | HEVCContext * | s, |
int | x0, | ||
int | y0, | ||
int | log2_trafo_size | ||
) |
Definition at line 715 of file hevc_filter.c.
Referenced by hls_coding_unit(), hls_pcm_sample(), and hls_transform_tree().
void ff_hevc_hls_filter | ( | HEVCContext * | s, |
int | x, | ||
int | y, | ||
int | ctb_size | ||
) |
Definition at line 843 of file hevc_filter.c.
Referenced by ff_hevc_hls_filters(), hls_decode_entry(), and hls_decode_entry_wpp().
void ff_hevc_hls_filters | ( | HEVCContext * | s, |
int | x_ctb, | ||
int | y_ctb, | ||
int | ctb_size | ||
) |
Definition at line 868 of file hevc_filter.c.
Referenced by hls_decode_entry(), and hls_decode_entry_wpp().
|
static |
Definition at line 38 of file hevc_filter.c.
Referenced by chroma_tc().
|
static |
Definition at line 44 of file hevc_filter.c.
Referenced by deblocking_filter_CTB().