Changeset 104693 in vbox
- Timestamp:
- May 16, 2024 4:44:11 PM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 163247
- Location:
- trunk/src/VBox
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioTestServiceTcp.cpp
r99775 r104693 464 464 else 465 465 { 466 if (pClient) 467 { 468 atsTcpFreeClient(pThis, pClient); 469 pClient = NULL; 470 } 466 atsTcpFreeClient(pThis, pClient); 467 pClient = NULL; 471 468 } 472 469 -
trunk/src/VBox/Devices/Audio/DevHdaStream.cpp
r103134 r104693 1080 1080 Assert(AudioHlpPcmPropsAreValidAndSupported(&pStreamShared->State.Cfg.Props)); 1081 1081 1082 if (fEnable) 1083 { 1084 if (!AudioHlpFileIsOpen(pStreamR3->Dbg.Runtime.pFileStream)) 1085 { 1086 int rc2 = AudioHlpFileOpen(pStreamR3->Dbg.Runtime.pFileStream, AUDIOHLPFILE_DEFAULT_OPEN_FLAGS, 1087 &pStreamShared->State.Cfg.Props); 1088 AssertRC(rc2); 1089 } 1090 1091 if (!AudioHlpFileIsOpen(pStreamR3->Dbg.Runtime.pFileDMARaw)) 1092 { 1093 int rc2 = AudioHlpFileOpen(pStreamR3->Dbg.Runtime.pFileDMARaw, AUDIOHLPFILE_DEFAULT_OPEN_FLAGS, 1094 &pStreamShared->State.Cfg.Props); 1095 AssertRC(rc2); 1096 } 1097 1098 if (!AudioHlpFileIsOpen(pStreamR3->Dbg.Runtime.pFileDMAMapped)) 1099 { 1100 int rc2 = AudioHlpFileOpen(pStreamR3->Dbg.Runtime.pFileDMAMapped, AUDIOHLPFILE_DEFAULT_OPEN_FLAGS, 1101 &pStreamShared->State.Cfg.Props); 1102 AssertRC(rc2); 1103 } 1082 if (!AudioHlpFileIsOpen(pStreamR3->Dbg.Runtime.pFileStream)) 1083 { 1084 int rc2 = AudioHlpFileOpen(pStreamR3->Dbg.Runtime.pFileStream, AUDIOHLPFILE_DEFAULT_OPEN_FLAGS, 1085 &pStreamShared->State.Cfg.Props); 1086 AssertRC(rc2); 1087 } 1088 1089 if (!AudioHlpFileIsOpen(pStreamR3->Dbg.Runtime.pFileDMARaw)) 1090 { 1091 int rc2 = AudioHlpFileOpen(pStreamR3->Dbg.Runtime.pFileDMARaw, AUDIOHLPFILE_DEFAULT_OPEN_FLAGS, 1092 &pStreamShared->State.Cfg.Props); 1093 AssertRC(rc2); 1094 } 1095 1096 if (!AudioHlpFileIsOpen(pStreamR3->Dbg.Runtime.pFileDMAMapped)) 1097 { 1098 int rc2 = AudioHlpFileOpen(pStreamR3->Dbg.Runtime.pFileDMAMapped, AUDIOHLPFILE_DEFAULT_OPEN_FLAGS, 1099 &pStreamShared->State.Cfg.Props); 1100 AssertRC(rc2); 1104 1101 } 1105 1102 } -
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r103430 r104693 1623 1623 } 1624 1624 } 1625 else if (CfgReq.Backend.cFramesPreBuffering == 0)/* Was the pre-buffering requested as being disabeld? Tell the users. */1625 else /* Was the pre-buffering requested as being disabeld? Tell the users. */ 1626 1626 { 1627 1627 LogRel2(("Audio: Pre-buffering is disabled for stream '%s'\n", pCfgAcq->szName)); -
trunk/src/VBox/GuestHost/SharedClipboard/clipboard-x11.cpp
r104472 r104693 1791 1791 { 1792 1792 rc = shClX11RequestDataForX11CallbackHelper(pCtx, VBOX_SHCL_FMT_BITMAP, &pv, &cb); 1793 if ( RT_SUCCESS(rc) 1794 && (fmtX11 == SHCLX11FMT_BMP)) 1793 if (RT_SUCCESS(rc)) 1795 1794 { 1796 1795 /* Create a full BMP from it. */ -
trunk/src/VBox/GuestHost/SharedClipboard/testcase/tstClipboardGH-X11.cpp
r103363 r104693 352 352 { 353 353 RT_NOREF(display); 354 if (!atom) 355 return NULL; 354 356 const char *pcszName = NULL; 355 if (atom < 0x1000)356 return NULL;357 357 if (0x1000 <= atom && atom < 0x2000) 358 358 {
Note:
See TracChangeset
for help on using the changeset viewer.