- Timestamp:
- Feb 11, 2018 9:27:54 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevHDA.cpp
r70964 r70965 279 279 static void hdaDoTransfers(PHDASTATE pThis); 280 280 #endif /* IN_RING3 */ 281 /** @} */282 283 /** @name Timer functions.284 * @{285 */286 #ifdef IN_RING3287 static void hdaTimerMain(PHDASTATE pThis);288 #endif289 281 /** @} */ 290 282 … … 3061 3053 LogFlowFuncLeave(); 3062 3054 LogRel(("HDA: Reset\n")); 3063 }3064 3065 /**3066 * Main routine to perform the actual audio data transfers from the HDA streams3067 * to the backend(s) and vice versa.3068 *3069 * @param pThis HDA state.3070 */3071 static void hdaDoTransfers(PHDASTATE pThis)3072 {3073 PHDASTREAM pStreamLineIn = hdaGetStreamFromSink(pThis, &pThis->SinkLineIn);3074 #ifdef VBOX_WITH_AUDIO_HDA_MIC_IN3075 PHDASTREAM pStreamMicIn = hdaGetStreamFromSink(pThis, &pThis->SinkMicIn);3076 #endif3077 PHDASTREAM pStreamFront = hdaGetStreamFromSink(pThis, &pThis->SinkFront);3078 3079 hdaStreamUpdate(pStreamFront, true /* fInTimer */);3080 #ifdef VBOX_WITH_AUDIO_HDA_51_SURROUND3081 # error "Implement me!"3082 #endif3083 #ifdef VBOX_WITH_AUDIO_HDA_MIC_IN3084 hdaStreamUpdate(pStreamMicIn, true /* fInTimer */);3085 #endif3086 hdaStreamUpdate(pStreamLineIn, true /* fInTimer */);3087 3055 } 3088 3056
Note:
See TracChangeset
for help on using the changeset viewer.