Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/encoder/
Dvp9_encoder.c2801 RefCntBuffer *const new_fb_ptr = &cm->buffer_pool->frame_bufs[buffer_idx]; local
2802 if (new_fb_ptr->mvs == NULL ||
2803 new_fb_ptr->mi_rows < cm->mi_rows ||
2804 new_fb_ptr->mi_cols < cm->mi_cols) {
2805 vpx_free(new_fb_ptr->mvs);
2806 new_fb_ptr->mvs =
2808 sizeof(*new_fb_ptr->mvs));
2809 new_fb_ptr->mi_rows = cm->mi_rows;
2810 new_fb_ptr->mi_cols = cm->mi_cols;
2833 RefCntBuffer *new_fb_ptr = NULL; local
[all …]