Searched defs:as (Results 1 - 14 of 14) sorted by relevance

/vbox/src/VBox/Devices/Audio/
H A Ddsound_template.h6 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * General Public License (GPL) as published by the Free Software
10 * Foundation, in version 2 as it comes in the "COPYING" file of the
166 memset (&ds->as, 0, sizeof(ds->as));
176 memset (&ds->as, 0, sizeof(ds->as));
181 static int dsound_init_in (HWVoiceIn *hw, audsettings_t *as) argument
189 ds->as = *as;
201 dsound_init_out(HWVoiceOut *hw, audsettings_t *as) argument
[all...]
H A Dnoaudio.c80 static int no_init_out (HWVoiceOut *hw, audsettings_t *as) argument
82 audio_pcm_init_info (&hw->info, as);
99 static int no_init_in (HWVoiceIn *hw, audsettings_t *as) argument
101 audio_pcm_init_info (&hw->info, as);
H A Dalsaaudio.c337 LogRel(("ALSA: Failed to open '%s' as %s\n", pcm_name, typ));
809 static int alsa_init_out (HWVoiceOut *hw, audsettings_t *as) argument
820 req.fmt = aud_to_alsafmt (as->fmt);
821 req.freq = as->freq;
822 req.nchannels = as->nchannels;
895 static int alsa_init_in (HWVoiceIn *hw, audsettings_t *as) argument
906 req.fmt = aud_to_alsafmt (as->fmt);
907 req.freq = as->freq;
908 req.nchannels = as->nchannels;
H A Dfilteraudio.c12 * This file is part of VirtualBox Open Source Edition (OSE), as
15 * General Public License (GPL) as published by the Free Software
16 * Foundation, in version 2 as it comes in the "COPYING" file of the
290 static int filteraudio_init_out(HWVoiceOut *hw, audsettings_t *as);
314 LogRel(("FilterAudio: [Output] Warning! After recreation, the CoreAudio ring buffer doesn't has the same size as the device buffer (%RU32 vs. %RU32).\n", cSamples, (uint32_t)pVoice->phw->samples));
354 /* Iterate as long as data is available */
468 static int filteraudio_init_out(HWVoiceOut *phw, audsettings_t *as) argument
477 return filter_conf.pDrv->pcm_ops->init_out(phw, as);
491 audio_pcm_init_info(&pVoice->phw->info, as);
820 filteraudio_init_in(HWVoiceIn *phw, audsettings_t *as) argument
[all...]
H A Dossaudio.c517 static int oss_init_out (HWVoiceOut *hw, audsettings_t *as) argument
529 req.fmt = aud_to_ossfmt (as->fmt);
530 req.freq = as->freq;
531 req.nchannels = as->nchannels;
677 static int oss_init_in (HWVoiceIn *hw, audsettings_t *as) argument
689 req.fmt = aud_to_ossfmt (as->fmt);
690 req.freq = as->freq;
691 req.nchannels = as->nchannels;
H A Dpulseaudio.c9 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
285 /* not applicable as we don't use pa_stream_get_latency() and pa_stream_get_time() */
366 static int pulse_init_out (HWVoiceOut *hw, audsettings_t *as) argument
374 pPulse->SampleSpec.format = aud_to_pulsefmt (as->fmt);
375 pPulse->SampleSpec.rate = as->freq;
376 pPulse->SampleSpec.channels = as->nchannels;
383 pPulse->BufAttr.prebuf = -1; /* Same as tlength */
549 static int pulse_init_in (HWVoiceIn *hw, audsettings_t *as) argument
[all...]
H A Dsolaudio.c9 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
262 static int solaudio_init_out (HWVoiceOut *hw, audsettings_t *as) argument
268 pSol->AudioInfo.play.sample_rate = as->freq;
269 pSol->AudioInfo.play.channels = as->nchannels;
270 pSol->AudioInfo.play.precision = aud_to_solfmt(as->fmt);
273 if (as->fmt == AUD_FMT_U8)
296 ObtAudioInfo.endianness = as->endianness;
629 static int solaudio_init_in (HWVoiceIn *hw, audsettings_t *as) argument
[all...]
H A Dcoreaudio.c9 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
541 static int coreaudio_init_out(HWVoiceOut *hw, audsettings_t *as);
630 /* Iterate as long as data is available */
786 /* Set the default audio output device as the device for the new AudioUnit. */
880 thread is as we like. */
929 LogRel(("CoreAudio: [Output] Warning! After recreation, the CoreAudio ring buffer doesn't has the same size as the device buffer (%RU32 vs. %RU32).\n", cSamples, (uint32_t)hw->samples));
991 /* Iterate as lon
1132 coreaudio_init_out(HWVoiceOut *hw, audsettings_t *as) argument
2070 coreaudio_init_in(HWVoiceIn *hw, audsettings_t *as) argument
[all...]
H A Ddsoundaudio.c9 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
42 * SEAL 1.07 by Carlos 'pel' Hasan was used as documentation
111 audsettings_t as; member in struct:__anon9900
120 audsettings_t as; member in struct:__anon9901
151 str = "The request failed because resources, such as a priority level, were already in use by another caller";
329 static int waveformat_from_audio_settings (WAVEFORMATEX *wfx, audsettings_t *as) argument
334 wfx->nChannels = as->nchannels;
335 wfx->nSamplesPerSec = as
368 waveformat_to_audio_settings(WAVEFORMATEX *wfx, audsettings_t *as) argument
[all...]
H A Daudio.c543 static void audio_print_settings (audsettings_t *as) argument
545 dolog ("frequency=%d nchannels=%d fmt=", as->freq, as->nchannels);
547 switch (as->fmt) {
567 AUD_log (NULL, "invalid(%d)", as->fmt);
572 switch (as->endianness) {
586 static int audio_validate_settings (audsettings_t *as) argument
590 invalid = as->nchannels != 1 && as->nchannels != 2;
591 invalid |= as
610 audio_pcm_info_eq(struct audio_pcm_info *info, audsettings_t *as) argument
639 audio_pcm_init_info(struct audio_pcm_info *info, audsettings_t *as) argument
1778 AUD_add_capture( AudioState *s, audsettings_t *as, struct audio_capture_ops *ops, void *cb_opaque ) argument
[all...]
H A DDevIchAc97.cpp9 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
158 AC97_Headphone_Volume_Mute = 0x04, /** Also known as AUX, see table 16, section 5.7. */
724 audsettings_t as; local
725 as.freq = freq;
726 as.nchannels = 2;
727 as.fmt = AUD_FMT_S16;
728 as.endianness = 0;
733 pThis->voice_pi = AUD_open_in(&pThis->card, pThis->voice_pi, "ac97.pi", pThis, ichac97InputCallback, &as);
[all...]
H A DDevIchHdaCodec.cpp13 * This file is part of VirtualBox Open Source Edition (OSE), as
16 * General Public License (GPL) as published by the Free Software
17 * Foundation, in version 2 as it comes in the "COPYING" file of the
753 pNode->node.au32F00_param[0xF] = 0; /* Power statest Supported: are the same as AFG reports */
1207 /** @todo In SetVolume no passing audmixerctl_in as its not used in DrvAudio.cpp. */
2462 PDMAUDIOSTREAMCFG as; local
2463 as.uHz = 44100;
2464 as.cChannels = 2;
2465 as.enmFormat = AUD_FMT_S16;
2466 as
2471 audsettings_t as; local
[all...]
/vbox/src/VBox/Main/src-client/
H A DDrvAudioVideoRec.cpp9 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
45 //@todo move t_sample as a PDM interface
132 static int drvAudioVideoRecPcmInitInfo(PDMPCMPROPS * pProps, PPDMAUDIOSTREAMCFG as) argument
139 switch (as->enmFormat)
165 pProps->uHz = as->uHz;
168 pProps->cChannels = as->cChannels;
169 pProps->cShift = (as->cChannels == 2) + cShift;
172 pProps->fSwapEndian = (as
[all...]
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxws-rt.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...

Completed in 95 milliseconds