Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavfilter/
Dvf_uspp.c48 int temp_stride[3]; member
198 int stride = p->temp_stride[i]; in filter()
269 …p->temp[0][x + y * p->temp_stride[0]] += p->frame_dec->data[0][x + y * p->frame_dec->linesize[0] +… in filter()
278 …p->temp[1][x + y * p->temp_stride[1]] += p->frame_dec->data[1][x + y * p->frame_dec->linesize[1] +… in filter()
279 …p->temp[2][x + y * p->temp_stride[2]] += p->frame_dec->data[2][x + y * p->frame_dec->linesize[2] +… in filter()
288 store_slice_c(dst[j], p->temp[j], dst_stride[j], p->temp_stride[j], in filter()
342 uspp->temp_stride[i] = w; in config_input()
343 if (!(uspp->temp[i] = av_malloc_array(uspp->temp_stride[i], h * sizeof(int16_t)))) in config_input()
345 if (!(uspp->src [i] = av_malloc_array(uspp->temp_stride[i], h * sizeof(uint8_t)))) in config_input()
Dvf_pp7.h36 int temp_stride; member
Dvf_pp7.c208 const int stride = is_luma ? p->temp_stride : ((width + 16 + 15) & (~15)); in filter()
296 pp7->temp_stride = FFALIGN(inlink->w + 16, 16); in config_input()
297 pp7->src = av_malloc_array(pp7->temp_stride, (h + 8) * sizeof(uint8_t)); in config_input()
Dvf_fspp.h62 int temp_stride; member
Dvf_fspp.c158 const int stride = is_luma ? p->temp_stride : (width + 16); in filter()
523 fspp->temp_stride = FFALIGN(inlink->w + 16, 16); in config_input()
524 fspp->temp = av_malloc_array(fspp->temp_stride, h * sizeof(*fspp->temp)); in config_input()
525 fspp->src = av_malloc_array(fspp->temp_stride, h * sizeof(*fspp->src)); in config_input()
/third_party/mesa3d/src/util/format/
Du_format_fxt1.c1659 int temp_stride = width * 3; in util_format_fxt1_rgb_pack_rgba_8unorm() local
1660 uint8_t *temp = malloc(height * temp_stride); in util_format_fxt1_rgb_pack_rgba_8unorm()
1666 temp[y * temp_stride + x * 3 + 0] = src[x * 4 + 0]; in util_format_fxt1_rgb_pack_rgba_8unorm()
1667 temp[y * temp_stride + x * 3 + 1] = src[x * 4 + 1]; in util_format_fxt1_rgb_pack_rgba_8unorm()
1668 temp[y * temp_stride + x * 3 + 2] = src[x * 4 + 2]; in util_format_fxt1_rgb_pack_rgba_8unorm()
1673 fxt1_encode(width, height, 3, temp, temp_stride, dst_row, dst_stride); in util_format_fxt1_rgb_pack_rgba_8unorm()
1691 int temp_stride = width * 4; in util_format_fxt1_rgb_pack_rgba_float() local
1692 uint8_t *temp = malloc(height * temp_stride); in util_format_fxt1_rgb_pack_rgba_float()
1696 util_format_r8g8b8a8_unorm_pack_rgba_float(temp, temp_stride, in util_format_fxt1_rgb_pack_rgba_float()
1701 temp, temp_stride, in util_format_fxt1_rgb_pack_rgba_float()
[all …]
/third_party/mesa3d/src/mesa/state_tracker/
Dst_texture.h48 unsigned temp_stride; /**< Stride of the compressed texture storage. */ member
Dst_cb_texture.c511 unsigned stride = *rowStrideOut = itransfer->temp_stride = in st_MapTextureImage()
564 itransfer->temp_stride, in st_UnmapTextureImage()
572 itransfer->temp_stride, in st_UnmapTextureImage()
580 itransfer->temp_stride, in st_UnmapTextureImage()
603 itransfer->temp_stride, in st_UnmapTextureImage()
611 itransfer->temp_stride, in st_UnmapTextureImage()
618 itransfer->temp_stride, in st_UnmapTextureImage()
628 itransfer->temp_stride = 0; in st_UnmapTextureImage()
/third_party/mesa3d/src/imagination/vulkan/
Dpvr_job_render.c1453 value.temp_stride = 0; in pvr_render_job_ws_fragment_state_init()