Home
last modified time | relevance | path

Searched refs:new_channels (Results 1 – 6 of 6) sorted by relevance

/third_party/ffmpeg/libavfilter/dnn/
Ddnn_backend_native_layer_depth2space.c66 int new_channels = channels / (block_size * block_size); in ff_dnn_execute_layer_depth2space() local
69 int x_linesize = new_channels * block_size; in ff_dnn_execute_layer_depth2space()
75 output_operand->dims[3] = new_channels; in ff_dnn_execute_layer_depth2space()
93 for (ch = 0; ch < new_channels; ++ch){ in ff_dnn_execute_layer_depth2space()
94 … output[by * by_linesize + x * x_linesize + bx * new_channels + ch] = input[ch]; in ff_dnn_execute_layer_depth2space()
96 input += new_channels; in ff_dnn_execute_layer_depth2space()
/third_party/gstreamer/gstplugins_good/gst/interleave/
Ddeinterleave.c372 gint new_channels; in gst_deinterleave_check_caps_change() local
375 new_channels = GST_AUDIO_INFO_CHANNELS (new_info); in gst_deinterleave_check_caps_change()
378 if (GST_AUDIO_INFO_IS_UNPOSITIONED (new_info) || new_channels == 1) in gst_deinterleave_check_caps_change()
392 if (new_channels != old_channels) in gst_deinterleave_check_caps_change()
/third_party/ffmpeg/libavcodec/
Dwavpack.c1497 int new_channels = avctx->channels; in wavpack_decode_block() local
1516 new_channels = chan; in wavpack_decode_block()
1520 new_channels = s->stereo ? 2 : 1; in wavpack_decode_block()
1526 av_get_channel_layout_nb_channels(new_chmask) != new_channels) { in wavpack_decode_block()
1532 if (new_channels != wc->dsd_channels || in wavpack_decode_block()
1536 ret = wv_dsd_reset(wc, got_dsd ? new_channels : 0); in wavpack_decode_block()
1543 avctx->channels = new_channels; in wavpack_decode_block()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/
Ddriver_nl80211_capa.c1472 int new_channels = 0; in phy_info_freqs() local
1486 new_channels++; in phy_info_freqs()
1490 mode->num_channels + new_channels, in phy_info_freqs()
1496 mode->num_channels += new_channels; in phy_info_freqs()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/
Ddriver_nl80211_capa.c1688 int new_channels = 0; in phy_info_freqs() local
1702 new_channels++; in phy_info_freqs()
1706 mode->num_channels + new_channels, in phy_info_freqs()
1712 mode->num_channels += new_channels; in phy_info_freqs()
/third_party/mesa3d/src/amd/compiler/
Daco_instruction_selection.cpp5410 unsigned new_channels = num_channels + 1; in get_fetch_data_format() local
5412 while (new_channels <= max_channels && in get_fetch_data_format()
5413 !check_vertex_fetch_size(ctx, vtx_info, offset, binding_align, new_channels)) { in get_fetch_data_format()
5414 new_channels++; in get_fetch_data_format()
5417 if (new_channels > max_channels) { in get_fetch_data_format()
5419 new_channels = *channels; in get_fetch_data_format()
5420 while (new_channels > 1 && in get_fetch_data_format()
5421 !check_vertex_fetch_size(ctx, vtx_info, offset, binding_align, new_channels)) in get_fetch_data_format()
5422 new_channels--; in get_fetch_data_format()
5425 if (new_channels < *channels) in get_fetch_data_format()
[all …]