/external/libvpx/libvpx/vp9/encoder/ |
vp9_context_tree.h | 30 tran_low_t *coeff[MAX_MB_PLANE][3]; 31 tran_low_t *qcoeff[MAX_MB_PLANE][3]; 32 tran_low_t *dqcoeff[MAX_MB_PLANE][3]; 33 uint16_t *eobs[MAX_MB_PLANE][3]; 36 tran_low_t *coeff_pbuf[MAX_MB_PLANE][3]; 37 tran_low_t *qcoeff_pbuf[MAX_MB_PLANE][3]; 38 tran_low_t *dqcoeff_pbuf[MAX_MB_PLANE][3]; 39 uint16_t *eobs_pbuf[MAX_MB_PLANE][3]; 48 uint8_t skip_txfm[MAX_MB_PLANE << 2];
|
vp9_block.h | 68 int64_t bsse[MAX_MB_PLANE << 2]; 71 struct macroblock_plane plane[MAX_MB_PLANE]; 150 uint8_t skip_txfm[MAX_MB_PLANE << 2]; 157 int64_t bsse[MAX_MB_PLANE << 2];
|
vp9_rd.h | 144 void vp9_model_rd_from_var_lapndz_vec(unsigned int var[MAX_MB_PLANE], 145 unsigned int n_log2[MAX_MB_PLANE], 146 unsigned int qstep[MAX_MB_PLANE], 189 struct buf_2d dst[MAX_MB_PLANE],
|
vp9_rd.c | 381 static void model_rd_norm_vec(int xsq_q10[MAX_MB_PLANE], 382 int r_q10[MAX_MB_PLANE], 383 int d_q10[MAX_MB_PLANE]) { 386 for (i = 0; i < MAX_MB_PLANE; ++i) { 423 // vectors are of length MAX_MB_PLANE and all elements of var are non-zero. 424 void vp9_model_rd_from_var_lapndz_vec(unsigned int var[MAX_MB_PLANE], 425 unsigned int n_log2[MAX_MB_PLANE], 426 unsigned int qstep[MAX_MB_PLANE], 429 int xsq_q10[MAX_MB_PLANE], d_q10[MAX_MB_PLANE], r_q10[MAX_MB_PLANE] [all...] |
vp9_frame_scale.c | 33 for (i = 0; i < MAX_MB_PLANE; ++i) {
|
vp9_context_tree.c | 26 for (i = 0; i < MAX_MB_PLANE; ++i) { 48 for (i = 0; i < MAX_MB_PLANE; ++i) {
|
vp9_denoiser.c | 202 struct buf_2d saved_dst[MAX_MB_PLANE]; 203 struct buf_2d saved_pre[MAX_MB_PLANE]; 261 for (i = 0; i < MAX_MB_PLANE; ++i) { 301 for (i = 0; i < MAX_MB_PLANE; ++i) {
|
vp9_rdopt.c | 176 unsigned int qstep_vec[MAX_MB_PLANE]; 177 unsigned int nlog2_vec[MAX_MB_PLANE]; 178 unsigned int sum_sse_vec[MAX_MB_PLANE]; 183 for (i = 0; i < MAX_MB_PLANE; ++i) { 245 for (i = 0; i < MAX_MB_PLANE; ++i) { 260 for (i = 0; i < MAX_MB_PLANE; ++i) { [all...] |
vp9_encodeframe.c | [all...] |
vp9_temporal_filter.c | 604 uint8_t *input_buffer[MAX_MB_PLANE]; 607 for (i = 0; i < MAX_MB_PLANE; i++) input_buffer[i] = mbd->plane[i].pre[0].buf; 618 for (i = 0; i < MAX_MB_PLANE; i++) mbd->plane[i].pre[0].buf = input_buffer[i];
|
vp9_pickmode.c | 149 struct buf_2d backup_yv12[MAX_MB_PLANE] = { { 0, 0 } }; 168 for (i = 0; i < MAX_MB_PLANE; i++) backup_yv12[i] = xd->plane[i].pre[0]; 226 for (i = 0; i < MAX_MB_PLANE; i++) xd->plane[i].pre[0] = backup_yv12[i]; 854 struct buf_2d yv12_mb[][MAX_MB_PLANE], [all...] |
vp9_ethread.c | 197 for (j = 0; j < MAX_MB_PLANE; ++j) { 630 for (j = 0; j < MAX_MB_PLANE; ++j) {
|
vp9_encodemb.c | 29 ENTROPY_CONTEXT ta[MAX_MB_PLANE][16]; 30 ENTROPY_CONTEXT tl[MAX_MB_PLANE][16]; 729 for (plane = 0; plane < MAX_MB_PLANE; ++plane) { [all...] |
/external/libvpx/libvpx/vp9/common/ |
vp9_thread_common.h | 51 struct macroblockd_plane planes[MAX_MB_PLANE],
|
vp9_reconinter.c | 248 MAX_MB_PLANE - 1); 254 MAX_MB_PLANE - 1); 257 void vp9_setup_dst_planes(struct macroblockd_plane planes[MAX_MB_PLANE], 260 uint8_t *const buffers[MAX_MB_PLANE] = { src->y_buffer, src->u_buffer, 262 const int strides[MAX_MB_PLANE] = { src->y_stride, src->uv_stride, 266 for (i = 0; i < MAX_MB_PLANE; ++i) { 278 uint8_t *const buffers[MAX_MB_PLANE] = { src->y_buffer, src->u_buffer, 280 const int strides[MAX_MB_PLANE] = { src->y_stride, src->uv_stride, 282 for (i = 0; i < MAX_MB_PLANE; ++i) {
|
vp9_blockd.h | 32 #define MAX_MB_PLANE 3 146 struct macroblockd_plane plane[MAX_MB_PLANE]; 181 ENTROPY_CONTEXT *above_context[MAX_MB_PLANE]; 182 ENTROPY_CONTEXT left_context[MAX_MB_PLANE][16]; 247 for (i = 0; i < MAX_MB_PLANE; i++) {
|
vp9_loopfilter.h | 143 struct macroblockd_plane planes[MAX_MB_PLANE]; 152 struct VP9Common *cm, const struct macroblockd_plane planes[MAX_MB_PLANE]);
|
vp9_blockd.c | 83 for (plane = 0; plane < MAX_MB_PLANE; ++plane) 127 for (i = 0; i < MAX_MB_PLANE; i++) {
|
vp9_reconinter.h | 94 void vp9_setup_dst_planes(struct macroblockd_plane planes[MAX_MB_PLANE],
|
vp9_thread_common.c | 90 struct macroblockd_plane planes[MAX_MB_PLANE], int start, int stop, 92 const int num_planes = y_only ? 1 : MAX_MB_PLANE; 152 struct macroblockd_plane planes[MAX_MB_PLANE], 211 struct macroblockd_plane planes[MAX_MB_PLANE],
|
vp9_onyxc_int.h | 352 for (i = 0; i < MAX_MB_PLANE; ++i) { 382 for (i = 0; i < MAX_MB_PLANE; ++i) {
|
vp9_alloccommon.c | 156 2 * mi_cols_aligned_to_sb(cm->mi_cols) * MAX_MB_PLANE,
|
vp9_loopfilter.c | [all...] |
vp9_postproc.c | 247 for (i = 0; i < MAX_MB_PLANE; ++i) {
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decodeframe.c | 677 for (plane = 0; plane < MAX_MB_PLANE; ++plane) { 698 for (plane = 0; plane < MAX_MB_PLANE; ++plane) { 716 for (i = 0; i < MAX_MB_PLANE; i++) { 726 for (i = 0; i < MAX_MB_PLANE; i++) { 793 for (plane = 0; plane < MAX_MB_PLANE; ++plane) { 826 for (plane = 0; plane < MAX_MB_PLANE; ++plane) { [all...] |