Changeset 87436 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Jan 26, 2021 4:59:29 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142445
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r87395 r87436 2962 2962 const uint64_t uTimerHz = strTmp.toUInt64(); 2963 2963 2964 GetExtraDataBoth(virtualBox, pMachine, "VBoxInternal2/Audio/Device/BufSizeInMs", &strTmp); 2965 const uint64_t uBufSizeInMs = strTmp.toUInt64(); 2966 2967 GetExtraDataBoth(virtualBox, pMachine, "VBoxInternal2/Audio/Device/BufSizeOutMs", &strTmp); 2968 const uint64_t uBufSizeOutMs = strTmp.toUInt64(); 2969 2964 2970 GetExtraDataBoth(virtualBox, pMachine, "VBoxInternal2/Audio/Debug/Enabled", &strTmp); 2965 2971 const bool fDebugEnabled = strTmp.equalsIgnoreCase("true") || strTmp.equalsIgnoreCase("1"); … … 2996 3002 if (uTimerHz) 2997 3003 InsertConfigInteger(pCfg, "TimerHz", uTimerHz); 3004 if (uBufSizeInMs) 3005 InsertConfigInteger(pCfg, "BufSizeInMs", uBufSizeInMs); 3006 if (uBufSizeOutMs) 3007 InsertConfigInteger(pCfg, "BufSizeOutMs", uBufSizeOutMs); 2998 3008 InsertConfigInteger(pCfg, "DebugEnabled", fDebugEnabled); 2999 3009 if (strDebugPathOut.isNotEmpty()) … … 3031 3041 if (uTimerHz) 3032 3042 InsertConfigInteger(pCfg, "TimerHz", uTimerHz); 3043 if (uBufSizeInMs) 3044 InsertConfigInteger(pCfg, "BufSizeInMs", uBufSizeInMs); 3045 if (uBufSizeOutMs) 3046 InsertConfigInteger(pCfg, "BufSizeOutMs", uBufSizeOutMs); 3033 3047 InsertConfigInteger(pCfg, "DebugEnabled", fDebugEnabled); 3034 3048 if (strDebugPathOut.isNotEmpty())
Note:
See TracChangeset
for help on using the changeset viewer.