Changeset 64350 in vbox for trunk/src/VBox
- Timestamp:
- Oct 21, 2016 10:17:12 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchAc97.cpp
r64349 r64350 679 679 int rc = ichac97StreamInit (&pThis->StreamLineIn, AC97SOUNDSOURCE_PI_INDEX); 680 680 if (RT_SUCCESS(rc)) 681 { 681 682 rc = ichac97StreamInit (&pThis->StreamMicIn, AC97SOUNDSOURCE_MC_INDEX); 682 683 if (RT_SUCCESS(rc)) 684 { 683 685 rc = ichac97StreamInit(&pThis->StreamOut, AC97SOUNDSOURCE_PO_INDEX); 686 } 687 } 684 688 685 689 /* Open all streams with the current AC'97 mixer settings. */ … … 688 692 rc = ichac97StreamOpen (pThis, &pThis->StreamLineIn); 689 693 if (RT_SUCCESS(rc)) 694 { 690 695 rc = ichac97StreamOpen (pThis, &pThis->StreamMicIn); 691 696 if (RT_SUCCESS(rc)) 697 { 692 698 rc = ichac97StreamOpen(pThis, &pThis->StreamOut); 699 } 700 } 693 701 } 694 702
Note:
See TracChangeset
for help on using the changeset viewer.