VirtualBox

Changeset 87300 in vbox for trunk/src


Ignore:
Timestamp:
Jan 18, 2021 2:38:25 PM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
142259
Message:

Audio/ALSA: Documentation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/DrvHostALSAAudio.cpp

    r87299 r87300  
    7676*********************************************************************************************************************************/
    7777
     78/**
     79 * Structure for maintaining an ALSA audio stream.
     80 */
    7881typedef struct ALSAAUDIOSTREAM
    7982{
    8083    /** The stream's acquired configuration. */
    8184    PPDMAUDIOSTREAMCFG pCfg;
    82     union
    83     {
    84         struct
    85         {
    86         } In;
    87         struct
    88         {
    89         } Out;
    90     };
     85    /** Pointer to allocated ALSA PCM configuration to use. */
    9186    snd_pcm_t          *phPCM;
     87    /** Scratch buffer. */
    9288    void               *pvBuf;
     89    /** Size (in bytes) of allocated scratch buffer. */
    9390    size_t              cbBuf;
    9491} ALSAAUDIOSTREAM, *PALSAAUDIOSTREAM;
     
    116113#define ALSA_RECOVERY_TRIES_MAX    5
    117114
     115/**
     116 * Structure for maintaining an ALSA audio stream configuration.
     117 */
    118118typedef struct ALSAAUDIOSTREAMCFG
    119119{
     
    125125    /** Whether resampling should be performed by alsalib or not. */
    126126    int                 resample;
     127    /** Number of audio channels. */
    127128    int                 nchannels;
    128129    /** Buffer size (in audio frames). */
     
    136137
    137138
    138 
     139/**
     140 * Converts internal audio PCM properties to an ALSA PCM format.
     141 *
     142 * @returns Converted ALSA PCM format.
     143 * @param   pProps              Internal audio PCM configuration to convert.
     144 */
    139145static snd_pcm_format_t alsaAudioPropsToALSA(PPDMAUDIOPCMPROPS pProps)
    140146{
     
    159165
    160166
     167/**
     168 * Converts an ALSA PCM format to internal PCM properties.
     169 *
     170 * @returns VBox status code.
     171 * @param   fmt                 ALSA PCM format to convert.
     172 * @param   pProps              Where to store the converted PCM properties on success.
     173 */
    161174static int alsaALSAToAudioProps(snd_pcm_format_t fmt, PPDMAUDIOPCMPROPS pProps)
    162175{
     
    244257
    245258
     259/**
     260 * Sets the software parameters of an ALSA stream.
     261 *
     262 * @returns VBox status code.
     263 * @param   phPCM               ALSA stream to set software parameters for.
     264 * @param   fIn                 Whether this is an input stream or not.
     265 * @param   pCfgReq             Requested configuration to set.
     266 * @param   pCfgObt             Obtained configuration on success. Might differ from requested configuration.
     267 */
    246268static int alsaStreamSetSWParams(snd_pcm_t *phPCM, bool fIn, PALSAAUDIOSTREAMCFG pCfgReq, PALSAAUDIOSTREAMCFG pCfgObt)
    247269{
     
    306328
    307329
     330/**
     331 * Closes an ALSA stream
     332 *
     333 * @returns VBox status code.
     334 * @param   pphPCM              ALSA stream to close.
     335 */
    308336static int alsaStreamClose(snd_pcm_t **pphPCM)
    309337{
     
    329357
    330358
     359/**
     360 * Opens (creates) an ALSA stream.
     361 *
     362 * @returns VBox status code.
     363 * @param   fIn                 Whether this is an input stream to create or not.
     364 * @param   pCfgReq             Requested configuration to create stream with.
     365 * @param   pCfgObt             Obtained configuration the stream got created on success.
     366 * @param   pphPCM              Where to store the ALSA stream handle on success.
     367 */
    331368static int alsaStreamOpen(bool fIn, PALSAAUDIOSTREAMCFG pCfgReq, PALSAAUDIOSTREAMCFG pCfgObt, snd_pcm_t **pphPCM)
    332369{
     
    523560#endif
    524561
    525 
     562/**
     563 * Returns the available audio frames queued.
     564 *
     565 * @returns VBox status code.
     566 * @param   phPCM               ALSA stream handle.
     567 * @param   pFramesAvail        Where to store the available frames.
     568 */
    526569static int alsaStreamGetAvail(snd_pcm_t *phPCM, snd_pcm_sframes_t *pFramesAvail)
    527570{
     
    556599}
    557600
    558 
     601/**
     602 * Tries to recover an ALSA stream.
     603 *
     604 * @returns VBox status code.
     605 * @param   phPCM               ALSA stream handle.
     606 */
    559607static int alsaStreamRecover(snd_pcm_t *phPCM)
    560608{
     
    571619}
    572620
    573 
     621/**
     622 * Resumes an ALSA stream.
     623 *
     624 * @returns VBox status code.
     625 * @param   phPCM               ALSA stream to resume.
     626 */
    574627static int alsaStreamResume(snd_pcm_t *phPCM)
    575628{
     
    585638    return VINF_SUCCESS;
    586639}
    587 
    588640
    589641/**
     
    608660    return rc;
    609661}
    610 
    611662
    612663/**
     
    870921}
    871922
    872 
     923/**
     924 * Destroys an ALSA input stream.
     925 *
     926 * @returns VBox status code.
     927 * @param   pStreamALSA         ALSA input stream to destroy.
     928 */
    873929static int alsaDestroyStreamIn(PALSAAUDIOSTREAM pStreamALSA)
    874930{
     
    884940}
    885941
    886 
     942/**
     943 * Destroys an ALSA output stream.
     944 *
     945 * @returns VBox status code.
     946 * @param   pStreamALSA         ALSA output stream to destroy.
     947 */
    887948static int alsaDestroyStreamOut(PALSAAUDIOSTREAM pStreamALSA)
    888949{
     
    898959}
    899960
    900 
     961/**
     962 * Creates an ALSA output stream.
     963 *
     964 * @returns VBox status code.
     965 * @param   pStreamALSA         ALSA output stream to create.
     966 * @param   pCfgReq             Requested configuration to create stream with.
     967 * @param   pCfgAcq             Obtained configuration the stream got created with on success.
     968 */
    901969static int alsaCreateStreamOut(PALSAAUDIOSTREAM pStreamALSA, PPDMAUDIOSTREAMCFG pCfgReq, PPDMAUDIOSTREAMCFG pCfgAcq)
    902970{
     
    9511019}
    9521020
    953 
     1021/**
     1022 * Creates an ALSA input stream.
     1023 *
     1024 * @returns VBox status code.
     1025 * @param   pStreamALSA         ALSA input stream to create.
     1026 * @param   pCfgReq             Requested configuration to create stream with.
     1027 * @param   pCfgAcq             Obtained configuration the stream got created with on success.
     1028 */
    9541029static int alsaCreateStreamIn(PALSAAUDIOSTREAM pStreamALSA, PPDMAUDIOSTREAMCFG pCfgReq, PPDMAUDIOSTREAMCFG pCfgAcq)
    9551030{
     
    10041079}
    10051080
    1006 
     1081/**
     1082 * Controls an ALSA input stream.
     1083 *
     1084 * @returns VBox status code.
     1085 * @param   pStreamALSA         ALSA input stream to control.
     1086 * @param   enmStreamCmd        Stream command to issue.
     1087 */
    10071088static int alsaControlStreamIn(PALSAAUDIOSTREAM pStreamALSA, PDMAUDIOSTREAMCMD enmStreamCmd)
    10081089{
     
    10691150}
    10701151
    1071 
     1152/**
     1153 * Controls an ALSA output stream.
     1154 *
     1155 * @returns VBox status code.
     1156 * @param   pStreamALSA         ALSA output stream to control.
     1157 * @param   enmStreamCmd        Stream command to issue.
     1158 */
    10721159static int alsaControlStreamOut(PALSAAUDIOSTREAM pStreamALSA, PDMAUDIOSTREAMCMD enmStreamCmd)
    10731160{
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette