/third_party/ffmpeg/libavcodec/ |
D | pcm-bluray.c | 133 int16_t *dst16; in pcm_bluray_decode_frame() local 158 dst16 = (int16_t *)frame->data[0]; in pcm_bluray_decode_frame() 170 bytestream2_get_buffer(&gb, dst16, buf_size); in pcm_bluray_decode_frame() 173 *dst16++ = bytestream2_get_be16u(&gb); in pcm_bluray_decode_frame() 190 bytestream2_get_buffer(&gb, dst16, avctx->ch_layout.nb_channels * 2); in pcm_bluray_decode_frame() 191 dst16 += avctx->ch_layout.nb_channels; in pcm_bluray_decode_frame() 195 *dst16++ = bytestream2_get_be16u(&gb); in pcm_bluray_decode_frame() 214 dst16[0] = bytestream2_get_be16u(&gb); in pcm_bluray_decode_frame() 215 dst16[1] = bytestream2_get_be16u(&gb); in pcm_bluray_decode_frame() 216 dst16[2] = bytestream2_get_be16u(&gb); in pcm_bluray_decode_frame() [all …]
|
D | fitsdec.c | 197 uint16_t *dst16; in fits_decode_frame() local 265 CASE_RGB(16, dst16, uint16_t, AV_RB16); in fits_decode_frame() 292 CASE_GRAY(-64, dst16, uint16_t, tdbl, av_int2double(AV_RB64(ptr8))); in fits_decode_frame() 293 CASE_GRAY(-32, dst16, uint16_t, tflt, av_int2float(AV_RB32(ptr8))); in fits_decode_frame() 295 CASE_GRAY(16, dst16, uint16_t, t16, AV_RB16(ptr8)); in fits_decode_frame() 296 CASE_GRAY(32, dst16, uint16_t, t32, AV_RB32(ptr8)); in fits_decode_frame() 297 CASE_GRAY(64, dst16, uint16_t, t64, AV_RB64(ptr8)); in fits_decode_frame()
|
D | pcm-dvd.c | 150 int16_t *dst16 = dst; in pcm_dvd_decode_samples() local 160 bytestream2_get_buffer(&gb, dst16, blocks * s->block_size); in pcm_dvd_decode_samples() 161 dst16 += blocks * s->block_size / 2; in pcm_dvd_decode_samples() 165 *dst16++ = bytestream2_get_be16u(&gb); in pcm_dvd_decode_samples() 168 return dst16; in pcm_dvd_decode_samples()
|
D | vmnc.c | 102 uint16_t *dst16 = (uint16_t *)c->curbits; in load_cursor() local 111 *dst16++ = p; in load_cursor() 117 dst16 = (uint16_t*)c->curmask; in load_cursor() 125 *dst16++ = p; in load_cursor()
|
D | huffyuvenc.c | 72 uint16_t *dst16 = ( uint16_t *)dst; in sub_left_prediction() local 75 dst16[i] = temp - left; in sub_left_prediction() 80 s->hencdsp.diff_int16(dst16 + 32, src16 + 32, src16 + 31, s->n - 1, w - 32); in sub_left_prediction()
|
D | wavpack.c | 918 int16_t *dst16 = dst; in wv_unpack_mono() local 957 *dst16++ = wv_get_value_integer(s, &crc_extra_bits, S); in wv_unpack_mono()
|
D | tiff.c | 408 uint16_t *dst16 = (uint16_t *)dst; in horizontal_fill() local 415 dst16[i] = get_bits(&gb, bpp) << shift; in horizontal_fill()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_gblur.c | 241 uint16_t *dst16 = (uint16_t *)out->data[plane]; in filter_frame() local 291 dst16[x] = lrintf(bptr[x]); in filter_frame() 293 dst16 += out->linesize[plane] / 2; in filter_frame()
|
D | vf_dblur.c | 220 uint16_t *dst16 = (uint16_t *)out->data[plane]; in filter_frame() local 272 dst16[x] = av_clip_uintp2_c(lrintf(bptr[x]), s->depth); in filter_frame() 275 dst16 += out->linesize[plane] / 2; in filter_frame()
|
D | vf_geq.c | 54 uint16_t *dst16; ///< reference pointer to the 16bits output member 422 uint16_t *ptr16 = geq->dst16 + (linesize/2) * slice_start; in slice_geq_filter() 473 geq->dst16 = (uint16_t*)out->data[plane]; in geq_filter_frame()
|
D | vf_owdenoise.c | 239 uint16_t *dst16 = (uint16_t *)dst; in filter() local 245 dst16[y*dst_linesize + x] = i; in filter()
|
/third_party/ffmpeg/libswscale/ |
D | swscale.c | 1048 uint16_t *dst16; in scale_internal() local 1051 dst16 = (uint16_t *)dst2[0]; in scale_internal() 1058 dst16 = (uint16_t*)(dst2[0] + (dstY - ret) * dstStride2[0]); in scale_internal() 1062 rgb48Toxyz12(c, dst16, dst16, dstStride2[0]/2, ret); in scale_internal()
|
/third_party/skia/src/codec/ |
D | SkSwizzler.cpp | 41 uint16_t* dst16 = (uint16_t*) dst; in sample2() local 43 dst16[x] = *((const uint16_t*) src); in sample2() 560 uint16_t* dst16 = (uint16_t*) dst; in swizzle_rgb16_to_565() local 562 dst16[x] = strip16to565(src); in swizzle_rgb16_to_565()
|
/third_party/ffmpeg/libavutil/ |
D | pixdesc.c | 47 uint16_t *dst16 = dst; in av_read_image_line2() local 63 else *dst16++ = val; in av_read_image_line2() 84 else *dst16++ = val; in av_read_image_line2()
|
/third_party/ffmpeg/libavcodec/x86/ |
D | vp9intrapred.asm | 1059 cglobal vp9_ipred_dl_32x32, 4, 5, 8, dst, stride, cnt, a, dst16 1358 DEFINE_ARGS dst, stride, dst16, cnt 1599 DEFINE_ARGS dst, stride, dst16, cnt 1767 DEFINE_ARGS dst, stride, stride8, dst8, dst16, dst24 1979 DEFINE_ARGS dst, stride, cnt, stride0, dst8, dst16, dst24
|
/third_party/mesa3d/src/mesa/main/ |
D | texstore.c | 266 GLushort *dst16 = (GLushort *) dstRow; in _mesa_texstore_z16() local 268 GL_UNSIGNED_SHORT, dst16, depthScale, in _mesa_texstore_z16()
|
/third_party/ffmpeg/libavcodec/ppc/ |
D | h264dsp.c | 211 vec_u16 dst16 = (vec_u16)VEC_MERGEH(zero_u8v, dstv); \ 212 vec_s16 idstsum = vec_adds(idct_sh6, (vec_s16)dst16); \
|