Skip to content

Commit 66dd524

Browse files
committed
save
1 parent 43ac8b7 commit 66dd524

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

codec/av_to_d3d.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ class AvToDx : public IDxToFrameSrc, public IDebugCollectable {
142142

143143
inline void setNick(const std::string& nick) {
144144
this->nick = nick;
145-
const auto suffix = nick.empty() ? " [加入者最终合成画面]" : " (" + this->nick + ")";
145+
const auto suffix = nick.empty() ? " [Client]" : " (" + this->nick + ")";
146146
if (spoutOutput) {
147147
spoutOutput->SetSenderName(("VLink 联动" + suffix).c_str());
148148
}

codec/d3d_to_frame.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ bool DxToFrame::init() {
307307
auto ret = createSharedSurf();
308308
resetDeviceContext();
309309

310-
spoutOutput.SetSenderName("VLink 联动 [创建者最终合成画面]");
310+
spoutOutput.SetSenderName("VLink [Host]");
311311
spoutOutput.OpenDirectX11(_d3d11_device.Get());
312312

313313
_inited = true;

0 commit comments

Comments
 (0)