Home
last modified time | relevance | path

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

/external/virglrenderer/src/gallium/auxiliary/util/
Du_format_pack.py269 def clamp_expr(src_channel, dst_channel, dst_native_type, value): argument
273 if src_channel == dst_channel:
278 dst_min = dst_channel.min()
279 dst_max = dst_channel.max()
298 dst_channel, dst_native_type, argument
314 if dst_channel.type == FLOAT:
317 assert dst_channel.type == UNSIGNED
318 assert dst_channel.norm
319 assert dst_channel.size == 8
322 assert dst_channel.type == UNSIGNED
[all …]
/external/mesa3d/src/gallium/auxiliary/util/
Du_format_pack.py267 def clamp_expr(src_channel, dst_channel, dst_native_type, value): argument
271 if src_channel == dst_channel:
276 dst_min = dst_channel.min()
277 dst_max = dst_channel.max()
296 dst_channel, dst_native_type, argument
312 if dst_channel.type == FLOAT:
315 assert dst_channel.type == UNSIGNED
316 assert dst_channel.norm
317 assert dst_channel.size == 8
320 assert dst_channel.type == UNSIGNED
[all …]
/external/libopus/src/
Dopus_projection_decoder.c51 int dst_channel, in opus_projection_copy_channel_out_float() argument
62 if (dst_channel == 0) in opus_projection_copy_channel_out_float()
66 mapping_matrix_multiply_channel_out_float(matrix, src, dst_channel, in opus_projection_copy_channel_out_float()
74 int dst_channel, in opus_projection_copy_channel_out_short() argument
84 if (dst_channel == 0) in opus_projection_copy_channel_out_short()
88 mapping_matrix_multiply_channel_out_short(matrix, src, dst_channel, in opus_projection_copy_channel_out_short()
Dopus_multistream_decoder.c310 int dst_channel, in opus_copy_channel_out_float() argument
325 float_dst[i*dst_stride+dst_channel] = (1/32768.f)*src[i*src_stride]; in opus_copy_channel_out_float()
327 float_dst[i*dst_stride+dst_channel] = src[i*src_stride]; in opus_copy_channel_out_float()
333 float_dst[i*dst_stride+dst_channel] = 0; in opus_copy_channel_out_float()
341 int dst_channel, in opus_copy_channel_out_short() argument
356 short_dst[i*dst_stride+dst_channel] = src[i*src_stride]; in opus_copy_channel_out_short()
358 short_dst[i*dst_stride+dst_channel] = FLOAT2INT16(src[i*src_stride]); in opus_copy_channel_out_short()
364 short_dst[i*dst_stride+dst_channel] = 0; in opus_copy_channel_out_short()
Dopus_private.h101 int dst_channel,
/external/webrtc/webrtc/common_audio/
Daudio_converter_unittest.cc151 for (size_t dst_channel = 0; dst_channel < arraysize(kChannels); in TEST() local
152 ++dst_channel) { in TEST()
154 kChannels[dst_channel], kSampleRates[dst_rate]); in TEST()
/external/webrtc/webrtc/voice_engine/
Dutility_unittest.cc215 for (int dst_channel = 0; dst_channel < kChannelsSize; dst_channel++) { in TEST_F() local
217 kChannels[dst_channel], kSampleRates[dst_rate]); in TEST_F()
/external/webp/src/demux/
Danim_decode.c201 const uint8_t dst_channel = (dst >> shift) & 0xff; in BlendChannelNonPremult() local
202 const uint32_t blend_unscaled = src_channel * src_a + dst_channel * dst_a; in BlendChannelNonPremult()