Searched refs:_img (Results 1 – 1 of 1) sorted by relevance
884 int y4m_input_fetch_frame(y4m_input *_y4m, FILE *_fin, vpx_image_t *_img) { in y4m_input_fetch_frame() argument920 memset(_img, 0, sizeof(*_img)); in y4m_input_fetch_frame()922 _img->fmt = _y4m->vpx_fmt; in y4m_input_fetch_frame()923 _img->w = _img->d_w = _y4m->pic_w; in y4m_input_fetch_frame()924 _img->h = _img->d_h = _y4m->pic_h; in y4m_input_fetch_frame()925 _img->x_chroma_shift = _y4m->dst_c_dec_h >> 1; in y4m_input_fetch_frame()926 _img->y_chroma_shift = _y4m->dst_c_dec_v >> 1; in y4m_input_fetch_frame()927 _img->bps = _y4m->vpx_bps; in y4m_input_fetch_frame()934 _img->stride[PLANE_Y] = _img->stride[PLANE_ALPHA] = _y4m->pic_w; in y4m_input_fetch_frame()935 _img->stride[PLANE_U] = _img->stride[PLANE_V] = c_w; in y4m_input_fetch_frame()[all …]