Home
last modified time | relevance | path

Searched refs:top_border_y (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dcavs.c118 h->topleft_border_y = h->top_border_y[h->mbx * 16 + 15]; in ff_cavs_filter()
121 memcpy(&h->top_border_y[h->mbx * 16], h->cy + 15 * h->l_stride, 16); in ff_cavs_filter()
197 memcpy(&top[1], &h->top_border_y[h->mbx * 16], 16); in ff_cavs_load_intra_pred_luma()
209 memcpy(&top[1], &h->top_border_y[h->mbx * 16 + 8], 8); in ff_cavs_load_intra_pred_luma()
211 memcpy(&top[9], &h->top_border_y[(h->mbx + 1) * 16], 8); in ff_cavs_load_intra_pred_luma()
217 h->intern_border_y[0] = top[0] = h->top_border_y[h->mbx * 16 + 7]; in ff_cavs_load_intra_pred_luma()
768 h->top_border_y = av_mallocz_array(h->mb_width + 1, 16); in ff_cavs_init_top_lines()
779 !h->top_border_y || !h->top_border_u || !h->top_border_v || in ff_cavs_init_top_lines()
785 av_freep(&h->top_border_y); in ff_cavs_init_top_lines()
854 av_freep(&h->top_border_y); in ff_cavs_end()
Dcavs.h227 uint8_t *top_border_y, *top_border_u, *top_border_v; member