Searched refs:ff_vp9_bwh_tab (Results 1 - 5 of 5) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | vp9data.h | 29 extern const uint8_t ff_vp9_bwh_tab[2][N_BS_SIZES][2];
|
H A D | vp9_mc_template.c | 408 int bw = ff_vp9_bwh_tab[0][b->bs][0] * 4; in inter_pred() 409 int bh = ff_vp9_bwh_tab[0][b->bs][1] * 4; in inter_pred() 410 int uvbw = ff_vp9_bwh_tab[s->ss_h][b->bs][0] * 4; in inter_pred() 411 int uvbh = ff_vp9_bwh_tab[s->ss_v][b->bs][1] * 4; in inter_pred()
|
H A D | vp9block.c | 94 int bw4 = ff_vp9_bwh_tab[1][b->bs][0], w4 = FFMIN(s->cols - col, bw4); in decode_mode() 95 int bh4 = ff_vp9_bwh_tab[1][b->bs][1], h4 = FFMIN(s->rows - row, bh4), y; in decode_mode() 263 memset(a, b->mode[0], ff_vp9_bwh_tab[0][b->bs][0]); in decode_mode() 264 memset(l, b->mode[0], ff_vp9_bwh_tab[0][b->bs][1]); in decode_mode() 716 switch (ff_vp9_bwh_tab[1][b->bs][0]) { in decode_mode() 739 switch (ff_vp9_bwh_tab[1][b->bs][1]) { in decode_mode() 970 int w4 = ff_vp9_bwh_tab[1][b->bs][0] << 1, h4 = ff_vp9_bwh_tab[1][b->bs][1] << 1; in decode_coeffs() 1269 int w4 = ff_vp9_bwh_tab[1][bs][0], h4 = ff_vp9_bwh_tab[ in ff_vp9_decode_block() [all...] |
H A D | vp9data.c | 25 const uint8_t ff_vp9_bwh_tab[2][N_BS_SIZES][2] = { variable
|
H A D | vp9recon.c | 224 int w4 = ff_vp9_bwh_tab[1][b->bs][0] << 1, step1d = 1 << b->tx, n; in intra_recon() 225 int h4 = ff_vp9_bwh_tab[1][b->bs][1] << 1, x, y, step = 1 << (b->tx * 2); in intra_recon() 602 int w4 = ff_vp9_bwh_tab[1][b->bs][0] << 1, step1d = 1 << b->tx, n; in inter_recon() 603 int h4 = ff_vp9_bwh_tab[1][b->bs][1] << 1, x, y, step = 1 << (b->tx * 2); in inter_recon()
|
Completed in 9 milliseconds