Searched refs:cChannels (Results 1 - 25 of 28) sorted by relevance

12

/vbox/src/VBox/Main/include/
H A DDrvAudioVideoRec.h44 int handleVideoRecSvrCmdAudioInputEventBegin(void *pvContext, int iSampleHz, int cChannels, int cBits, bool fUnsigned);
H A DConsoleVRDPServer.h145 uint32_t cChannels,
/vbox/src/VBox/Devices/Audio/
H A DDrvAudioCommon.cpp307 && pProps->cChannels == pCfg->cChannels
355 pProps->cChannels = pCfg->cChannels;
356 pProps->cShift = (pCfg->cChannels == 2) + cShift;
372 LogFlowFunc(("uHz=%RU32, cChannels=%RU8, enmFormat=",
373 pCfg->uHz, pCfg->cChannels));
H A DDrvHostOSSAudio.cpp62 uint8_t cChannels; member in struct:OSSAUDIOSTREAMCFG
267 int cChannels = pReq->cChannels; local
268 if (ioctl(hFile, SNDCTL_DSP_CHANNELS, &cChannels))
271 pReq->cChannels, strerror(errno)));
317 pObt->cChannels = cChannels;
580 reqStream.cChannels = pCfg->cChannels;
598 streamCfg.cChannels
[all...]
H A DDrvHostALSAAudio.cpp383 unsigned int cChannels = pCfgReq->nchannels; local
447 err = snd_pcm_hw_params_set_channels_near(phPCM, pHWParms, &cChannels);
455 if ( cChannels != 1
456 && cChannels != 2)
458 LogRel(("ALSA: Number of audio channels (%u) not supported\n", cChannels));
638 << (cChannels == 2)
655 pCfgObt->nchannels = cChannels;
1080 req.nchannels = pCfg->cChannels;
1097 streamCfg.cChannels = obt.nchannels;
1151 req.nchannels = pCfg->cChannels;
[all...]
H A Daudiosniffer.c351 int cChannels,
364 iSampleHz, cChannels, cBits, fUnsigned, pCtx->fEndedByFilter));
369 pCtx->cBytesPerFrame = ((cBits + 7) / 8) * cChannels;
384 pCtx->conv = mixeng_conv[(cChannels == 2)? 1: 0] /* stereo */
348 iface_AudioInputEventBegin(PPDMIAUDIOSNIFFERPORT pInterface, void *pvContext, int iSampleHz, int cChannels, int cBits, bool fUnsigned) argument
H A DDrvAudio.cpp284 bool fValid = ( pCfg->cChannels == 1
285 || pCfg->cChannels == 2); /* Either stereo (2) or mono (1), per stream. */
340 int shift = pPCMInfo->cChannels - 1;
355 int shift = pPCMInfo->cChannels - 1;
1316 {"DACFixedChannels", AUD_OPT_INT, &conf.fixed_out.settings.cChannels,
1332 {"ADCFixedChannels", AUD_OPT_INT, &conf.fixed_in.settings.cChannels,
H A DDrvHostPulseAudio.cpp571 pThisStrmOut->SampleSpec.channels = pCfg->cChannels;
597 streamCfg.cChannels = pThisStrmOut->SampleSpec.channels;
651 pThisStrmIn->SampleSpec.channels = pCfg->cChannels;
674 streamCfg.cChannels = pThisStrmIn->SampleSpec.channels;
H A DDrvHostDSound.cpp127 pFmt->nChannels = pCfg->cChannels;
129 pFmt->nAvgBytesPerSec = pCfg->uHz << (pCfg->cChannels == 2 ? 1: 0);
130 pFmt->nBlockAlign = 1 << (pCfg->cChannels == 2 ? 1: 0);
374 pDSoundStrmOut->hw.Props.cChannels,
703 pDSoundStrmIn->hw.Props.cChannels,
H A DDevSB16.cpp460 streamCfg.cChannels = 1 << pThis->fmt_stereo;
613 streamCfg.cChannels = 1 << pThis->fmt_stereo;
1135 streamCfg.cChannels = 1; /* Mono */
1438 streamCfg.cChannels = 2;
2053 streamCfg.cChannels = 1 << pThis->fmt_stereo;
H A DDevIchAc97.cpp566 streamCfg.cChannels = 2;
992 streamCfg.cChannels = 2;
H A DAudioMixBuffer.cpp652 pProps->cChannels,
H A DDrvHostCoreAudio.cpp112 pStreamDesc->mChannelsPerFrame = pPcmProperties->cChannels;
H A DDevIchHda.cpp1778 pCfg->cChannels = (u32SdFmt & 0xf) + 1;
3849 streamCfg.cChannels = 2;
/vbox/src/VBox/Main/src-client/
H A DAudioSnifferInterface.cpp126 uint32_t cChannels,
135 cChannels,
121 iface_AudioInputBegin(PPDMIAUDIOSNIFFERCONNECTOR pInterface, void **ppvUserCtx, void *pvContext, uint32_t cSamples, uint32_t iSampleHz, uint32_t cChannels, uint32_t cBits) argument
H A DDrvAudioVideoRec.cpp168 pProps->cChannels = as->cChannels;
169 pProps->cShift = (as->cChannels == 2) + cShift;
497 pHostVoiceOut->Props.cChannels,
502 pHostVoiceOut->Props.uHz, pHostVoiceOut->Props.cChannels,
604 pHostVoiceIn->Props.cChannels, pHostVoiceIn->Props.cBits);
669 int AudioVideoRec::handleVideoRecSvrCmdAudioInputEventBegin(void *pvContext, int iSampleHz, int cChannels, argument
676 pVRDEVoice->cBytesPerFrame = ((cBits + 7) / 8) * cChannels;
693 (cChannels == 2) ? 1 : 0,
H A DDrvAudioVRDE.cpp231 pHstStrmOut->Props.cChannels,
248 pHstStrmOut->Props.uHz, pHstStrmOut->Props.cChannels,
347 pThisStrmIn->Props.cChannels, pThisStrmIn->Props.cBits);
444 int cChannels = VRDE_AUDIO_FMT_CHANNELS(audioFmt); local
448 LogFlowFunc(("cbSample=%RU32, iSampleHz=%d, cChannels=%d, cBits=%d, fUnsigned=%RTbool\n",
449 VRDE_AUDIO_FMT_BYTES_PER_SAMPLE(audioFmt), iSampleHz, cChannels, cBits, fUnsigned));
H A DConsoleVRDPServer.cpp3915 uint32_t cChannels,
3924 VRDEAUDIOFORMAT audioFormat = VRDE_AUDIO_FMT_MAKE(iSampleHz, cChannels, cBits, 0);
3911 SendAudioInputBegin(void **ppvUserCtx, void *pvContext, uint32_t cSamples, uint32_t iSampleHz, uint32_t cChannels, uint32_t cBits) argument
/vbox/include/VBox/vmm/
H A Dpdmaudioifs.h111 uint8_t cChannels; member in struct:PDMAUDIOSTREAMCFG
194 uint8_t cChannels; member in struct:PDMPCMPROPS
H A Dpdmifs.h2900 * @param cChannels Number of channels. 1 for mono, 2 for stereo.
2907 int cChannels,
2955 * @param cChannels Number of channels. 1 for mono, 2 for stereo.
2961 int iSampleHz, int cChannels, int cBits, bool fUnsigned));
2983 * @param cChannels Number of channels. 1 for mono, 2 for stereo.
2992 uint32_t cChannels,
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Ddevicetopology.idl268 [size_is(cChannels),in] float *aLevelsDB,
269 [in] ULONG cChannels,
H A Dmmsystem.h1257 DWORD cChannels; member in struct:tagMIXERLINEA
1280 DWORD cChannels; member in struct:tagMIXERLINEW
1454 DWORD cChannels; member in struct:tMIXERCONTROLDETAILS
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Dmmsystem16.h315 DWORD cChannels; /* number of channels line supports */ member in struct:__anon13989
371 DWORD cChannels; /* number of channels in paDetails array */ member in struct:__anon13998
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dmmsystem16.h315 DWORD cChannels; /* number of channels line supports */ member in struct:__anon1334
371 DWORD cChannels; /* number of channels in paDetails array */ member in struct:__anon1343
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dmmsystem.h1255 DWORD cChannels; member in struct:tagMIXERLINEA
1278 DWORD cChannels; member in struct:tagMIXERLINEW
1452 DWORD cChannels; member in struct:tMIXERCONTROLDETAILS

Completed in 212 milliseconds

12