Searched refs:streamCfg (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/Devices/Audio/
H A DDevSB16.cpp458 PDMAUDIOSTREAMCFG streamCfg; local
459 streamCfg.uHz = pThis->freq;
460 streamCfg.cChannels = 1 << pThis->fmt_stereo;
461 streamCfg.enmFormat = pThis->fmt;
462 streamCfg.enmEndianness = PDMAUDIOHOSTENDIANNESS;
464 int rc = sb16OpenOut(pThis, &streamCfg);
469 audsettings_t streamCfg;
470 streamCfg.freq = pThis->freq;
471 streamCfg.nchannels = 1 << pThis->fmt_stereo;
472 streamCfg
611 PDMAUDIOSTREAMCFG streamCfg; local
1133 PDMAUDIOSTREAMCFG streamCfg; local
1142 audsettings_t streamCfg; local
1436 PDMAUDIOSTREAMCFG streamCfg; local
2051 PDMAUDIOSTREAMCFG streamCfg; local
[all...]
H A DDrvHostALSAAudio.cpp1095 PDMAUDIOSTREAMCFG streamCfg; local
1096 streamCfg.uHz = obt.freq;
1097 streamCfg.cChannels = obt.nchannels;
1098 streamCfg.enmFormat = enmFormat;
1099 streamCfg.enmEndianness = enmEnd;
1101 rc = drvAudioStreamCfgToProps(&streamCfg, &pHstStrmOut->Props);
1166 PDMAUDIOSTREAMCFG streamCfg; local
1167 streamCfg.uHz = obt.freq;
1168 streamCfg.cChannels = obt.nchannels;
1169 streamCfg
[all...]
H A DDrvHostOSSAudio.cpp595 PDMAUDIOSTREAMCFG streamCfg; local
596 streamCfg.enmFormat = obtStream.enmFormat;
597 streamCfg.uHz = obtStream.uFreq;
598 streamCfg.cChannels = pCfg->cChannels;
599 streamCfg.enmEndianness = obtStream.enmENDIANNESS;
601 rc = drvAudioStreamCfgToProps(&streamCfg, &pHstStrmIn->Props);
672 PDMAUDIOSTREAMCFG streamCfg; local
673 streamCfg.enmFormat = obtStream.enmFormat;
674 streamCfg.uHz = obtStream.uFreq;
675 streamCfg
[all...]
H A DDrvHostPulseAudio.cpp587 PDMAUDIOSTREAMCFG streamCfg;
589 &streamCfg.enmFormat, &streamCfg.enmEndianness);
596 streamCfg.uHz = pThisStrmOut->SampleSpec.rate;
597 streamCfg.cChannels = pThisStrmOut->SampleSpec.channels;
599 rc = drvAudioStreamCfgToProps(&streamCfg, &pHstStrmOut->Props);
664 PDMAUDIOSTREAMCFG streamCfg;
665 rc = drvHostPulseAudioPulseToFmt(pThisStrmIn->SampleSpec.format, &streamCfg.enmFormat,
666 &streamCfg.enmEndianness);
673 streamCfg
[all...]
H A DDrvHostDSound.cpp81 PDMAUDIOSTREAMCFG streamCfg; member in struct:DSOUNDSTREAMOUT
93 PDMAUDIOSTREAMCFG streamCfg; member in struct:DSOUNDSTREAMIN
386 int rc = dsoundWaveFmtFromCfg(&pDSoundStrmOut->streamCfg, &wfx);
715 int rc = dsoundWaveFmtFromCfg(&pDSoundStrmIn->streamCfg, &wfx);
990 pDSoundStrmOut->streamCfg = *pCfg;
991 pDSoundStrmOut->streamCfg.enmEndianness = PDMAUDIOHOSTENDIANNESS;
993 int rc = drvAudioStreamCfgToProps(&pDSoundStrmOut->streamCfg, &pDSoundStrmOut->hw.Props);
1010 RT_ZERO(pDSoundStrmOut->streamCfg);
1214 RT_ZERO(pDSoundStrmOut->streamCfg);
1230 pDSoundStrmIn->streamCfg
[all...]
H A DDevIchAc97.cpp563 PDMAUDIOSTREAMCFG streamCfg; local
564 RT_ZERO(streamCfg);
565 streamCfg.uHz = freq;
566 streamCfg.cChannels = 2;
567 streamCfg.enmFormat = AUD_FMT_S16;
568 streamCfg.enmEndianness = PDMAUDIOHOSTENDIANNESS;
585 pszDesc, PDMAUDIORECSOURCE_LINE_IN, &streamCfg, &pDrv->LineIn.pStrmIn);
612 rc = pDrv->pConnector->pfnOpenOut(pDrv->pConnector, pszDesc, &streamCfg, &pDrv->Out.pStrmOut);
640 pszDesc, PDMAUDIORECSOURCE_MIC, &streamCfg, &pDrv->MicIn.pStrmIn);
990 PDMAUDIOSTREAMCFG streamCfg; local
[all...]
H A DDevIchHda.cpp3847 PDMAUDIOSTREAMCFG streamCfg;
3848 streamCfg.uHz = 41000;
3849 streamCfg.cChannels = 2;
3850 streamCfg.enmFormat = AUD_FMT_S16;
3851 streamCfg.enmEndianness = PDMAUDIOHOSTENDIANNESS;
3853 rc = audioMixerSetDeviceFormat(pThis->pMixer, &streamCfg);

Completed in 73 milliseconds