Home
last modified time | relevance | path

Searched refs:chmask (Results 1 – 7 of 7) sorted by relevance

/third_party/ffmpeg/libavformat/
Dwvdec.c55 uint32_t chmask; member
83 uint32_t chmask, flags; in wv_read_block_header() local
117 chmask = flags & WV_MONO ? AV_CH_LAYOUT_MONO : AV_CH_LAYOUT_STEREO; in wv_read_block_header()
122 chmask = wc->chmask; in wv_read_block_header()
148 chmask = avio_r8(pb); in wv_read_block_header()
151 chmask = avio_rl16(pb); in wv_read_block_header()
154 chmask = avio_rl24(pb); in wv_read_block_header()
157 chmask = avio_rl32(pb); in wv_read_block_header()
163 chmask = avio_rl24(pb); in wv_read_block_header()
169 chmask = avio_rl32(pb); in wv_read_block_header()
[all …]
Dflacdec.c178 AVDictionaryEntry *chmask; in flac_read_header() local
188 chmask = av_dict_get(s->metadata, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", NULL, 0); in flac_read_header()
189 if (chmask) { in flac_read_header()
190 uint64_t mask = strtol(chmask->value, NULL, 0); in flac_read_header()
Dflacenc.c243 AVDictionaryEntry *chmask = av_dict_get(s->metadata, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", in flac_init() local
246 if (chmask) { in flac_init()
Dmatroskadec.c2058 AVDictionaryEntry *chmask; in matroska_parse_flac() local
2061 chmask = av_dict_get(dict, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", NULL, 0); in matroska_parse_flac()
2062 if (chmask) { in matroska_parse_flac()
2063 uint64_t mask = strtol(chmask->value, NULL, 0); in matroska_parse_flac()
/third_party/ffmpeg/libavcodec/
Dwavpack.c1094 uint64_t chmask = 0; in wavpack_decode_block() local
1400 chmask = bytestream2_get_byte(&gb); in wavpack_decode_block()
1403 chmask = bytestream2_get_le16(&gb); in wavpack_decode_block()
1406 chmask = bytestream2_get_le24(&gb); in wavpack_decode_block()
1409 chmask = bytestream2_get_le32(&gb); in wavpack_decode_block()
1418 chmask = bytestream2_get_le24(&gb); in wavpack_decode_block()
1427 chmask = bytestream2_get_le32(&gb); in wavpack_decode_block()
1433 chmask = avctx->channel_layout; in wavpack_decode_block()
1517 if (chmask) in wavpack_decode_block()
1518 new_chmask = chmask; in wavpack_decode_block()
/third_party/mesa3d/src/freedreno/ir3/
Dir3_compiler_nir.c4063 struct ir3_instruction *chmask = in ir3_compile_shader_nir() local
4065 chmask->barrier_class = IR3_BARRIER_EVERYTHING; in ir3_compile_shader_nir()
4066 chmask->barrier_conflict = IR3_BARRIER_EVERYTHING; in ir3_compile_shader_nir()
4069 __ssa_src(chmask, outputs[i], 0)->num = regids[i]; in ir3_compile_shader_nir()
4071 chmask->end.outidxs = ralloc_array(chmask, unsigned, outputs_count); in ir3_compile_shader_nir()
4072 memcpy(chmask->end.outidxs, outidxs, sizeof(unsigned) * outputs_count); in ir3_compile_shader_nir()
4074 array_insert(ctx->block, ctx->block->keeps, chmask); in ir3_compile_shader_nir()
Ddisasm-a3xx.c168 OPC(0, OPC_CHMASK, chmask),