Changeset 90202 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Jul 15, 2021 12:13:16 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r90201 r90202 3097 3097 if (strDebugPathOut.isNotEmpty()) 3098 3098 InsertConfigString(pCfg, "DebugPathOut", strDebugPathOut); 3099 3100 /*3101 * HDA-specific parameters.3102 */3103 uint64_t uTmp;3104 GetExtraDataBoth(virtualBox, pMachine, "VBoxInternal2/Audio/Device/PosAdjustEnabled", &strTmp);3105 if (strTmp.isNotEmpty())3106 InsertConfigInteger(pCfg, "PosAdjustEnabled", strTmp.equalsIgnoreCase("true")3107 || strTmp.equalsIgnoreCase("1"));3108 3109 GetExtraDataBoth(virtualBox, pMachine, "VBoxInternal2/Audio/Device/PosAdjustFrames", &strTmp);3110 if (strTmp.isNotEmpty())3111 {3112 uTmp = strTmp.toUInt64(); /* Ditto. */3113 InsertConfigInteger(pCfg, "PosAdjustFrames", uTmp);3114 }3115 3116 GetExtraDataBoth(virtualBox, pMachine, "VBoxInternal2/Audio/Device/TransferHeuristicsEnabled", &strTmp);3117 if (strTmp.isNotEmpty())3118 InsertConfigInteger(pCfg, "TransferHeuristicsEnabled", strTmp.equalsIgnoreCase("true")3119 || strTmp.equalsIgnoreCase("1"));3120 3099 break; 3121 3100 }
Note:
See TracChangeset
for help on using the changeset viewer.