Commit b821bd3e by 景炳强

fixed ndi output name

parent df619472
......@@ -354,7 +354,7 @@ void DeckLinkInputPage::ObjectNameChanged(const QString& newName)
START_SLOT_TIME_COUNTER
NDINameLabel->setText(QString("Output") + newName.at(newName.size() - 1));
NDIOutput = std::make_unique<NDIOutputThread>(QString("NDI")+ NDINameLabel->text(), 1920, 1080);
NDIOutput = std::make_unique<NDIOutputThread>(NDINameLabel->text(), 1920, 1080);
connect(Capture.get(), SIGNAL(PushFrame(std::shared_ptr<Image>)), NDIOutput.get(), SLOT(AddFrame(std::shared_ptr<Image>)));
END_SLOT_TIME_COUNTER
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment