- Timestamp:
- Jan 5, 2017 11:38:33 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevHDA.cpp
r65095 r65142 1828 1828 } 1829 1829 1830 /** 1831 * Resets an HDA stream. 1832 * 1833 * @param pThis HDA state. 1834 * @param pStream HDA stream to reset. 1835 */ 1830 1836 static void hdaStreamReset(PHDASTATE pThis, PHDASTREAM pStream) 1831 1837 { … … 1880 1886 } 1881 1887 1888 /** 1889 * Enables or disables an HDA audio stream. 1890 * 1891 * @returns IPRT status code. 1892 * @param pThis HDA state. 1893 * @param pStream HDA stream to enable or disable. 1894 * @param fEnable Whether to enable or disble the stream. 1895 */ 1882 1896 static int hdaStreamEnable(PHDASTATE pThis, PHDASTREAM pStream, bool fEnable) 1883 1897 { … … 3857 3871 3858 3872 /** 3859 * Stops the internal audio device timer (if not stopped yet).3873 * Stops the internal audio device timer. 3860 3874 * 3861 3875 * @param pThis HDA state. … … 3869 3883 } 3870 3884 3885 /** 3886 * Decreases the active HDA streams count by one and 3887 * then checks if the internal audio device timer can be 3888 * stopped. 3889 * 3890 * @param pThis HDA state. 3891 */ 3871 3892 static void hdaTimerMaybeStop(PHDASTATE pThis) 3872 3893 {
Note:
See TracChangeset
for help on using the changeset viewer.