Searched refs:dstb (Results 1 – 7 of 7) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | r210dec.c | 66 uint16_t *dstb = (uint16_t *)b_line; in decode_frame() local 91 *dstb++ = b; in decode_frame()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_colorbalance.c | 171 uint8_t *dstb = out->data[1] + slice_start * out->linesize[1]; in color_balance8_p() local 193 dstb[j] = av_clip_uint8(lrintf(b * max)); in color_balance8_p() 203 dstb += out->linesize[1]; in color_balance8_p() 224 uint16_t *dstb = (uint16_t *)out->data[1] + slice_start * out->linesize[1] / 2; in color_balance16_p() local 247 dstb[j] = av_clip_uintp2_c(lrintf(b * max), depth); in color_balance16_p() 257 dstb += out->linesize[1] / 2; in color_balance16_p()
|
D | af_surround.c | 539 float b_mag, l_mag, r_mag, c_mag, *dstc, *dstl, *dstr, *dstb; in upmix_4_0() local 544 dstb = (float *)s->output->extended_data[3]; in upmix_4_0() 560 dstb[2 * n ] = b_mag * cosf(c_phase); in upmix_4_0() 561 dstb[2 * n + 1] = b_mag * sinf(c_phase); in upmix_4_0() 573 float lfe_mag, b_mag, l_mag, r_mag, c_mag, *dstc, *dstl, *dstr, *dstb, *dstlfe; in upmix_4_1() local 579 dstb = (float *)s->output->extended_data[4]; in upmix_4_1() 600 dstb[2 * n ] = b_mag * cosf(c_phase); in upmix_4_1() 601 dstb[2 * n + 1] = b_mag * sinf(c_phase); in upmix_4_1() 697 float l_mag, r_mag, ls_mag, rs_mag, c_mag, b_mag, *dstc, *dstb, *dstl, *dstr, *dstls, *dstrs; in upmix_6_0() local 702 dstb = (float *)s->output->extended_data[3]; in upmix_6_0() [all …]
|
D | vf_colorchannelmixer.c | 139 uint8_t *dstb = out->data[1] + slice_start * out->linesize[1]; in filter_slice_rgba_planar() local 184 dstb[j] = av_clip_uint8(bout); in filter_slice_rgba_planar() 199 dstb += out->linesize[1]; in filter_slice_rgba_planar() 225 uint16_t *dstb = (uint16_t *)(out->data[1] + slice_start * out->linesize[1]); in filter_slice_rgba16_planar() local 270 dstb[j] = av_clip_uintp2(bout, depth); in filter_slice_rgba16_planar() 285 dstb += out->linesize[1] / 2; in filter_slice_rgba16_planar()
|
D | vf_curves.c | 626 uint8_t *dstb = out->data[b] + slice_start * out->linesize[b]; in filter_slice_planar() local 637 dstb[x] = curves->graph[B][srcb[x]]; in filter_slice_planar() 643 dstb += out->linesize[b]; in filter_slice_planar()
|
D | vf_lut3d.c | 403 … uint##nbits##_t *dstb = (uint##nbits##_t *)brow; \ 421 … dstb[x] = av_clip_uintp2(vec.b * (float)((1<<depth) - 1), depth); \ 500 … float *dstb = (float *)brow; \ 518 … dstb[x] = vec.b; \ 1933 uint##nbits##_t *dstb = (uint##nbits##_t *)brow; \ 1949 dstb[x] = av_clip_uintp2(b * factor, depth); \ 2029 float *dstb = (float *)brow; \ 2045 dstb[x] = b; \
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
D | device9.c | 1491 struct NineBaseTexture9 *dstb = NineBaseTexture9(pDestinationTexture); in NineDevice9_UpdateTexture() local 1503 user_assert(dstb->base.pool == D3DPOOL_DEFAULT, D3DERR_INVALIDCALL); in NineDevice9_UpdateTexture() 1505 user_assert(dstb->base.type == srcb->base.type, D3DERR_INVALIDCALL); in NineDevice9_UpdateTexture() 1507 dstb->base.usage & D3DUSAGE_AUTOGENMIPMAP, D3DERR_INVALIDCALL); in NineDevice9_UpdateTexture() 1534 last_dst_level = dstb->level_count-1; in NineDevice9_UpdateTexture() 1541 if (w <= dstb->base.info.width0 && in NineDevice9_UpdateTexture() 1542 h <= dstb->base.info.height0 && in NineDevice9_UpdateTexture() 1543 d <= dstb->base.info.depth0) in NineDevice9_UpdateTexture() 1550 if (dstb->base.type == D3DRTYPE_TEXTURE) { in NineDevice9_UpdateTexture() 1551 struct NineTexture9 *dst = NineTexture9(dstb); in NineDevice9_UpdateTexture() [all …]
|