- Timestamp:
- Jan 18, 2021 2:38:25 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142259
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostALSAAudio.cpp
r87299 r87300 76 76 *********************************************************************************************************************************/ 77 77 78 /** 79 * Structure for maintaining an ALSA audio stream. 80 */ 78 81 typedef struct ALSAAUDIOSTREAM 79 82 { 80 83 /** The stream's acquired configuration. */ 81 84 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. */ 91 86 snd_pcm_t *phPCM; 87 /** Scratch buffer. */ 92 88 void *pvBuf; 89 /** Size (in bytes) of allocated scratch buffer. */ 93 90 size_t cbBuf; 94 91 } ALSAAUDIOSTREAM, *PALSAAUDIOSTREAM; … … 116 113 #define ALSA_RECOVERY_TRIES_MAX 5 117 114 115 /** 116 * Structure for maintaining an ALSA audio stream configuration. 117 */ 118 118 typedef struct ALSAAUDIOSTREAMCFG 119 119 { … … 125 125 /** Whether resampling should be performed by alsalib or not. */ 126 126 int resample; 127 /** Number of audio channels. */ 127 128 int nchannels; 128 129 /** Buffer size (in audio frames). */ … … 136 137 137 138 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 */ 139 145 static snd_pcm_format_t alsaAudioPropsToALSA(PPDMAUDIOPCMPROPS pProps) 140 146 { … … 159 165 160 166 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 */ 161 174 static int alsaALSAToAudioProps(snd_pcm_format_t fmt, PPDMAUDIOPCMPROPS pProps) 162 175 { … … 244 257 245 258 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 */ 246 268 static int alsaStreamSetSWParams(snd_pcm_t *phPCM, bool fIn, PALSAAUDIOSTREAMCFG pCfgReq, PALSAAUDIOSTREAMCFG pCfgObt) 247 269 { … … 306 328 307 329 330 /** 331 * Closes an ALSA stream 332 * 333 * @returns VBox status code. 334 * @param pphPCM ALSA stream to close. 335 */ 308 336 static int alsaStreamClose(snd_pcm_t **pphPCM) 309 337 { … … 329 357 330 358 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 */ 331 368 static int alsaStreamOpen(bool fIn, PALSAAUDIOSTREAMCFG pCfgReq, PALSAAUDIOSTREAMCFG pCfgObt, snd_pcm_t **pphPCM) 332 369 { … … 523 560 #endif 524 561 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 */ 526 569 static int alsaStreamGetAvail(snd_pcm_t *phPCM, snd_pcm_sframes_t *pFramesAvail) 527 570 { … … 556 599 } 557 600 558 601 /** 602 * Tries to recover an ALSA stream. 603 * 604 * @returns VBox status code. 605 * @param phPCM ALSA stream handle. 606 */ 559 607 static int alsaStreamRecover(snd_pcm_t *phPCM) 560 608 { … … 571 619 } 572 620 573 621 /** 622 * Resumes an ALSA stream. 623 * 624 * @returns VBox status code. 625 * @param phPCM ALSA stream to resume. 626 */ 574 627 static int alsaStreamResume(snd_pcm_t *phPCM) 575 628 { … … 585 638 return VINF_SUCCESS; 586 639 } 587 588 640 589 641 /** … … 608 660 return rc; 609 661 } 610 611 662 612 663 /** … … 870 921 } 871 922 872 923 /** 924 * Destroys an ALSA input stream. 925 * 926 * @returns VBox status code. 927 * @param pStreamALSA ALSA input stream to destroy. 928 */ 873 929 static int alsaDestroyStreamIn(PALSAAUDIOSTREAM pStreamALSA) 874 930 { … … 884 940 } 885 941 886 942 /** 943 * Destroys an ALSA output stream. 944 * 945 * @returns VBox status code. 946 * @param pStreamALSA ALSA output stream to destroy. 947 */ 887 948 static int alsaDestroyStreamOut(PALSAAUDIOSTREAM pStreamALSA) 888 949 { … … 898 959 } 899 960 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 */ 901 969 static int alsaCreateStreamOut(PALSAAUDIOSTREAM pStreamALSA, PPDMAUDIOSTREAMCFG pCfgReq, PPDMAUDIOSTREAMCFG pCfgAcq) 902 970 { … … 951 1019 } 952 1020 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 */ 954 1029 static int alsaCreateStreamIn(PALSAAUDIOSTREAM pStreamALSA, PPDMAUDIOSTREAMCFG pCfgReq, PPDMAUDIOSTREAMCFG pCfgAcq) 955 1030 { … … 1004 1079 } 1005 1080 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 */ 1007 1088 static int alsaControlStreamIn(PALSAAUDIOSTREAM pStreamALSA, PDMAUDIOSTREAMCMD enmStreamCmd) 1008 1089 { … … 1069 1150 } 1070 1151 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 */ 1072 1159 static int alsaControlStreamOut(PALSAAUDIOSTREAM pStreamALSA, PDMAUDIOSTREAMCMD enmStreamCmd) 1073 1160 {
Note:
See TracChangeset
for help on using the changeset viewer.