Home
last modified time | relevance | path

Searched refs:dca (Results 1 – 25 of 32) sorted by relevance

12

/third_party/ffmpeg/tests/fate/
Ddca.mak25 FATE_DCADEC_LOSSLESS_$(2) += fate-dca-$(1) fate-dca-$(1)-dmix_2 fate-dca-$(1)-dmix_6
26 fate-dca-$(1): CMD = framemd5 -i $(TARGET_SAMPLES)/dts/dcadec-suite/$(1).dtshd -c:a pcm_$(2) -af ar…
27 fate-dca-$(1)-dmix_2: CMD = framemd5 -request_channel_layout 0x3 -i $(TARGET_SAMPLES)/dts/dcadec-…
28 fate-dca-$(1)-dmix_6: CMD = framemd5 -request_channel_layout 0x60f -i $(TARGET_SAMPLES)/dts/dcadec-…
32 FATE_DCADEC_LOSSY += fate-dca-$(1)
33 fate-dca-$(1): CMD = ffmpeg -i $(TARGET_SAMPLES)/dts/dcadec-suite/$(1).dtshd -f f32le -af aresample…
34 fate-dca-$(1): REF = $(SAMPLES)/dts/dcadec-suite/$(1).f32
42 FATE_DCADEC_LOSSY += fate-dca-core_51_24_48_768_1-dmix_2
43 fate-dca-core_51_24_48_768_1-dmix_2: CMD = ffmpeg -request_channel_layout 0x3 -i $(TARGET_SAMPLES)/…
44 fate-dca-core_51_24_48_768_1-dmix_2: REF = $(SAMPLES)/dts/dcadec-suite/core_51_24_48_768_1-dmix_2.f…
[all …]
Dacodec.mak117 FATE_ACODEC-$(call ENCDEC, DCA, DTS, ARESAMPLE_FILTER) += fate-acodec-dca
118 fate-acodec-dca: tests/data/asynth-44100-2.wav
119 fate-acodec-dca: SRC = tests/data/asynth-44100-2.wav
120 fate-acodec-dca: CMD = md5 -i $(TARGET_PATH)/$(SRC) -c:a dca -strict -2 -f dts -flags +bitexact -af…
121 fate-acodec-dca: CMP = oneline
122 fate-acodec-dca: REF = 2aa580ac67820fce4f581b96ebb34acc
125 fate-acodec-dca2: CMD = enc_dec_pcm dts wav s16le $(SRC) -c:a dca -strict -2 -flags +bitexact -af a…
/third_party/mesa3d/src/glx/
Ddri_common.c516 struct dri_ctx_attribs *dca) in dri_convert_glx_attribs() argument
521 dca->major_ver = 1; in dri_convert_glx_attribs()
522 dca->minor_ver = 0; in dri_convert_glx_attribs()
523 dca->render_type = GLX_RGBA_TYPE; in dri_convert_glx_attribs()
524 dca->reset = __DRI_CTX_RESET_NO_NOTIFICATION; in dri_convert_glx_attribs()
525 dca->release = __DRI_CTX_RELEASE_BEHAVIOR_FLUSH; in dri_convert_glx_attribs()
526 dca->flags = 0; in dri_convert_glx_attribs()
527 dca->api = __DRI_API_OPENGL; in dri_convert_glx_attribs()
528 dca->no_error = 0; in dri_convert_glx_attribs()
540 dca->major_ver = attribs[i * 2 + 1]; in dri_convert_glx_attribs()
[all …]
Ddri3_glx.c245 struct dri_ctx_attribs dca; in dri3_create_context_attribs() local
249 *error = dri_convert_glx_attribs(num_attribs, attribs, &dca); in dri3_create_context_attribs()
254 if (!validate_renderType_against_config(config_base, dca.render_type)) in dri3_create_context_attribs()
268 if (!!shareList->noError != !!dca.no_error) { in dri3_create_context_attribs()
287 ctx_attribs[num_ctx_attribs++] = dca.major_ver; in dri3_create_context_attribs()
289 ctx_attribs[num_ctx_attribs++] = dca.minor_ver; in dri3_create_context_attribs()
295 if (dca.reset != __DRI_CTX_RESET_NO_NOTIFICATION) { in dri3_create_context_attribs()
297 ctx_attribs[num_ctx_attribs++] = dca.reset; in dri3_create_context_attribs()
300 if (dca.release != __DRI_CTX_RELEASE_BEHAVIOR_FLUSH) { in dri3_create_context_attribs()
302 ctx_attribs[num_ctx_attribs++] = dca.release; in dri3_create_context_attribs()
[all …]
Ddri2_glx.c167 struct dri_ctx_attribs dca; in dri2_create_context_attribs() local
171 *error = dri_convert_glx_attribs(num_attribs, attribs, &dca); in dri2_create_context_attribs()
176 if (!validate_renderType_against_config(config_base, dca.render_type)) in dri2_create_context_attribs()
190 if (!!shareList->noError != !!dca.no_error) { in dri2_create_context_attribs()
209 ctx_attribs[num_ctx_attribs++] = dca.major_ver; in dri2_create_context_attribs()
211 ctx_attribs[num_ctx_attribs++] = dca.minor_ver; in dri2_create_context_attribs()
217 if (dca.reset != __DRI_CTX_RESET_NO_NOTIFICATION) { in dri2_create_context_attribs()
219 ctx_attribs[num_ctx_attribs++] = dca.reset; in dri2_create_context_attribs()
222 if (dca.release != __DRI_CTX_RELEASE_BEHAVIOR_FLUSH) { in dri2_create_context_attribs()
224 ctx_attribs[num_ctx_attribs++] = dca.release; in dri2_create_context_attribs()
[all …]
Ddrisw_glx.c566 struct dri_ctx_attribs dca; in drisw_create_context_attribs() local
576 *error = dri_convert_glx_attribs(num_attribs, attribs, &dca); in drisw_create_context_attribs()
581 if (!validate_renderType_against_config(config_base, dca.render_type)) { in drisw_create_context_attribs()
596 if (!!shareList->noError != !!dca.no_error) { in drisw_create_context_attribs()
615 ctx_attribs[num_ctx_attribs++] = dca.major_ver; in drisw_create_context_attribs()
617 ctx_attribs[num_ctx_attribs++] = dca.minor_ver; in drisw_create_context_attribs()
618 if (dca.reset != __DRI_CTX_RESET_NO_NOTIFICATION) { in drisw_create_context_attribs()
620 ctx_attribs[num_ctx_attribs++] = dca.reset; in drisw_create_context_attribs()
623 if (dca.release != __DRI_CTX_RELEASE_BEHAVIOR_FLUSH) { in drisw_create_context_attribs()
625 ctx_attribs[num_ctx_attribs++] = dca.release; in drisw_create_context_attribs()
[all …]
Ddri_common.h82 struct dri_ctx_attribs *dca);
/third_party/mesa3d/src/mesa/math/
Dm_debug_clip.c233 GLubyte dm[TEST_COUNT], dco, dca; in test_cliptest_function() local
277 dca = rca = CLIP_FRUSTUM_BITS; in test_cliptest_function()
283 func( source, dest, dm, &dco, &dca, viewport_z_clip ); in test_cliptest_function()
287 func( source, dest, dm, &dco, &dca, viewport_z_clip ); in test_cliptest_function()
295 if ( dca != rca ) { in test_cliptest_function()
297 printf( "dca = 0x%02x rca = 0x%02x\n", dca, rca ); in test_cliptest_function()
/third_party/skia/third_party/externals/spirv-cross/shaders-msl-no-opt/vulkan/frag/
Dtexture-access-function.swizzle.vk.frag21 …uffer tb, sampler2DShadow d2, samplerCubeShadow dc, texture2DArray d2a, samplerCubeArrayShadow dca)
35 c.r = texture(dca, vec4(0.0, 0.0, 0.0, 0.0), 1.0);
83 c = textureGather(dca, vec4(0.0, 0.0, 0.0, 0.0), 1.0);
/third_party/ffmpeg/libavcodec/
Ddca_xll.c907 DCAContext *dca = s->avctx->priv_data; in parse_sub_headers() local
937 switch (dca->request_channel_layout) { in parse_sub_headers()
1241 DCAContext *dca = s->avctx->priv_data; in force_lossy_output() local
1250 if (ff_dca_core_map_spkr(&dca->core, c->ch_remap[ch]) < 0) in force_lossy_output()
1258 DCAContext *dca = s->avctx->priv_data; in combine_residual_frame() local
1263 if (!(dca->packet & DCA_PACKET_CORE)) { in combine_residual_frame()
1268 if (c->freq != dca->core.output_rate) { in combine_residual_frame()
1269 …OG_WARNING, "Sample rate mismatch between core (%d Hz) and XLL (%d Hz)\n", dca->core.output_rate, … in combine_residual_frame()
1273 if (nsamples != dca->core.npcmsamples) { in combine_residual_frame()
1274 …, "Number of samples per frame mismatch between core (%d) and XLL (%d)\n", dca->core.npcmsamples, … in combine_residual_frame()
[all …]
Ddcadec.h87 DCAContext *dca = avctx->priv_data; in ff_dca_check_crc() local
93 if (av_crc(dca->crctab, 0xffff, s->buffer + p1 / 8, (p2 - p1) / 8)) in ff_dca_check_crc()
Ddca_core.c1689 DCAContext *dca = s->avctx->priv_data; in parse_optional_info() local
1705 if (s->ext_audio_present && !dca->core_only) { in parse_optional_info()
1716 if (dca->request_channel_layout) in parse_optional_info()
1769 if (dca->request_channel_layout) in parse_optional_info()
1780 !av_crc(dca->crctab, 0xffff, s->gb.buffer + in parse_optional_info()
1836 DCAContext *dca = avctx->priv_data; in ff_dca_core_parse_exss() local
1841 if (!dca->request_channel_layout) { in ff_dca_core_parse_exss()
1885 if (!(dca->packet & DCA_PACKET_XLL)) { in ff_dca_core_parse_exss()
2068 DCAContext *dca = avctx->priv_data; in filter_frame_fixed() local
2072 if (!(dca->packet & DCA_PACKET_XLL) && (ret = ff_dca_core_filter_fixed(s, 0)) < 0) in filter_frame_fixed()
[all …]
Ddca_lbr.c1127 DCAContext *dca = s->avctx->priv_data; in parse_decoder_init() local
1135 if (dca->request_channel_layout != DCA_SPEAKER_LAYOUT_STEREO && !(s->warned & 4)) { in parse_decoder_init()
DMakefile287 OBJS-$(CONFIG_DCA_DECODER) += dcadec.o dca.o dcadata.o dcahuff.o \
1127 OBJS-$(CONFIG_DCA_PARSER) += dca_parser.o dca_exss.o dca.o \
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl-no-opt/vulkan/frag/
Dtexture-access-function.swizzle.vk.frag141 …ay<float> d2a, constant uint& d2aSwzl, thread const depthcube_array<float> dca, thread const sampl…
152 …c.x = spvTextureSwizzle(dca.sample_compare(dcaSmplr, float4(0.0).xyz, uint(round(float4(0.0).w)), …
184 …c = spvGatherCompareSwizzle(dca, dcaSmplr, dcaSwzl, float4(0.0).xyz, uint(round(float4(0.0).w)), 1…
/third_party/pulseaudio/src/modules/alsa/mixer/profile-sets/
Dforce-speaker-and-int-mic.conf111 device-strings = dca:%f
Dforce-speaker.conf110 device-strings = dca:%f
Ddefault.conf202 device-strings = dca:%f
/third_party/ffmpeg/tests/
DMakefile172 include $(SRC_PATH)/tests/fate/dca.mak
/third_party/ffmpeg/
DMAINTAINERS163 dca* foo86
DBUILD.gn342 # "//third_party/ffmpeg/libavcodec/dca.c",
DChangelog1690 - floating-point sample format support to the ac3, eac3, dca, aac, and vorbis decoders.
/third_party/python/Lib/test/
Dmime.types44 application/dca-rft
/third_party/tzdata/
Dnorthamerica634 # http://www.commerce.state.ak.us/dca/commdb/CIS.cfm?Comm_Boro_name=Metlakatla
/third_party/elfutils/tests/
Dtestfile44.expect.bz21testfile44.o: elf32-elf_i386 2 3Disassembly of section .text: 4 5 0 ...

12