/external/igt-gpu-tools/lib/ |
D | igt_alsa.c | 46 struct alsa { struct 91 struct alsa *alsa_init(void) in alsa_init() 93 struct alsa *alsa; in alsa_init() local 99 alsa = malloc(sizeof(struct alsa)); in alsa_init() 100 memset(alsa, 0, sizeof(struct alsa)); in alsa_init() 105 return alsa; in alsa_init() 207 int alsa_open_output(struct alsa *alsa, const char *device_name) in alsa_open_output() argument 215 skip = alsa->output_handles_count; in alsa_open_output() 216 index = alsa->output_handles_count; in alsa_open_output() 232 alsa->output_handles[index++] = handle; in alsa_open_output() [all …]
|
D | igt_alsa.h | 35 struct alsa; 38 struct alsa *alsa_init(void); 39 int alsa_open_output(struct alsa *alsa, const char *device_name); 40 void alsa_close_output(struct alsa *alsa); 41 bool alsa_test_output_configuration(struct alsa *alsa, snd_pcm_format_t dmt, 43 void alsa_configure_output(struct alsa *alsa, snd_pcm_format_t fmt, 45 void alsa_register_output_callback(struct alsa *alsa, 48 int alsa_run(struct alsa *alsa, int duration_ms);
|
D | meson.build | 105 if alsa.found() 106 lib_deps += alsa
|
/external/adhd/cras/ |
D | install_deps.sh | 42 mkdir -p /tmp/alsa-build && 43 cd /tmp/alsa-build && \ 44 wget ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.1.4.1.tar.bz2 && \ 45 bzip2 -f -d alsa-lib-* && \ 46 tar xf alsa-lib-* && \ 47 cd alsa-lib-* && \
|
D | configure.ac | 27 PKG_CHECK_MODULES([ASOUNDLIB], [ alsa >= 1.1.0 ]) 86 AC_ARG_ENABLE([alsa-plugin], AS_HELP_STRING([--disable-alsa-plugin], 129 plugindir="$dir/alsa-lib"
|
D | README.md | 22 ./configure --disable-alsa-plugin 71 There can be a config file for each sound alsa card on the system. This file
|
/external/tinycompress/ |
D | README | 16 The library can found in alsa-project.org 17 Git: git clone git://git.alsa-project.org/tinycompress.git 18 Http: http://git.alsa-project.org/?p=tinycompress.git 21 Please send any enhancements/fixes to alsa developer mailing list at: 22 alsa-devel@alsa-project.org.
|
D | NOTICE | 3 tinycompress library for compress audio offload in alsa 35 tinycompress library for compress audio offload in alsa 57 tinyplay command line player for compress audio offload in alsa 89 tinyplay command line player for compress audio offload in alsa 193 tinycompress library for compress audio offload in alsa
|
/external/oss-fuzz/projects/cras/ |
D | Dockerfile | 62 # Need to build and install alsa so there is a static lib. 63 RUN mkdir -p /tmp/alsa-build && cd /tmp/alsa-build && \ 64 wget ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.1.4.1.tar.bz2 && \ 65 bzip2 -f -d alsa-lib-* && \ 66 tar xf alsa-lib-* && \ 67 cd alsa-lib-* && \
|
/external/oss-fuzz/projects/sound-open-firmware/ |
D | Dockerfile | 47 # Use ToT alsa utils for the latest topology patches. 49 git clone $CLONE_DEFAULTS https://github.com/thesofproject/alsa-lib.git && \ 50 git clone $CLONE_DEFAULTS https://github.com/thesofproject/alsa-utils.git && \ 51 cd /tmp/alsa-lib && ./gitcompile && make install && \ 52 cd /tmp/alsa-utils && ./gitcompile && make install
|
/external/adhd/ |
D | Makefile | 62 optional_alsa_conf := $(wildcard $(ADHD_DIR)/alsa-module-config/alsa-$(BOARD).conf) 66 $(DESTDIR)/etc/modprobe.d/alsa-$(BOARD).conf: $(optional_alsa_conf) 70 install: $(DESTDIR)/etc/modprobe.d/alsa-$(BOARD).conf 74 optional_alsa_patch := $(wildcard $(ADHD_DIR)/alsa-module-config/$(BOARD)_alsa.fw)
|
/external/adhd/cros_alsa/ |
D | Cargo.toml | 6 description = "The Chromium OS alsa-lib wrapper" 9 alsa-sys = "0.2.0"
|
/external/igt-gpu-tools/tests/ |
D | kms_chamelium.c | 1245 struct alsa *alsa; member 1273 struct alsa *alsa, struct chamelium_port *port, in audio_state_init() argument 1279 state->alsa = alsa; in audio_state_init() 1287 alsa_configure_output(alsa, format, channels, rate); in audio_state_init() 1302 struct alsa *alsa = data; in run_audio_thread() local 1304 alsa_run(alsa, -1); in run_audio_thread() 1335 run_audio_thread, state->alsa); in audio_state_start() 1552 alsa_register_output_callback(state->alsa, in test_audio_frequencies() 1704 alsa_register_output_callback(state->alsa, in test_audio_flatline() 1800 static bool check_audio_configuration(struct alsa *alsa, snd_pcm_format_t format, in check_audio_configuration() argument [all …]
|
/external/igt-gpu-tools/ |
D | configure.ac | 167 PKG_CHECK_MODULES(ALSA, [alsa], [alsa=yes], [alsa=no]) 168 AM_CONDITIONAL(HAVE_ALSA, [test "x$alsa" = xyes]) 193 if test x"$alsa" != xyes; then 194 AC_MSG_ERROR([Failed to find alsa, required by chamelium.])
|
D | meson.build | 159 alsa = dependency('alsa', required : build_chamelium) variable 162 if xmlrpc.found() and xmlrpc_util.found() and xmlrpc_client.found() and gsl.found() and alsa.found(… 169 alsa,
|
D | Dockerfile.fedora | 17 'pkgconfig(alsa)' \
|
/external/oss-fuzz/projects/ffmpeg/ |
D | build.sh | 30 bzip2 -f -d alsa-lib-* 31 tar xf alsa-lib-* 32 cd alsa-lib-*
|
D | Dockerfile | 28 RUN wget https://www.alsa-project.org/files/pub/lib/alsa-lib-1.1.0.tar.bz2
|
/external/adhd/sound_card_init/dsm/ |
D | Cargo.lock | 4 name = "alsa-sys" 37 "alsa-sys",
|
/external/parameter-framework/upstream/ |
D | README.md | 24 The parameter-framework can be used to set the value of alsa controls 27 (i.e. alsa controls), you may use the 28 [alsa plugin](https://github.com/01org/parameter-framework-plugins-alsa).
|
/external/parameter-framework/upstream/skeleton-subsystem/ |
D | README.md | 12 <https://github.com/01org/parameter-framework-plugins-alsa> or
|
/external/adhd/sound_card_init/amp/ |
D | Cargo.lock | 4 name = "alsa-sys" 57 "alsa-sys",
|
/external/adhd/sound_card_init/ |
D | Cargo.lock | 4 name = "alsa-sys" 57 "alsa-sys",
|
/external/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-alexa/ |
D | README.md | 17 |libasound|libasound2-dev|alsa-lib-devel|
|
/external/kernel-headers/original/uapi/linux/ |
D | media.h | 187 } alsa; member
|