Changeset 64384 in vbox
- Timestamp:
- Oct 24, 2016 1:03:11 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchAc97.cpp
r64383 r64384 673 673 } 674 674 675 static int ichac97Streams Init(PAC97STATE pThis)675 static int ichac97StreamsCreate(PAC97STATE pThis) 676 676 { 677 677 LogFlowFuncEnter(); … … 2457 2457 ichac97MixerGet(pThis, AC97_Headphone_Volume_Mute)); 2458 2458 2459 rc2 = ichac97Streams Init(pThis);2459 rc2 = ichac97StreamsCreate(pThis); 2460 2460 if (RT_SUCCESS(rc2)) 2461 2461 { … … 2897 2897 if (RT_SUCCESS(rc)) 2898 2898 { 2899 ichac97Streams Init(pThis);2899 ichac97StreamsCreate(pThis); 2900 2900 2901 2901 #ifdef VBOX_WITH_AUDIO_AC97_ONETIME_INIT … … 2929 2929 ichac97Reattach(pThis, pDrv, pDrv->uLUN, "NullAudio"); 2930 2930 2931 ichac97StreamsInit(pThis); 2931 /* Re-create the streams after re-attaching. 2932 ichac97StreamsCreate(pThis); 2932 2933 2933 2934 PDMDevHlpVMSetRuntimeError(pDevIns, 0 /*fFlags*/, "HostAudioNotResponding",
Note:
See TracChangeset
for help on using the changeset viewer.