Changeset 68513 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Aug 23, 2017 10:48:54 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r66830 r68513 5 5 6 6 /* 7 * Copyright (C) 2006-201 6Oracle Corporation7 * Copyright (C) 2006-2017 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1631 1631 pszCtrl = "HDA"; 1632 1632 break; 1633 default: 1634 break; 1633 1635 } 1634 1636 AudioCodecType_T enmCodecType; … … 1649 1651 break; 1650 1652 case AudioCodecType_Null: break; /* Shut up MSC. */ 1653 default: break; 1651 1654 } 1652 1655 } 1653 1656 else 1654 1657 fEnabled = FALSE; 1658 1659 BOOL fEnabledIn = false; 1660 CHECK_ERROR(AudioAdapter, COMGETTER(EnabledIn)(&fEnabledIn)); 1661 1662 BOOL fEnabledOut = false; 1663 CHECK_ERROR(AudioAdapter, COMGETTER(EnabledOut)(&fEnabledOut)); 1664 1655 1665 if (details == VMINFO_MACHINEREADABLE) 1656 1666 { … … 1659 1669 else 1660 1670 RTPrintf("audio=\"none\"\n"); 1671 1672 RTPrintf("audio_in=\"%s\"\n", fEnabledIn ? "true" : "false"); 1673 RTPrintf("audio_out=\"%s\"\n", fEnabledOut ? "true" : "false"); 1661 1674 } 1662 1675 else … … 1668 1681 pszDrv, pszCtrl, pszCodec); 1669 1682 RTPrintf("\n"); 1683 1684 RTPrintf("Audio playback: %s\n", fEnabledIn ? "enabled" : "disabled"); 1685 RTPrintf("Audio capturing: %s\n", fEnabledOut ? "enabled" : "disabled"); 1670 1686 } 1671 1687 }
Note:
See TracChangeset
for help on using the changeset viewer.