Changeset 89334 in vbox for trunk/src/VBox
- Timestamp:
- May 28, 2021 8:33:08 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixBuffer.cpp
r89333 r89334 853 853 #undef AUDMIXBUF_MACRO_LOG 854 854 855 /** Dummy conversion used when the source is muted. */856 static DECLCALLBACK(uint32_t)857 audioMixBufConvFromSilence(PPDMAUDIOFRAME paDst, const void *pvSrc, uint32_t cbSrc, PCAUDMIXBUFCONVOPTS pOpts)858 {859 RT_NOREF(cbSrc, pvSrc);860 861 /* Internally zero always corresponds to silence. */862 RT_BZERO(paDst, pOpts->cFrames * sizeof(paDst[0]));863 return pOpts->cFrames;864 }865 866 855 /** 867 856 * Looks up the matching conversion function for converting audio frames from a
Note:
See TracChangeset
for help on using the changeset viewer.