Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6fa83ea330 |
@@ -28,7 +28,7 @@ jobs:
|
||||
wget -qO - https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo apt-key add -
|
||||
sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-1.4.313-jammy.list https://packages.lunarg.com/vulkan/1.4.313/lunarg-vulkan-1.4.313-jammy.list
|
||||
sudo apt update
|
||||
sudo apt install -y qt6-base-dev qt6-declarative-dev libqt6svg6-dev qml6-module-qtquick-controls qml6-module-qtquick-templates qml6-module-qtquick-layouts \
|
||||
sudo apt install -y qt6-base-dev qt6-declarative-dev libqt6svg6-dev qt6-wayland qml6-module-qtquick-controls qml6-module-qtquick-templates qml6-module-qtquick-layouts \
|
||||
qml6-module-qtqml-workerscript qml6-module-qtquick-window qml6-module-qtquick python3-pip nasm libgbm-dev libdrm-dev libfreetype-dev libasound2-dev \
|
||||
libdbus-1-dev libegl1-mesa-dev libgl1-mesa-dev libgles2-mesa-dev libglu1-mesa-dev libibus-1.0-dev libpulse-dev libudev-dev libx11-dev libxcursor-dev \
|
||||
libxext-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxss-dev libxt-dev libxv-dev libxxf86vm-dev libxcb-dri3-dev libx11-xcb-dev \
|
||||
@@ -42,13 +42,13 @@ jobs:
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
repository: libsdl-org/SDL
|
||||
ref: release-3.4.14
|
||||
ref: release-3.4.8
|
||||
path: deps/SDL
|
||||
|
||||
- name: Build SDL3
|
||||
working-directory: deps/SDL
|
||||
run: |
|
||||
cmake -DSDL_KMSDRM=OFF -DSDL_TEST_LIBRARY=OFF -DSDL_INSTALL_DOCS=OFF -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -S . -B build
|
||||
cmake -DSDL_TEST_LIBRARY=OFF -DSDL_INSTALL_DOCS=OFF -S . -B build
|
||||
cmake --build build -j
|
||||
sudo cmake --install build
|
||||
|
||||
@@ -56,13 +56,13 @@ jobs:
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
repository: libsdl-org/sdl2-compat
|
||||
ref: release-2.32.70
|
||||
ref: release-2.32.68
|
||||
path: deps/sdl2-compat
|
||||
|
||||
- name: Build sdl2-compat
|
||||
working-directory: deps/sdl2-compat
|
||||
run: |
|
||||
cmake -DSDL2COMPAT_TESTS=OFF -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -S . -B build
|
||||
cmake -DSDL2COMPAT_TESTS=OFF -S . -B build
|
||||
cmake --build build -j
|
||||
sudo cmake --install build
|
||||
|
||||
@@ -86,7 +86,7 @@ jobs:
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
repository: intel/libva
|
||||
ref: 2.24.1
|
||||
ref: 2.23.0
|
||||
path: deps/libva
|
||||
|
||||
- name: Build libva
|
||||
@@ -101,14 +101,13 @@ jobs:
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
repository: haasn/libplacebo
|
||||
ref: 4d82c6898551068d4ae6a6b5538efcddc2c7cf64
|
||||
ref: v7.360.1
|
||||
path: deps/libplacebo
|
||||
submodules: 'recursive'
|
||||
|
||||
- name: Build libplacebo
|
||||
working-directory: deps/libplacebo
|
||||
run: |
|
||||
git apply ../../app/deploy/linux/appimage/*.patch
|
||||
meson setup build -Dvulkan=enabled -Dopengl=disabled -Ddemos=false
|
||||
ninja -C build
|
||||
sudo ninja install -C build
|
||||
@@ -116,7 +115,7 @@ jobs:
|
||||
- name: Build dav1d
|
||||
working-directory: deps
|
||||
env:
|
||||
DAV1D_VER: 1.5.4
|
||||
DAV1D_VER: 1.5.3
|
||||
run: |
|
||||
git clone --branch $DAV1D_VER --depth 1 https://code.videolan.org/videolan/dav1d.git
|
||||
pushd dav1d
|
||||
@@ -129,14 +128,13 @@ jobs:
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
repository: FFmpeg/FFmpeg
|
||||
ref: n9.0
|
||||
ref: n8.1.1
|
||||
path: deps/FFmpeg
|
||||
|
||||
- name: Build FFmpeg
|
||||
working-directory: deps/FFmpeg
|
||||
run: |
|
||||
./configure --enable-pic --enable-lto --disable-static --enable-shared --disable-all --disable-autodetect \
|
||||
--enable-avcodec --enable-avformat --enable-swscale \
|
||||
./configure --enable-pic --disable-static --enable-shared --disable-all --disable-autodetect --enable-avcodec --enable-avformat --enable-swscale \
|
||||
--enable-decoder=h264 --enable-decoder=hevc --enable-decoder=av1 \
|
||||
--enable-vaapi --enable-hwaccel=h264_vaapi --enable-hwaccel=hevc_vaapi --enable-hwaccel=av1_vaapi \
|
||||
--enable-vdpau --enable-hwaccel=h264_vdpau --enable-hwaccel=hevc_vdpau --enable-hwaccel=av1_vdpau \
|
||||
|
||||
@@ -20,10 +20,10 @@ jobs:
|
||||
include:
|
||||
# Windows
|
||||
- os: windows-2025
|
||||
qt_version: 6.11.1
|
||||
qt_version: 6.11.0
|
||||
# macOS
|
||||
- os: macos-26
|
||||
qt_version: 6.11.1
|
||||
- os: macos-15
|
||||
qt_version: 6.11.0
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
@@ -50,7 +50,6 @@ jobs:
|
||||
cache: true
|
||||
set-env: ${{ runner.os != 'Windows' }}
|
||||
add-tools-to-path: ${{ runner.os != 'Windows' }}
|
||||
tools: ${{ runner.os == 'Windows' && 'tools_qtcreator_gui' || '' }}
|
||||
version: ${{ matrix.qt_version }}
|
||||
aqtsource: 'git+https://github.com/miurahr/aqtinstall.git@073e34d7c2ab4ae6961ed7cca690b3abd5ba5a7e'
|
||||
|
||||
|
||||
@@ -7,3 +7,6 @@
|
||||
[submodule "app/SDL_GameControllerDB"]
|
||||
path = app/SDL_GameControllerDB
|
||||
url = https://github.com/gabomdq/SDL_GameControllerDB.git
|
||||
[submodule "h264bitstream/h264bitstream"]
|
||||
path = h264bitstream/h264bitstream
|
||||
url = https://github.com/aizvorski/h264bitstream.git
|
||||
|
||||
@@ -43,8 +43,8 @@ Hosting for Moonlight's Debian and L4T package repositories is graciously provid
|
||||
## Building
|
||||
|
||||
### Windows Build Requirements
|
||||
* Qt 6.11 SDK or later (earlier versions may work but are not officially supported)
|
||||
* [Visual Studio 2026](https://visualstudio.microsoft.com/downloads/) (Community edition is fine)
|
||||
* Qt 6.7 SDK or later (earlier versions may work but are not officially supported)
|
||||
* [Visual Studio 2022](https://visualstudio.microsoft.com/downloads/) (Community edition is fine)
|
||||
* Select **MSVC** option during Qt installation. MinGW is not supported.
|
||||
* [7-Zip](https://www.7-zip.org/) (only if building installers for non-development PCs)
|
||||
* Graphics Tools (only if running debug builds)
|
||||
@@ -52,8 +52,8 @@ Hosting for Moonlight's Debian and L4T package repositories is graciously provid
|
||||
* Alternatively, run `dism /online /add-capability /capabilityname:Tools.Graphics.DirectX~~~~0.0.1.0` and reboot.
|
||||
|
||||
### macOS Build Requirements
|
||||
* Qt 6.11 SDK or later (earlier versions may work but are not officially supported)
|
||||
* Xcode 15 or later (earlier versions may work but are not officially supported)
|
||||
* Qt 6.7 SDK or later (earlier versions may work but are not officially supported)
|
||||
* Xcode 14 or later (earlier versions may work but are not officially supported)
|
||||
* [create-dmg](https://github.com/sindresorhus/create-dmg) (only if building DMGs for use on non-development Macs)
|
||||
|
||||
### Linux/Unix Build Requirements
|
||||
|
||||
+1
-5
@@ -21,7 +21,7 @@
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>13.0.0</string>
|
||||
<string>11.0.0</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>NSApplication</string>
|
||||
<key>NSSupportsAutomaticGraphicsSwitching</key>
|
||||
@@ -42,10 +42,6 @@
|
||||
</dict>
|
||||
<key>NSLocalNetworkUsageDescription</key>
|
||||
<string>Moonlight uses the local network to connect to your gaming PC for streaming.</string>
|
||||
<key>NSBonjourServices</key>
|
||||
<array>
|
||||
<string>_nvstream._tcp</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>VERSION</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
|
||||
@@ -11,8 +11,7 @@
|
||||
<asmv3:application>
|
||||
<asmv3:windowsSettings>
|
||||
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/pm</dpiAware>
|
||||
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">permonitorv2, permonitor</dpiAwareness>
|
||||
<heapType xmlns="http://schemas.microsoft.com/SMI/2020/WindowsSettings">SegmentHeap</heapType>
|
||||
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">permonitor</dpiAwareness>
|
||||
</asmv3:windowsSettings>
|
||||
</asmv3:application>
|
||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||
|
||||
+1
-1
Submodule app/SDL_GameControllerDB updated: 8d9fefd7b8...1fc89ca578
+4
-8
@@ -157,8 +157,8 @@ win32:!winrt {
|
||||
}
|
||||
macx {
|
||||
!disable-prebuilts {
|
||||
LIBS += -lssl.3 -lcrypto.3 -lavcodec.63 -lavutil.61 -lswscale.10 -lopus.0 -lSDL2 -lSDL2_ttf -lplacebo
|
||||
CONFIG += discord-rpc libplacebo
|
||||
LIBS += -lssl.3 -lcrypto.3 -lavcodec.62 -lavutil.60 -lswscale.9 -lopus -lSDL2 -lSDL2_ttf
|
||||
CONFIG += discord-rpc
|
||||
}
|
||||
|
||||
LIBS += -lobjc -framework VideoToolbox -framework AVFoundation -framework CoreVideo -framework CoreGraphics -framework CoreMedia -framework AppKit -framework Metal -framework QuartzCore
|
||||
@@ -350,10 +350,6 @@ libplacebo {
|
||||
streaming/video/ffmpeg-renderers/plvk_c.c
|
||||
HEADERS += \
|
||||
streaming/video/ffmpeg-renderers/plvk.h
|
||||
|
||||
macx {
|
||||
SOURCES += streaming/video/ffmpeg-renderers/plvk_objc.mm
|
||||
}
|
||||
}
|
||||
config_EGL {
|
||||
message(EGL renderer selected)
|
||||
@@ -509,8 +505,8 @@ win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../h264bitstream/relea
|
||||
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../h264bitstream/debug/ -lh264bitstream
|
||||
else:unix: LIBS += -L$$OUT_PWD/../h264bitstream/ -lh264bitstream
|
||||
|
||||
INCLUDEPATH += $$PWD/../h264bitstream
|
||||
DEPENDPATH += $$PWD/../h264bitstream
|
||||
INCLUDEPATH += $$PWD/../h264bitstream/h264bitstream
|
||||
DEPENDPATH += $$PWD/../h264bitstream/h264bitstream
|
||||
|
||||
!winrt {
|
||||
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../AntiHooking/release/ -lAntiHooking
|
||||
|
||||
@@ -31,7 +31,7 @@ public:
|
||||
private:
|
||||
bool tryPollComputer(QNetworkAccessManager* nam, NvAddress address, bool& changed)
|
||||
{
|
||||
NvHTTP http(address, 0, m_Computer->serverCert, !m_Computer->isNvidiaServerSoftware, nam);
|
||||
NvHTTP http(address, 0, m_Computer->serverCert, nam);
|
||||
|
||||
QString serverInfo;
|
||||
try {
|
||||
@@ -825,8 +825,7 @@ private:
|
||||
|
||||
void run()
|
||||
{
|
||||
// Use the placeholder UID for the initial poll, then we'll switch to the real one if it's not GFE
|
||||
NvHTTP http(m_Address, 0, QSslCertificate(), false);
|
||||
NvHTTP http(m_Address, 0, QSslCertificate());
|
||||
|
||||
if (m_Mdns) {
|
||||
if (m_MdnsIpv6Address.isNull()) {
|
||||
@@ -854,7 +853,6 @@ private:
|
||||
|
||||
// Create initial newComputer using HTTP serverinfo with no pinned cert
|
||||
NvComputer* newComputer = new NvComputer(http, serverInfo);
|
||||
http.setTrueUid(!newComputer->isNvidiaServerSoftware);
|
||||
|
||||
// Check if we have a record of this host UUID to pull the pinned cert
|
||||
NvComputer* existingComputer;
|
||||
|
||||
@@ -7,9 +7,11 @@ ComputerSeeker::ComputerSeeker(ComputerManager *manager, QString computerName, Q
|
||||
m_TimeoutTimer(new QTimer(this))
|
||||
{
|
||||
// If we know this computer, send a WOL packet to wake it up in case it is asleep.
|
||||
NvComputer* matchingComputer = findMatchingComputer();
|
||||
if (matchingComputer) {
|
||||
matchingComputer->wake();
|
||||
const auto computers = m_ComputerManager->getComputers();
|
||||
for (NvComputer* computer : computers) {
|
||||
if (this->matchComputer(computer)) {
|
||||
computer->wake();
|
||||
}
|
||||
}
|
||||
|
||||
m_TimeoutTimer->setSingleShot(true);
|
||||
@@ -22,16 +24,11 @@ ComputerSeeker::ComputerSeeker(ComputerManager *manager, QString computerName, Q
|
||||
void ComputerSeeker::start(int timeout)
|
||||
{
|
||||
m_TimeoutTimer->start(timeout);
|
||||
|
||||
// If we don't know this computer by name, address, or UUID, try adding it
|
||||
// manually and see if we can find it by address, hostname, or mDNS.
|
||||
//
|
||||
// NB: We don't do this unconditionally because it will wipe out the user's
|
||||
// manual address if they pass another reachable hostname/address.
|
||||
if (!findMatchingComputer()) {
|
||||
m_ComputerManager->addNewHostManually(m_ComputerName);
|
||||
}
|
||||
|
||||
// Seek desired computer by both connecting to it directly (this may fail
|
||||
// if m_ComputerName is UUID, or the name that doesn't resolve to an IP
|
||||
// address) and by polling it using mDNS, hopefully one of these methods
|
||||
// would find the host
|
||||
m_ComputerManager->addNewHostManually(m_ComputerName);
|
||||
m_ComputerManager->startPolling();
|
||||
}
|
||||
|
||||
@@ -65,18 +62,6 @@ bool ComputerSeeker::matchComputer(NvComputer *computer) const
|
||||
return false;
|
||||
}
|
||||
|
||||
NvComputer* ComputerSeeker::findMatchingComputer() const
|
||||
{
|
||||
const auto computers = m_ComputerManager->getComputers();
|
||||
for (NvComputer* computer : computers) {
|
||||
if (this->matchComputer(computer)) {
|
||||
return computer;
|
||||
}
|
||||
}
|
||||
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
bool ComputerSeeker::isOnline(NvComputer *computer) const
|
||||
{
|
||||
return computer->state == NvComputer::CS_ONLINE;
|
||||
|
||||
@@ -24,7 +24,6 @@ private slots:
|
||||
|
||||
private:
|
||||
bool matchComputer(NvComputer *computer) const;
|
||||
NvComputer* findMatchingComputer() const;
|
||||
bool isOnline(NvComputer *computer) const;
|
||||
|
||||
private:
|
||||
|
||||
@@ -133,22 +133,6 @@ IdentityManager::IdentityManager()
|
||||
if (getSslKey().isNull()) {
|
||||
qFatal("Private key is unreadable");
|
||||
}
|
||||
|
||||
// Load the unique ID from settings
|
||||
m_CachedUniqueId = settings.value(SER_UNIQUEID).toString();
|
||||
if (!m_CachedUniqueId.isEmpty()) {
|
||||
qInfo() << "Loaded unique ID from settings:" << m_CachedUniqueId;
|
||||
}
|
||||
else {
|
||||
// Generate a new unique ID in base 16
|
||||
uint64_t uid;
|
||||
RAND_bytes(reinterpret_cast<unsigned char*>(&uid), sizeof(uid));
|
||||
m_CachedUniqueId = QString::number(uid, 16);
|
||||
|
||||
qInfo() << "Generated new unique ID:" << m_CachedUniqueId;
|
||||
|
||||
settings.setValue(SER_UNIQUEID, m_CachedUniqueId);
|
||||
}
|
||||
}
|
||||
|
||||
QSslCertificate
|
||||
@@ -186,7 +170,7 @@ IdentityManager::getSslKey()
|
||||
|
||||
BUF_MEM* mem;
|
||||
BIO_get_mem_ptr(bio, &mem);
|
||||
m_CachedSslKey = QSslKey(QByteArray(mem->data, (int)mem->length), QSsl::Rsa);
|
||||
m_CachedSslKey = QSslKey(QByteArray::fromRawData(mem->data, (int)mem->length), QSsl::Rsa);
|
||||
|
||||
BIO_free(bio);
|
||||
EVP_PKEY_free(pk);
|
||||
@@ -206,6 +190,25 @@ IdentityManager::getSslConfig()
|
||||
QString
|
||||
IdentityManager::getUniqueId()
|
||||
{
|
||||
if (m_CachedUniqueId.isEmpty()) {
|
||||
QSettings settings;
|
||||
|
||||
// Load the unique ID from settings
|
||||
m_CachedUniqueId = settings.value(SER_UNIQUEID).toString();
|
||||
if (!m_CachedUniqueId.isEmpty()) {
|
||||
qInfo() << "Loaded unique ID from settings:" << m_CachedUniqueId;
|
||||
}
|
||||
else {
|
||||
// Generate a new unique ID in base 16
|
||||
uint64_t uid;
|
||||
RAND_bytes(reinterpret_cast<unsigned char*>(&uid), sizeof(uid));
|
||||
m_CachedUniqueId = QString::number(uid, 16);
|
||||
|
||||
qInfo() << "Generated new unique ID:" << m_CachedUniqueId;
|
||||
|
||||
settings.setValue(SER_UNIQUEID, m_CachedUniqueId);
|
||||
}
|
||||
}
|
||||
return m_CachedUniqueId;
|
||||
}
|
||||
|
||||
|
||||
+1
-3
@@ -25,9 +25,7 @@ public:
|
||||
|
||||
bool isInitialized()
|
||||
{
|
||||
// We use isNull() instead of isEmpty() here because we want
|
||||
// to detect cases where the name is unassigned, not empty.
|
||||
return id != 0 && !name.isNull();
|
||||
return id != 0 && !name.isEmpty();
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
+40
-56
@@ -18,16 +18,9 @@
|
||||
#define RESUME_TIMEOUT_MS 30000
|
||||
#define QUIT_TIMEOUT_MS 30000
|
||||
|
||||
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
||||
#define XML_NAME_EQUALS(x, y) ((x) == (y))
|
||||
#else
|
||||
#define XML_NAME_EQUALS(x, y) ((x) == (u##y))
|
||||
#endif
|
||||
|
||||
NvHTTP::NvHTTP(NvAddress address, uint16_t httpsPort, QSslCertificate serverCert, bool useTrueUid, QNetworkAccessManager* nam) :
|
||||
NvHTTP::NvHTTP(NvAddress address, uint16_t httpsPort, QSslCertificate serverCert, QNetworkAccessManager* nam) :
|
||||
m_Nam(nam ? nam : new QNetworkAccessManager(this)),
|
||||
m_ServerCert(serverCert),
|
||||
m_UseTrueUid(useTrueUid)
|
||||
m_ServerCert(serverCert)
|
||||
{
|
||||
m_BaseUrlHttp.setScheme("http");
|
||||
m_BaseUrlHttps.setScheme("https");
|
||||
@@ -41,8 +34,9 @@ NvHTTP::NvHTTP(NvAddress address, uint16_t httpsPort, QSslCertificate serverCert
|
||||
}
|
||||
|
||||
NvHTTP::NvHTTP(NvComputer* computer, QNetworkAccessManager* nam) :
|
||||
NvHTTP(computer->activeAddress, computer->activeHttpsPort, computer->serverCert, !computer->isNvidiaServerSoftware, nam)
|
||||
NvHTTP(computer->activeAddress, computer->activeHttpsPort, computer->serverCert, nam)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void NvHTTP::setServerCert(QSslCertificate serverCert)
|
||||
@@ -67,11 +61,6 @@ void NvHTTP::setHttpsPort(uint16_t port)
|
||||
m_BaseUrlHttps.setPort(port);
|
||||
}
|
||||
|
||||
void NvHTTP::setTrueUid(bool useTrueUid)
|
||||
{
|
||||
m_UseTrueUid = useTrueUid;
|
||||
}
|
||||
|
||||
NvAddress NvHTTP::address()
|
||||
{
|
||||
return m_Address;
|
||||
@@ -120,7 +109,7 @@ NvHTTP::getCurrentGame(QString serverInfo)
|
||||
// has the semantics that its name would indicate. To contain the effects of this change as much
|
||||
// as possible, we'll force the current game to zero if the server isn't in a streaming session.
|
||||
QString serverState = getXmlString(serverInfo, "state");
|
||||
if (serverState.endsWith("_SERVER_BUSY"))
|
||||
if (serverState != nullptr && serverState.endsWith("_SERVER_BUSY"))
|
||||
{
|
||||
return getXmlString(serverInfo, "currentgame").toInt();
|
||||
}
|
||||
@@ -277,19 +266,17 @@ NvHTTP::getDisplayModeList(QString serverInfo)
|
||||
while (!xmlReader.atEnd()) {
|
||||
while (xmlReader.readNextStartElement()) {
|
||||
auto name = xmlReader.name();
|
||||
if (XML_NAME_EQUALS(name, "DisplayMode")) {
|
||||
if (name == QString("DisplayMode")) {
|
||||
modes.append(NvDisplayMode());
|
||||
}
|
||||
else if (!modes.isEmpty()) {
|
||||
if (XML_NAME_EQUALS(name, "Width")) {
|
||||
modes.last().width = xmlReader.readElementText().toInt();
|
||||
}
|
||||
else if (XML_NAME_EQUALS(name, "Height")) {
|
||||
modes.last().height = xmlReader.readElementText().toInt();
|
||||
}
|
||||
else if (XML_NAME_EQUALS(name, "RefreshRate")) {
|
||||
modes.last().refreshRate = xmlReader.readElementText().toInt();
|
||||
}
|
||||
else if (name == QString("Width")) {
|
||||
modes.last().width = xmlReader.readElementText().toInt();
|
||||
}
|
||||
else if (name == QString("Height")) {
|
||||
modes.last().height = xmlReader.readElementText().toInt();
|
||||
}
|
||||
else if (name == QString("RefreshRate")) {
|
||||
modes.last().refreshRate = xmlReader.readElementText().toInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -312,7 +299,7 @@ NvHTTP::getAppList()
|
||||
while (!xmlReader.atEnd()) {
|
||||
while (xmlReader.readNextStartElement()) {
|
||||
auto name = xmlReader.name();
|
||||
if (XML_NAME_EQUALS(name, "App")) {
|
||||
if (name == QString("App")) {
|
||||
// We must have a valid app before advancing to the next one
|
||||
if (!apps.isEmpty() && !apps.last().isInitialized()) {
|
||||
qWarning() << "Invalid applist XML";
|
||||
@@ -320,28 +307,17 @@ NvHTTP::getAppList()
|
||||
}
|
||||
apps.append(NvApp());
|
||||
}
|
||||
else if (!apps.isEmpty()) {
|
||||
if (XML_NAME_EQUALS(name, "AppTitle")) {
|
||||
// If an app has no name, Sunshine may send us <AppTitle/>,
|
||||
// which readElementText() returns as a null QString.
|
||||
// We want to treat this as an empty QString instead, so we
|
||||
// will explicitly convert it. An empty string will satisfy
|
||||
// NvApp's isInitialized() check.
|
||||
QString name = xmlReader.readElementText();
|
||||
if (name.isNull()) {
|
||||
name = "";
|
||||
}
|
||||
apps.last().name = name;
|
||||
}
|
||||
else if (XML_NAME_EQUALS(name, "ID")) {
|
||||
apps.last().id = xmlReader.readElementText().toInt();
|
||||
}
|
||||
else if (XML_NAME_EQUALS(name, "IsHdrSupported")) {
|
||||
apps.last().hdrSupported = xmlReader.readElementText() == "1";
|
||||
}
|
||||
else if (XML_NAME_EQUALS(name, "IsAppCollectorGame")) {
|
||||
apps.last().isAppCollectorGame = xmlReader.readElementText() == "1";
|
||||
}
|
||||
else if (name == QString("AppTitle")) {
|
||||
apps.last().name = xmlReader.readElementText();
|
||||
}
|
||||
else if (name == QString("ID")) {
|
||||
apps.last().id = xmlReader.readElementText().toInt();
|
||||
}
|
||||
else if (name == QString("IsHdrSupported")) {
|
||||
apps.last().hdrSupported = xmlReader.readElementText() == "1";
|
||||
}
|
||||
else if (name == QString("IsAppCollectorGame")) {
|
||||
apps.last().isAppCollectorGame = xmlReader.readElementText() == "1";
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -356,7 +332,7 @@ NvHTTP::verifyResponseStatus(QString xml)
|
||||
|
||||
while (xmlReader.readNextStartElement())
|
||||
{
|
||||
if (XML_NAME_EQUALS(xmlReader.name(), "root"))
|
||||
if (xmlReader.name() == QString("root"))
|
||||
{
|
||||
// Status code can be 0xFFFFFFFF in some rare cases on GFE 3.20.3, and
|
||||
// QString::toInt() will fail in that case, so use QString::toUInt()
|
||||
@@ -407,7 +383,13 @@ QByteArray
|
||||
NvHTTP::getXmlStringFromHex(QString xml,
|
||||
QString tagName)
|
||||
{
|
||||
return QByteArray::fromHex(getXmlString(xml, tagName).toUtf8());
|
||||
QString str = getXmlString(xml, tagName);
|
||||
if (str == nullptr)
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
return QByteArray::fromHex(str.toUtf8());
|
||||
}
|
||||
|
||||
QString
|
||||
@@ -429,7 +411,7 @@ NvHTTP::getXmlString(QString xml,
|
||||
}
|
||||
}
|
||||
|
||||
return QString();
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
void NvHTTP::handleSslErrors(QNetworkReply* reply, const QList<QSslError>& errors)
|
||||
@@ -492,9 +474,11 @@ NvHTTP::openConnection(QUrl baseUrl,
|
||||
QUrl url(baseUrl);
|
||||
url.setPath("/" + command);
|
||||
|
||||
// Use a placeholder UID for GFE allow them to quit games for each other.
|
||||
url.setQuery("uniqueid=" + (m_UseTrueUid ? IdentityManager::get()->getUniqueId() : "0123456789ABCDEF") +
|
||||
"&uuid=" + QUuid::createUuid().toRfc4122().toHex() +
|
||||
// Use a common UID for Moonlight clients to allow them to quit
|
||||
// games for each other (otherwise GFE gets screwed up and it requires
|
||||
// manual intervention to solve).
|
||||
url.setQuery("uniqueid=0123456789ABCDEF&uuid=" +
|
||||
QUuid::createUuid().toRfc4122().toHex() +
|
||||
((arguments != nullptr) ? ("&" + arguments) : ""));
|
||||
|
||||
QNetworkRequest request(url);
|
||||
|
||||
@@ -109,7 +109,7 @@ public:
|
||||
NVLL_VERBOSE
|
||||
};
|
||||
|
||||
explicit NvHTTP(NvAddress address, uint16_t httpsPort, QSslCertificate serverCert, bool useTrueUid, QNetworkAccessManager* nam = nullptr);
|
||||
explicit NvHTTP(NvAddress address, uint16_t httpsPort, QSslCertificate serverCert, QNetworkAccessManager* nam = nullptr);
|
||||
|
||||
explicit NvHTTP(NvComputer* computer, QNetworkAccessManager* nam = nullptr);
|
||||
|
||||
@@ -142,9 +142,9 @@ public:
|
||||
NvLogLevel logLevel = NvLogLevel::NVLL_VERBOSE);
|
||||
|
||||
void setServerCert(QSslCertificate serverCert);
|
||||
|
||||
void setAddress(NvAddress address);
|
||||
void setHttpsPort(uint16_t port);
|
||||
void setTrueUid(bool useTrueUid);
|
||||
|
||||
NvAddress address();
|
||||
|
||||
@@ -198,5 +198,4 @@ private:
|
||||
NvAddress m_Address;
|
||||
QNetworkAccessManager* m_Nam;
|
||||
QSslCertificate m_ServerCert;
|
||||
bool m_UseTrueUid;
|
||||
};
|
||||
|
||||
@@ -54,18 +54,16 @@ NvPairingManager::generateRandomBytes(int length)
|
||||
QByteArray
|
||||
NvPairingManager::encrypt(const QByteArray& plaintext, const QByteArray& key)
|
||||
{
|
||||
if (plaintext.isEmpty()) {
|
||||
return QByteArray();
|
||||
}
|
||||
QByteArray ciphertext(plaintext.size(), 0);
|
||||
EVP_CIPHER_CTX* cipher;
|
||||
int ciphertextLen;
|
||||
|
||||
EVP_CIPHER_CTX* cipher = EVP_CIPHER_CTX_new();
|
||||
cipher = EVP_CIPHER_CTX_new();
|
||||
THROW_BAD_ALLOC_IF_NULL(cipher);
|
||||
|
||||
EVP_EncryptInit(cipher, EVP_aes_128_ecb(), reinterpret_cast<const unsigned char*>(key.data()), NULL);
|
||||
EVP_CIPHER_CTX_set_padding(cipher, 0);
|
||||
|
||||
QByteArray ciphertext(plaintext.size(), 0);
|
||||
int ciphertextLen;
|
||||
EVP_EncryptUpdate(cipher,
|
||||
reinterpret_cast<unsigned char*>(ciphertext.data()),
|
||||
&ciphertextLen,
|
||||
@@ -81,18 +79,16 @@ NvPairingManager::encrypt(const QByteArray& plaintext, const QByteArray& key)
|
||||
QByteArray
|
||||
NvPairingManager::decrypt(const QByteArray& ciphertext, const QByteArray& key)
|
||||
{
|
||||
if (ciphertext.isEmpty()) {
|
||||
return QByteArray();
|
||||
}
|
||||
QByteArray plaintext(ciphertext.size(), 0);
|
||||
EVP_CIPHER_CTX* cipher;
|
||||
int plaintextLen;
|
||||
|
||||
EVP_CIPHER_CTX* cipher = EVP_CIPHER_CTX_new();
|
||||
cipher = EVP_CIPHER_CTX_new();
|
||||
THROW_BAD_ALLOC_IF_NULL(cipher);
|
||||
|
||||
EVP_DecryptInit(cipher, EVP_aes_128_ecb(), reinterpret_cast<const unsigned char*>(key.data()), NULL);
|
||||
EVP_CIPHER_CTX_set_padding(cipher, 0);
|
||||
|
||||
QByteArray plaintext(ciphertext.size(), 0);
|
||||
int plaintextLen;
|
||||
EVP_DecryptUpdate(cipher,
|
||||
reinterpret_cast<unsigned char*>(plaintext.data()),
|
||||
&plaintextLen,
|
||||
@@ -243,7 +239,8 @@ NvPairingManager::pair(QString appVersion, QString pin, QSslCertificate& serverC
|
||||
}
|
||||
|
||||
QByteArray serverCertStr = NvHTTP::getXmlStringFromHex(getCert, "plaincert");
|
||||
if (serverCertStr.isEmpty()) {
|
||||
if (serverCertStr == nullptr)
|
||||
{
|
||||
qCritical() << "Server likely already pairing";
|
||||
m_Http.openConnectionToString(m_Http.m_BaseUrlHttp, "unpair", nullptr, REQUEST_TIMEOUT_MS);
|
||||
return PairState::ALREADY_IN_PROGRESS;
|
||||
@@ -278,12 +275,6 @@ NvPairingManager::pair(QString appVersion, QString pin, QSslCertificate& serverC
|
||||
}
|
||||
|
||||
QByteArray challengeResponseData = decrypt(m_Http.getXmlStringFromHex(challengeXml, "challengeresponse"), aesKey);
|
||||
if (challengeResponseData.size() < hashLength) {
|
||||
qCritical() << "Invalid challengeresponse at stage #2";
|
||||
m_Http.openConnectionToString(m_Http.m_BaseUrlHttp, "unpair", nullptr, REQUEST_TIMEOUT_MS);
|
||||
return PairState::FAILED;
|
||||
}
|
||||
|
||||
QByteArray clientSecretData = generateRandomBytes(16);
|
||||
QByteArray challengeResponse;
|
||||
QByteArray serverResponse(challengeResponseData.data(), hashLength);
|
||||
@@ -309,12 +300,6 @@ NvPairingManager::pair(QString appVersion, QString pin, QSslCertificate& serverC
|
||||
}
|
||||
|
||||
QByteArray pairingSecret = NvHTTP::getXmlStringFromHex(respXml, "pairingsecret");
|
||||
if (pairingSecret.size() <= 16) {
|
||||
qCritical() << "Invalid pairingsecret at stage #3";
|
||||
m_Http.openConnectionToString(m_Http.m_BaseUrlHttp, "unpair", nullptr, REQUEST_TIMEOUT_MS);
|
||||
return PairState::FAILED;
|
||||
}
|
||||
|
||||
QByteArray serverSecret = pairingSecret.left(16);
|
||||
QByteArray serverSignature = pairingSecret.mid(16);
|
||||
|
||||
|
||||
@@ -51,13 +51,6 @@ SystemProperties::SystemProperties()
|
||||
isRunningWayland = WMUtils::isRunningWayland();
|
||||
isRunningXWayland = isRunningWayland && QGuiApplication::platformName() == "xcb";
|
||||
usesMaterial3Theme = QLibraryInfo::version() >= QVersionNumber(6, 5, 0);
|
||||
|
||||
#ifdef Q_OS_DARWIN
|
||||
isDarwin = true;
|
||||
#else
|
||||
isDarwin = false;
|
||||
#endif
|
||||
|
||||
QString nativeArch = QSysInfo::currentCpuArchitecture();
|
||||
|
||||
#ifdef Q_OS_WIN32
|
||||
@@ -148,18 +141,21 @@ void SystemProperties::updateDecoderProperties(bool hasHardwareAcceleration, boo
|
||||
QRect SystemProperties::getNativeResolution(int displayIndex)
|
||||
{
|
||||
// Returns default constructed QRect if out of bounds
|
||||
Q_ASSERT(!monitorNativeResolutions.isEmpty());
|
||||
return monitorNativeResolutions.value(displayIndex);
|
||||
}
|
||||
|
||||
QRect SystemProperties::getSafeAreaResolution(int displayIndex)
|
||||
{
|
||||
// Returns default constructed QRect if out of bounds
|
||||
Q_ASSERT(!monitorSafeAreaResolutions.isEmpty());
|
||||
return monitorSafeAreaResolutions.value(displayIndex);
|
||||
}
|
||||
|
||||
int SystemProperties::getRefreshRate(int displayIndex)
|
||||
{
|
||||
// Returns 0 if out of bounds
|
||||
Q_ASSERT(!monitorRefreshRates.isEmpty());
|
||||
return monitorRefreshRates.value(displayIndex);
|
||||
}
|
||||
|
||||
@@ -225,8 +221,6 @@ void SystemProperties::refreshDisplays()
|
||||
}
|
||||
|
||||
monitorNativeResolutions.clear();
|
||||
monitorSafeAreaResolutions.clear();
|
||||
monitorRefreshRates.clear();
|
||||
|
||||
SDL_DisplayMode bestMode;
|
||||
for (int displayIndex = 0; displayIndex < SDL_GetNumVideoDisplays(); displayIndex++) {
|
||||
@@ -235,11 +229,8 @@ void SystemProperties::refreshDisplays()
|
||||
|
||||
if (StreamUtils::getNativeDesktopMode(displayIndex, &desktopMode, &safeArea)) {
|
||||
if (desktopMode.w <= 8192 && desktopMode.h <= 8192) {
|
||||
// Keep these lists compact because their QML consumers iterate until
|
||||
// the first empty entry. Inserting by SDL display index is invalid if
|
||||
// an earlier display was skipped (for example, a >8K virtual display).
|
||||
monitorNativeResolutions.append(QRect(0, 0, desktopMode.w, desktopMode.h));
|
||||
monitorSafeAreaResolutions.append(QRect(0, 0, safeArea.w, safeArea.h));
|
||||
monitorNativeResolutions.insert(displayIndex, QRect(0, 0, desktopMode.w, desktopMode.h));
|
||||
monitorSafeAreaResolutions.insert(displayIndex, QRect(0, 0, safeArea.w, safeArea.h));
|
||||
}
|
||||
else {
|
||||
SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION,
|
||||
|
||||
@@ -19,7 +19,6 @@ public:
|
||||
Q_PROPERTY(bool isRunningWayland MEMBER isRunningWayland CONSTANT)
|
||||
Q_PROPERTY(bool isRunningXWayland MEMBER isRunningXWayland CONSTANT)
|
||||
Q_PROPERTY(bool isWow64 MEMBER isWow64 CONSTANT)
|
||||
Q_PROPERTY(bool isDarwin MEMBER isDarwin CONSTANT)
|
||||
Q_PROPERTY(QString friendlyNativeArchName MEMBER friendlyNativeArchName CONSTANT)
|
||||
Q_PROPERTY(bool hasDesktopEnvironment MEMBER hasDesktopEnvironment CONSTANT)
|
||||
Q_PROPERTY(bool hasBrowser MEMBER hasBrowser CONSTANT)
|
||||
@@ -67,7 +66,6 @@ private:
|
||||
bool hasDiscordIntegration;
|
||||
QString versionString;
|
||||
bool usesMaterial3Theme;
|
||||
bool isDarwin;
|
||||
|
||||
// Properties only set if startAsyncLoad() is called
|
||||
bool hasHardwareAcceleration;
|
||||
|
||||
@@ -195,7 +195,7 @@ GlobalCommandLineParser::ParseResult GlobalCommandLineParser::parse(const QStrin
|
||||
}
|
||||
}
|
||||
|
||||
parser.showError("Invalid action");
|
||||
parser.showError(QString("Invalid action"));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
diff --git a/src/vulkan/context.c b/src/vulkan/context.c
|
||||
index bc9084ad..52290154 100644
|
||||
--- a/src/vulkan/context.c
|
||||
+++ b/src/vulkan/context.c
|
||||
@@ -265,7 +265,7 @@ static_assert(PL_ARRAY_SIZE(pl_vulkan_recommended_extensions) + 1 ==
|
||||
#ifdef VK_KHR_internally_synchronized_queues
|
||||
static const VkPhysicalDeviceInternallySynchronizedQueuesFeaturesKHR synchronized_queues = {
|
||||
.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INTERNALLY_SYNCHRONIZED_QUEUES_FEATURES_KHR,
|
||||
- .internallySynchronizedQueues = true,
|
||||
+ .internallySynchronizedQueues = false,
|
||||
};
|
||||
#endif
|
||||
|
||||
@@ -50,12 +50,4 @@ ComboBox {
|
||||
popup.onAboutToHide: {
|
||||
SdlGamepadKeyNavigation.setUiNavMode(true)
|
||||
}
|
||||
|
||||
Keys.onLeftPressed: {
|
||||
decrementCurrentIndex()
|
||||
}
|
||||
|
||||
Keys.onRightPressed: {
|
||||
incrementCurrentIndex()
|
||||
}
|
||||
}
|
||||
|
||||
+42
-101
@@ -812,64 +812,38 @@ Flickable {
|
||||
ToolTip.text: qsTr("Fullscreen generally provides the best performance, but borderless windowed may work better with features like macOS Spaces, Alt+Tab, screenshot tools, on-screen overlays, etc.")
|
||||
}
|
||||
|
||||
Row {
|
||||
spacing: 5
|
||||
width: parent.width
|
||||
|
||||
CheckBox {
|
||||
id: vsyncCheck
|
||||
hoverEnabled: true
|
||||
text: qsTr("V-Sync")
|
||||
font.pointSize: 12
|
||||
checked: StreamingPreferences.enableVsync
|
||||
onCheckedChanged: {
|
||||
StreamingPreferences.enableVsync = checked
|
||||
}
|
||||
|
||||
ToolTip.delay: 1000
|
||||
ToolTip.timeout: 5000
|
||||
ToolTip.visible: hovered
|
||||
ToolTip.text: qsTr("Disabling V-Sync allows sub-frame rendering latency, but it can display visible tearing")
|
||||
}
|
||||
|
||||
CheckBox {
|
||||
id: framePacingCheck
|
||||
hoverEnabled: true
|
||||
text: qsTr("Frame pacing")
|
||||
font.pointSize: 12
|
||||
enabled: StreamingPreferences.enableVsync
|
||||
checked: StreamingPreferences.enableVsync && StreamingPreferences.framePacing
|
||||
onCheckedChanged: {
|
||||
StreamingPreferences.framePacing = checked
|
||||
}
|
||||
ToolTip.delay: 1000
|
||||
ToolTip.timeout: 5000
|
||||
ToolTip.visible: hovered
|
||||
ToolTip.text: qsTr("Frame pacing reduces micro-stutter by delaying frames that come in too early")
|
||||
}
|
||||
}
|
||||
|
||||
CheckBox {
|
||||
id: enableHdr
|
||||
id: vsyncCheck
|
||||
width: parent.width
|
||||
text: qsTr("Enable HDR")
|
||||
font.pointSize: 12
|
||||
|
||||
enabled: SystemProperties.supportsHdr
|
||||
checked: enabled && StreamingPreferences.enableHdr
|
||||
hoverEnabled: true
|
||||
text: qsTr("V-Sync")
|
||||
font.pointSize: 12
|
||||
checked: StreamingPreferences.enableVsync
|
||||
onCheckedChanged: {
|
||||
StreamingPreferences.enableHdr = checked
|
||||
StreamingPreferences.enableVsync = checked
|
||||
}
|
||||
|
||||
// Updating StreamingPreferences.videoCodecConfig is handled above
|
||||
|
||||
ToolTip.delay: 1000
|
||||
ToolTip.timeout: 5000
|
||||
ToolTip.visible: hovered
|
||||
ToolTip.text: enabled ?
|
||||
qsTr("The stream will be HDR-capable, but some games may require an HDR monitor on your host PC to enable HDR mode.")
|
||||
:
|
||||
qsTr("HDR streaming is not supported on this PC.")
|
||||
ToolTip.text: qsTr("Disabling V-Sync allows sub-frame rendering latency, but it can display visible tearing")
|
||||
}
|
||||
|
||||
CheckBox {
|
||||
id: framePacingCheck
|
||||
width: parent.width
|
||||
hoverEnabled: true
|
||||
text: qsTr("Frame pacing")
|
||||
font.pointSize: 12
|
||||
enabled: StreamingPreferences.enableVsync
|
||||
checked: StreamingPreferences.enableVsync && StreamingPreferences.framePacing
|
||||
onCheckedChanged: {
|
||||
StreamingPreferences.framePacing = checked
|
||||
}
|
||||
ToolTip.delay: 1000
|
||||
ToolTip.timeout: 5000
|
||||
ToolTip.visible: hovered
|
||||
ToolTip.text: qsTr("Frame pacing reduces micro-stutter by delaying frames that come in too early")
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1644,7 +1618,7 @@ Flickable {
|
||||
val: StreamingPreferences.VCC_FORCE_HEVC
|
||||
}
|
||||
ListElement {
|
||||
text: qsTr("AV1")
|
||||
text: qsTr("AV1 (Experimental)")
|
||||
val: StreamingPreferences.VCC_FORCE_AV1
|
||||
}
|
||||
}
|
||||
@@ -1656,66 +1630,33 @@ Flickable {
|
||||
}
|
||||
}
|
||||
|
||||
Label {
|
||||
CheckBox {
|
||||
id: enableHdr
|
||||
width: parent.width
|
||||
id: rendererTitle
|
||||
text: qsTr("Renderer")
|
||||
text: qsTr("Enable HDR (Experimental)")
|
||||
font.pointSize: 12
|
||||
wrapMode: Text.Wrap
|
||||
visible: SystemProperties.isDarwin
|
||||
}
|
||||
|
||||
AutoResizingComboBox {
|
||||
// ignore setting the index at first, and actually set it when the component is loaded
|
||||
Component.onCompleted: {
|
||||
var saved_rs = StreamingPreferences.rendererSelection
|
||||
|
||||
// Default to Automatic
|
||||
currentIndex = 0
|
||||
|
||||
for(var i = 0; i < rendererListModel.count; i++) {
|
||||
var el_rs = rendererListModel.get(i).val;
|
||||
if (saved_rs === el_rs) {
|
||||
currentIndex = i
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
activated(currentIndex)
|
||||
enabled: SystemProperties.supportsHdr
|
||||
checked: enabled && StreamingPreferences.enableHdr
|
||||
onCheckedChanged: {
|
||||
StreamingPreferences.enableHdr = checked
|
||||
}
|
||||
|
||||
id: rendererComboBox
|
||||
visible: SystemProperties.isDarwin
|
||||
textRole: "text"
|
||||
model: ListModel {
|
||||
id: rendererListModel
|
||||
ListElement {
|
||||
text: qsTr("Automatic (Recommended)")
|
||||
val: StreamingPreferences.RS_AUTO
|
||||
}
|
||||
ListElement {
|
||||
text: "Vulkan"
|
||||
val: StreamingPreferences.RS_VULKAN
|
||||
}
|
||||
ListElement {
|
||||
text: "Metal"
|
||||
val: StreamingPreferences.RS_METAL
|
||||
}
|
||||
ListElement {
|
||||
text: "AVSampleBufferDisplayLayer"
|
||||
val: StreamingPreferences.RS_AVSBDL
|
||||
}
|
||||
}
|
||||
// ::onActivated must be used, as it only listens for when the index is changed by a human
|
||||
onActivated : {
|
||||
StreamingPreferences.rendererSelection = rendererListModel.get(currentIndex).val
|
||||
}
|
||||
// Updating StreamingPreferences.videoCodecConfig is handled above
|
||||
|
||||
ToolTip.delay: 1000
|
||||
ToolTip.timeout: 5000
|
||||
ToolTip.visible: hovered
|
||||
ToolTip.text: enabled ?
|
||||
qsTr("The stream will be HDR-capable, but some games may require an HDR monitor on your host PC to enable HDR mode.")
|
||||
:
|
||||
qsTr("HDR streaming is not supported on this PC.")
|
||||
}
|
||||
|
||||
CheckBox {
|
||||
id: enableYUV444
|
||||
width: parent.width
|
||||
text: qsTr("Enable YUV 4:4:4")
|
||||
text: qsTr("Enable YUV 4:4:4 (Experimental)")
|
||||
font.pointSize: 12
|
||||
|
||||
checked: StreamingPreferences.enableYUV444
|
||||
|
||||
Binary file not shown.
+56
-48
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Липсва устройство за запис на звук. Преинсталирането на GeForce Experience би трябвало да разреши този проблем.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Да</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&Не</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>Добре</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Помощ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Отказ</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>Код на грешката: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>Версията на GeForce Experience на %1 не се поддържа от тази версия на Moonlight. Трябва да обновите Moonlight, ако искате да имате достъп до %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>Изборът да включите режима на мишката за отдалечен работен плот може да предизвика проблеми в някои игри.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">HDR wird nicht von Software Dekodierung unterstützt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>Избраната настройка за принудително софтуерно декодиране може да доведе до влошена производителност на излъчването.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>Отдалеченият компютър не поддържа кодиране чрез HEVC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Поради избраното принудително декодиране чрез HEVC, което видео картата не поддържа, ще се използва софтуерно декодиране. Това може да доведе до влошена производителност на излъчването.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>Софтуерът или видео картата на отдалечения компютър не поддържа кодиране чрез AV1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Поради избраното принудително декодиране чрез AV1, което видео картата не поддържа, ще се използва софтуерно декодиране. Това може да доведе до влошена производителност на излъчването.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>Отдалеченият компютър не поддържа излъчването на HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>HDR не се поддържа при използване на кодиране H.264.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>Видео картата на този компютър не поддържа декодиране чрез AV1 Main10 за потоци с HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>Видео картата на този компютър не поддържа декодиране чрез 10-битов HEVC или AV1 за потоци с HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>Отдалеченият компютър и клиентският такъв не поддържат едни и същи методи на кодиране на HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>Резолюции на видеото над 4К не се поддържат при кодиране H.264.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>Отдалеченият компютър върна грешка: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Поради избраното принудително декодиране на H.264, което видео картата не поддържа, ще се използва софтуерно декодиране. Това може да доведе до влошена производителност на излъчването.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>Отдалеченият компютър и клиентският такъв не поддържат едни и същи методи на кодиране на видеото. Това може да доведе до влошена производителност на излъчването.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>Видео картата на клиента не поддържа декодиране на H.264. Това може да доведе до влошена производителност на излъчването.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Поради избраното принудително ползване на HDR, което видео картата не поддържа, ще се използва софтуерно декодиране. Това може да доведе до влошена производителност на излъчването.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>Видео картата на този компютър не поддържа декодиране чрез HEVC Main10 за потоци с HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>Отдалеченият компютър на поддържа излъчването на YUV 4:4:4.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>Отдалеченият компютър на поддържа излъчването на YUV 4:4:4 за избрания вид кодиране на видеото.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Поради избраното принудително ползване на YUV 4:4:4, което видео картата не поддържа, ще се използва софтуерно декодиране. Това може да доведе до влошена производителност на излъчването.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>Този компютър на поддържа декодиране на YUV 4:4:4 за избрания вид кодиране на видеото.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>За излъчване в резолюция 4К е необходим GeForce Experience 3.0 или по-нова версия.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>Избраната настройка за обемен звук не се поддържа от текущото звуково устройство.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>Неуспешна връзка със звуковото устройство. По време на тази сесия няма да има звук.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>Включеният контролер няма настройка на бутоните и няма да може да се ползва. Прегледайте помощта на Moonlight, за да разрешите този проблем.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>Видео картата на отдалечения компютър не позволява поточно предаване на видео с резолюция по-голяма от 4К.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>Избраното принудително хардуерно декодиране не е възможно, тъй като видео картата на този компютър не го поддържа.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>Избраният вид кодиране и настройката за принудително хардуерно декодиране не са съвместими, тъй като видео картата на този компютър не поддържа декодиране на избрания вид кодиране.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>Декодерът на видео не може да бъде инициализиран. Проверете настройките за поточно предаване и опитайте отново.</translation>
|
||||
</message>
|
||||
@@ -899,14 +903,13 @@
|
||||
<translation>ЗАБЕЛЕЖКА: Поради проблем в GeForce Experience, тази настройка може да не работи добре, ако отдалеченият компютър има повече от един монитор.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">Das Aktivieren von HDR überschreibt die manuelle Decoder-Auswahl.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>Включване на HDR</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>Включване на HDR (експериментално)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,11 +921,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>Излъчването с HDR не се поддържа на този компютър.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>Включване на YUV 4:4:4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1160,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>AV1 (експериментално)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>Включване на YUV 4:4:4 (експериментално)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
+49
-49
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -508,158 +508,158 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -898,14 +898,9 @@
|
||||
<source>NOTE: Due to a bug in GeForce Experience, this option may not work properly if your host PC has multiple monitors.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -918,11 +913,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1152,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+56
-48
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Zařízení pro zachycení zvuku není k dispozici. Přeinstalování GeForce Experience by tento problém mělo vyřešit.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Ano</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&Ne</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>OK</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Nápověda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Zrušit</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>Chybový kód: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>Verze GeForce Experience na %1 není touto verzí Moonlightu podporována. Abyste mohli streamovat z %1, musíte aktualizovat Moonlight na novější verzi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>Vybrali jste režim myši pro vzdálenou plochu, to může způsobit problémy ve hrách.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">HDR není u softwarového dekódování podporováno.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>Vybrali jste, že chcete vynutit softwarové dekódování, to může způsobit špatný výkon streamování.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Využívá se softwarové dekódování, protože jste vynutili HEVC bez podpory GPU. To může způsobit špatný výkon při streamování.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>Váš hostitelský počítač nepodporuje streamování v režimu HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>Host vrátil chybu: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Využívá se softwarové dekódování, protože jste zvolili vynucené H.264 bez podpory GPU. To může způsobit špatný výkon streamování.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>Váš hostitelský a klientský počítač nepodporují stejné video kodeky. To může způsobit špatný výkon streamování.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>Vaše GPU na klientovi nepodporuje dekódování H.264. To může způsobit špatný výkon streamování.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Používání softwarového dekódování v důsledku volby používat režim HDR bez podpory grafické karty. Může způsobovat špatnou kvalitu streamu.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>GPU tohoto počítače nepodporuje dekódování HEVC Main10 pro HDR streamování.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>Váš hostitelský počítač nepodporuje streamování YUV 4:4:4.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>Pro 4K streamování je vyžadováno GeForce Experience 3.0 nebo novější.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>Vámi zvolené nastavení prostorového zvuku není podporováno současným zvukovým zařízením.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>Nezdařilo se otevřít zvukové zařízení. Během tohoto připojení nebude k dispozici zvuk.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>Připojený gamepad nemá žádné mapování a není použitelný. Navštivte nápovědu Moonlightu pro pomoc s řešením.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>GPU vašeho hostitelského počítače nepodporuje stremování v rozlišení větším než 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>Zvolili jste vynucené hardwarové dekódování, které ale nelze vynutit, protože na GPU tohoto počítače chybí hardwarova podpora dekódování tohoto kodeku.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>Váš výběr kodeku a vynucení hardwarového dekódování nejsou kompatibilní. GPU tohoto počítače nepodporuje dekódování vámi zvoleného kodeku.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>Nezdařilo se inicializovat dekodér videa. Prosím zkontrolujte nastavení streamování a zkuste to znovu.</translation>
|
||||
</message>
|
||||
@@ -894,14 +898,13 @@
|
||||
<translation>Poznámka: Kvůli chybě v GeForce Experience nemusí tato možnost dobře fungovat, pokud má hostitelský počítač více monitorů.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">Povolení HDR přepíše manuální nastavení dekodéru.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>Povolit HDR</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>Povolit HDR (experimentální)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -913,11 +916,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>Tento počítač nepodporuje HDR streamování.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1160,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+56
-48
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Audioaufnahmegerät fehlt. Eine Neuinstallation von GeForce Experience sollte diesen Fehler beheben.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Ja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&Nein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>OK</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Hilfe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Abbrechen</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>Fehlercode: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>Diese Version von GeForce Experience auf %1 wird von diesem Build von Moonlight nicht unterstützt. Sie müssen Moonlight aktualisieren, um von %1 zu streamen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>Die Auswahl des Remote Desktop Maus Modus kann in Spielen zu Problemen führen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">HDR wird nicht von Software Dekodierung unterstützt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>Software Dekodierung kann zu schlechter Streaming Leitung führen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>Ihr Host-PC unterstützt die HEVC-Kodierung nicht.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Da Ihre Grafikkarte keine HEVC Decodierung unterstützt wird Software Dekodierung benutzt. Dies kann zu einer schlechten Streaming-Leistung führen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>Ihre Host-Software oder Ihre GPU unterstützt die AV1-Kodierung nicht.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Nutze Software-Dekodierung wegen der Auswahl, AV1 ohne GPU-Unterstützung zu erzwingen. Dies kann eine schlechte Streaming-Leistung verursachen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>Ihr Host-PC unterstützt kein HDR-Streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>Der h.264 Codec unterstützt kein HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>Die GPU des Client-PCs unterstützt keine HEVC Main10 Dekodierung für HDR Streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>Die GPU des Client-PCs unterstützt keine 10-Bit HEVC oder AV1 Dekodierung für HDR Streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>Ihr Host-PC und Ihr Client-PC unterstützen nicht die gleichen HDR-Videocodecs.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>Videoauflösungen über 4K werden vom H.264 Codec nicht unterstützt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>Host hat einen Fehler zurückgegeben: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Verwendung der Software-Decodierung aufgrund Ihrer Auswahl, H.264 ohne GPU-Unterstützung zu erzwingen. Dies kann zu einer schlechten Streaming-Leistung führen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>Ihr Host-PC und Client-PC unterstützen nicht die gleichen Videocodecs. Dies kann zu einer schlechten Streaming-Leistung führen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>Ihr Client-GPU unterstützt die H.264-Dekodierung nicht. Dies kann zu einer schlechten Streaming-Leistung führen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Verwendung der Software-Decodierung aufgrund Ihrer Auswahl, HDR ohne GPU-Unterstützung zu erzwingen. Dies kann zu einer schlechten Streaming-Leistung führen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>Die Grafikkarte des PCs unterstützt keine HEVC Main10 Dekodierung für HDR Streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>Ihr Host-PC unterstützt kein YUV 4:4:4 streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>Ihr Host-PC unterstützt kein YUV 4:4:4 streaming für den gewählten Video-Codec.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>YUV 4:4:4 ausgewählt, aber nicht von der GPU unterstützt. Softwaredekodierung wird verwendet. Dies kann zu schlechter Streaming-Leistung führen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>Die GPU dieses PCs unterstützt für den ausgewählten Video-Codec keine YUV 4:4:4-Dekodierung.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>Für 4K Streaming wird mindestens GeForce Experience 3.0 benötigt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>Ihre ausgewählte Surround Sound Einstellung wird von dem momentanen Audiogerät nicht unterstützt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>Zugriff auf das Audiogerät fehlgeschlagen. Es wird kein Ton für diese Session verfügbar sein.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>Ein angeschlossener Controller hat keine Tastenbelegung und ist somit nicht nutzbar. Besuchen Sie bitte die Moonlight Hilfe um dies zu lösen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>Die GPU Ihres Host-PCs unterstützt keine Streaming-Videoauflösungen über 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>Erzwungene Hardware Dekodierung kann nicht ausgewählt werden, da der PC keine Hardware Decodierung unterstützt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>Erzwungene Hardware Dekodierung ist nicht mit deinem ausgewähltem Codec kompatibel, da die Grafikkarte des PCs den ausgewählten Codec nicht unterstützt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>Videodecoder konnte nicht initialisiert werden. Bitte prüfen Sie Ihre Streaming-Einstellungen und versuchen Sie es erneut.</translation>
|
||||
</message>
|
||||
@@ -899,14 +903,13 @@
|
||||
<translation>HINWEIS: Aufgrund eines Fehlers in GeForce Experience funktioniert diese Option möglicherweise nicht richtig, wenn Ihr Host-PC mehrere Monitore hat.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">Das Aktivieren von HDR überschreibt die manuelle Decoder-Auswahl.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>HDR aktivieren</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>HDR aktivieren (Experimentell)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,11 +921,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>Dieser Client-PC bietet keine Unterstützung für HDR Streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>Verwende YUV 4:4:4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1160,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>AV1 (experimentell)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>Verwende YUV 4:4:4 (Experimentell)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
+49
-45
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Λείπει συσκευή καταγραφής ήχου. Η επανεγκατάσταση του GeForce Experience θα πρέπει να επιλύσει αυτό το σφάλμα.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation type="unfinished">Βοήθεια</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>Η έκδοση του GeForce Experience στο %1 δεν υποστηρίζεται από αυτήν την έκδοση του Moonlight. Πρέπει να ενημερώσετε το Moonlight για ροή από το %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>Η επιλογή σας για ενεργοποίηση της λειτουργίας ποντικιού απομακρυσμένης επιφάνειας εργασίας ενδέχεται να προκαλέσει προβλήματα στα παιχνίδια.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">Το HDR δεν υποστηρίζεται με αποκωδικοποίηση λογισμικού.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>Η επιλογή των ρυθμίσεών σας για αναγκαστική αποκωδικοποίηση λογισμικού μπορεί να προκαλέσει κακή απόδοση ροής.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Χρήση αποκωδικοποίησης λογισμικού λόγω της επιλογής σας να επιβάλλετε HEVC χωρίς υποστήριξη GPU. Αυτό μπορεί να προκαλέσει κακή απόδοση ροής.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Χρήση αποκωδικοποίησης λογισμικού λόγω της επιλογής σας να επιβάλλετε την έκδοση H.264 χωρίς υποστήριξη από την κάρτα γραφικών. Αυτό μπορεί να προκαλέσει κακή απόδοση ροής.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>Ο κεντρικός υπολογιστής σας και ο υπολογιστής-πελάτης δεν υποστηρίζουν τους ίδιους κωδικοποιητές βίντεο. Αυτό μπορεί να προκαλέσει κακή απόδοση ροής.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>Η κάρτα γραφικών του υπολογιστή πελάτη σας δεν υποστηρίζει την αποκωδικοποίηση H.264. Αυτό μπορεί να προκαλέσει κακή απόδοση ροής.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>Η κάρτα γραφικών αυτού του υπολογιστή δεν υποστηρίζει την αποκωδικοποίηση HEVC Main10 για ροή HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>Για ροή 4K απαιτείται GeForce Experience 3.0 ή νεότερη έκδοση.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>Η επιλεγμένη ρύθμιση ήχου surround δεν υποστηρίζεται από την τρέχουσα συσκευή ήχου.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>Απέτυχε το άνοιγμα συσκευής ήχου. Ο ήχος δεν θα είναι διαθέσιμος κατά τη διάρκεια αυτής της συνεδρίας.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>Ένα συνδεδεμένο gamepad δεν έχει χαρτογράφηση και δεν μπορεί να χρησιμοποιηθεί. Επισκεφτείτε τη βοήθεια του Moonlight για να το επιλύσετε.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>Η κάρτα γραφικών του κεντρικού υπολογιστή σας δεν υποστηρίζει αναλύσεις βίντεο ροής πάνω από 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>Η επιλογή σας για επιβολή αποκωδικοποίησης υλικού δεν μπορεί να ικανοποιηθεί λόγω έλλειψης υποστήριξης αποκωδικοποίησης υλικού στη κάρτα γραφικών αυτού του υπολογιστή.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>Η επιλογή κωδικοποιητή και η αναγκαστική αποκωδικοποίηση υλικού δεν είναι συμβατές. Η κάρτα γραφικών αυτού του υπολογιστή δεν υποστηρίζει την αποκωδικοποίηση του κωδικοποιητή που έχετε επιλέξει.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>Αδυναμία αρχικοποίησης του αποκωδικοποιητή βίντεο. Ελέγξτε τις ρυθμίσεις ροής και δοκιμάστε ξανά.</translation>
|
||||
</message>
|
||||
@@ -900,12 +904,12 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -918,11 +922,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1161,11 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
+55
-47
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Jes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&Ne</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>Bone</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Helpo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Nuligi</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>Erarkodo: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">HDR wird nicht von Software Dekodierung unterstützt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -899,13 +903,12 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">Das Aktivieren von HDR überschreibt die manuelle Decoder-Auswahl.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -918,11 +921,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1160,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+56
-48
@@ -66,7 +66,7 @@
|
||||
<message>
|
||||
<location filename="../gui/CliPair.qml" line="12"/>
|
||||
<source>Pairing... Please enter '%1' on %2.</source>
|
||||
<translation>Emparejando... Introduce '%1' en %2.</translation>
|
||||
<translation>Emparejando... Introduce '1%' en %2.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/CliPair.qml" line="81"/>
|
||||
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Falta el dispositivo de captura de audio. La reinstalación de GeForce Experience debería resolver este error.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Sí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&No</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>Aceptar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Ayuda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Cancelar</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>Código de error: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>La versión de GeForce Experience en %1 no es compatible con esta versión de Moonlight. Debes actualizar Moonlight para transmitir desde %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>La selección de activar el modo de ratón de escritorio remoto puede causar problemas en los juegos.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">HDR no es compatible con la decodificación por software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>Su selección de ajustes para forzar la decodificación por software puede causar un rendimiento deficiente de la transmisión.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>El host de tu PC no soporta la codificación HEVC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Usando decodificación por software debido a su selección de forzar HEVC sin soporte de GPU. Esto puede causar un bajo rendimiento de streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>El software host o la GPU no admiten la codificación AV1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>El uso de la decodificación por software debido a tu selección para forzar el AV1 sin soporte para la GPU. Esto puede causar un bajo rendimiento de la transmisión.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>El host de tu PC no es compatible con HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>HDR no es compatible con el códec H.264.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>La GPU de este PC no es compatible con la decodificación en AV1 Main10 para la transmisión en HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>La GPU de este PC no admite la decodificación en HEVC de 10 bits ni AV1 para la retransmisión en HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>El host de tu PC y tu servidor no admiten los mismos códecs de video en HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>Las resoluciones de video superiores a 4K no son compatibles con el códec H.264.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>El host devuelve el error: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Usando decodificación de software debido a su selección para forzar H.264 sin soporte de GPU. Esto puede provocar un rendimiento de transmisión deficiente.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>Su PC anfitrión y el PC cliente no soportan los mismos códecs de vídeo. Esto puede causar un bajo rendimiento de la transmisión.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>Su GPU cliente no soporta la decodificación H.264. Esto puede causar un bajo rendimiento de la transmisión.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>La decodificación de software se utiliza debido a su elección de forzar HDR sin compatibilidad con tarjetas gráficas. Esto puede resultar en un rendimiento deficiente de la transmisión.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>La GPU de este PC no es compatible con la decodificación HEVC Main10 para la transmisión de HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>El host de tu ordenador no admite la transmisión YUV 4:4:4.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>El PC anfitrión no admite la transmisión YUV 4:4:4 para el códec de vídeo seleccionado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Uso de decodificación por software debido a su selección para forzar YUV 4:4:4 sin soporte GPU. Esto puede causar un bajo rendimiento en el streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>La GPU de este PC no es compatible con la descodificación YUV 4:4:4 para el códec de vídeo seleccionado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>Se requiere GeForce Experience 3.0 o superior para la transmisión en 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>La configuración de sonido envolvente seleccionada no es compatible con el dispositivo de audio actual.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>No se ha podido abrir el dispositivo de audio. El audio no estará disponible durante esta sesión.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>Un mando conectado no tiene mapeo y no será utilizable. Visita la ayuda de Moonlight para resolver esto.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>La GPU de su PC anfitrión no admite la transmisión de resoluciones de vídeo superiores a 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>Su selección para forzar la decodificación por hardware no puede ser satisfecha debido a la falta de soporte de decodificación por hardware en la GPU de este PC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>La selección del códec y la configuración de la decodificación forzada por hardware no son compatibles. La GPU de este PC no es compatible con la descodificación del códec elegido.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>No se ha podido inicializar el decodificador de vídeo. Por favor, compruebe la configuración de la transmisión y vuelva a intentarlo.</translation>
|
||||
</message>
|
||||
@@ -898,15 +902,19 @@
|
||||
<source>NOTE: Due to a bug in GeForce Experience, this option may not work properly if your host PC has multiple monitors.</source>
|
||||
<translation>NOTA: Debido a un error en GeForce Experience, es posible que esta opción no funcione correctamente si su PC host tiene varios monitores.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">Habilitar el HDR anula las selecciones manuales del decodificador.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>AV1 (Experimental)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>Activar HDR</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>Activar HDR (Experimental)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,11 +926,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>La transmisión HDR no esta soportada en este PC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>Activar YUV 4:4:4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1165,11 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>Activar YUV 4:4:4 (Experimental)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+50
-50
@@ -159,7 +159,7 @@
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="76"/>
|
||||
<source>Local Address: %1</source>
|
||||
<translation>Lokaalne Aadress: %1</translation>
|
||||
<translation>Lokaalne Aadress: 1%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="77"/>
|
||||
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -508,158 +508,158 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -898,14 +898,9 @@
|
||||
<source>NOTE: Due to a bug in GeForce Experience, this option may not work properly if your host PC has multiple monitors.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -918,11 +913,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1152,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+55
-47
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Dispositif de capture audio manquant. Réinstaller GeForce Experience devrait résoudre cette erreur.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Oui</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&Non</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>OK</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Aide</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Annuler</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>Code d'erreur : %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>La version de GeForce Experience sur %1 n'est pas supportée par cette version de Moonlight. Vous devez mettre à jour Moonlight pour streamer depuis %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>Le mode souris pour bureau à distance que vous avez activé peut causer des problèmes dans les jeux.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">Le HDR n'est pas pris en charge par le décodeur logiciel.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>Vos réglages pour forcer le décodage logiciel peuvent causer de mauvaises performances.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>Votre PC hôte ne prend pas en charge l'encodage HEVC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Utilisation du décodage logiciel dû à votre sélection pour forcer le codec HEVC sans support GPU. Ceci peut causer des problèmes de performances.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>Votre logiciel hôte ou GPU ne prend pas en charge l'encodage du AV1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Utilisation du décodage logiciel en raison de votre sélection de forcer l'utilisation du codec AV1 sans prise en charge GPU. Ceci peut causer des problèmes de performances.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>Votre PC hôte ne prend pas en charge le streaming HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>HDR n'est pas pris en charge avec le codec H.264.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>Le GPU de ce PC ne prend pas en charge le décodage AV1 Main 10 pour le streaming HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>Le GPU de ce PC ne prend pas en charge le décodage HEVC ou AV1 10 bits pour le streaming HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>Votre PC hôte et votre PC client ne prennent pas en charge les mêmes codecs vidéo HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>Les résolutions vidéo supérieures à la 4K ne sont pas prises en charge par le codec H.264.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>L'hôte a renvoyé une erreur : %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Le décodage logiciel est utilisé car vous voulez forcer l'utilisation du H.264 sans support matériel du GPU. Ceci peut causer des problèmes de performances.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>Votre PC hôte et PC client ne supportent pas les mêmes codecs vidéo. Ceci peut causer des problèmes de performance.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>Le GPU de votre client ne supporte pas le décodage matériel du H.264. Ceci peut causer des problèmes de performance.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Utilisation du décodage logiciel dû à votre sélection de forcer le HDR sans support GPU. Ceci peut causer des problèmes de performances.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>Le GPU de ce PC ne prend pas en charge le décodage du HEVC Main10 pour le streaming HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>Votre PC hôte ne supporte pas le streaming en YUV 4:4:4.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>Votre PC hôte ne supporte pas le streaming en YUV 4:4:4 pour le codec sélectionné.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Utilisation du décodage logiciel dû à votre sélection pour forcer le YUV 4:4:4 sans support GPU. Ceci peut causer des problèmes de performances.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>Le GPU de ce PC ne supporte pas le décodage YUV 4:4:4 pour le codec sélectionné.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>GeForce Experience 3.0 ou ultérieur est requis pour le streaming 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>Le réglage du son surround que vous avez sélectionné n'est pas pris en charge par le périphérique audio actuel.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>L'ouverture de l'appareil audio à échoué. L'audio ne sera pas disponible pendant cette session.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>Une manette de jeu attachée n'a pas été configurée et ne sera pas utilisable. Visitez l'aide Moonlight pour résoudre ce problème.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>Le GPU de votre PC hôte ne prend pas en charge le streaming dans des résolutions supérieures à la 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>Impossible de forcer l'utilisation du décodage matériel car le GPU de cet ordinateur ne supporte pas le décodage matériel.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>Votre sélection de codecs et le réglage du décodage matériel ne sont pas compatibles. Le GPU de ce PC ne prend pas en charge le décodage du codec que vous avez choisi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>Impossible d'initialiser le décodeur vidéo. Veuillez vérifier vos paramètres de streaming et réessayez.</translation>
|
||||
</message>
|
||||
@@ -991,15 +995,19 @@
|
||||
<source>Forces a single gamepad to always stay connected to the host, even if no gamepads are actually connected to this PC.</source>
|
||||
<translation>Force une seule manette de jeu à toujours rester connectée à l'hôte, même si aucune manette de jeu n'est réellement connectée à ce PC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">Activer le HDR désactive la sélection manuelle de décodeur.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>AV1 (expérimental)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>Activer le HDR</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>Activer le HDR (expérimental)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -1011,11 +1019,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>Le streaming en HDR n'est pas supporté sur ce PC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>Activer YUV 4:4:4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1165,11 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>Activer YUV 4:4:4 (expérimental)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
+49
-49
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -508,158 +508,158 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -898,14 +898,9 @@
|
||||
<source>NOTE: Due to a bug in GeForce Experience, this option may not work properly if your host PC has multiple monitors.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -918,11 +913,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1152,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+52
-52
@@ -38,7 +38,7 @@
|
||||
<message>
|
||||
<location filename="../gui/AppView.qml" line="326"/>
|
||||
<source>Hide this game from the app grid. To access hidden games, right-click on the host and choose %1.</source>
|
||||
<translation>इस गेम को ऐप ग्रिड से छिपाएं। छिपे हुए खेलों तक पहुँचने के लिए, होस्ट पर राइट-क्लिक करें और %1 चुनें।</translation>
|
||||
<translation>इस गेम को ऐप ग्रिड से छिपाएं। छिपे हुए खेलों तक पहुँचने के लिए, होस्ट पर राइट-क्लिक करें और% 1 चुनें।</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/AppView.qml" line="326"/>
|
||||
@@ -53,7 +53,7 @@
|
||||
<message>
|
||||
<location filename="../gui/AppView.qml" line="354"/>
|
||||
<source>Are you sure you want to quit %1? Any unsaved progress will be lost.</source>
|
||||
<translation>क्या आप वाकई %1 छोड़ना चाहते हैं? कोई भी सहेजी नहीं गई प्रगति खो जाएगी।</translation>
|
||||
<translation>क्या आप वाकई% 1 छोड़ना चाहते हैं? कोई भी सहेजी नहीं गई प्रगति खो जाएगी।</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -102,7 +102,7 @@
|
||||
<message>
|
||||
<location filename="../gui/CliStartStreamSegue.qml" line="78"/>
|
||||
<source>Are you sure you want to quit %1? Any unsaved progress will be lost.</source>
|
||||
<translation>क्या आप वाकई %1 छोड़ना चाहते हैं? कोई भी सहेजी नहीं गई प्रगति खो जाएगी।</translation>
|
||||
<translation>क्या आप वाकई% 1 छोड़ना चाहते हैं? कोई भी सहेजी नहीं गई प्रगति खो जाएगी।</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>ऑडियो कैप्चर डिवाइस नहीं है। कृपया GeForce Experience हटा के फिर से डालें ।</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -508,158 +508,158 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -898,14 +898,9 @@
|
||||
<source>NOTE: Due to a bug in GeForce Experience, this option may not work properly if your host PC has multiple monitors.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -918,11 +913,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1152,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+56
-48
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Hiányzik egy hangrögzítő eszköz. A GeForce Experience újratelepítése valószínűleg megoldja a problémát.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Igen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&Nem</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>OK</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Súgó</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Mégse</translation>
|
||||
</message>
|
||||
@@ -493,72 +493,76 @@
|
||||
<translation>A kapcsolat megszakadt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>A(z) %1 számítógépen futó GeForce Experience verzióját a Moonlight jelenlegi verziója nem támogatja. A streameléshez frissítened kell a Moonlightot.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>A távoli asztali egér mód bekapcsolása problémákat okozhat játék közben.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">A HDR nem támogatott szoftveres dekódolással.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>A szoftveres dekódolás erőltetése rontja a streamelés teljesítményét.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>A gazdagép nem támogatja a HEVC kódolást.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Szoftveres dekódolás van használatban, mert a HEVC dekódolást GPU támogatás nélkül kényszerítetted. Ez ronthatja a streamelés teljesítményét.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>A gazdagépen futó szoftver vagy a GPU nem támogatja az AV1 kódolást.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Szoftveres dekódolás van használatban, mert az AV1 dekódolást GPU támogatás nélkül kényszerítetted. Ez ronthatja a streamelés teljesítményét.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>A gazdagép nem támogatja a HDR streamelést.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>A HDR nem támogatott H.264 kodek használata esetén.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>Ennek a számítógépnek a GPU-ja nem támogatja az AV1 Main10 dekódolást HDR streameléshez.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>Ennek a számítógépnek a GPU-ja nem támogatja a 10 bites HEVC- vagy AV1-dekódolást a HDR streameléshez.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>A gazdagép és a kliensgép nem támogatja ugyanazokat a HDR videokodekeket.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>A H.264 kodek nem támogatja a 4K fölötti videofelbontásokat.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>A gazdagép hibát küldött vissza: %1</translation>
|
||||
</message>
|
||||
@@ -578,88 +582,88 @@
|
||||
<translation>Hibakód: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Szoftveres dekódolás van használatban, mert a H.264 dekódolást GPU támogatás nélkül kényszerítetted. Ez ronthatja a streamelés teljesítményét.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>A gazdagép és a kliensgép nem támogatja ugyanazokat a videokodekeket. Ez ronthatja a stream teljesítményét.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>A kliens GPU-ja nem támogatja a H.264 dekódolást. Ez ronthatja a streamelés teljesítményét.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Szoftveres dekódolás van használatban, mert a HDR feldolgozást GPU támogatás nélkül kényszerítetted. Ez ronthatja a streamelés teljesítményét.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>Ennek a számítógépnek a GPU-ja nem támogatja a HEVC Main10 dekódolást a HDR streameléshez.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>A gazdagép nem támogatja a YUV 4:4:4 streamelést.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>A gazdagép nem támogatja a YUV 4:4:4 streamelést a kiválasztott kodek esetén.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Szoftveres dekódolás van használatban, mert a YUV 4:4:4 feldolgozást GPU támogatás nélkül kényszerítetted. Ez ronthatja a streamelés teljesítményét.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>Ennek a számítógépnek a GPU-ja nem támogatja a YUV 4:4:4:4 dekódolást a kiválasztott videokodekhez.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>A 4K streameléshez GeForce Experience 3.0 vagy újabb szükséges.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>Az aktuális hangkártya nem támogatja a kiválasztott térhatású beállítást.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>Nem sikerült megnyitni a hangeszközt. A munkamenet alatt nem lesz hang.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>A csatlakoztatott gamepad nincs konfigurálva, így nem használható. A megoldáshoz keresd fel a Moonlight súgót.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>A gazdagép GPU-ja nem támogatja a 4K fölötti videofelbontás streamelését.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>A hardveres dekódolás kényszerítése nem lehetséges, mert a számítógép GPU-ja nem támogatja.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>A választott kodek és a hardveres dekódolás kényszerítése nem kompatibilis. A számítógép GPU-ja nem támogatja a választott kodek dekódolást.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>Nem sikerült inicializálni a videódekódert. Ellenőrizd a streaming beállításokat, majd próbáld újra.</translation>
|
||||
</message>
|
||||
@@ -899,14 +903,13 @@
|
||||
<translation>MEGJEGYZÉS: A GeForce Experience egy hibája miatt előfordulhat, hogy ez az opció nem működik megfelelően, ha a gazdagépen több monitor van.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">A HDR engedélyezése felülírja a manuális dekóder kiválasztását.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>HDR engedélyezése</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>HDR engedélyezése (Kísérleti)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,11 +921,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>A HDR streamelés nem támogatott ezen a számítógépen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>YUV 4:4:4 engedélyzése</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1160,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>AV1 (Kísérleti)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>YUV 4:4:4 engedélyzése (Kísérleti)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+56
-48
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Dispositivo di cattura audio mancante. Installare nuovamente GeForce Experience dovrebbe risolvere il problema.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Sì</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&No</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>OK</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Aiuto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Annulla</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>Codice di errore: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>La versione di GeForce Experience su %1 non è supportata da questa versione di Moonlight. Aggiorna Moonlight per fare streaming da %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>La tua selezione di modalità del mouse su desktop remoto potrebbe provocare problemi nei giochi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">La decodifica software non supporta HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>La selezione per forzare la decodifica software potrebbe provocare basse performance con lo streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>Il tuo PC host non supporta la codifica HEVC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Decodifica software in uso per la selezione dell'uso forzato di HEVC senza supporto GPU. Questo potrebbe provocare performance scadenti di streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>Il software host o GPU non supporta la codifica AV1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Decodifica software in uso a causa della selezione dell'uso forzato dell'AV1 senza il supporto GPU. Questo può causare prestazioni di streaming scarse.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>Il PC host non supporta lo streaming HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>HDR non è supportato utilizzando il codec H.264.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>La GPU di questo PC non supporta la decodifica AV1 Main10 per lo streaming HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>La GPU di questo PC non supporta la decodifica HEVC a 10 bit o AV1 per lo streaming HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>Il PC host e il PC client non supportano gli stessi codec video HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>Le risoluzioni video oltre il 4K non sono supportate dal codec H.264.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>L'host ha restituito un errore: %1</translation>
|
||||
<translation>L'host ha restituito un errore: %</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Decodifica software in uso per la selezione dell'uso forzato di H.264 senza supporto GPU. Questo potrebbe provocare performance scadenti di streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>Il tuo PC host e il PC client non supportano gli stessi codificatori video. Questo potrebbe provocare performance scadenti di streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>La tua scheda video non supporta la decodifica H.264. Questo potrebbe provocare performance scadenti di streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Decoding software in uso secondo la tua preferenza del forzare HDR senza il supporto della GPU. Questo potrebbe causare prestazioni scadenti.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>La scheda video di questo PC non supporta la decodifica HEVC Main10 per lo streaming in HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>Il tuo PC host non supporta lo streaming YUV 4:4:4.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>Il tuo pc host non supporta lo streaming YUV 4:4:4 per il codec video selezionato.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Il decoding software è in uso in quanto hai scelto di forzare YUV 4:4:4 senza il supporto da parte della GPU. Questo potrebbe causare prestazioni di streaming scadenti.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>La GPU di questo PC non supporta il decoding YUV 4:4:4 per il codec video selezionato.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>Per lo streaming in 4K è richiesta GeForce Experience 3.0 o superiore.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>Il tipo di surround selezionato non è supportato dal dispositivo audio attuale.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>Impossibile aprire il dispositivo audio. Per questa sessione non sarà disponibile l'audio.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>Un controller connesso non ha mappatura e non sarà utilizzabile. Visita l'aiuto di Moonlight per risolvere.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>La scheda video del tuo PC host non supporta lo streaming di risoluzioni video oltre i 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>La selezione di forzare la decodifica hardware non può essere applicata per via del mancato supporto alla decodifica hardare sulla scheda video di questo PC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>La selezione del codec e della decodifica hardware non sono compatibili. La scheda video di questo PC non supporta la decodifica per il codec scelto.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>Impossibile inizializzare il decoder video. Controlla le impostazioni di streaming e prova di nuovo.</translation>
|
||||
</message>
|
||||
@@ -898,15 +902,19 @@
|
||||
<source>NOTE: Due to a bug in GeForce Experience, this option may not work properly if your host PC has multiple monitors.</source>
|
||||
<translation>NOTA: A causa di un bug in GeForce Experience, questa opzione potrebbe non funzionare correttamente se il tuo computer sorgente ha più di un monitor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">L'abilitazione dell'HDR sostituisce le selezioni manuali del decodificatore.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>AV1 (Sperimentale)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>Abilita HDR</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>Abilita HDR (Sperimentale)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,11 +926,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>Lo streaming HDR non è supportata su questo PC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>Abilita YUV 4:4:4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1165,11 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>Abilita YUV 4:4:4 (Sperimentale)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+58
-50
@@ -184,7 +184,7 @@
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="81"/>
|
||||
<source>Pair State: %1</source>
|
||||
<translation>ペア状況: %1</translation>
|
||||
<translation>ペア状況</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="82"/>
|
||||
@@ -194,7 +194,7 @@
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="83"/>
|
||||
<source>HTTPS Port: %1</source>
|
||||
<translation>HTTPSポート: %1</translation>
|
||||
<translation>HTTPSポート</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>オーディオキャプチャーデバイスがありません。GeForce Experienceを再インストールすることでこのエラーが解決されます。</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>はい(&Y)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>いいえ(&N)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>OK</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>ヘルプ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>キャンセル</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>エラーコード: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>%1のGeForce Experienceのバージョンは、このビルドのMoonlightではサポートされていません。%1からストリーミングするには、Moonlightをアップデートする必要があります。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>リモートデスクトップマウスモードを有効にすると、ゲームで問題が発生する場合があります。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">ソフトウェアデコードではHDRに対応していません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>ソフトウェアデコードを強制する設定になっていると、ストリーミングのパフォーマンスが低下する場合があります。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>ホストPCがHEVCエンコーディングをサポートしていません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>GPUをサポートしていないHEVCを強制する設定を選択したため、ソフトウェアデコーディングを使用しています。これによってストリーミングパフォーマンスが低下する可能性があります。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>ホストソフトウェアまたはGPUがAV1エンコーディングをサポートしていません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>GPUサポートなしでAV1を強制する選択をしたため、ソフトウェアデコーディングを使用しています。これによりストリーミングのパフォーマンスが低下する可能性があります。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>ホストPCがHDRストリーミングをサポートしていません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>HDRはH.264コーデックでは対応していません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>このPCのGPUはHDRストリーミング用のAV1 Main10デコーディングをサポートしていません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>このPCのGPUはHDRストリーミング用の10ビットHEVCまたはAV1デコーディングをサポートしていません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>ホストPCとクライアントPCが同じHDRビデオコーデックをサポートしていません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>4Kを超えるビデオ解像度はH.264コーデックではサポートされていません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>ホストがエラーを返しました:%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>GPUサポートなしでH.264を強制する選択をしたため、ソフトウェアデコーディングを使用しています。これによりストリーミングのパフォーマンスが低下する可能性があります。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>ホストPCとクライアントPCが同じビデオコーデックをサポートしていません。これによりストリーミングのパフォーマンスが低下する可能性があります。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>クライアントのGPUがH.264デコーディングをサポートしていません。これによりストリーミングのパフォーマンスが低下する可能性があります。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>GPUサポートなしでHDRを強制する選択をしたため、ソフトウェアデコーディングを使用しています。これによりストリーミングのパフォーマンスが低下する可能性があります。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>このPCのGPUはHDRストリーミングのHEVC Main10デコーディングに対応していません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>ホストPCがYUV 4:4:4ストリーミングをサポートしていません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>ホストPCが選択されたビデオコーデックでのYUV 4:4:4ストリーミングをサポートしていません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>GPUサポートなしでYUV 4:4:4を強制する選択をしたため、ソフトウェアデコーディングを使用しています。これによりストリーミングのパフォーマンスが低下する可能性があります。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>このPCのGPUは選択されたビデオコーデックでのYUV 4:4:4ストリーミングをサポートしていません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>4KストリーミングにはGeForce Experience 3.0以降が必要です。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>選択したサラウンド音声設定は現在のオーディオデバイスに対応していません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>オーディオデバイスのオープンに失敗しました。このセッションでは音声は利用できません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>接続されたゲームパッドはマッピングされていないため、使用できません。この問題を解決するには、Moonlightのヘルプをご覧ください。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>ホストPCのGPUは4Kを超えるビデオ解像度でのストリーミングに対応していません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>このPCのGPUはハードウェアデコードに対応していないため、ハードウェアデコードを強制するという選択を満たすことができません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>選択したコーデックとハードウェアデコードを強制する設定には互換性がありません。このPCのGPUは、選択したコーデックのデコードに対応していません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>ビデオデコーダを初期化できませんでした。ストリーミングの設定を確認して再度お試しください。</translation>
|
||||
</message>
|
||||
@@ -899,14 +903,13 @@
|
||||
<translation>注: GeForce Experienceのバグにより、ホストPCにマルチモニターがある場合、このオプションは正しく動作しない可能性があります。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">HDR を有効にすると、手動で選択したデコーダーが上書きされます。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>HDRを有効にする</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>HDRを有効にする(実験的)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,11 +921,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>このPCではHDRストリーミングはサポートされていません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>YUV 4:4:4を有効にする</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1160,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>AV1 (実験的)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>YUV 4:4:4を有効にする(実験的)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+56
-48
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>오디오 캡처 장치가 없습니다. GeForce Experience를 다시 설치하면 이 오류가 해결됩니다.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>예(&Y)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>아니요(&N)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>확인</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>도움말</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>취소</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>에러 코드: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>%1의 GeForce Experience 버전은 이 빌드의 Moonlight에서 지원되지 않습니다. %1에서 스트리밍하려면 Moonlight를 업데이트 해야 합니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>원격 데스크톱 마우스 모드를 활성화하도록 선택하면 게임에서 문제가 발생할 수 있습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">HDR는 소프트웨어 디코딩에서 지원되지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>소프트웨어 디코딩을 강제하도록 선택하면 스트리밍 성능이 저하 될 수 있습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>호스트 PC가 HEVC 인코딩을 지원하지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>HEVC 사용을 강제하도록 선택하였으나 GPU 미지원으로 인해 소프트웨어 디코딩을 사용 중입니다. 이로 인해 스트리밍 성능이 저하될 수 있습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>호스트 소프트웨어 또는 GPU가 AV1 인코딩을 지원하지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>AV1 사용을 강제하도록 선택하였으나 GPU 미지원으로 인해 소프트웨어 디코딩을 사용 중입니다. 이로 인해 스트리밍 성능이 저하될 수 있습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>호스트 PC가 HDR 스트리밍을 지원하지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>HDR는 H.264 코덱 사용 시 지원되지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>이 PC의 GPU는 HDR 스트리밍을 위한 AV1 Main10 디코딩을 지원하지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>이 PC의 GPU는 HDR 스트리밍을 위한 10-bit HEVC 또는 AV1 디코딩을 지원하지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>호스트 PC와 클라이언트 PC는 동일한 HDR 비디오 코덱을 지원하지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>4K 이상의 비디오 해상도는 H.264 코덱에서 지원하지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>호스트가 오류를 반환하였습니다: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>H.264 사용을 강제하도록 선택하였으나 GPU 미지원으로 인해 소프트웨어 디코딩을 사용 중입니다. 이로 인해 스트리밍 성능이 저하될 수 있습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>호스트 PC와 클라이언트 PC가 동일한 비디오 코덱을 지원하지 않습니다. 이로 인해 스트리밍 성능이 저하될 수 있습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>클라이언트 GPU가 H.264 디코딩을 지원하지 않습니다. 이로 인해 스트리밍 성능이 저하될 수 있습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>GPU 지원 없이 HDR을 강제로 사용하도록 선택했기 때문에 소프트웨어 디코딩을 사용하고 있습니다. 이로 인해 스트리밍 성능이 저하될 수 있습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>이 PC의 GPU는 HDR 스트리밍을 위한 HEVC Main10 디코딩을 지원하지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>호스트 PC가 YUV 4:4:4 스트리밍을 지원하지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>호스트 PC가 선택한 비디오 코덱에 대해 YUV 4:4:4 스트리밍을 지원하지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>GPU 지원 없이 YUV 4:4:4를 강제로 사용하도록 설정하여 소프트웨어 디코딩을 사용하고 있습니다. 이로 인해 스트리밍 성능이 저하될 수 있습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>이 PC의 GPU는 선택된 비디오 코덱에 대한 YUV 4:4:4 디코딩을 지원하지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>4K 스트리밍에는 GeForce Experience 3.0 이상이 필요합니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>선택한 서라운드 사운드 설정은 현재 오디오 장치에서 지원되지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>오디오 장치를 열지 못했습니다. 이 세션에서는 오디오를 사용할 수 없습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>연결된 게임 패드에 매핑이 없으며 사용할 수 없습니다. 이 문제를 해결하려면 Moonlight 도움말을 방문하십시오.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>호스트 PC의 GPU가 4K 이상의 비디오 해상도 스트리밍을 지원하지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>이 PC의 GPU가 하드웨어 디코딩을 지원하지 않아 하드웨어 디코딩을 강제하도록 선택하였으나 지원되지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>선택한 코덱과 하드웨어 디코딩을 강제하도록 선택한 설정이 호환되지 않습니다. 이 PC의 GPU는 선택한 코덱의 디코딩을 지원하지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>비디오 디코더를 초기화 할 수 없습니다. 스트리밍 설정을 확인하고 다시 시도하십시오.</translation>
|
||||
</message>
|
||||
@@ -899,14 +903,13 @@
|
||||
<translation>참고: GeForce Experience의 버그로 인해 호스트 PC에 다중 모니터가 있는 경우 이 옵션이 제대로 작동하지 않을 수 있습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">HDR을 활성화하면 지정된 디코더 선택이 무시됩니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>HDR 활성화</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>HDR 활성화 (실험용)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,11 +921,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>이 PC에서는 HDR 스트리밍이 지원되지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>YUV 4:4:4 활성화</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1160,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>AV1 (실험용)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>YUV 4:4:4 활성화 (실험용)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
+49
-49
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Trūksta garso įrašymo įrenginio. Pabandykite iš naujo parsiųsti GeForce Experience.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Taip</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&Ne</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>Gerai</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Pagalba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Atšaukti</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,158 @@
|
||||
<translation>Klaidos kodas: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>Jūsų Moonlight nepalaiko %1 GeForce Experience versijos. Norėdami transliuoti iš %1, turite atnaujinti Moonlight.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>Jūsų pasirinkimas įjungti nuotolinio darbastalio pėlę gali sukelti problemų žaidimuose.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -898,14 +898,9 @@
|
||||
<source>NOTE: Due to a bug in GeForce Experience, this option may not work properly if your host PC has multiple monitors.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -918,11 +913,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1152,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+51
-47
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Mangler lydopptaksenhet. Reinstallasjon av GeForce Experience bør løse dette problemet.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>Ja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&Nei</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>OK</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Hjelp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Avbryt</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>Feilkode: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>Versjonen av GeForce Experience på %1 støttes ikke av denne byggversjonen av Moonlight. Du må oppdatere Moonlight for å strømme fra %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>Din aktivering av musemodus for eksternt skrivebord kan forårsake problemer i spill.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">HDR er ikke støttet med mykvaredekoding.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>Din aktivering av tvungen programvaredekoding kan forårsake dårlig strømmeytelse.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>Din verts-PC støtter ikke HEVC-koding.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Bruker programvaredekoding som følge av ditt valg om å påtvinge HEVC uten GPU-støtte. Dette kan forårsake dårlig strømmeytelse.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>Din verts programvare eller GPU støtter ikke AV1-koding.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Bruker programvaredekoding som følge av ditt valg om å påtvinge AV1 uten GPU-støtte. Dette kan forårsake dårlig strømmeytelse.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>Din verts-PC støtter ikke HDR-strømming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>HDR er ikke støttet når H.264-kodeken brukes.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>Denne PCens GPU støtter ikke dekoding av AV1 Main10 for HDR-strømming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>Denne PCens GPU støtter ikke dekoding av 10-biters HEVC eller AV1 for HDR-strømming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>Verts-PCen og klient-PCen støtter ikke de samme HDR-videokodekene.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>Videooppløsning over 4K støttes ikke av H.264-kodeken.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>Verten returnerte feil: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Bruker programvaredekoding som følge av ditt valg om å påtvinge H.264 uten GPU-støtte. Dette kan forårsake dårlig strømmeytelse.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>Verts-PCen og klient-PCen støtter ikke de samme videokodekene. Dette kan forårsake dårlig strømmeytelse.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>Din klients GPU støtter ikke H.264-dekoding. Dette kan forårsake dårlig strømmeytelse.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Bruker programvaredekoding som følge av ditt valg om å påtvinge HDR uten GPU-støtte. Dette kan forårsake dårlig strømmeytelse.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>Denne PCens GPU støtter ikke dekoding av HEVC Main10 for HDR-strømming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>Din verts-PC støtter ikke YUV 4:4:4-strømming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>Din verts-PC støtter ikke YUV 4:4:4-strømming for valgte videokodek.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Bruker programvaredekoding som følge av ditt valg om å påtvinge YUV 4:4:4 uten GPU-støtte. Dette kan forårsake dårlig strømmeytelse.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>Denne PCens GPU støtter ikke YUV 4:4:4-strømming for valgte videokodek.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>GeForce Experience 3.0 eller senere kreves for 4K-strømming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>Din valgte surroundlydinnstilling støttes ikke på nåværende lydenhet.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>Kunne ikke åpne lydenhet. Lyd vil være utilgjengelig under denne økten.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>En tilknyttet spillkontroller har ingen tastetilknytninger og vil ikke kunne brukes. Besøk Moonlight-hjelpen for å løse dette.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>Verts-PCen sin GPU støtter ikke strømming av videooppløsninger over 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>Din aktivering av tvungen maskingvaredekoding har ingen innvirkning siden det ikke støttes av denne PCens GPU.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>Din valgte kodek er ikke kompatibel med aktivering av tvungen maskingvaredekoding. Denne PCens GPU mangler støtte for dekoding av valgt kodek.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>Kunne ikke starte videodekoder. Sjekk strømmeinnstillingene dine og prøv igjen.</translation>
|
||||
</message>
|
||||
@@ -900,13 +904,13 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>AV1 (eksperimentell)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>Aktiver HDR</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>Aktiver HDR (eksperimentell)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,11 +922,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>HDR-strømming støttes ikke på denne PCen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>Aktiver YUV 4:4:4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1161,11 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>Aktiver YUV 4:4:4 (eksperimentell)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+55
-47
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Audio opname apparaat ontbreekt. Installeer GeForce Experience opnieuw om dit probleem op te lossen.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Ja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&Nee</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>Oké</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Hulp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Annuleren</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>Foutcode: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>De versie van Geforce Experience op %1 word niet ondersteund door deze versie van Moonlight. Je moet Moonlight updaten om te streamen vanaf %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>Je keuze om remote desktop muis modus te gebruiken kan problemen veroorzaken in games.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">HDR wordt niet ondersteund door software decoding.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>Je instelling om software decoding te forceren kan slechte prestaties veroorzaken.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>Uw host-PC ondersteunt coderen met HEVC niet.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Er wordt softwaredecodering gebruikt vanwege uw keuze om HEVC te forceren zonder GPU-ondersteuning. Dit kan leiden tot slechte streamingprestaties.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>De software of GPU van uw host ondersteunt het coderen van AV1 niet.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Er wordt softwaredecodering gebruikt omdat u AV1 zonder GPU-ondersteuning hebt geforceerd. Dit kan leiden tot slechte streamingprestaties.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>Uw host-PC ondersteunt geen HDR-streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>HDR wordt niet ondersteund met de H.264-codec.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>De GPU van deze PC ondersteunt geen AV1 Main10-decodering voor HDR-streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>De GPU van deze PC ondersteunt geen 10-bits HEVC- of AV1-decodering voor HDR-streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>Uw host-PC en client-PC ondersteunen niet dezelfde HDR-videocodecs.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>Videoresoluties boven 4K worden niet ondersteund door de H.264-codec.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>Host gaf fout terug: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Gebruik maken van software decodering door selectie om H.264 te forceren zonder GPU ondersteuning. Dit kan slechte streamingkwaliteit veroorzaken.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>Uw server PC en cliënt PC ondersteunen niet dezelfde videocodering. Dit kan slechte streamingkwaliteit veroorzaken.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>Uw cliënt GPU ondersteund geen H.264 decodering. Dit kan slechte streamingkwaliteit veroorzaken.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Er wordt softwaredecodering gebruikt vanwege uw keuze om HDR te forceren zonder GPU-ondersteuning. Dit kan leiden tot slechte streamingprestaties.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>De videokaart van deze PC ondersteunt geen HEVC Main10 decodatie voor HDR streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>Uw host-PC ondersteunt geen YUV 4:4:4-streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>Uw host-PC ondersteunt geen YUV 4:4:4-streaming voor de geselecteerde videocodec.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Softwaredecodering wordt gebruikt vanwege uw keuze om YUV 4:4:4 te forceren zonder GPU-ondersteuning. Dit kan leiden tot slechte streamingprestaties.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>De GPU van deze PC ondersteunt geen YUV 4:4:4-decodering voor geselecteerde videocodecs.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>GeForce Experience 3.0 of nieuwer is vereist voor 4K streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>Je geselecteerde surround sound instelling wordt niet ondersteund door het huidige audio apparaat.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>Openen van audio apparaat mislukt. Audio is niet beschikbaar tijdens deze sessie.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>Een aangesloten gamepad heeft geen instellingen en is dus niet bruikbaar. Bezoek Moonlight hulp om dit op te lossen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>De videokaart van de host PC ondersteund geen video resoluties hoger dan 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>Je keuze om hardware decoding te forceren kon niet worden volbracht omdat de videokaart op deze PC geen ondersteuning bied voor hardware decoding.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>Je codec keuze en de keuze voor het forceren van hardware decodatie zijn niet compatibel. De videokaart van deze PC ondersteund de gekozen codec niet.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>Videodecoder kan niet worden geïnitialiseerd. Controleer uw streaminginstellingen en probeer het opnieuw.</translation>
|
||||
</message>
|
||||
@@ -898,15 +902,19 @@
|
||||
<source>NOTE: Due to a bug in GeForce Experience, this option may not work properly if your host PC has multiple monitors.</source>
|
||||
<translation>OPMERKING: Vanwege een fout in GeForce Experience werkt deze optie mogelijk niet goed als uw host-PC meerdere monitoren heeft.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">Bij het aanzetten van HDR worden manuele decoder selecties overschreden.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>AV1 (experimenteel)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>HDR inschakelen</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>HDR inschakelen (experimenteel)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,11 +926,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>HDR-streaming wordt niet ondersteund op deze pc.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>YUV 4:4:4 inschakelen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1165,11 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>YUV 4:4:4 inschakelen (experimenteel)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+56
-48
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Brakuje urządzenia przechwytującego dźwięk. Ponowne zainstalowanie aplikacji GeForce Experience powinno rozwiązać ten błąd.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Tak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&Nie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>OK</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Pomoc</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Anuluj</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>Kod błędu: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>Wersja GeForce Experience na %1 nie jest obsługiwana przez tę wersję Moonlight. Musisz zaktualizować Moonlight, aby móc strumieniować z %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>Wybranie opcji włączenia trybu myszy pulpitu zdalnego może powodować problemy w grach.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">Technologia HDR nie jest obsługiwana przy dekodowaniu programowym.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>Wybranie opcji wymuszenia dekodowania programowego może spowodować niską wydajność strumieniowania.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>Komputer-host nie obsługuje kodowania HEVC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Wykorzystywanie dekodowania programowego spowodowane wymuszeniem HEVC bez obsługi przez procesor graficzny. Może to spowodować niską wydajność strumieniowania.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>Oprogramowanie lub karta graficzna komputera-gospodarza nie wspiera kodowania z użyciem kodeka AV1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Wybrano wymuszenie dekodowania AV1 bez wsparcia ze strony układu graficznego, więc wykorzystywane jest dekodowanie programowe. Może to spowodować słabą wydajność strumieniowania.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>Twój komputer-host nie obsługuje przesyłania strumieniowego HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>HDR nie jest wspierany z użyciem kodeka H.264.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>Twoja karta graficzna nie obsługuje dekodowania AV1 Main10 w celu strumieniowania w trybie HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>Karta graficzna tego komputera nie wspiera 10-bitowego dekodowania HEVC lub AV1 dla strumieniowania w trybie HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>Ten komputer oraz komputer-gospodarz nie wspierają tych samych kodeków wideo HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>Rozdzielczości wideo powyżej 4K nie są wspierane przez kodek H.264.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>Host zwrócił błąd: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Wykorzystywanie dekodowania programowego z powodu wymuszenia kodowania H.264 bez wsparcia ze strony układu graficznego (GPU).</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>Komputer gospodarza oraz ten komputer nie wspierają tych samych kodeków wideo. To może spowodować niską wydajność strumieniowania.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>Twój układ graficzny (GPU) nie obsługuje dekodowania H.264. To może spowodować niską wydajność strumieniowania.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Używasz dekodowania programowego, ponieważ wybrałeś opcję wymuszenia HDR bez obsługi GPU. Może to spowodować słabą wydajność streamingu.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>Układ graficzny (GPU) tego komputera nie wspiera dekodowania HDR w trybie HEVC Main10.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>Twój komputer hosta nie obsługuje przesyłania strumieniowego YUV 4:4:4.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>Twój komputer hosta nie obsługuje przesyłania strumieniowego YUV 4:4:4 dla wybranego kodeka wideo.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Używam dekodowania programowego, ponieważ wybrałeś wymuszenie YUV 4:4:4 bez obsługi GPU. Może to spowodować słabą wydajność przesyłania strumieniowego.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>Karta graficzna tego komputera nie obsługuje dekodowania YUV 4:4:4 dla wybranego kodeka wideo.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>Strumieniowanie w trybie 4K jest dostępne w GeForce Expierence 3.0 i nowszych.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>Wybrane ustawienia dźwięku przestrzennego nie są obsługiwane przez wybrane urządzenie dźwięku.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>Nie można otworzyć urządzenia dźwiękowego. Dźwięk będzie niedostępny w tej sesji.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>Podłączony kontroler nie posiada mapowania i nie jest zdatny do użytku. Odwiedź pomoc Moonlight w celu rozwiązania tego problemu.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>Układ graficzny (GPU) komputera-gospodarza nie obsługuje strumieniowania w rozdzielczościach wyższych niż 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>Wybrana opcja wymuszenia dekodowania sprzętowego nie może zostać wykorzystana, ponieważ układ graficzny (GPU) tego komputera nie obsługuje dekodowania sprzętowego.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>Wybrany kodek i wymuszenie opcji dekodowania sprzętowego są niekompatybilne. Układ graficzny (GPU) tego komputera nie wspiera dekodowania sprzętowego wybranego kodeka.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>Nie udało się zainicjalizować dekodera wideo. Sprawdź ustawienia strumieniowania i spróbuj ponownie.</translation>
|
||||
</message>
|
||||
@@ -899,14 +903,13 @@
|
||||
<translation>UWAGA: Z powodu błędu w aplikacji GeForce Experience ta opcja może nie działać poprawnie, jeśli komputer-gospodarz posiada podłączone wiele monitorów.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">Włączenie HDR nadpisuje manualny wybór dekodera.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>Włącz HDR</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>Włącz HDR (funkcja eksperymentalna)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,11 +921,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>Na tym komputerze nie jest obsługiwane strumieniowanie w trybie HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>Włącz YUV 4:4:4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1160,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>AV1 (eksperymentalne)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>Włącz YUV 4:4:4 (eksperymentalne)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+126
-118
@@ -110,12 +110,12 @@
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="50"/>
|
||||
<source>Online</source>
|
||||
<translation>Online</translation>
|
||||
<translation type="unfinished">Online</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="53"/>
|
||||
<source>Offline</source>
|
||||
<translation>Offline</translation>
|
||||
<translation type="unfinished">Offline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="56"/>
|
||||
@@ -124,77 +124,77 @@
|
||||
<location filename="../gui/computermodel.cpp" line="82"/>
|
||||
<location filename="../gui/computermodel.cpp" line="83"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Desconhecido</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="62"/>
|
||||
<source>Paired</source>
|
||||
<translation>Conectado</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="65"/>
|
||||
<source>Unpaired</source>
|
||||
<translation>Desconctado</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="72"/>
|
||||
<source>Name: %1</source>
|
||||
<translation>Nome: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="73"/>
|
||||
<source>Status: %1</source>
|
||||
<translation>Estado: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="74"/>
|
||||
<source>Active Address: %1</source>
|
||||
<translation>Endereço ativo: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="75"/>
|
||||
<source>UUID: %1</source>
|
||||
<translation>UUID: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="76"/>
|
||||
<source>Local Address: %1</source>
|
||||
<translation>Endereço local: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="77"/>
|
||||
<source>Remote Address: %1</source>
|
||||
<translation>Endereço remoto: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="78"/>
|
||||
<source>IPv6 Address: %1</source>
|
||||
<translation>Endereço IPv6: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="79"/>
|
||||
<source>Manual Address: %1</source>
|
||||
<translation>Endereço manual: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="80"/>
|
||||
<source>MAC Address: %1</source>
|
||||
<translation>Endereço MAC: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="81"/>
|
||||
<source>Pair State: %1</source>
|
||||
<translation>Estado da conexão: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="82"/>
|
||||
<source>Running Game ID: %1</source>
|
||||
<translation>A executar Jogo ID: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="83"/>
|
||||
<source>HTTPS Port: %1</source>
|
||||
<translation>Porta HTTPS: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Dispositivo de captura de áudio faltando. Re-instalando o GeForce Experience deve resolver este erro.</translation>
|
||||
</message>
|
||||
@@ -243,7 +243,7 @@
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="99"/>
|
||||
<source>Searching for compatible hosts on your local network...</source>
|
||||
<translation>A procurar hosts compatíveis na sua rede local...</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="184"/>
|
||||
@@ -268,7 +268,7 @@
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="213"/>
|
||||
<source>View Details</source>
|
||||
<translation>Ver pormenores</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="225"/>
|
||||
@@ -328,22 +328,22 @@
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="297"/>
|
||||
<source>Please enter %1 on your host PC. This dialog will close when pairing is completed.</source>
|
||||
<translation>Por favor ponha %1 no seu PC principal. Este dialogo será fechado quando a conexão for efetuada.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="298"/>
|
||||
<source>If your host PC is running Sunshine, navigate to the Sunshine web UI to enter the PIN.</source>
|
||||
<translation>Se o seu PC principal estiver a executar Sunshine, navegue até a interface web para digitar o PIN.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="310"/>
|
||||
<source>Are you sure you want to remove '%1'?</source>
|
||||
<translation>Tem certeza que quer remover '%1'?</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="324"/>
|
||||
<source>Moonlight is testing your network connection to determine if any required ports are blocked.</source>
|
||||
<translation>Moonlight está a testar a sua conexão para determinar se alguma das portas necessárias está bloqueada.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="351"/>
|
||||
@@ -356,7 +356,7 @@
|
||||
<message>
|
||||
<location filename="../backend/computermanager.cpp" line="604"/>
|
||||
<source>The PIN from the PC didn't match. Please try again.</source>
|
||||
<translation>O PIN do computador não coincide. Por favor, tente novamente.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../backend/computermanager.cpp" line="608"/>
|
||||
@@ -366,17 +366,17 @@
|
||||
<message>
|
||||
<location filename="../backend/computermanager.cpp" line="611"/>
|
||||
<source>Pairing failed. Please try again.</source>
|
||||
<translation>Falha no emparelhamento. Por favor, tente novamente.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../backend/computermanager.cpp" line="615"/>
|
||||
<source>Another pairing attempt is already in progress.</source>
|
||||
<translation>Outra tentativa de emparelhamento já está em andamento.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../backend/computermanager.cpp" line="625"/>
|
||||
<source>GeForce Experience returned error: %1</source>
|
||||
<translation>GeForce Experience retornou um erro: %1</translation>
|
||||
<translation type="unfinished">GeForce Experience retornou um erro: %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -427,29 +427,29 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Sim</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&Não</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>OK</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Ajuda</translation>
|
||||
<translation type="unfinished">Ajuda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Cancelar</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -490,12 +490,12 @@
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="122"/>
|
||||
<source>The host PC reported a fatal video encoding error.</source>
|
||||
<translation>O PC host relatou um erro fatal de codificação de vídeo.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="123"/>
|
||||
<source>Try disabling HDR mode, changing the streaming resolution, or changing your host PC's display resolution.</source>
|
||||
<translation>Tente desativar o modo HDR, alterar a resolução de streaming ou alterar a resolução de exibição do seu PC host.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="131"/>
|
||||
@@ -505,161 +505,165 @@
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="132"/>
|
||||
<source>Error code: %1</source>
|
||||
<translation>Código de erro: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>A versão do GeForce Experience no %1 não é suportada por esta versão do Moonlight. Você deve atualizar O Moonlight para streamar do %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>A sua seleção para ativar o modo rato da área de trabalho remoto deve causar problemas em jogos.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">O HRD não é suportado com decodificação por software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>Suas configurações de seleção para forçar decodificação por software deve causar performance de streaming degradada.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>O seu PC host não suporta codificação HEVC.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Usando decodificação por software pela sua seleção para força HEVC sem suporte da GPU. Isso deve causar performance de streaming degradada.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>O seu software host ou GPU não suporta codificação AV1.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>A usar a decodificação de software devido à sua seleção para forçar o AV1 sem apoio a GPU. Isto pode causar um desempenho ruim no streaming.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>O seu PC host não suporta streaming HDR.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>HDR não é suportado usando o codec H.264.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>A GPU deste PC não suporta a decodificação AV1 Main10 para streaming HDR.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>A GPU deste PC não suporta decodificação HEVC ou AV1 de 10 bits para streaming HDR.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>O seu PC host e PC cliente não suportam os mesmos codecs de vídeo HDR.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>Resoluções de vídeo acima de 4K não são suportadas pelo codec H.264.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>Erro de retorno do host: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Usando decodificação por software pela sua seleção para forçar H.264 sem suporte de GPU. Isso deve causar performance de streaming degradada.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>Seu PC de host e o PC de cliente não suportam os mesmos codecs de vídeo. Isso deve causar performance de streaming degradada.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>Seu GPU do cliente não suporta decodificação H.264. Isso deve causar performance de streaming degradada.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>A usar a decodificação de software devido à sua seleção para forçar o HDR sem apoio à GPU. Isto pode causar um desempenho ruim no streaming.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>A GPU deste PC não suporta decodificação HEVC Main10 para streaming em HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>O seu PC host não suporta streaming YUV 4:4:4.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>O seu PC host não suporta streaming YUV 4:4:4 para o codec de vídeo selecionado.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>A usar a decodificação de software devido à sua seleção para forçar YUV 4:4:4 sem apoio a GPU. Isto pode causar um desempenho ruim no streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>A GPU deste PC não suporta a decodificação YUV 4:4:4 para o codec de vídeo selecionado.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>GeForce Experience 3.0 or superior é requerido para streaming em 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>Sua configuração de surround seleçionada não é suportada pelo dispositivo de áudio atual.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>Falha ao abrir o dispositivo de áudio. Áudio estará indisponível durante esta sessão.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>Um controle conectado não tem mapeamento e não será usável. Visite a Ajuda do Moonlight para resolver isso.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>A GPU do seu PC de host não suporta streaming de resoluções de vídeo superiores à 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>Sua seleção de forçar decodificação por hardware não pôde ser satisfeita pela fata de suporte à decodificação por hardware na GPU deste PC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>Sua seleção de codec e forçamento de decodificação por hardware não são compatíveis. A GPU deste PC não tem suprte para decodificar seu codec selecionado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>Impossivel inicializar o decodificador de vídeo. Por favor verificar suas configurações de streaming e tente novamente.</translation>
|
||||
</message>
|
||||
@@ -770,17 +774,17 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="182"/>
|
||||
<source>Native</source>
|
||||
<translation>Nativo</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="183"/>
|
||||
<source>Native (Excluding Notch)</source>
|
||||
<translation>Nativo (Excluindo Notch)</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="718"/>
|
||||
<source>Use Default (%1 Mbps)</source>
|
||||
<translation>Use o Padrão (%1 Mbps)</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="753"/>
|
||||
@@ -881,7 +885,7 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1242"/>
|
||||
<source>Show configuration warnings</source>
|
||||
<translation>Mostrar avisos de configuração</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1298"/>
|
||||
@@ -898,15 +902,19 @@
|
||||
<source>NOTE: Due to a bug in GeForce Experience, this option may not work properly if your host PC has multiple monitors.</source>
|
||||
<translation>AVISO: Por causa de um bug no GeForce Experience, esta opção não deve funcionar corretamente se seu PC de host ter múltiplos monitores.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">Habilitar HDR sobrescreve seleções de decodificação manual.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>Habilitar HDR</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>Habilitar HDR (Experimental)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,30 +926,25 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>HDR streaming não é suportado por este PC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>Ativar YUV 4:4:4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
<translation>Mostrar estatísticas de desempenho durante o streaming</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1750"/>
|
||||
<source>Display real-time stream performance information while streaming.</source>
|
||||
<translation>Exiba informações de desempenho de fluxo em tempo real durante o streaming.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1751"/>
|
||||
<source>You can toggle it at any time while streaming using Ctrl+Alt+Shift+S or Select+L1+R1+X.</source>
|
||||
<translation>Pode alterná-lo a qualquer momento durante a transmissão usando Ctrl+Alt+Shift+S ou Select+L1+R1+X.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1752"/>
|
||||
<source>The performance overlay is not supported on Steam Link or Raspberry Pi.</source>
|
||||
<translation>A sobreposição de desempenho não é suportada no Steam Link ou Raspberry Pi.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1340"/>
|
||||
@@ -1036,7 +1039,7 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1264"/>
|
||||
<source>Updates your Discord status to display the name of the game you're streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Atualize seu status do DIscord para mostrar o nome do jogo que você está streamando.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1483"/>
|
||||
@@ -1052,29 +1055,29 @@
|
||||
<location filename="../gui/SettingsView.qml" line="512"/>
|
||||
<location filename="../gui/SettingsView.qml" line="622"/>
|
||||
<source>Custom (%1 FPS)</source>
|
||||
<translation>Personalizado (%1 FPS)</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="527"/>
|
||||
<source>Enter a custom frame rate:</source>
|
||||
<translation>Insira uma taxa de quadro personalizada:</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="219"/>
|
||||
<location filename="../gui/SettingsView.qml" line="228"/>
|
||||
<location filename="../gui/SettingsView.qml" line="625"/>
|
||||
<source>Custom</source>
|
||||
<translation>Personalizado</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="643"/>
|
||||
<source>30 FPS</source>
|
||||
<translation>30 FPS</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="648"/>
|
||||
<source>60 FPS</source>
|
||||
<translation>60 FPS</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1270"/>
|
||||
@@ -1162,25 +1165,30 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
<translation>Bom para streaming de jogos de desktop e texto pesado, mas não recomendado para jogos de ritmo acelerado.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1683"/>
|
||||
<source>YUV 4:4:4 is not supported on this PC.</source>
|
||||
<translation>YUV 4:4:4 não é suportado neste PC.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1689"/>
|
||||
<source>Unlock bitrate limit (Experimental)</source>
|
||||
<translation>Desbloqueie o limite de taxa de bits (Experimental)</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1702"/>
|
||||
<source>This unlocks extremely high video bitrates for use with Sunshine hosts. It should only be used when streaming over an Ethernet LAN connection.</source>
|
||||
<translation>Isto desbloqueia taxas de bits de vídeo extremamente altas para uso com hosts Sunshine. Ele só deve ser usado ao transmitir através de uma conexão LAN Ethernet.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1708"/>
|
||||
@@ -1322,7 +1330,7 @@
|
||||
<message>
|
||||
<location filename="../gui/main.qml" line="517"/>
|
||||
<source>Enter the IP address of your host PC:</source>
|
||||
<translation>Digite o endereço IP do seu PC host:</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
Binary file not shown.
+50
-50
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Dispositivo de captura de áudio ausente. Reinstalar o GeForce Experience deve resolver esse erro.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Sim</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&Não</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>OK</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Ajuda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Cancelar</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,158 @@
|
||||
<translation>Código de erro: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>A versão do GeForce Experience no %1 não é suportada por esta compilação do Moonlight. Você deve atualizar o Moonlight para transmitir a partir de %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>Sua escolha para ativar o modo de mouse de área de trabalho remota pode causar problemas nos jogos.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>Sua escolha de configurações para forçar a decodificação do software pode causar um desempenho de streaming ruim.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>Seu PC host não suporta codificação HEVC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Usando a decodificação de software devido à sua seleção para forçar o HEVC sem suporte a GPU. Isso pode causar um desempenho ruim no streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>Seu software host ou GPU não suporta codificação AV1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Usando a decodificação de software devido à sua seleção para forçar o AV1 sem suporte a GPU. Isso pode causar um desempenho ruim no streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>Seu PC host não suporta streaming HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>HDR não é suportado usando o codec H.264.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>A GPU deste PC não suporta a decodificação AV1 Main10 para streaming HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>A GPU deste PC não suporta decodificação HEVC ou AV1 de 10 bits para streaming HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>Seu PC host e PC cliente não suportam os mesmos codecs de vídeo HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>Resoluções de vídeo acima de 4K não são suportadas pelo codec H.264.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>Erro de retorno do host: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Usando a decodificação de software devido à sua seleção para forçar o H.264 sem suporte a GPU. Isso pode causar um desempenho ruim no streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>Seu PC host e PC cliente não suportam os mesmos codecs de vídeo. Isso pode causar um desempenho ruim no streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>Sua GPU cliente não suporta decodificação H.264. Isso pode causar um desempenho ruim no streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Usando a decodificação de software devido à sua seleção para forçar o HDR sem suporte à GPU. Isso pode causar um desempenho ruim no streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>A GPU deste PC não suporta decodificação HEVC Main10 para streaming HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>Seu PC host não suporta streaming YUV 4:4:4.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>Seu PC host não suporta streaming YUV 4:4:4 para o codec de vídeo selecionado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Usando decodificação de software devido à sua seleção para forçar YUV 4:4:4 sem suporte a GPU. Isso pode causar um desempenho ruim no streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>A GPU deste PC não suporta a decodificação YUV 4:4:4 para o codec de vídeo selecionado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>É necessário GeForce Experience 3.0 ou superior para streaming 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>Sua configuração de som surround selecionada não é suportada pelo dispositivo de áudio atual.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>Falha ao carregar o dispositivo de áudio. O áudio não estará disponível durante esta sessão.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>Um gamepad anexado não tem mapeamento e não será utilizável. Visite a ajuda do Moonlight para resolver isso.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>A GPU do seu PC host não suporta resoluções de streaming de vídeo acima de 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>Sua seleção para forçar a decodificação de hardware não pode ser satisfeita devido à falta de suporte à decodificação de hardware na GPU deste PC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>Sua seleção de codec e configuração de força de decodificação de hardware não são compatíveis. A GPU deste PC não suporta a decodificação do codec escolhido.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>Não é possível inicializar o decodificador de vídeo. Verifique suas configurações de streaming e tente novamente.</translation>
|
||||
</message>
|
||||
@@ -898,15 +898,10 @@
|
||||
<source>NOTE: Due to a bug in GeForce Experience, this option may not work properly if your host PC has multiple monitors.</source>
|
||||
<translation>NOTA: Devido a um bug no GeForce Experience, esta opção pode não funcionar corretamente se o seu PC host tiver vários monitores.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>Habilitar HDR</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>Habilitar HDR (Experimental)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,11 +913,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>A transmissão HDR não é suportada neste PC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>Habilitar YUV 4:4:4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1152,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>AV1 (Experimental)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>Habilitar YUV 4:4:4 (Experimental)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+55
-47
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Потеряно виртуальное аудиоустройство. Попробуйте переустановить GeForce Experience.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Да</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&Нет</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>OK</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Справка</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Отмена</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>Код ошибки: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>Версия GeForce Experience на %1 не поддерживается данной сборкой Moonlight. Вы должны обновить Moonlight для потоковой передачи с %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>Вы выбрали режим удалённого рабочего стола. Это может вызвать проблемы с мышью в некоторых играх.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">HDR не поддерживается с программным декодированием.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>Вы выбрали программное декодирование, что может ухудшить производительность.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>Ваш хост-ПК не поддерживает кодирование HEVC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Ваша видеокарта не поддерживает аппаратное декодирование HEVC, используется программное декодирование. Это может ухудшить производительность.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>Ваш хост-ПК не поддерживает кодирование AV1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Использование программного декодирования по вашему выбору для принудительного использования AV1 без поддержки графического процессора. Это может привести к снижению производительности потоковой передачи.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>Ваш хост-ПК не поддерживает стриминг с использованием HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>HDR не поддерживается при использовании кодека H.264.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>Графический процессор этого компьютера не поддерживает декодирование AV1 Main10 для потоковой передачи HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>Графический процессор этого компьютера не поддерживает 10-битное декодирование HEVC или AV1 для потоковой передачи HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>Ваш хост-ПК и клиентский ПК не поддерживают одни и те же видеокодеки HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>Разрешение видео выше 4K не поддерживается кодеком H.264.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>Ошибка хоста: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Использования программного обеспечения с декодированием в следствие выбора H.264 без поддержки ГП. Это может вызвать низкий уровень производительности при трансляции.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>Ваш компьютер, осуществляющий раздачу, или компьютер-клиент не поддерживают одинаковые видео кодеки. Это может вызвать низкую производительность потока.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>Клиентская графическая карта не поддерживает H.264 кодировку. Это может вызвать низкую производительность потока.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Использование программного декодирования из-за выбора принудительного HDR без поддержки графического процессора. Это может привести к низкой производительности потоковой передачи.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>Видеокарта этого ПК не поддерживает декодирование HEVC профиля Main10, HDR недоступен.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>Ваш хост-ПК не поддерживает потоковую передачу YUV 4:4:4.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>Ваш хост-ПК не поддерживает потоковую передачу YUV 4:4:4 для выбранного видеокодека.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Использование программного декодирования из-за выбора принудительного YUV 4:4:4 без поддержки графическим процессором. Это может привести к низкой производительности потоковой передачи.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>Графический процессор этого компьютера не поддерживает декодирование YUV 4:4:4 для выбранного видеокодека.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>Разрешение 4K требует GeForce Experience 3.0 или новее.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>Ваша настройка объёмного звука не поддерживается текущим аудиоустройством.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>Не удалось открыть аудиоустройство. Во время этого сеанса аудио будет недоступно.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>Подключённый геймпад не настроен и не может быть использован. Посетите раздел помощи Moonlight, чтобы исправить это.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>Видеокарта хост-ПК не поддерживает разрешения выше 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>Вы выбрали аппаратное декодирование, но видеокарта этого ПК не поддерживает аппаратное декодирование для выбранного кодека.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>Вы выбрали аппаратное декодирование, но видеокарта этого ПК не поддерживает аппаратное декодирование для выбранного кодека.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>Не удалось запустить декодирование видео. Проверьте настройки стрима и попробуйте ещё раз.</translation>
|
||||
</message>
|
||||
@@ -898,15 +902,19 @@
|
||||
<source>NOTE: Due to a bug in GeForce Experience, this option may not work properly if your host PC has multiple monitors.</source>
|
||||
<translation>Предупреждение: Из-за бага GeForce Experience эта настройка может не работать, если к хост-ПК подключено несколько мониторов.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">Включение HDR перезаписывает ручные настройки декодера.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>AV1 (Экспериментальный)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>Включить HDR</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>Включить HDR (Эксперементальная опция)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,11 +926,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>Поток с HDR не поддерживается на данном персональном компьютере.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>Включить YUV 4:4:4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1165,11 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>Включить YUV 4:4:4 (Эксперементальная опция)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+56
-48
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>En enhet för ljudinspelning saknas. Om du installerar GeForce Experience på nytt bör det här felet lösas.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Ja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&Nej</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>Ok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Hjälp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Avbryt</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>Felkod: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>Versionen av GeForce Experience på %1 stöds inte av den här versionen av Moonlight. Du måste uppdatera Moonlight för att kunna strömma från %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>Om du väljer att aktivera musläget för fjärrskrivbord kan det orsaka problem i spel.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">HDR stöds inte med mjukvaruavkodning.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>Om du väljer inställningar för att tvinga fram mjukvaruavkodning kan det leda till dålig strömningsprestanda.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>Din värddator har inte stöd för kodning av HEVC.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Användning av mjukvaruavkodning på grund av ditt val att tvinga fram HEVC utan GPU-stöd. Detta kan leda till dålig strömningsprestanda.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>Din värdprogramvara eller GPU stöder inte AV1-kodning.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Använder programvaruavkodning på grund av ditt val för att tvinga AV1 utan GPU-stöd. Detta kan orsaka dålig streamingprestanda.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>Din värddator har inte stöd för strömning av HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>HDR stöds inte med H.264-codec.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>Denna PC:s GPU stöder inte AV1 Main10-avkodning för HDR-streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>Denna PC:s GPU stöder inte 10-bitars HEVC eller AV1-avkodning för HDR-streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>Din värddator och klientdator har inte stöd för samma HDR-videocodec.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>Videoupplösningar över 4K stöds inte av H.264-codec.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>Värden returnerade fel: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Användning av mjukvaruavkodning på grund av att du valt att tvinga fram H.264 utan GPU-stöd. Detta kan leda till dålig strömningsprestanda.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>Värddatorn och klientdatorn har inte stöd för samma videokodekar. Detta kan orsaka dålig strömningsprestanda.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>Klientens GPU stöder inte H.264-avkodning. Detta kan leda till dålig strömningsprestanda.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Användning av programvaruavkodning på grund av ditt val att tvinga HDR utan GPU-stöd. Detta kan orsaka dålig strömningsprestanda.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>Den här datorns GPU stöder inte HEVC Main10-avkodning för HDR-strömning.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>Din värddator stöder inte YUV 4:4:4-strömning.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>Din värddator stöder inte YUV 4:4:4-strömning för vald videokodek.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Användning av programvaruavkodning på grund av ditt val att tvinga YUV 4:4:4 utan GPU-stöd. Detta kan orsaka dålig strömningsprestanda.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>Denna dators GPU stöder inte YUV 4:4:4-avkodning för vald videokodek.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>GeForce Experience 3.0 eller högre krävs för 4K-streaming.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>Den valda surroundljudsinställningen stöds inte av den aktuella ljudenheten.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>Misslyckades med att öppna en ljudenhet. Ljudet kommer inte att vara tillgängligt under den här sessionen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>En ansluten gamepad har ingen mappning och kan inte användas. Besök Moonlight-hjälpen för att lösa detta.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>Värddatorns grafikprocessor har inte stöd för strömmande videoupplösningar över 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>Ditt val att tvinga fram hårdvaruavkodning kan inte uppfyllas på grund av att stöd för hårdvaruavkodning saknas på den här datorns GPU.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>Ditt val av kodek och inställningen för tvingad hårdvaruavkodning är inte kompatibla. Denna dators GPU har inte stöd för avkodning av den kodek du valt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>Det går inte att initiera videoavkodningen. Kontrollera dina strömningsinställningar och försök igen.</translation>
|
||||
</message>
|
||||
@@ -899,14 +903,13 @@
|
||||
<translation>OBS: På grund av ett fel i GeForce Experience kanske det här alternativet inte fungerar korrekt om värddatorn har flera bildskärmar.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">Tillägg av HDR behärskar manuella val av avkodare.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>Aktivera HDR</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>Aktivera HDR (Experimentell)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,11 +921,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>HDR-strömning stöds inte på den här datorn.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>Aktivera YUV 4:4:4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1160,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>AV1 (experimentell)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>Aktivera YUV 4:4:4 (Experimentell)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+56
-48
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>ஆடியோ பிடிப்பு சாதனம் காணவில்லை. சியிபோர்ச் அனுபவத்தை மீண்டும் நிறுவுவது இந்த பிழையை தீர்க்க வேண்டும்.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&ஆம்</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&இல்லை</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>சரி</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>உதவி</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>ரத்துசெய்</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>பிழை குறியீடு: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>%1 இல் உள்ள சியிபோர்ச் அனுபவத்தின் பதிப்பு இந்த நிலவொளியால் ஆதரிக்கப்படவில்லை. %1 இலிருந்து ச்ட்ரீம் செய்ய நீங்கள் நிலவொளியைப் புதுப்பிக்க வேண்டும்.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>தொலைநிலை டெச்க்டாப் மவுச் பயன்முறையை இயக்குவதற்கான உங்கள் தேர்வு விளையாட்டுகளில் சிக்கல்களை ஏற்படுத்தக்கூடும்.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">HDR wird nicht von Software Dekodierung unterstützt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>மென்பொருள் டிகோடிங்கை கட்டாயப்படுத்த உங்கள் அமைப்புகள் தேர்வு மோசமான ச்ட்ரீமிங் செயல்திறனை ஏற்படுத்தக்கூடும்.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>உங்கள் புரவலன் பிசி குறியீட்டு HEVC ஐ ஆதரிக்கவில்லை.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>சி.பீ.யூ உதவி இல்லாமல் HEVC ஐ கட்டாயப்படுத்த உங்கள் தேர்வு காரணமாக மென்பொருள் டிகோடிங்கைப் பயன்படுத்துதல். இது மோசமான ச்ட்ரீமிங் செயல்திறனை ஏற்படுத்தக்கூடும்.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>உங்கள் புரவலன் மென்பொருள் அல்லது சி.பீ.யூ குறியீட்டு ஏ.வி 1 ஐ ஆதரிக்காது.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>சி.பீ.யூ உதவி இல்லாமல் ஏ.வி 1 ஐ கட்டாயப்படுத்த உங்கள் தேர்வு காரணமாக மென்பொருள் டிகோடிங்கைப் பயன்படுத்துதல். இது மோசமான ச்ட்ரீமிங் செயல்திறனை ஏற்படுத்தக்கூடும்.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>உங்கள் புரவலன் பிசி எச்டிஆர் ச்ட்ரீமிங்கை ஆதரிக்கவில்லை.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>H.264 கோடெக்கைப் பயன்படுத்தி HDR ஆதரிக்கப்படவில்லை.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>இந்த கணினியின் சி.பீ.யூ எச்டிஆர் ச்ட்ரீமிங்கிற்கான ஏ.வி 1 மெயின் 10 டிகோடிங்கை ஆதரிக்கவில்லை.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>இந்த கணினியின் சி.பீ.யூ எச்டிஆர் ச்ட்ரீமிங்கிற்கான 10-பிட் எவிசி அல்லது ஏ.வி 1 டிகோடிங்கை ஆதரிக்கவில்லை.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>உங்கள் புரவலன் பிசி மற்றும் வாங்கி பிசி அதே எச்டிஆர் வீடியோ கோடெக்குகளை ஆதரிக்காது.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>4K க்கு மேல் வீடியோ தீர்மானங்கள் H.264 கோடெக்கால் ஆதரிக்கப்படவில்லை.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>புரவலன் திரும்பிய பிழை: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>சி.பீ.யூ உதவி இல்லாமல் H.264 ஐ கட்டாயப்படுத்த உங்கள் தேர்வு காரணமாக மென்பொருள் டிகோடிங்கைப் பயன்படுத்துதல். இது மோசமான ச்ட்ரீமிங் செயல்திறனை ஏற்படுத்தக்கூடும்.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>உங்கள் புரவலன் பிசி மற்றும் வாங்கி பிசி அதே வீடியோ கோடெக்குகளை ஆதரிக்காது. இது மோசமான ச்ட்ரீமிங் செயல்திறனை ஏற்படுத்தக்கூடும்.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>உங்கள் கிளையன்ட் சி.பீ.யூ எச் .264 டிகோடிங்கை ஆதரிக்கவில்லை. இது மோசமான ச்ட்ரீமிங் செயல்திறனை ஏற்படுத்தக்கூடும்.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>சி.பீ.யூ உதவி இல்லாமல் எச்.டி.ஆரை கட்டாயப்படுத்த உங்கள் தேர்வு காரணமாக மென்பொருள் டிகோடிங்கைப் பயன்படுத்துதல். இது மோசமான ச்ட்ரீமிங் செயல்திறனை ஏற்படுத்தக்கூடும்.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>இந்த கணினியின் சி.பீ.யூ எச்.டி.ஆர் ச்ட்ரீமிங்கிற்கான HEVC மெயின் 10 டிகோடிங்கை ஆதரிக்கவில்லை.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>உங்கள் புரவலன் பிசி YUV 4:4:4 ச்ட்ரீமிங்கை ஆதரிக்கவில்லை.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>தேர்ந்தெடுக்கப்பட்ட வீடியோ கோடெக்கிற்கான உங்கள் புரவலன் பிசி YUV 4:4:4 ச்ட்ரீமிங்கை ஆதரிக்கவில்லை.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>சி.பீ.யூ உதவி இல்லாமல் YUV 4:4:4 ஐ கட்டாயப்படுத்த உங்கள் தேர்வு காரணமாக மென்பொருள் டிகோடிங்கைப் பயன்படுத்துதல். இது மோசமான ச்ட்ரீமிங் செயல்திறனை ஏற்படுத்தக்கூடும்.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>இந்தக் கணினியின் சி.பீ.யூ YUV 4:4:4 தேர்ந்தெடுக்கப்பட்ட வீடியோ கோடெக்கிற்கான டிகோடிங்கை ஆதரிக்கவில்லை.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>4K ச்ட்ரீமிங்கிற்கு சியிபோர்ச் பட்டறிவு 3.0 அல்லது அதற்கு மேற்பட்டது தேவை.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>நீங்கள் தேர்ந்தெடுக்கப்பட்ட சரவுண்ட் ஒலி அமைப்பை தற்போதைய ஆடியோ சாதனத்தால் ஆதரிக்கவில்லை.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>ஆடியோ சாதனத்தைத் திறக்கத் தவறிவிட்டது. இந்த அமர்வின் போது ஆடியோ கிடைக்காது.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>இணைக்கப்பட்ட கேம்பேடிற்கு மேப்பிங் இல்லை, பயன்படுத்தக்கூடியதாக இருக்காது. இதைத் தீர்க்க மூன்லைட் உதவியைப் பார்வையிடவும்.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>உங்கள் புரவலன் கணினியின் சி.பீ.யூ 4K க்கு மேல் ச்ட்ரீமிங் வீடியோ தீர்மானங்களை ஆதரிக்கவில்லை.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>இந்த கணினியின் சி.பீ.யுவில் வன்பொருள் டிகோடிங் ஆதரவைக் காணவில்லை என்பதால் வன்பொருள் டிகோடிங்கை கட்டாயப்படுத்துவதற்கான உங்கள் தேர்வை திருப்திப்படுத்த முடியாது.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>உங்கள் கோடெக் தேர்வு மற்றும் படை வன்பொருள் டிகோடிங் அமைப்பு பொருந்தாது. இந்த கணினியின் சி.பீ.யுவின் நீங்கள் தேர்ந்தெடுத்த கோடெக்கை டிகோடிங் செய்வதற்கான உதவி இல்லை.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>வீடியோ டிகோடரை துவக்க முடியவில்லை. உங்கள் ச்ட்ரீமிங் அமைப்புகளை சரிபார்த்து மீண்டும் முயற்சிக்கவும்.</translation>
|
||||
</message>
|
||||
@@ -899,14 +903,13 @@
|
||||
<translation>குறிப்பு: சியிபோர்ச் அனுபவத்தில் ஒரு பிழை காரணமாக, உங்கள் புரவலன் கணினியில் பல மானிட்டர்கள் இருந்தால் இந்த விருப்பம் சரியாக வேலை செய்யாது.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>ஏ.வி 1</translation>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">Das Aktivieren von HDR überschreibt die manuelle Decoder-Auswahl.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>HDR ஐ இயக்கவும்</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>HDR ஐ இயக்கவும் (சோதனை)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,11 +921,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>இந்த கணினியில் எச்டிஆர் ச்ட்ரீமிங் ஆதரிக்கப்படவில்லை.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>YUV 4:4:4 ஐ இயக்கவும்</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1160,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>ஏ.வி 1 (சோதனை)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>YUV 4:4:4 ஐ இயக்கவும் (சோதனை)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+55
-51
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>ไม่พบอุปกรณ์จับเสียง ติดตั้ง GeForce Experience ใหม่ควรจะแก้ไขข้อผิดพลาดนี้ได้</translation>
|
||||
</message>
|
||||
@@ -273,7 +273,7 @@
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="225"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>รุ่นของ GeForce Experience บน %1 ไม่รองรับ Moonlight รุ่นนี้ คุณต้องอัปเดต Moonlight เพื่อสตรีมจาก %1</translation>
|
||||
<translation>รุ่นของ GeForce Experience บน %1 ไม่รองรับ Moonlight รุ่นนี้ คุณต้องอัปเดต Moonlight เพื่อสตรีมจาก % 1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="324"/>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&ใช่</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&ไม่</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>โอเค</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>ช่วยเหลือ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>ยกเลิก</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>Error code: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>เวิร์ชั่นของ GeForce Experience บน %1 ไม่รองรับ Moonlight เวิร์ชั่นนี้ คุณต้องอัปเดต Moonlight เพื่อสตรีมจาก %1</translation>
|
||||
<translation>เวิร์ชั่นของ GeForce Experience บน %1 ไม่รองรับ Moonlight เวิร์ชั่นนี้ คุณต้องอัปเดต Moonlight เพื่อสตรีมจาก % 1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>การเลือกการตั้งค่าของคุณที่จะเปิดโหมดเมาส์ Remote Desktop อาจจะทำให้เกิดปัญหาในเกม</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">ไม่รองรับ HDR ด้วยการถอดรหัสแบบซอฟต์แวร์</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>การเลือกการตั้งค่าของคุณเพื่อบังคับให้ถอดรหัสแบบซอฟต์แวร์อาจทำให้ประสิทธิภาพการสตรีมไม่ดี</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>คอมของคุณไม่รอบรับการเข้ารหัส HEVC</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>การใช้การถอดรหัสแบบซอฟต์แวร์เนื่องจากการบังคับ HEVC โดยที่การ์จอไม่รองรับ ให้ประสิทธิภาพการสตรีมไม่ดี</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>ซอฟต์แวร์หรือการ์ดจอของเครื่องปลายทางไม่รองรับการเข้ารหัสแบบ AV1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>กำลังถอดรหัสโดยซอฟต์แวร์เนื่องจากคุณบังคับให้ใช้ AV1 โดยที่การ์ดจอของคุณไม่รองรับ ซึ่งอาจทำให้ประสิทธิภาพการสตรีมไม่ดี</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>เครื่องปลายทางไม่รองรับ HDR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>ไม่รองรับ HDR กำลังเปลี่ยนไปใช้โคเดค H.264</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>การ์ดจอของคุณไม่รองรับการถอดรหัสแบบ AV1 Main10 สำหรับการสตรีมภาพแบบ HDR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>การ์ดจอของคุณไม่รองรับการถอดรหัสแบบ HEVC 10 bit สำหรับการสตรีมภาพแบบ HDR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>คอมพิวเตอร์ปลายทางและเครื่องนี้ไม่รองรับสิดัโอโคเดคสำหรับ HDR ที่เหมือนกัน</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>ความคมชัดที่เกิน 4K ไม่รองรับในวิดีโอโคเดค H.264</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>เครื่องปลายทางคินค่า error: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>กำลังถอดรหัสโดยซอฟต์แวร์เนื่องจากคุณบังคับให้ใช้ H.264 โดยที่การ์ดจอของคุณไม่รองรับ ซึ่งอาจทำให้ประสิทธิภาพการสตรีมไม่ดี</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>เครื่องปลายทางและเครื่องนี้ไม่รองรับวิดีโดโอโคเดคเดียวกัน ซึ่งอาจทำให้ประสิทธิภาพการสตรีมไม่ดี</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>การ์ดจอขอเครื่องนี้ไม่รองรับการถอดรหัวแบบ H.264 ซึ่งกาจทำให้ประสิทธิภาพการสตรีมไม่ดี</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>คอมพิวเตอร์นี้ไม่รองรับการถอดรหัส HEVC Main10 สำหรับการสตรีม HDR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>ต้องใช้ GeForce Experience 3.0 หรือใหม่กว่าสำหรับการสตรีมแบบ 4K</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>อุปกรณ์เสียงปัจจุบัน ไม่รองรับการตั้งค่าเสียงรอบทิศทางที่คุณเลือก</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>ไม่สามารถเปิดอุปกรณ์เสียงได้ จะไม่สามารถใช้งานเสียงได้ในเซสชันนี้</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>Gamepad ที่กำลังต่ออยู่ไม่มีแมปปิ่งจึงไม่สามารถใช้งานได้ ลองเข้าเว็ป Moonlight เพื่อหาวิธีแก้ปัญหานี้</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>การ์ดจอของเครื่องปลายทางไม่รองรับการสตรีมความคมชัดเกิน 4K</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>ไม่สามารถบรรลุการบังคับให้ใช้ฮาร์ดแวร์ในการถอดรหัสของคุณ เนื่องจากคอมเครื่องนี้ไม่มีการ์ดจอที่รองรับการถอดรหัสโดยฮาร์ดแวร์</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>โคเดคที่เลือกและการถอดรหัสโดยฮาร์ดแวร์ไม่สามารถเข้ากันได้ การ์ดจอของคอมเครื่องนี้ไม่รองรับการถอดรหัสโคเดคที่คุณเลือก</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>ไม่สามารถเริ่มการถอดรหัสวิดีโอ โปรดตรวจสอบการตั้งค่าการสตรีมแล้วลองใหม่</translation>
|
||||
</message>
|
||||
@@ -898,14 +902,9 @@
|
||||
<source>NOTE: Due to a bug in GeForce Experience, this option may not work properly if your host PC has multiple monitors.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -918,11 +917,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1156,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+56
-48
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Ses yakalama aygıtı eksik. GeForce Experience'ı yeniden yüklemek bu hatayı çözmelidir.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Evet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&Hayır</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>Tamam</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Yardım</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>İptal</translation>
|
||||
</message>
|
||||
@@ -493,72 +493,76 @@
|
||||
<translation>Bağlantı sonlandırıldı</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>%1 üzerindeki GeForce Experience sürümü, bu Moonlight yapısı tarafından desteklenmiyor. %1 kaynağından akış yapmak için Moonlight'ı güncellemelisiniz.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>Uzak masaüstü fare modu oyunlarda sorunlara neden olabilir.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">HDR, yazılım kod çözme ile desteklenmez.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>Yazılım kod çözme için yaptığınız ayar seçimi, yayın performansında sorunlara neden olabilir.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>Ana bilgisayarınız HEVC kodlamayı desteklemiyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>GPU desteği olmadan HEVC'yi zorlamak için yaptığınız seçim nedeniyle yazılım kod çözme kullanılıyor. Bu, düşük yayın performansına neden olabilir.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>Ana bilgisayar yazılımınız veya ekran kartınız AV1 kodlamayı desteklemiyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Ekran kartı desteği olmadan AV1'i zorlamak için yaptığınız seçim nedeniyle yazılım kod çözme kullanılıyor. Bu, düşük yayın performansına neden olabilir.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>Ana bilgisayarınız HDR akışını desteklemiyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>HDR, H.264 codec bileşeni tarafından desteklenmiyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>Bu bilgisayarın ekran kartı, HDR akış için AV1 Main10 kod çözmeyi desteklemiyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>Bu bilgisayarın ekran artı HDR yayını için 10-bit HEVC veya AV1 kod çözmesini desteklemiyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>Ana bilgisayarınız ve istemci bilgisayarınız aynı HDR video codeclerini desteklemiyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>4K'nın üzerindeki video çözünürlükleri H.264 codec bileşeni tarafından desteklenmiyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>Ana bilgisayar hata verdi: %1</translation>
|
||||
</message>
|
||||
@@ -578,88 +582,88 @@
|
||||
<translation>Hata kodu: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Ekran kartı desteği olmadan H.264'ü zorlamaya çalıştığınız için yazılım kod çözme kullanılıyor. Bu, düşük yayın performansına neden olabilir.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>Ana bilgisayarınız ve istemci bilgisayarınız aynı video codeclerini desteklemiyor. Bu, düşük yayın performansına neden olabilir.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>İstemci ekran kartınız H.264 kod çözmeyi desteklemiyor. Bu, düşük yayın performansına neden olabilir.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Ekran kartı desteği olmadan HDR'yi zorlamak için yaptığınız seçim nedeniyle yazılım kod çözme kullanılıyor. Bu, düşük yayın performansına neden olabilir.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>Bu bilgisayarın ekran kartı HDR yayını için HEVC Main10 kod çözmesini desteklemiyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>Ana bilgisayarınız YUV 4:4:4 akışını desteklemiyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>Ana bilgisayarınız seçilen video codec'i için YUV 4:4:4 akışını desteklemiyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>GPU desteği olmadan YUV 4:4:4'ü zorlamak için yaptığınız seçim nedeniyle yazılım kod çözme kullanılıyor. Bu düşük akış performansına neden olabilir.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>Bu bilgisayarın ekran kartı seçilen video codec'i için YUV 4:4:4 kod çözmeyi desteklemiyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>4K yayın için GeForce Experience 3.0 veya üstü gereklidir.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>Seçtiğiniz surround ses ayarı mevcut ses cihazı tarafından desteklenmiyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>Ses cihazı açılamadı. Bu oturum sırasında ses kullanılamayacaktır.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>Takılı bir gamepad'in haritalaması yoktur ve kullanılamayacaktır. Bunu çözmek için Moonlight yardımını ziyaret edin.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>Ana bilgisayarınızın ekran kartı 4K'nın üzerindeki video çözünürlüklerini desteklemiyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>Donanım kod çözmeyi zorlama seçiminiz, bu bilgisayarın ekran kartındaki eksik donanım kod çözme desteği nedeniyle yerine getirilemiyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>Codec seçiminiz ve donanım kod çözüm zorlama ayarları uyumlu değil. Bu bilgisayarın ekran kartı, seçtiğiniz codec'in kod çözümünü desteklemiyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>Video kod çözücü başlatılamıyor. Lütfen yayın ayarlarınızı kontrol edin ve tekrar deneyin.</translation>
|
||||
</message>
|
||||
@@ -899,14 +903,13 @@
|
||||
<translation>NOT: GeForce Experience'daki bir hata nedeniyle, ana bilgisayarınızda birden fazla monitör varsa bu seçenek düzgün çalışmayabilir.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">HDR'nin etkinleştirilmesi manuel kod çözücü seçimlerini geçersiz kılar.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>HDR'yi Etkinleştir</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>HDR'yi Etkinleştir (Deneysel)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,11 +921,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>HDR yayını bu bilgisayarda desteklenmiyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>YUV 4:4:4'ü Etkinleştir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1160,16 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>AV1 (Deneysel)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>YUV 4:4:4'ü Etkinleştir (Deneysel)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+205
-201
@@ -48,7 +48,7 @@
|
||||
<message>
|
||||
<location filename="../gui/AppView.qml" line="341"/>
|
||||
<source>This computer doesn't seem to have any applications or some applications are hidden</source>
|
||||
<translation>Схоже цей комп'ютер не має ніяких додатків або деякі додатки приховані</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/AppView.qml" line="354"/>
|
||||
@@ -110,12 +110,12 @@
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="50"/>
|
||||
<source>Online</source>
|
||||
<translation>У мережі</translation>
|
||||
<translation type="unfinished">У мережі</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="53"/>
|
||||
<source>Offline</source>
|
||||
<translation>Поза мережею</translation>
|
||||
<translation type="unfinished">Поза мережею</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="56"/>
|
||||
@@ -124,7 +124,7 @@
|
||||
<location filename="../gui/computermodel.cpp" line="82"/>
|
||||
<location filename="../gui/computermodel.cpp" line="83"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Невідомо</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="62"/>
|
||||
@@ -139,47 +139,47 @@
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="72"/>
|
||||
<source>Name: %1</source>
|
||||
<translation>Назва: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="73"/>
|
||||
<source>Status: %1</source>
|
||||
<translation>Статус: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="74"/>
|
||||
<source>Active Address: %1</source>
|
||||
<translation>Активна адреса: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="75"/>
|
||||
<source>UUID: %1</source>
|
||||
<translation>UUID: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="76"/>
|
||||
<source>Local Address: %1</source>
|
||||
<translation>Локальна адреса: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="77"/>
|
||||
<source>Remote Address: %1</source>
|
||||
<translation>Віддалена адреса: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="78"/>
|
||||
<source>IPv6 Address: %1</source>
|
||||
<translation>Адреса IPv6: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="79"/>
|
||||
<source>Manual Address: %1</source>
|
||||
<translation>Уведена адреса: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="80"/>
|
||||
<source>MAC Address: %1</source>
|
||||
<translation>MAC-адреса: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="81"/>
|
||||
@@ -189,12 +189,12 @@
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="82"/>
|
||||
<source>Running Game ID: %1</source>
|
||||
<translation>Наразі у грі з ID: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="83"/>
|
||||
<source>HTTPS Port: %1</source>
|
||||
<translation>Порт HTTPS: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Відсутній пристрій запису звуку. Перевстановлення GeForce Experience має усунути цю помилку.</translation>
|
||||
</message>
|
||||
@@ -243,7 +243,7 @@
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="99"/>
|
||||
<source>Searching for compatible hosts on your local network...</source>
|
||||
<translation>Пошук сумісних хостів у локальній мережі...</translation>
|
||||
<translation>Пошук сумісних хостів у вашій локальній мережі...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="184"/>
|
||||
@@ -268,12 +268,12 @@
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="213"/>
|
||||
<source>View Details</source>
|
||||
<translation>Деталі</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="225"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>Версія GeForce Experience на %1 не підтримується цією збіркою MoonLight. Потрібно оновити Moonlight, щоб транслювати з %1.</translation>
|
||||
<translation>Ця версія GeForce Experience на %1 не підтримується цією збіркою MoonLight.Будь ласка оновіть Moonlight щоб транслювати з %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="324"/>
|
||||
@@ -288,7 +288,7 @@
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="335"/>
|
||||
<source>If you are trying to stream over the Internet, install the Moonlight Internet Hosting Tool on your gaming PC and run the included Internet Streaming Tester to check your gaming PC's Internet connection.</source>
|
||||
<translation>Якщо ви намагаєтеся вести трансляцію через Інтернет, встановіть застосунок Moonlight Internet Hosting Tool на свій ігровий ПК та запустіть Internet Streaming Tester, щоб перевірити з'єднання з інтернетом вашого ігрового ПК.</translation>
|
||||
<translation>Якщо ви намагаєтеся вести трансляцію через Інтернет, встановіть застосунок Moonlight Internet Hosting Tool на свій ігровий ПК та запустіть Internet Streaming Tester, щоб перевірити під'єднання до Інтернету вашого ігрового ПК.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="339"/>
|
||||
@@ -328,22 +328,22 @@
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="297"/>
|
||||
<source>Please enter %1 on your host PC. This dialog will close when pairing is completed.</source>
|
||||
<translation>Будь ласка, введіть %1 на хост-ПК. Це вікно закриється, коли з'єднання буде завершено.</translation>
|
||||
<translation>Будь ласка, введіть %1 на своєму головному ПК. Це діалогове вікно закриється, коли створення пари буде завершено.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="298"/>
|
||||
<source>If your host PC is running Sunshine, navigate to the Sunshine web UI to enter the PIN.</source>
|
||||
<translation>Якщо Sunshine працює на вашому хост-ПК, відкрийте вебінтерфейс Sunshine, щоб ввести PIN-код.</translation>
|
||||
<translation>Якщо на вашому комп’ютері встановлено Sunshine, перейдіть до веб-інтерфейсу користувача Sunshine, щоб ввести PIN-код.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="310"/>
|
||||
<source>Are you sure you want to remove '%1'?</source>
|
||||
<translation>Ви дійсно бажаєте видалити «%1»?</translation>
|
||||
<translation>Ви впевнені, що хочете видалити «%1»?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="324"/>
|
||||
<source>Moonlight is testing your network connection to determine if any required ports are blocked.</source>
|
||||
<translation>Moonlight перевіряє мережу, щоб визначити, чи заблоковані потрібні порти.</translation>
|
||||
<translation>Moonlight перевіряє ваше мережеве з’єднання, щоб визначити, чи заблоковані необхідні порти.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/PcView.qml" line="351"/>
|
||||
@@ -416,7 +416,7 @@
|
||||
<message>
|
||||
<location filename="../cli/startstream.cpp" line="137"/>
|
||||
<source>Failed to find application %1</source>
|
||||
<translation>Не вдалося знайти застосунок %1</translation>
|
||||
<translation>Не вдалося знайти гру %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../cli/listapps.cpp" line="108"/>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Так</translation>
|
||||
<translation>Т&ак</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&Ні</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>OK</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>Довідка</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Скасувати</translation>
|
||||
</message>
|
||||
@@ -465,7 +465,7 @@
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="104"/>
|
||||
<source>No video received from host.</source>
|
||||
<translation>Немає відео з хоста.</translation>
|
||||
<translation>Відео трансляцію не було отримано від хост-ПК.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="105"/>
|
||||
@@ -485,7 +485,7 @@
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="117"/>
|
||||
<source>Make sure you don't have any DRM-protected content open on your host PC. You can also try restarting your host PC.</source>
|
||||
<translation>Переконайтеся, що на вашому хост-ПК не відкрито захищений DRM вміст. Ви також можете спробувати перезавантажити хост-ПК.</translation>
|
||||
<translation>Переконайтеся, що на вашому хост-ПК не відкрито вміст, захищений DRM. Ви також можете спробувати перезавантажити хост-ПК.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="131"/>
|
||||
@@ -493,175 +493,179 @@
|
||||
<translation>З'єднання розірване</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>Версія GeForce Experience на %1 не підтримується цією збіркою Moonlight. Оновіть Moonlight для транслювання з %1.</translation>
|
||||
<translation>Версія GeForce Experience на %1 не підтримується цією збіркою Moonlight. Ви повинні оновити Moonlight для потокової передачі з %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>Ваш вибір увімкнути режим миші "віддалений робочий стіл" може викликати проблеми в іграх.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">HDR не підтримується програмним декодуванням.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>Ваш вибір примусити програмне декодування може викликати погану продуктивність трансляції.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>Хост не підтримує кодування HEVC.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Використання програмного декодування через вибір HEVC, котрий не підтримується відеокартою. Якість трансляції може погіршитися.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>ПЗ або відеокарта вашого хоста не підтримує кодування AV1.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Використання програмного декодування через вибір AV1, що не підтримується відеокартою. Якість трансляції може погіршитися.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>Хост не підтримує транслювання HDR.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>HDR не підтримується під час використання кодека H.264.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>Графічна карта цього ПК не підтримує декодування AV1 Main10 для транслювання HDR.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>Відеокарта цього ПК не підтримує декодування 10-bit HEVC або AV1 для транслювання HDR.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>Хост та клієнт не підтримують однакові кодеки для HDR відео.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>Роздільність понад 4K не підтримується кодеком H.264.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>Хост повернув помилку: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="122"/>
|
||||
<source>The host PC reported a fatal video encoding error.</source>
|
||||
<translation>Хост повідомив про фатальну помилку кодування.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="123"/>
|
||||
<source>Try disabling HDR mode, changing the streaming resolution, or changing your host PC's display resolution.</source>
|
||||
<translation>Спробуйте вимкнути HDR, змінити роздільну здатність трансляції або змінити роздільну здатність на хост-ПК.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="132"/>
|
||||
<source>Error code: %1</source>
|
||||
<translation>Код помилки: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Використання програмного декодування через вибір H.264, що не підтримується відеокартою. Якість трансляції може погіршитися.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>Хост-ПК та клієнтський ПК не підтримують однакові відео кодеки. Якість трансляції може погіршитися.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>Відеокарта на клієнті не підтримує декодування H.264. Якість трансляції може погіршитися.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Використання програмного декодування через вибір HDR, що не підтримується відеокартою. Якість трансляції може погіршитися.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>Відеокарта цього ПК не підтримує декодування HEVC Main10 для транслювання HDR.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>Хост не підтримує транслювання YUV 4:4:4.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Використання програмного декодування через вибір YUV 4:4:4, що не підтримується відеокартою. Якість трансляції може погіршитися.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>Відеокарта цього ПК не підтримує декодування YUV 4:4:4 для вибраного кодека.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>Потрібно GeForce Experience 3.0 або вище для транслювання 4K.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>Обрані налаштування об'ємного звуку не підтримуються поточним аудіо пристроєм.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>Не вдалося відкрити аудіо пристрій. Аудіо буде відсутнім протягом цієї сесії.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>Відеокарта вашого хост-ПК не підтримує транслювання відео з роздільністю більше за 4K.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>Не вдалося ініціалізувати відео декодер. Перевірте налаштування трансляції та спробуйте знову.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -669,42 +673,42 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="13"/>
|
||||
<source>Settings</source>
|
||||
<translation>Налаштування</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="116"/>
|
||||
<source>Resolution and FPS</source>
|
||||
<translation>Роздільність та FPS</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="124"/>
|
||||
<source>Setting values too high for your PC or network connection may cause lag, stuttering, or errors.</source>
|
||||
<translation>Виставлення зависокого значення для вашого ПК або мережі може спричинити лаг, статери або інші помилки.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="106"/>
|
||||
<source>Basic Settings</source>
|
||||
<translation>Базові налаштування</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="250"/>
|
||||
<source>720p</source>
|
||||
<translation>720p</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="256"/>
|
||||
<source>1080p</source>
|
||||
<translation>1080p</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="262"/>
|
||||
<source>1440p</source>
|
||||
<translation>1440p</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="268"/>
|
||||
<source>4K</source>
|
||||
<translation>4K</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="375"/>
|
||||
@@ -714,43 +718,43 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="376"/>
|
||||
<source>Resolutions that are not supported by your client or host PC may cause streaming errors.</source>
|
||||
<translation>Роздільність, що не підтримується вашим клієнтом або хост-ПК може спричинити помилки трансляції.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="382"/>
|
||||
<source>Enter a custom resolution:</source>
|
||||
<translation>Уведіть користувацьку роздільну здатність:</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="604"/>
|
||||
<source>%1 FPS</source>
|
||||
<translation>%1 К/с</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="672"/>
|
||||
<source>Video bitrate:</source>
|
||||
<translation>Бітрейт відео:</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="680"/>
|
||||
<source>Lower the bitrate on slower connections. Raise the bitrate to increase image quality.</source>
|
||||
<translation>Зменште бітрейт при повільному з'єднанні. Підвищте бітрейт, щоб збільшити якість зображення.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="702"/>
|
||||
<source>Video bitrate: %1 Mbps</source>
|
||||
<translation>Бітрейт відео: %1 Мбіт/с</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="732"/>
|
||||
<source>Display mode</source>
|
||||
<translation>Режим показу</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="743"/>
|
||||
<location filename="../gui/SettingsView.qml" line="1218"/>
|
||||
<source>Fullscreen</source>
|
||||
<translation>Повноекранний</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="812"/>
|
||||
@@ -760,12 +764,12 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="748"/>
|
||||
<source>Borderless windowed</source>
|
||||
<translation>Безрамкове вікно</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="182"/>
|
||||
<source>Native</source>
|
||||
<translation>Нативний</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="183"/>
|
||||
@@ -775,23 +779,23 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="718"/>
|
||||
<source>Use Default (%1 Mbps)</source>
|
||||
<translation>Стандартний (%1 Мбіт/с)</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="753"/>
|
||||
<location filename="../gui/SettingsView.qml" line="1210"/>
|
||||
<source>Windowed</source>
|
||||
<translation>Віконний</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="762"/>
|
||||
<source>(Recommended)</source>
|
||||
<translation>(Рекомендовано)</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="819"/>
|
||||
<source>V-Sync</source>
|
||||
<translation>Вертикальна синхронізація</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="829"/>
|
||||
@@ -811,27 +815,27 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="856"/>
|
||||
<source>Audio Settings</source>
|
||||
<translation>Налаштування аудіо</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="891"/>
|
||||
<source>Stereo</source>
|
||||
<translation>Стерео</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="895"/>
|
||||
<source>5.1 surround sound</source>
|
||||
<translation>Об'ємний звук 5.1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="899"/>
|
||||
<source>7.1 surround sound</source>
|
||||
<translation>Об'ємний звук 7.1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="913"/>
|
||||
<source>Mute host PC speakers while streaming</source>
|
||||
<translation>Заглушити динаміки на хост-ПК під час трансляції</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="923"/>
|
||||
@@ -841,52 +845,52 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="929"/>
|
||||
<source>Mute audio stream when Moonlight is not the active window</source>
|
||||
<translation>Заглушити аудіо, коли Moonlight не фокусовано</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="940"/>
|
||||
<source>Mutes Moonlight's audio when you Alt+Tab out of the stream or click on a different window.</source>
|
||||
<translation>Заглушує аудіо від Moonlight, коли ви робите Alt+Tab з трансляції, або клацаєте на інше вікно.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="989"/>
|
||||
<source>UI Settings</source>
|
||||
<translation>Налаштування інтерфейсу</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="999"/>
|
||||
<source>Language</source>
|
||||
<translation>Мова</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1025"/>
|
||||
<source>Automatic</source>
|
||||
<translation>Автоматично</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1160"/>
|
||||
<source>You must restart Moonlight for this change to take effect</source>
|
||||
<translation>Потрібно перезапустити Moonlight для застосування</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1177"/>
|
||||
<source>GUI display mode</source>
|
||||
<translation>Режим показу інтерфейсу</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1214"/>
|
||||
<source>Maximized</source>
|
||||
<translation>Максимізований</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1242"/>
|
||||
<source>Show configuration warnings</source>
|
||||
<translation>Попередження конфігурації</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1298"/>
|
||||
<source>Input Settings</source>
|
||||
<translation>Налаштування уведення</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1319"/>
|
||||
@@ -896,17 +900,12 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1321"/>
|
||||
<source>NOTE: Due to a bug in GeForce Experience, this option may not work properly if your host PC has multiple monitors.</source>
|
||||
<translation>ПРИМІТКА: Через помилку у GeForce Experience, ця опція може працювати не правильно, якщо у хост-ПК є кілька моніторів.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>Увімкнути HDR</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -916,12 +915,7 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1653"/>
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>Транслювання HDR не підтримується на цьому ПК.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>Увімкнути YUV 4:4:4</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
@@ -946,22 +940,22 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1340"/>
|
||||
<source>NOTE: Certain keyboard shortcuts like Ctrl+Alt+Del on Windows cannot be intercepted by any application, including Moonlight.</source>
|
||||
<translation>ПРИМІТКА: Деякі клавіатурні скорочення, як от Ctrl+Alt+Del на Windows, не можуть перехоплюватися будь-якими програмами, включно з Moonlight.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1403"/>
|
||||
<source>Use touchscreen as a virtual trackpad</source>
|
||||
<translation>Використовувати сенсорний екран як віртуальний трекпад</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1420"/>
|
||||
<source>Swap left and right mouse buttons</source>
|
||||
<translation>Поміняти ліву та праву кнопку миші місцями</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1432"/>
|
||||
<source>Reverse mouse scrolling direction</source>
|
||||
<translation>Інвертувати напрямок гортання</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1446"/>
|
||||
@@ -1001,52 +995,52 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1501"/>
|
||||
<source>Process gamepad input when Moonlight is in the background</source>
|
||||
<translation>Перехоплювати уведення з контролера у фоні</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1512"/>
|
||||
<source>Allows Moonlight to capture gamepad inputs even if it's not the current window in focus</source>
|
||||
<translation>Дозволити Moonlight перехоплювати уведення з геймпада навіть якщо фокусоване інше вікно</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="949"/>
|
||||
<source>Host Settings</source>
|
||||
<translation>Налаштування хоста</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1521"/>
|
||||
<source>Advanced Settings</source>
|
||||
<translation>Просунуті налаштування</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="866"/>
|
||||
<source>Audio configuration</source>
|
||||
<translation>Конфігурація аудіо</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1231"/>
|
||||
<source>Show connection quality warnings</source>
|
||||
<translation>Попередження про якість з'єднання</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1254"/>
|
||||
<source>Discord Rich Presence integration</source>
|
||||
<translation>Інтеграція Discord Rich Presence</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1264"/>
|
||||
<source>Updates your Discord status to display the name of the game you're streaming.</source>
|
||||
<translation>Показує у вашому статусі у Discord назву гри яку ви транслюєте.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1483"/>
|
||||
<source>Only enable this option when streaming a game that doesn't support gamepads being connected after startup.</source>
|
||||
<translation>Вмикайте цю опцію тільки коли транслюєте гру, котра не підтримує під'єднання геймпада опісля запуску.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1309"/>
|
||||
<source>Optimize mouse for remote desktop instead of games</source>
|
||||
<translation>Оптимізувати мишу для віддаленого робочого стола замість ігор</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="512"/>
|
||||
@@ -1057,54 +1051,54 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="527"/>
|
||||
<source>Enter a custom frame rate:</source>
|
||||
<translation>Користувацька частота оновлення:</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="219"/>
|
||||
<location filename="../gui/SettingsView.qml" line="228"/>
|
||||
<location filename="../gui/SettingsView.qml" line="625"/>
|
||||
<source>Custom</source>
|
||||
<translation>Користувацька</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="643"/>
|
||||
<source>30 FPS</source>
|
||||
<translation>30 К/с</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="648"/>
|
||||
<source>60 FPS</source>
|
||||
<translation>60 К/с</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1270"/>
|
||||
<source>Keep the display awake while streaming</source>
|
||||
<translation>Тримати монітор увімкненим під час трансляції</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1280"/>
|
||||
<source>Prevents the screensaver from starting or the display from going to sleep while streaming.</source>
|
||||
<translation>Запобігає запуску екранної заставки або переходу дисплея у режим сну під час трансляції.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1331"/>
|
||||
<source>Capture system keyboard shortcuts</source>
|
||||
<translation>Перехоплювати системні клавіатурні скорочення</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1339"/>
|
||||
<source>This enables the capture of system-wide keyboard shortcuts like Alt+Tab that would normally be handled by the client OS while streaming.</source>
|
||||
<translation>Вмикає перехоплення клавіатурних скорочень по типу Alt+Tab, котрі зазвичай обробляються операційною системою клієнта під час трансляції.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1369"/>
|
||||
<source>in fullscreen</source>
|
||||
<translation>коли на весь екран</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1373"/>
|
||||
<source>always</source>
|
||||
<translation>завжди</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1413"/>
|
||||
@@ -1114,12 +1108,12 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="959"/>
|
||||
<source>Optimize game settings for streaming</source>
|
||||
<translation>Оптимізувати налаштування гри для трансляції</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="970"/>
|
||||
<source>Quit app on host PC after ending stream</source>
|
||||
<translation>Вийти з програми на віддаленому ПК після завершення трансляції</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="980"/>
|
||||
@@ -1129,38 +1123,48 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1531"/>
|
||||
<source>Video decoder</source>
|
||||
<translation>Відео декодер</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1556"/>
|
||||
<location filename="../gui/SettingsView.qml" line="1609"/>
|
||||
<source>Automatic (Recommended)</source>
|
||||
<translation>Автоматично (Рекомендовано)</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1560"/>
|
||||
<source>Force software decoding</source>
|
||||
<translation>Програмне декодування</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1564"/>
|
||||
<source>Force hardware decoding</source>
|
||||
<translation>Апаратне декодування</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1579"/>
|
||||
<source>Video codec</source>
|
||||
<translation>Відео кодек</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1613"/>
|
||||
<source>H.264</source>
|
||||
<translation>H.264</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1617"/>
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
@@ -1170,12 +1174,12 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1683"/>
|
||||
<source>YUV 4:4:4 is not supported on this PC.</source>
|
||||
<translation>YUV 4:4:4 не підтримується на цьому ПК.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1689"/>
|
||||
<source>Unlock bitrate limit (Experimental)</source>
|
||||
<translation>Розблокувати ліміт бітрейту (Експериментально)</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1702"/>
|
||||
@@ -1185,12 +1189,12 @@
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1708"/>
|
||||
<source>Automatically find PCs on the local network (Recommended)</source>
|
||||
<translation>Автоматично знаходити ПК на локальній мережі (Рекомендовано)</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1729"/>
|
||||
<source>Automatically detect blocked connections (Recommended)</source>
|
||||
<translation>Автоматично виявляти заблоковане з'єднання (Рекомендовано)</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -1198,18 +1202,18 @@
|
||||
<message>
|
||||
<location filename="../gui/StreamSegue.qml" line="12"/>
|
||||
<source>Resuming %1...</source>
|
||||
<translation>Відновлення %1...</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/StreamSegue.qml" line="13"/>
|
||||
<location filename="../gui/StreamSegue.qml" line="20"/>
|
||||
<source>Starting %1...</source>
|
||||
<translation>Запуск %1...</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/StreamSegue.qml" line="26"/>
|
||||
<source>Starting %1 failed: Error %2</source>
|
||||
<translation>Не вдалося запустити %1: Помилка %2</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/StreamSegue.qml" line="29"/>
|
||||
@@ -1224,22 +1228,22 @@
|
||||
<message>
|
||||
<location filename="../gui/StreamSegue.qml" line="168"/>
|
||||
<source>Tip:</source>
|
||||
<translation>Підказка:</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/StreamSegue.qml" line="168"/>
|
||||
<source>Press %1 to disconnect your session</source>
|
||||
<translation>Натисніть %1, щоб вийти з сесії</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/StreamSegue.qml" line="169"/>
|
||||
<source>Start+Select+L1+R1</source>
|
||||
<translation>Start+Select+L1+R1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/StreamSegue.qml" line="169"/>
|
||||
<source>Ctrl+Alt+Shift+Q</source>
|
||||
<translation>Ctrl+Alt+Shift+Q</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -1247,27 +1251,27 @@
|
||||
<message>
|
||||
<location filename="../gui/main.qml" line="444"/>
|
||||
<source>Settings</source>
|
||||
<translation>Налаштування</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/main.qml" line="291"/>
|
||||
<source>Version %1</source>
|
||||
<translation>Версія %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/main.qml" line="307"/>
|
||||
<source>Join our community on Discord</source>
|
||||
<translation>Доєднуйтеся до нашої спільноти у Discord</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/main.qml" line="326"/>
|
||||
<source>Add PC manually</source>
|
||||
<translation>Додати ПК вручну</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/main.qml" line="366"/>
|
||||
<source>Update available for Moonlight: Version %1</source>
|
||||
<translation>Доступна новіша версія Moonlight: %1</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/main.qml" line="413"/>
|
||||
@@ -1292,7 +1296,7 @@
|
||||
<message>
|
||||
<location filename="../gui/main.qml" line="517"/>
|
||||
<source>Enter the IP address of your host PC:</source>
|
||||
<translation>Уведіть IP адресу вашого віддаленого ПК:</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/main.qml" line="390"/>
|
||||
@@ -1307,12 +1311,12 @@
|
||||
<message>
|
||||
<location filename="../gui/main.qml" line="453"/>
|
||||
<source>Click the Help button for more information on solving this problem.</source>
|
||||
<translation>Натисніть «Довідка», щоб отримати інформацію про розв'язання проблеми.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/main.qml" line="461"/>
|
||||
<source>Click the Help button for more information.</source>
|
||||
<translation>Натисніть «Довідка» для детальнішої інформації.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/main.qml" line="479"/>
|
||||
@@ -1322,7 +1326,7 @@
|
||||
<message>
|
||||
<location filename="../gui/main.qml" line="487"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Ви впевнені, що хочете вийти?</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
Binary file not shown.
+54
-46
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>Thiếu thiết bị ghi âm. Việc cài đặt lại GeForce Experience có thể sẽ giải quyết lỗi này.</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Có</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>&Không</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>OK</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation type="unfinished">Trợ giúp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Huỷ bỏ</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>Phiên bản của GeForce Experience trên %1 không được bản dựng Moonlight này hỗ trợ. Bạn phải cập nhật Moonlight để stream từ %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>Lựa chọn bật chế độ chuột máy tính từ xa của bạn có thể sẽ gây ra vấn đề trong các trò chơi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">HDR không được hỗ trợ với giải mã phần mềm.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>Lựa chọn cài đặt buộc giải mã phần mềm của bạn có thể sẽ gây ra hiệu năng stream kém.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Đang sử dụng giải mã phần mềm do lựa chọn buộc HEVC của bạn mà không có sự hỗ trợ của GPU. Việc này có thể sẽ gây ra hiệu năng stream kém.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>Đang sử dụng giải mã phần mềm do lựa chọn buộc dùng H.264 mà GPU không hỗ trợ. Việc này có thể gây ra hiệu năng stream thấp.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>PC chủ và PC khách không hỗ trợ cùng codec video. Việc này có thể gây ra hiệu năng stream thấp.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>GPU khách không hỗ trợ giải mã H.264. Việc này có thể gây ra hiệu năng stream thấp.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>GPU của PC chủ không hỗ trợ giải mã HEVC Main10 để stream HDR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>GeForce Experience 3.0 hoặc cao hơn được yêu cầu để stream 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>Cài đặt âm thanh bao quanh đã chọn của bạn không được thiết bị âm thanh hiện tại hỗ trợ.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>Mở thiết bị âm thanh thất bại. Âm thanh sẽ không có sẵn trong phiên làm việc này.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>Một tay cầm điều khiển không được chỉ định nút và sẽ không thể sử dụng được. Hãy đi đến trợ giúp của Moonlight để giải quyết điều này.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>GPU của PC chủ không hỗ trợ stream độ phân giải video trên 4K.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>Lựa chọn buộc giải mã phần cứng của bạn không thể được thoả mãn do thiếu sự hỗ trợ giải mã phần cứng trên GPU của PC này.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>Lựa chọn codec và cài đặt buộc giải mã phần cứng của bạn không tương thích. GPU của PC này thiếu sự hỗ trợ cho việc giải mã codec đã chọn.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>Không thể khởi tạo trình giải mã video. Vui lòng kiểm tra cài đặt stream của bạn và thử lại.</translation>
|
||||
</message>
|
||||
@@ -898,15 +902,19 @@
|
||||
<source>NOTE: Due to a bug in GeForce Experience, this option may not work properly if your host PC has multiple monitors.</source>
|
||||
<translation>LƯU Ý: Vì một lỗi trong GeForce Experience, tuỳ chọn này có thể sẽ không hoạt động đúng nếu PC chủ của bạn có nhiều màn hình.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">Việc bật HDR sẽ ghi đè lên lựa chọn trình giải mã.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>Bật HDR</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>Bật HDR (Thử nghiệm)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,11 +926,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>Việc stream HDR không được hỗ trợ trên PC này.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1165,11 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+55
-47
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>缺少音频捕获设备。重新安装 GeForce Experience 可以解决此错误。</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>是(&Y)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>否(&N)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>确定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>帮助</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>取消</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>错误代码: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>在 %1 安装的 GeForce Experience 版本不受当前版本的 Moonlight 支持。你必须升级 Moonlight 才能从 %1 串流。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>启用远程桌面鼠标模式可能会导致游戏出现问题。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">软件解码不支持 HDR。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>你选择的用于强制软件解码的设置可能会导致流式传输性能不佳。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>你的 PC 主机不支持使用HEVC编码。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>根据你的选择使用软件解码,以在没有显卡支持的情况下强制 HEVC。这可能会导致流式传输性能不佳。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>你的主机软件或显卡不支持进行 AV1 编码。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>由于你选择在没有显卡支持的情况下强制使用 AV1,因此目前使用软件解码。这可能会导致视频流解码处理性能不佳。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>你的 PC 主机不支持 HDR 串流。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>使用 H.264 编解码器的情况下不支持 HDR。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>这台电脑的显卡不支持包含 HDR 的 AV1 Main10 解码。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>这台电脑的显卡不支持包含 HDR 的 HEVC 或 AV1 Main10 解码。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>主机电脑和客户端电脑不支持相同的 HDR 视频编解码器。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>H.264 编解码器不支持超过 4K 的视频分辨率。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>主机返回错误:%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>使用软件解码,因为你选择强制使用没有 GPU 支持的 H.264。这可能会导致较差的流性能。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>你的主机和客户端 PC 不支持相同的视频编解码器。这可能会导致较差的流性能。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>你的客户端 GPU 不支持 H.264 解码。这可能会导致较差的流性能。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>由于您选择强制使用未经 GPU 支持的 HDR,因此将采用软件解码。这可能会导致串流性能不佳。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>此计算机的显卡不支持 HEVC Main10 解码 HDR 流。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>您的主机 PC 不支持 YUV 4:4:4 串流。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>您的主机 PC 不支持所选视频编解码器的 YUV 4:4:4 串流。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>由于您选择强制使用未经 GPU 支持的 YUV 4:4:4,因此将采用软件解码。这可能会导致串流性能不佳。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>这台 PC 的 GPU 不支持所选视频编解码器的 YUV 4:4:4 解码。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>4K 流式传输需要 GeForce Experience 3.0 或更高版本。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>当前音频设备不支持你选择的环绕声设置。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>无法打开音频设备。音频在此会话期间将不可用。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>附加的手柄没有映射,因此无法使用。请访问 Moonlight 帮助解决此问题。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>目标计算机的显卡不支持 4K 以上的流式传输视频分辨率。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>由于此计算机的显卡上缺少硬件解码支持,无法满足强制硬件解码的选择。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>你选择的编解码器和强制硬件解码设置不兼容。此计算机的显卡不支持解码你选择的编解码器。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>无法初始化视频解码器。请检查你的流式传输设置,然后重试。</translation>
|
||||
</message>
|
||||
@@ -976,15 +980,19 @@
|
||||
<source>This enables the capture of system-wide keyboard shortcuts like Alt+Tab that would normally be handled by the client OS while streaming.</source>
|
||||
<translation>这样可以捕获系统范围的键盘快捷键,例如 Alt + Tab,这些快捷键通常在流式传输时由客户端系统处理。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">启用 HDR 会覆盖自定义解码器的选择。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>AV1 (实验性)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>启用HDR</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>启用HDR(实验性)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -996,11 +1004,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>此PC不支持HDR。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>启用 YUV 4:4:4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1165,11 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>启用 YUV 4:4:4(实验性)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
Binary file not shown.
+58
-50
@@ -149,7 +149,7 @@
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="74"/>
|
||||
<source>Active Address: %1</source>
|
||||
<translation>作用中位址: %1</translation>
|
||||
<translation>作用中位址</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="75"/>
|
||||
@@ -159,12 +159,12 @@
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="76"/>
|
||||
<source>Local Address: %1</source>
|
||||
<translation>本地位址: %1</translation>
|
||||
<translation>本地位址</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="77"/>
|
||||
<source>Remote Address: %1</source>
|
||||
<translation>遠端位址: %1</translation>
|
||||
<translation>遠端位址</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/computermodel.cpp" line="78"/>
|
||||
@@ -208,7 +208,7 @@
|
||||
<context>
|
||||
<name>NvHTTP</name>
|
||||
<message>
|
||||
<location filename="../backend/nvhttp.cpp" line="381"/>
|
||||
<location filename="../backend/nvhttp.cpp" line="357"/>
|
||||
<source>Missing audio capture device. Reinstalling GeForce Experience should resolve this error.</source>
|
||||
<translation>缺少音訊擷取裝置。重新安裝 GeForce Experience 可以解決此錯誤。</translation>
|
||||
</message>
|
||||
@@ -427,27 +427,27 @@
|
||||
<context>
|
||||
<name>QPlatformTheme</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="867"/>
|
||||
<location filename="../main.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>是(&Y)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="868"/>
|
||||
<location filename="../main.cpp" line="839"/>
|
||||
<source>&No</source>
|
||||
<translation>否(&N)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="869"/>
|
||||
<location filename="../main.cpp" line="840"/>
|
||||
<source>OK</source>
|
||||
<translation>確定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="870"/>
|
||||
<location filename="../main.cpp" line="841"/>
|
||||
<source>Help</source>
|
||||
<translation>說明</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="871"/>
|
||||
<location filename="../main.cpp" line="842"/>
|
||||
<source>Cancel</source>
|
||||
<translation>取消</translation>
|
||||
</message>
|
||||
@@ -508,158 +508,162 @@
|
||||
<translation>錯誤碼: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="958"/>
|
||||
<location filename="../streaming/session.cpp" line="952"/>
|
||||
<source>The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.</source>
|
||||
<translation>此 Moonlight 版本不支援 %1 上的 GeForce Experience 版本。您必須更新 Moonlight 才能從 %1 串流傳輸。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="963"/>
|
||||
<location filename="../streaming/session.cpp" line="957"/>
|
||||
<source>Your selection to enable remote desktop mouse mode may cause problems in games.</source>
|
||||
<translation>您選取啟動遠端桌面游標模式可能會導致遊戲出現問題。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>HDR is not supported with software decoding.</source>
|
||||
<translation type="vanished">軟體解碼不支援 HDR。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="961"/>
|
||||
<source>Your settings selection to force software decoding may cause poor streaming performance.</source>
|
||||
<translation>您選取強制軟體解碼的設定可能會導致串流媒體效能不佳。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1003"/>
|
||||
<location filename="../streaming/session.cpp" line="997"/>
|
||||
<source>Your host PC doesn't support encoding HEVC.</source>
|
||||
<translation>您的主機不支援 HEVC 編碼。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1021"/>
|
||||
<location filename="../streaming/session.cpp" line="1015"/>
|
||||
<source>Using software decoding due to your selection to force HEVC without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>由於你選取使用 GPU 不支援的 HEVC 格式,因此使用軟體進行解碼。這可能會導致串流效能不佳。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="973"/>
|
||||
<location filename="../streaming/session.cpp" line="967"/>
|
||||
<source>Your host software or GPU doesn't support encoding AV1.</source>
|
||||
<translation>您的主機軟體或 GPU 不支援編碼 AV1。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="991"/>
|
||||
<location filename="../streaming/session.cpp" line="985"/>
|
||||
<source>Using software decoding due to your selection to force AV1 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>使用軟體解碼係依您的選取項目以強制啟用沒有 GPU 支援的 AV1,這可能導致較低的串流效能。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1068"/>
|
||||
<location filename="../streaming/session.cpp" line="1062"/>
|
||||
<source>Your host PC doesn't support HDR streaming.</source>
|
||||
<translation>您的主機電腦不支援 HDR 串流。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1060"/>
|
||||
<location filename="../streaming/session.cpp" line="1054"/>
|
||||
<source>HDR is not supported using the H.264 codec.</source>
|
||||
<translation>使用 H.264 轉碼器不支援 HDR。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1077"/>
|
||||
<source>This PC's GPU doesn't support AV1 Main10 decoding for HDR streaming.</source>
|
||||
<translation>這個電腦的 GPU 不支援 AV1 Main10 HDR 串流解碼。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1064"/>
|
||||
<location filename="../streaming/session.cpp" line="1058"/>
|
||||
<source>This PC's GPU doesn't support 10-bit HEVC or AV1 decoding for HDR streaming.</source>
|
||||
<translation>這個電腦的 GPU 不支援 10-bit HEVC 或 AV1 HDR 串流解碼。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1116"/>
|
||||
<location filename="../streaming/session.cpp" line="1110"/>
|
||||
<source>Your host PC and client PC don't support the same HDR video codecs.</source>
|
||||
<translation>您的主機電腦和用戶端電腦不支援相同的 HDR 視訊轉碼器。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1209"/>
|
||||
<location filename="../streaming/session.cpp" line="1203"/>
|
||||
<source>Video resolutions over 4K are not supported by the H.264 codec.</source>
|
||||
<translation>H.264 轉碼器不支援超過 4K 的視訊解析度。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1606"/>
|
||||
<location filename="../streaming/session.cpp" line="1600"/>
|
||||
<source>Host returned error: %1</source>
|
||||
<translation>主機返回錯誤:%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1040"/>
|
||||
<location filename="../streaming/session.cpp" line="1034"/>
|
||||
<source>Using software decoding due to your selection to force H.264 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>由於你選取強制使用 GPU 不支援的 HEVC 格式,因此使用軟體進行解碼。這可能會導致串流效能不佳。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1050"/>
|
||||
<location filename="../streaming/session.cpp" line="1044"/>
|
||||
<source>Your host PC and client PC don't support the same video codecs. This may cause poor streaming performance.</source>
|
||||
<translation>您的主機電腦和用戶端電腦不支援相同的視訊編解碼器。這可能會導致串流效能不佳。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1053"/>
|
||||
<location filename="../streaming/session.cpp" line="1047"/>
|
||||
<source>Your client GPU doesn't support H.264 decoding. This may cause poor streaming performance.</source>
|
||||
<translation>您的用戶端 GPU 不支援 H.264 解碼。這能會導致串流效能不佳。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1089"/>
|
||||
<location filename="../streaming/session.cpp" line="1107"/>
|
||||
<location filename="../streaming/session.cpp" line="1083"/>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<source>Using software decoding due to your selection to force HDR without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>由於您選擇在GPU不支援的情況強制啟用 HDR,正在使用軟體解碼。這可能會導致串流效能不佳。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1101"/>
|
||||
<location filename="../streaming/session.cpp" line="1095"/>
|
||||
<source>This PC's GPU doesn't support HEVC Main10 decoding for HDR streaming.</source>
|
||||
<translation>此電腦的 GPU 不支援 HEVC Main10 解碼器來進行 HDR 串流。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1123"/>
|
||||
<location filename="../streaming/session.cpp" line="1117"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming.</source>
|
||||
<translation>您的主機不支援 YUV 4:4:4 串流格式。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1131"/>
|
||||
<location filename="../streaming/session.cpp" line="1125"/>
|
||||
<source>Your host PC doesn't support YUV 4:4:4 streaming for selected video codec.</source>
|
||||
<translation>您的主機不支援所選視訊編碼器的 YUV 4:4:4 串流格式。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<location filename="../streaming/session.cpp" line="1140"/>
|
||||
<source>Using software decoding due to your selection to force YUV 4:4:4 without GPU support. This may cause poor streaming performance.</source>
|
||||
<translation>由於您選擇在GPU不支援的情況強制啟用 YUV 4:4:4,正在使用軟體解碼。這可能會導致串流效能不佳。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1152"/>
|
||||
<location filename="../streaming/session.cpp" line="1146"/>
|
||||
<source>This PC's GPU doesn't support YUV 4:4:4 decoding for selected video codec.</source>
|
||||
<translation>您的主機的 GPU 不支援所選視訊編碼器的 YUV 4:4:4 串流格式。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1161"/>
|
||||
<location filename="../streaming/session.cpp" line="1155"/>
|
||||
<source>GeForce Experience 3.0 or higher is required for 4K streaming.</source>
|
||||
<translation>4K 串流需要 GeForce Experience 3.0 或更高的版本。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<location filename="../streaming/session.cpp" line="1170"/>
|
||||
<source>Your selected surround sound setting is not supported by the current audio device.</source>
|
||||
<translation>您選取的環場音效設定並不支援目前的音訊裝置。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1182"/>
|
||||
<location filename="../streaming/session.cpp" line="1176"/>
|
||||
<source>Failed to open audio device. Audio will be unavailable during this session.</source>
|
||||
<translation>無法開啟音訊裝置。音訊在本次工作階段中將無法使用。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1187"/>
|
||||
<location filename="../streaming/session.cpp" line="1181"/>
|
||||
<source>An attached gamepad has no mapping and won't be usable. Visit the Moonlight help to resolve this.</source>
|
||||
<translation>附加的手把沒有對應,將無法使用。請造訪 Moonlight 協助解決問題。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1205"/>
|
||||
<location filename="../streaming/session.cpp" line="1199"/>
|
||||
<source>Your host PC's GPU doesn't support streaming video resolutions over 4K.</source>
|
||||
<translation>您的主機電腦 GPU 不支援 4K 視訊串流。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1223"/>
|
||||
<location filename="../streaming/session.cpp" line="1217"/>
|
||||
<source>Your selection to force hardware decoding cannot be satisfied due to missing hardware decoding support on this PC's GPU.</source>
|
||||
<translation>由於此電腦的 GPU 缺乏硬體解碼支援,故無法強制使用硬體解碼。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="1226"/>
|
||||
<location filename="../streaming/session.cpp" line="1220"/>
|
||||
<source>Your codec selection and force hardware decoding setting are not compatible. This PC's GPU lacks support for decoding your chosen codec.</source>
|
||||
<translation>你選取的編解碼器和強制硬體解碼設定不相容。此電腦的顯示卡不支援解碼你選取的解編碼器。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../streaming/session.cpp" line="2204"/>
|
||||
<location filename="../streaming/session.cpp" line="2198"/>
|
||||
<source>Unable to initialize video decoder. Please check your streaming settings and try again.</source>
|
||||
<translation>無法初始化畫面解碼器。請檢查您的串流設定並再試一次。</translation>
|
||||
</message>
|
||||
@@ -898,15 +902,19 @@
|
||||
<source>NOTE: Due to a bug in GeForce Experience, this option may not work properly if your host PC has multiple monitors.</source>
|
||||
<translation>提醒:由於 GeForce Experience 的錯誤,如果您的主機電腦有多部顯示器,此選項可能無法正常運作。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Enabling HDR overrides manual decoder selections.</source>
|
||||
<translation type="vanished">啟用 HDR 覆寫手動解碼器選取項目。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1621"/>
|
||||
<source>AV1</source>
|
||||
<translation>AV1</translation>
|
||||
<source>AV1 (Experimental)</source>
|
||||
<translation>AV (實驗性)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1636"/>
|
||||
<source>Enable HDR</source>
|
||||
<translation>啟用 HDR</translation>
|
||||
<source>Enable HDR (Experimental)</source>
|
||||
<translation>啟用 HDR (實驗性)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1651"/>
|
||||
@@ -918,11 +926,6 @@
|
||||
<source>HDR streaming is not supported on this PC.</source>
|
||||
<translation>此電腦不支援 HDR 串流。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4</source>
|
||||
<translation>啟用 YUV 4:4:4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1740"/>
|
||||
<source>Show performance stats while streaming</source>
|
||||
@@ -1162,6 +1165,11 @@
|
||||
<source>HEVC (H.265)</source>
|
||||
<translation>HEVC (H.265)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1659"/>
|
||||
<source>Enable YUV 4:4:4 (Experimental)</source>
|
||||
<translation>啟用 YUV 4:4:4 (實驗性)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/SettingsView.qml" line="1681"/>
|
||||
<source>Good for streaming desktop and text-heavy games, but not recommended for fast-paced games.</source>
|
||||
|
||||
+6
-18
@@ -1,5 +1,4 @@
|
||||
#include <QGuiApplication>
|
||||
#include <QStyleHints>
|
||||
#include <QQmlApplicationEngine>
|
||||
#include <QQmlContext>
|
||||
#include <QIcon>
|
||||
@@ -635,13 +634,8 @@ int main(int argc, char *argv[])
|
||||
qputenv("QSG_RENDER_LOOP", "basic");
|
||||
#endif
|
||||
|
||||
#if defined(Q_OS_DARWIN) && defined(QT_DEBUG) && !defined(HAVE_LIBPLACEBO_VULKAN)
|
||||
// Enable Metal valiation for debug builds without libplacebo
|
||||
//
|
||||
// The current MoltenVK driver as of Vulkan SDK 1.4.350 triggers Metal debug layer
|
||||
// violations on frame and overlay uploads like:
|
||||
// _validateReplaceRegion:252: failed assertion `Replace Region Validation
|
||||
// bytesPerRow(4803) must be a multiple of MTLPixelFormatBGRA8Unorm pixel bytes(4).
|
||||
#if defined(Q_OS_DARWIN) && defined(QT_DEBUG)
|
||||
// Enable Metal valiation for debug builds
|
||||
qputenv("MTL_DEBUG_LAYER", "1");
|
||||
qputenv("MTL_SHADER_VALIDATION", "1");
|
||||
#endif
|
||||
@@ -718,6 +712,10 @@ int main(int argc, char *argv[])
|
||||
SDL_SetHint(SDL_HINT_AUDIO_DEVICE_APP_NAME, "Moonlight");
|
||||
SDL_SetHint(SDL_HINT_APP_NAME, "Moonlight");
|
||||
|
||||
// We handle capturing the mouse ourselves when it leaves the window, so we don't need
|
||||
// SDL doing it for us behind our backs.
|
||||
SDL_SetHint(SDL_HINT_MOUSE_AUTO_CAPTURE, "0");
|
||||
|
||||
// SDL will try to lock the mouse cursor on Wayland if it's not visible in order to
|
||||
// support applications that assume they can warp the cursor (which isn't possible
|
||||
// on Wayland). We don't want this behavior because it interferes with seamless mouse
|
||||
@@ -755,16 +753,6 @@ int main(int argc, char *argv[])
|
||||
|
||||
QGuiApplication app(argc, argv);
|
||||
|
||||
#ifdef Q_OS_DARWIN
|
||||
// macOS defaults "Keyboard navigation" to text fields and lists only, which
|
||||
// prevents Tab (and the gamepad navigation that synthesizes it) from moving
|
||||
// focus between non-text controls on the settings page. Force Tab to reach
|
||||
// all controls so keyboard and gamepad UI navigation work without requiring
|
||||
// the user to enable a system accessibility setting. Other platforms already
|
||||
// default to this behavior.
|
||||
app.styleHints()->setTabFocusBehavior(Qt::TabFocusAllControls);
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_UNIX
|
||||
// Register signal handlers to arbitrate between SDL and Qt.
|
||||
// NB: This has to be done after the QGuiApplication is constructed to
|
||||
|
||||
@@ -51,7 +51,6 @@
|
||||
#define SER_CAPTURESYSKEYS "capturesyskeys"
|
||||
#define SER_KEEPAWAKE "keepawake"
|
||||
#define SER_LANGUAGE "language"
|
||||
#define SER_RENDERER "renderer"
|
||||
|
||||
#define CURRENT_DEFAULT_VER 2
|
||||
|
||||
@@ -160,8 +159,6 @@ void StreamingPreferences::reload()
|
||||
static_cast<int>(VideoCodecConfig::VCC_AUTO)).toInt());
|
||||
videoDecoderSelection = static_cast<VideoDecoderSelection>(settings.value(SER_VIDEODEC,
|
||||
static_cast<int>(VideoDecoderSelection::VDS_AUTO)).toInt());
|
||||
rendererSelection = static_cast<RendererSelection>(settings.value(SER_RENDERER,
|
||||
static_cast<int>(RendererSelection::RS_AUTO)).toInt());
|
||||
windowMode = static_cast<WindowMode>(settings.value(SER_WINDOWMODE,
|
||||
// Try to load from the old preference value too
|
||||
static_cast<int>(settings.value(SER_FULLSCREEN, true).toBool() ?
|
||||
@@ -350,7 +347,6 @@ void StreamingPreferences::save()
|
||||
settings.setValue(SER_YUV444, enableYUV444);
|
||||
settings.setValue(SER_VIDEOCFG, static_cast<int>(videoCodecConfig));
|
||||
settings.setValue(SER_VIDEODEC, static_cast<int>(videoDecoderSelection));
|
||||
settings.setValue(SER_RENDERER, static_cast<int>(rendererSelection));
|
||||
settings.setValue(SER_WINDOWMODE, static_cast<int>(windowMode));
|
||||
settings.setValue(SER_UIDISPLAYMODE, static_cast<int>(uiDisplayMode));
|
||||
settings.setValue(SER_LANGUAGE, static_cast<int>(language));
|
||||
|
||||
@@ -44,17 +44,6 @@ public:
|
||||
};
|
||||
Q_ENUM(VideoDecoderSelection)
|
||||
|
||||
// Mac only (for now)
|
||||
enum RendererSelection
|
||||
{
|
||||
RS_PROBE_ONLY = -1, // Only valid for probing decoder properties
|
||||
RS_AUTO,
|
||||
RS_VULKAN,
|
||||
RS_METAL,
|
||||
RS_AVSBDL
|
||||
};
|
||||
Q_ENUM(RendererSelection)
|
||||
|
||||
enum WindowMode
|
||||
{
|
||||
WM_FULLSCREEN,
|
||||
@@ -145,7 +134,6 @@ public:
|
||||
Q_PROPERTY(bool enableHdr MEMBER enableHdr NOTIFY enableHdrChanged)
|
||||
Q_PROPERTY(bool enableYUV444 MEMBER enableYUV444 NOTIFY enableYUV444Changed)
|
||||
Q_PROPERTY(VideoDecoderSelection videoDecoderSelection MEMBER videoDecoderSelection NOTIFY videoDecoderSelectionChanged)
|
||||
Q_PROPERTY(RendererSelection rendererSelection MEMBER rendererSelection NOTIFY rendererSelectionChanged)
|
||||
Q_PROPERTY(WindowMode windowMode MEMBER windowMode NOTIFY windowModeChanged)
|
||||
Q_PROPERTY(WindowMode recommendedFullScreenMode MEMBER recommendedFullScreenMode CONSTANT)
|
||||
Q_PROPERTY(UIDisplayMode uiDisplayMode MEMBER uiDisplayMode NOTIFY uiDisplayModeChanged)
|
||||
@@ -199,7 +187,6 @@ public:
|
||||
UIDisplayMode uiDisplayMode;
|
||||
Language language;
|
||||
CaptureSysKeysMode captureSysKeysMode;
|
||||
RendererSelection rendererSelection;
|
||||
|
||||
signals:
|
||||
void displayModeChanged();
|
||||
@@ -237,7 +224,6 @@ signals:
|
||||
void captureSysKeysModeChanged();
|
||||
void keepAwakeChanged();
|
||||
void languageChanged();
|
||||
void rendererSelectionChanged();
|
||||
|
||||
private:
|
||||
explicit StreamingPreferences(QQmlEngine *qmlEngine);
|
||||
|
||||
@@ -21,6 +21,5 @@ public:
|
||||
private:
|
||||
SDL_AudioDeviceID m_AudioDevice;
|
||||
void* m_AudioBuffer;
|
||||
Uint32 m_FrameSize;
|
||||
Uint32 m_FrameDurationMs;
|
||||
int m_FrameSize;
|
||||
};
|
||||
|
||||
@@ -32,7 +32,6 @@ bool SdlAudioRenderer::prepareForPlayback(const OPUS_MULTISTREAM_CONFIGURATION*
|
||||
// The buffering helps avoid audio underruns due to network jitter.
|
||||
want.samples = SDL_max(480, opusConfig->samplesPerFrame * 3);
|
||||
|
||||
m_FrameDurationMs = opusConfig->samplesPerFrame / (opusConfig->sampleRate / 1000);
|
||||
m_FrameSize = opusConfig->samplesPerFrame *
|
||||
opusConfig->channelCount *
|
||||
getAudioBufferSampleSize();
|
||||
@@ -116,8 +115,8 @@ bool SdlAudioRenderer::submitAudio(int bytesWritten)
|
||||
return false;
|
||||
}
|
||||
|
||||
// Only queue more samples where there is 50 ms or less in SDL's queue
|
||||
if (SDL_GetQueuedAudioSize(m_AudioDevice) / m_FrameSize * m_FrameDurationMs <= 50) {
|
||||
// Only queue more samples where there are 10 frames or less in SDL's queue
|
||||
if (SDL_GetQueuedAudioSize(m_AudioDevice) / m_FrameSize <= 10) {
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
@@ -460,9 +460,7 @@ void SdlInputHandler::handleControllerTouchpadEvent(SDL_ControllerTouchpadEvent*
|
||||
return;
|
||||
}
|
||||
|
||||
LiSendControllerTouchEvent2((uint8_t)state->index, eventType,
|
||||
(uint8_t)event->touchpad, event->finger,
|
||||
event->x, event->y, event->pressure);
|
||||
LiSendControllerTouchEvent((uint8_t)state->index, eventType, event->finger, event->x, event->y, event->pressure);
|
||||
}
|
||||
|
||||
#endif
|
||||
@@ -664,9 +662,6 @@ void SdlInputHandler::handleControllerDeviceEvent(SDL_ControllerDeviceEvent* eve
|
||||
}
|
||||
if (SDL_GameControllerGetNumTouchpads(state->controller) > 0) {
|
||||
capabilities |= LI_CCAP_TOUCHPAD;
|
||||
if (SDL_GameControllerGetNumTouchpads(state->controller) > 1) {
|
||||
capabilities |= LI_CCAP_DUAL_TOUCHPAD;
|
||||
}
|
||||
}
|
||||
if (SDL_GameControllerHasSensor(state->controller, SDL_SENSOR_ACCEL)) {
|
||||
capabilities |= LI_CCAP_ACCEL;
|
||||
@@ -701,32 +696,7 @@ void SdlInputHandler::handleControllerDeviceEvent(SDL_ControllerDeviceEvent* eve
|
||||
type = LI_CTYPE_NINTENDO;
|
||||
break;
|
||||
default:
|
||||
// These Steam Controller VID/PID combos come from SDL's controller_list.h
|
||||
// TODO: Use SDL_GAMEPAD_TYPE_STEAM on SDL 3.6+
|
||||
if (vendorId == 0x28de) {
|
||||
switch (productId) {
|
||||
case 0x1101:
|
||||
case 0x1102:
|
||||
case 0x1105:
|
||||
case 0x1106:
|
||||
case 0x1142:
|
||||
case 0x1201:
|
||||
case 0x1202:
|
||||
case 0x1205:
|
||||
case 0x1302:
|
||||
case 0x1303:
|
||||
case 0x1304:
|
||||
case 0x1305:
|
||||
type = LI_CTYPE_STEAM;
|
||||
break;
|
||||
default:
|
||||
type = LI_CTYPE_UNKNOWN;
|
||||
break;
|
||||
}
|
||||
}
|
||||
else {
|
||||
type = LI_CTYPE_UNKNOWN;
|
||||
}
|
||||
type = LI_CTYPE_UNKNOWN;
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
@@ -19,8 +19,7 @@ SdlInputHandler::SdlInputHandler(StreamingPreferences& prefs, int streamWidth, i
|
||||
m_PendingMouseButtonsAllUpOnVideoRegionLeave(false),
|
||||
m_PointerRegionLockActive(false),
|
||||
m_PointerRegionLockToggledByUser(false),
|
||||
m_FakeMouseCaptureActive(false),
|
||||
m_KeyboardCaptureActive(false),
|
||||
m_FakeCaptureActive(false),
|
||||
m_CaptureSystemKeysMode(prefs.captureSysKeysMode),
|
||||
m_MouseCursorCapturedVisibilityState(SDL_DISABLE),
|
||||
m_LongPressTimer(0),
|
||||
@@ -40,19 +39,6 @@ SdlInputHandler::SdlInputHandler(StreamingPreferences& prefs, int streamWidth, i
|
||||
m_CaptureSystemKeysMode = StreamingPreferences::CSK_ALWAYS;
|
||||
}
|
||||
|
||||
// SDL3 breaks our auto-capture-on-leave logic because the mouse focus has already
|
||||
// been lost by the time we attempt to call SDL_CaptureMouse(). Fortunately, SDL3's
|
||||
// own auto-capture logic seems to be stable now (unlike SDL2), so we can rely on
|
||||
// that instead of our own hack when running on sdl2-compat.
|
||||
// https://github.com/libsdl-org/SDL/commit/e54001b02809dcebbb822bd0297919c8c76976a1
|
||||
SDL_version ver;
|
||||
SDL_GetVersion(&ver);
|
||||
m_NeedsManualCaptureOnLeave = !(ver.major == 2 && ver.minor >= 30 && ver.patch >= 50) && !SDL_GetHint("SDL3_VERSION");
|
||||
if (m_NeedsManualCaptureOnLeave) {
|
||||
// Disable the buggy auto-capture on earlier SDL2 builds
|
||||
SDL_SetHint(SDL_HINT_MOUSE_AUTO_CAPTURE, "0");
|
||||
}
|
||||
|
||||
// Allow gamepad input when the app doesn't have focus if requested
|
||||
SDL_SetHint(SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS, prefs.backgroundGamepad ? "1" : "0");
|
||||
|
||||
@@ -88,12 +74,12 @@ SdlInputHandler::SdlInputHandler(StreamingPreferences& prefs, int streamWidth, i
|
||||
m_SpecialKeyCombos[KeyComboUngrabInput].keyCombo = KeyComboUngrabInput;
|
||||
m_SpecialKeyCombos[KeyComboUngrabInput].keyCode = SDLK_z;
|
||||
m_SpecialKeyCombos[KeyComboUngrabInput].scanCode = SDL_SCANCODE_Z;
|
||||
m_SpecialKeyCombos[KeyComboUngrabInput].enabled = WMUtils::isRunningDesktopEnvironment();
|
||||
m_SpecialKeyCombos[KeyComboUngrabInput].enabled = QGuiApplication::platformName() != "eglfs";
|
||||
|
||||
m_SpecialKeyCombos[KeyComboToggleFullScreen].keyCombo = KeyComboToggleFullScreen;
|
||||
m_SpecialKeyCombos[KeyComboToggleFullScreen].keyCode = SDLK_x;
|
||||
m_SpecialKeyCombos[KeyComboToggleFullScreen].scanCode = SDL_SCANCODE_X;
|
||||
m_SpecialKeyCombos[KeyComboToggleFullScreen].enabled = WMUtils::isRunningDesktopEnvironment();
|
||||
m_SpecialKeyCombos[KeyComboToggleFullScreen].enabled = QGuiApplication::platformName() != "eglfs";
|
||||
|
||||
m_SpecialKeyCombos[KeyComboToggleStatsOverlay].keyCombo = KeyComboToggleStatsOverlay;
|
||||
m_SpecialKeyCombos[KeyComboToggleStatsOverlay].keyCode = SDLK_s;
|
||||
@@ -113,7 +99,7 @@ SdlInputHandler::SdlInputHandler(StreamingPreferences& prefs, int streamWidth, i
|
||||
m_SpecialKeyCombos[KeyComboToggleMinimize].keyCombo = KeyComboToggleMinimize;
|
||||
m_SpecialKeyCombos[KeyComboToggleMinimize].keyCode = SDLK_d;
|
||||
m_SpecialKeyCombos[KeyComboToggleMinimize].scanCode = SDL_SCANCODE_D;
|
||||
m_SpecialKeyCombos[KeyComboToggleMinimize].enabled = WMUtils::isRunningDesktopEnvironment();
|
||||
m_SpecialKeyCombos[KeyComboToggleMinimize].enabled = QGuiApplication::platformName() != "eglfs";
|
||||
|
||||
m_SpecialKeyCombos[KeyComboPasteText].keyCombo = KeyComboPasteText;
|
||||
m_SpecialKeyCombos[KeyComboPasteText].keyCode = SDLK_v;
|
||||
@@ -130,11 +116,6 @@ SdlInputHandler::SdlInputHandler(StreamingPreferences& prefs, int streamWidth, i
|
||||
m_SpecialKeyCombos[KeyComboQuitAndExit].scanCode = SDL_SCANCODE_E;
|
||||
m_SpecialKeyCombos[KeyComboQuitAndExit].enabled = true;
|
||||
|
||||
m_SpecialKeyCombos[KeyComboToggleKeyboardGrab].keyCombo = KeyComboToggleKeyboardGrab;
|
||||
m_SpecialKeyCombos[KeyComboToggleKeyboardGrab].keyCode = SDLK_k;
|
||||
m_SpecialKeyCombos[KeyComboToggleKeyboardGrab].scanCode = SDL_SCANCODE_K;
|
||||
m_SpecialKeyCombos[KeyComboToggleKeyboardGrab].enabled = WMUtils::isRunningDesktopEnvironment();
|
||||
|
||||
m_OldIgnoreDevices = SDL_GetHint(SDL_HINT_GAMECONTROLLER_IGNORE_DEVICES);
|
||||
m_OldIgnoreDevicesExcept = SDL_GetHint(SDL_HINT_GAMECONTROLLER_IGNORE_DEVICES_EXCEPT);
|
||||
|
||||
@@ -289,21 +270,19 @@ void SdlInputHandler::raiseAllKeys()
|
||||
|
||||
void SdlInputHandler::notifyMouseLeave()
|
||||
{
|
||||
if (m_NeedsManualCaptureOnLeave) {
|
||||
// SDL on Windows doesn't send the mouse button up until the mouse re-enters the window
|
||||
// after leaving it. This breaks some of the Aero snap gestures, so we'll capture it to
|
||||
// allow us to receive the mouse button up events later.
|
||||
//
|
||||
// On macOS and X11, capturing the mouse allows us to receive mouse motion outside the
|
||||
// window (button up already worked without capture).
|
||||
if (m_AbsoluteMouseMode && isCaptureActive()) {
|
||||
// NB: Not using SDL_GetGlobalMouseState() because we want our state not the system's
|
||||
Uint32 mouseState = SDL_GetMouseState(nullptr, nullptr);
|
||||
for (Uint32 button = SDL_BUTTON_LEFT; button <= SDL_BUTTON_X2; button++) {
|
||||
if (mouseState & SDL_BUTTON(button)) {
|
||||
SDL_CaptureMouse(SDL_TRUE);
|
||||
break;
|
||||
}
|
||||
// SDL on Windows doesn't send the mouse button up until the mouse re-enters the window
|
||||
// after leaving it. This breaks some of the Aero snap gestures, so we'll capture it to
|
||||
// allow us to receive the mouse button up events later.
|
||||
//
|
||||
// On macOS and X11, capturing the mouse allows us to receive mouse motion outside the
|
||||
// window (button up already worked without capture).
|
||||
if (m_AbsoluteMouseMode && isCaptureActive()) {
|
||||
// NB: Not using SDL_GetGlobalMouseState() because we want our state not the system's
|
||||
Uint32 mouseState = SDL_GetMouseState(nullptr, nullptr);
|
||||
for (Uint32 button = SDL_BUTTON_LEFT; button <= SDL_BUTTON_X2; button++) {
|
||||
if (mouseState & SDL_BUTTON(button)) {
|
||||
SDL_CaptureMouse(SDL_TRUE);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -335,19 +314,21 @@ bool SdlInputHandler::isCaptureActive()
|
||||
}
|
||||
|
||||
// Some platforms don't support SDL_SetRelativeMouseMode
|
||||
return m_FakeMouseCaptureActive;
|
||||
return m_FakeCaptureActive;
|
||||
}
|
||||
|
||||
void SdlInputHandler::updateKeyboardGrabState()
|
||||
{
|
||||
bool shouldGrab = m_CaptureSystemKeysMode != StreamingPreferences::CSK_OFF && isCaptureActive();
|
||||
if (shouldGrab) {
|
||||
Uint32 windowFlags = SDL_GetWindowFlags(m_Window);
|
||||
if (m_CaptureSystemKeysMode == StreamingPreferences::CSK_FULLSCREEN &&
|
||||
if (m_CaptureSystemKeysMode == StreamingPreferences::CSK_OFF) {
|
||||
return;
|
||||
}
|
||||
|
||||
bool shouldGrab = isCaptureActive();
|
||||
Uint32 windowFlags = SDL_GetWindowFlags(m_Window);
|
||||
if (m_CaptureSystemKeysMode == StreamingPreferences::CSK_FULLSCREEN &&
|
||||
!(windowFlags & SDL_WINDOW_FULLSCREEN)) {
|
||||
// Ungrab if it's fullscreen only and we left fullscreen
|
||||
shouldGrab = false;
|
||||
}
|
||||
// Ungrab if it's fullscreen only and we left fullscreen
|
||||
shouldGrab = false;
|
||||
}
|
||||
|
||||
// Don't close the window on Alt+F4 when keyboard grab is enabled
|
||||
@@ -358,8 +339,6 @@ void SdlInputHandler::updateKeyboardGrabState()
|
||||
// SDL 2.0.18 adds keyboard grab on macOS (if built with non-AppStore APIs).
|
||||
SDL_SetWindowKeyboardGrab(m_Window, shouldGrab ? SDL_TRUE : SDL_FALSE);
|
||||
#endif
|
||||
|
||||
m_KeyboardCaptureActive = shouldGrab;
|
||||
}
|
||||
|
||||
bool SdlInputHandler::isSystemKeyCaptureActive()
|
||||
@@ -372,12 +351,15 @@ bool SdlInputHandler::isSystemKeyCaptureActive()
|
||||
return false;
|
||||
}
|
||||
|
||||
// NB: We used to check SDL_WINDOW_KEYBOARD_GRABBED here, but this isn't
|
||||
// always set when capture "fails" on SDL3, even though the user may have
|
||||
// configured the compositor to pass through system keys to us anyway.
|
||||
// See issues #1776 and #1900 for details.
|
||||
Uint32 windowFlags = SDL_GetWindowFlags(m_Window);
|
||||
if (!(windowFlags & SDL_WINDOW_INPUT_FOCUS) || !m_KeyboardCaptureActive) {
|
||||
if (!(windowFlags & SDL_WINDOW_INPUT_FOCUS)
|
||||
#if SDL_VERSION_ATLEAST(2, 0, 15)
|
||||
|| !(windowFlags & SDL_WINDOW_KEYBOARD_GRABBED)
|
||||
#else
|
||||
|| !(windowFlags & SDL_WINDOW_INPUT_GRABBED)
|
||||
#endif
|
||||
)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -396,7 +378,7 @@ void SdlInputHandler::setCaptureActive(bool active)
|
||||
if (m_AbsoluteMouseMode || SDL_SetRelativeMouseMode(SDL_TRUE) < 0) {
|
||||
// Relative mouse mode didn't work or was disabled, so we'll just hide the cursor
|
||||
SDL_ShowCursor(m_MouseCursorCapturedVisibilityState);
|
||||
m_FakeMouseCaptureActive = true;
|
||||
m_FakeCaptureActive = true;
|
||||
}
|
||||
|
||||
// Synchronize the client and host cursor when activating absolute capture
|
||||
@@ -426,10 +408,10 @@ void SdlInputHandler::setCaptureActive(bool active)
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (m_FakeMouseCaptureActive) {
|
||||
if (m_FakeCaptureActive) {
|
||||
// Display the cursor again
|
||||
SDL_ShowCursor(SDL_ENABLE);
|
||||
m_FakeMouseCaptureActive = false;
|
||||
m_FakeCaptureActive = false;
|
||||
}
|
||||
else {
|
||||
SDL_SetRelativeMouseMode(SDL_FALSE);
|
||||
|
||||
@@ -167,7 +167,6 @@ private:
|
||||
KeyComboPasteText,
|
||||
KeyComboTogglePointerRegionLock,
|
||||
KeyComboQuitAndExit,
|
||||
KeyComboToggleKeyboardGrab,
|
||||
KeyComboMax
|
||||
};
|
||||
|
||||
@@ -210,7 +209,6 @@ private:
|
||||
bool m_ReverseScrollDirection;
|
||||
bool m_SwapFaceButtons;
|
||||
|
||||
bool m_NeedsManualCaptureOnLeave;
|
||||
bool m_MouseWasInVideoRegion;
|
||||
bool m_PendingMouseButtonsAllUpOnVideoRegionLeave;
|
||||
bool m_PointerRegionLockActive;
|
||||
@@ -219,8 +217,7 @@ private:
|
||||
int m_GamepadMask;
|
||||
GamepadState m_GamepadState[MAX_GAMEPADS];
|
||||
QSet<short> m_KeysDown;
|
||||
bool m_FakeMouseCaptureActive;
|
||||
bool m_KeyboardCaptureActive;
|
||||
bool m_FakeCaptureActive;
|
||||
QString m_OldIgnoreDevices;
|
||||
QString m_OldIgnoreDevicesExcept;
|
||||
QStringList m_IgnoreDeviceGuids;
|
||||
|
||||
@@ -153,21 +153,6 @@ void SdlInputHandler::performSpecialKeyCombo(KeyCombo combo)
|
||||
SDL_PushEvent(&quitExitEvent);
|
||||
break;
|
||||
|
||||
case KeyComboToggleKeyboardGrab:
|
||||
SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"Detected keyboard grab toggle combo");
|
||||
|
||||
// Toggle the system key capture mode
|
||||
if (isSystemKeyCaptureActive()) {
|
||||
m_CaptureSystemKeysMode = StreamingPreferences::CSK_OFF;
|
||||
}
|
||||
else {
|
||||
m_CaptureSystemKeysMode = StreamingPreferences::CSK_ALWAYS;
|
||||
}
|
||||
|
||||
updateKeyboardGrabState();
|
||||
break;
|
||||
|
||||
default:
|
||||
Q_UNREACHABLE();
|
||||
}
|
||||
|
||||
@@ -128,10 +128,8 @@ void SdlInputHandler::handleMouseMotionEvent(SDL_MouseMotionEvent* event)
|
||||
Uint32 buttonState = SDL_GetMouseState(nullptr, nullptr);
|
||||
if (buttonState == 0) {
|
||||
if (m_PendingMouseButtonsAllUpOnVideoRegionLeave) {
|
||||
if (m_NeedsManualCaptureOnLeave) {
|
||||
// Stop capturing the mouse now
|
||||
SDL_CaptureMouse(SDL_FALSE);
|
||||
}
|
||||
// Stop capturing the mouse now
|
||||
SDL_CaptureMouse(SDL_FALSE);
|
||||
m_PendingMouseButtonsAllUpOnVideoRegionLeave = false;
|
||||
}
|
||||
}
|
||||
@@ -195,7 +193,7 @@ void SdlInputHandler::handleMouseWheelEvent(SDL_MouseWheelEvent* event)
|
||||
if (event->preciseX != 0.0f) {
|
||||
// Invert the scroll direction if needed
|
||||
if (m_ReverseScrollDirection) {
|
||||
event->preciseX = -event->preciseX;
|
||||
event->preciseX = -event->preciseY;
|
||||
}
|
||||
|
||||
#ifdef Q_OS_DARWIN
|
||||
|
||||
@@ -276,7 +276,6 @@ void Session::clSetAdaptiveTriggers(uint16_t controllerNumber, uint8_t eventFlag
|
||||
|
||||
|
||||
bool Session::chooseDecoder(StreamingPreferences::VideoDecoderSelection vds,
|
||||
StreamingPreferences::RendererSelection renderer,
|
||||
SDL_Window* window, int videoFormat, int width, int height,
|
||||
int frameRate, bool enableVsync, bool enableFramePacing, bool testOnly, IVideoDecoder*& chosenDecoder)
|
||||
{
|
||||
@@ -296,7 +295,6 @@ bool Session::chooseDecoder(StreamingPreferences::VideoDecoderSelection vds,
|
||||
params.enableFramePacing = enableFramePacing;
|
||||
params.testOnly = testOnly;
|
||||
params.vds = vds;
|
||||
params.renderer = renderer;
|
||||
|
||||
SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"V-sync %s",
|
||||
@@ -398,7 +396,6 @@ void Session::getDecoderInfo(SDL_Window* window,
|
||||
|
||||
// Try an HEVC Main10 decoder first to see if we have HDR support
|
||||
if (chooseDecoder(StreamingPreferences::VDS_FORCE_HARDWARE,
|
||||
StreamingPreferences::RS_PROBE_ONLY,
|
||||
window, VIDEO_FORMAT_H265_MAIN10, 1920, 1080, 60,
|
||||
false, false, true, decoder)) {
|
||||
isHardwareAccelerated = decoder->isHardwareAccelerated();
|
||||
@@ -412,7 +409,6 @@ void Session::getDecoderInfo(SDL_Window* window,
|
||||
|
||||
// Try an AV1 Main10 decoder next to see if we have HDR support
|
||||
if (chooseDecoder(StreamingPreferences::VDS_FORCE_HARDWARE,
|
||||
StreamingPreferences::RS_PROBE_ONLY,
|
||||
window, VIDEO_FORMAT_AV1_MAIN10, 1920, 1080, 60,
|
||||
false, false, true, decoder)) {
|
||||
// If we've got a working AV1 Main 10-bit decoder, we'll enable the HDR checkbox
|
||||
@@ -425,11 +421,9 @@ void Session::getDecoderInfo(SDL_Window* window,
|
||||
// If we found no hardware decoders with HDR, check for a renderer
|
||||
// that supports HDR rendering with software decoded frames.
|
||||
if (chooseDecoder(StreamingPreferences::VDS_FORCE_SOFTWARE,
|
||||
StreamingPreferences::RS_PROBE_ONLY,
|
||||
window, VIDEO_FORMAT_H265_MAIN10, 1920, 1080, 60,
|
||||
false, false, true, decoder) ||
|
||||
chooseDecoder(StreamingPreferences::VDS_FORCE_SOFTWARE,
|
||||
StreamingPreferences::RS_PROBE_ONLY,
|
||||
window, VIDEO_FORMAT_AV1_MAIN10, 1920, 1080, 60,
|
||||
false, false, true, decoder)) {
|
||||
isHdrSupported = decoder->isHdrSupported();
|
||||
@@ -444,7 +438,6 @@ void Session::getDecoderInfo(SDL_Window* window,
|
||||
|
||||
// Try a regular hardware accelerated HEVC decoder now
|
||||
if (chooseDecoder(StreamingPreferences::VDS_FORCE_HARDWARE,
|
||||
StreamingPreferences::RS_PROBE_ONLY,
|
||||
window, VIDEO_FORMAT_H265, 1920, 1080, 60,
|
||||
false, false, true, decoder)) {
|
||||
isHardwareAccelerated = decoder->isHardwareAccelerated();
|
||||
@@ -458,7 +451,6 @@ void Session::getDecoderInfo(SDL_Window* window,
|
||||
|
||||
#if 0 // See AV1 comment at the top of this function
|
||||
if (chooseDecoder(StreamingPreferences::VDS_FORCE_HARDWARE,
|
||||
StreamingPreferences::RS_PROBE_ONLY,
|
||||
window, VIDEO_FORMAT_AV1_MAIN8, 1920, 1080, 60,
|
||||
false, false, true, decoder)) {
|
||||
isHardwareAccelerated = decoder->isHardwareAccelerated();
|
||||
@@ -473,7 +465,6 @@ void Session::getDecoderInfo(SDL_Window* window,
|
||||
// If we still didn't find a hardware decoder, try H.264 now.
|
||||
// This will fall back to software decoding, so it should always work.
|
||||
if (chooseDecoder(StreamingPreferences::VDS_AUTO,
|
||||
StreamingPreferences::RS_PROBE_ONLY,
|
||||
window, VIDEO_FORMAT_H264, 1920, 1080, 60,
|
||||
false, false, true, decoder)) {
|
||||
isHardwareAccelerated = decoder->isHardwareAccelerated();
|
||||
@@ -495,10 +486,7 @@ Session::getDecoderAvailability(SDL_Window* window,
|
||||
{
|
||||
IVideoDecoder* decoder;
|
||||
|
||||
if (!chooseDecoder(vds,
|
||||
StreamingPreferences::RS_PROBE_ONLY,
|
||||
window, videoFormat, width, height, frameRate,
|
||||
false, false, true, decoder)) {
|
||||
if (!chooseDecoder(vds, window, videoFormat, width, height, frameRate, false, false, true, decoder)) {
|
||||
return DecoderAvailability::None;
|
||||
}
|
||||
|
||||
@@ -513,12 +501,7 @@ bool Session::populateDecoderProperties(SDL_Window* window)
|
||||
{
|
||||
IVideoDecoder* decoder;
|
||||
|
||||
// NB: We pass the real renderer selection rather than RS_PROBE_ONLY
|
||||
// here because this is operating on the real streaming window, and
|
||||
// instantiating Metal or AVSBDL renderers can interfere with MoltenVK's
|
||||
// attempt to change the window's colorspace, causing washed out colors.
|
||||
if (!chooseDecoder(m_Preferences->videoDecoderSelection,
|
||||
m_Preferences->rendererSelection,
|
||||
window,
|
||||
m_SupportedVideoFormats.first(),
|
||||
m_StreamConfig.width,
|
||||
@@ -649,12 +632,6 @@ bool Session::initialize(QQuickWindow* qtWindow)
|
||||
return false;
|
||||
}
|
||||
|
||||
// Stop text input. SDL enables it by default
|
||||
// when we initialize the video subsystem, but this
|
||||
// causes an IME popup when certain keys are held down
|
||||
// on macOS.
|
||||
SDL_StopTextInput();
|
||||
|
||||
LiInitializeStreamConfiguration(&m_StreamConfig);
|
||||
m_StreamConfig.width = m_Preferences->width;
|
||||
m_StreamConfig.height = m_Preferences->height;
|
||||
@@ -1930,6 +1907,12 @@ void Session::exec()
|
||||
}
|
||||
}
|
||||
|
||||
// Stop text input. SDL enables it by default
|
||||
// when we initialize the video subsystem, but this
|
||||
// causes an IME popup when certain keys are held down
|
||||
// on macOS.
|
||||
SDL_StopTextInput();
|
||||
|
||||
// Disable the screen saver if requested
|
||||
if (m_Preferences->keepAwake) {
|
||||
SDL_DisableScreenSaver();
|
||||
@@ -2209,7 +2192,6 @@ void Session::exec()
|
||||
// Choose a new decoder (hopefully the same one, but possibly
|
||||
// not if a GPU was removed or something).
|
||||
if (!chooseDecoder(m_Preferences->videoDecoderSelection,
|
||||
m_Preferences->rendererSelection,
|
||||
m_Window, m_ActiveVideoFormat, m_ActiveVideoWidth,
|
||||
m_ActiveVideoHeight, m_ActiveVideoFrameRate,
|
||||
enableVsync,
|
||||
|
||||
@@ -184,7 +184,6 @@ private:
|
||||
|
||||
static
|
||||
bool chooseDecoder(StreamingPreferences::VideoDecoderSelection vds,
|
||||
StreamingPreferences::RendererSelection renderer,
|
||||
SDL_Window* window, int videoFormat, int width, int height,
|
||||
int frameRate, bool enableVsync, bool enableFramePacing,
|
||||
bool testOnly,
|
||||
|
||||
@@ -74,12 +74,11 @@ static int __riscv_hwprobe(struct riscv_hwprobe *pairs, size_t pair_count,
|
||||
|
||||
Uint32 StreamUtils::getPlatformWindowFlags()
|
||||
{
|
||||
#if defined(HAVE_LIBPLACEBO_VULKAN)
|
||||
#if defined(Q_OS_DARWIN)
|
||||
return SDL_WINDOW_METAL;
|
||||
#elif defined(HAVE_LIBPLACEBO_VULKAN)
|
||||
// We'll fall back to GL if Vulkan fails
|
||||
return SDL_WINDOW_VULKAN;
|
||||
#elif defined(Q_OS_DARWIN)
|
||||
// Vulkan needs to supersede Metal, otherwise the Vulkan library won't be loaded
|
||||
return SDL_WINDOW_METAL;
|
||||
#else
|
||||
return 0;
|
||||
#endif
|
||||
@@ -90,11 +89,6 @@ SDL_Window* StreamUtils::createTestWindow()
|
||||
SDL_Window* testWindow;
|
||||
Uint32 baseFlags = 0;
|
||||
|
||||
// Stop text input before creating the test window to avoid sdl2-compat
|
||||
// starting text input on the new window. This might trigger the IME to
|
||||
// be displayed.
|
||||
SDL_StopTextInput();
|
||||
|
||||
// Test windows are always hidden
|
||||
baseFlags |= SDL_WINDOW_HIDDEN;
|
||||
|
||||
|
||||
@@ -36,7 +36,6 @@ typedef struct _VIDEO_STATS {
|
||||
typedef struct _DECODER_PARAMETERS {
|
||||
SDL_Window* window;
|
||||
StreamingPreferences::VideoDecoderSelection vds;
|
||||
StreamingPreferences::RendererSelection renderer;
|
||||
|
||||
int videoFormat;
|
||||
int width;
|
||||
|
||||
@@ -74,7 +74,6 @@ extern "C" {
|
||||
#include <Limelight.h>
|
||||
|
||||
#include <map>
|
||||
#include <unordered_set>
|
||||
|
||||
#ifdef HAVE_DRM_MASTER_HOOKS
|
||||
extern "C" {
|
||||
@@ -163,6 +162,9 @@ DrmRenderer::DrmRenderer(AVHWDeviceType hwDeviceType, IFFmpegRenderer *backendRe
|
||||
m_OutputRect{},
|
||||
m_SwFrameMapper(this),
|
||||
m_CurrentSwFrameIdx(0)
|
||||
#ifdef HAVE_EGL
|
||||
, m_EglImageFactory(this)
|
||||
#endif
|
||||
{
|
||||
SDL_zero(m_SwFrame);
|
||||
}
|
||||
@@ -1748,7 +1750,6 @@ bool DrmRenderer::addFbForFrame(AVFrame *frame, uint32_t* newFbId, bool testMode
|
||||
uint32_t offsets[4] = {};
|
||||
uint64_t modifiers[4] = {};
|
||||
uint32_t flags = 0;
|
||||
std::unordered_set<uint32_t> handleSet;
|
||||
|
||||
// DRM requires composed layers rather than separate layers per plane
|
||||
SDL_assert(drmFrame->nb_layers == 1);
|
||||
@@ -1762,16 +1763,9 @@ bool DrmRenderer::addFbForFrame(AVFrame *frame, uint32_t* newFbId, bool testMode
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"drmPrimeFDToHandle() failed: %d",
|
||||
errno);
|
||||
for (uint32_t handle : handleSet) {
|
||||
drmCloseBufferHandle(m_DrmFd, handle);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// Handles aren't unique for calls with the same FD, so we need to
|
||||
// keep track of only the unique handles to avoid double-closing.
|
||||
handleSet.emplace(handles[i]);
|
||||
|
||||
pitches[i] = layer.planes[i].pitch;
|
||||
offsets[i] = layer.planes[i].offset;
|
||||
modifiers[i] = object.format_modifier;
|
||||
@@ -1790,12 +1784,6 @@ bool DrmRenderer::addFbForFrame(AVFrame *frame, uint32_t* newFbId, bool testMode
|
||||
handles, pitches, offsets,
|
||||
(flags & DRM_MODE_FB_MODIFIERS) ? modifiers : NULL,
|
||||
newFbId, flags);
|
||||
|
||||
// Handles can be closed immediately after drmModeAddFB2WithModifiers()
|
||||
for (uint32_t handle : handleSet) {
|
||||
drmCloseBufferHandle(m_DrmFd, handle);
|
||||
}
|
||||
|
||||
if (err < 0) {
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"drmModeAddFB2[WithModifiers]() failed: %d",
|
||||
@@ -2016,22 +2004,6 @@ int DrmRenderer::getDecoderColorspace()
|
||||
return COLORSPACE_REC_601;
|
||||
}
|
||||
|
||||
int DrmRenderer::getDecoderColorRange()
|
||||
{
|
||||
if (auto prop = m_VideoPlane.property("COLOR_RANGE")) {
|
||||
// Prefer full range if the video plane supports it
|
||||
if (prop->containsValue("YCbCr full range")) {
|
||||
return COLOR_RANGE_FULL;
|
||||
}
|
||||
else if (prop->containsValue("YCbCr limited range")) {
|
||||
return COLOR_RANGE_LIMITED;
|
||||
}
|
||||
}
|
||||
|
||||
// Default to limited if we couldn't find a valid COLOR_RANGE property
|
||||
return COLOR_RANGE_LIMITED;
|
||||
}
|
||||
|
||||
const char* DrmRenderer::getDrmColorEncodingValue(AVFrame* frame)
|
||||
{
|
||||
switch (getFrameColorspace(frame)) {
|
||||
@@ -2097,10 +2069,9 @@ AVPixelFormat DrmRenderer::getEGLImagePixelFormat() {
|
||||
return AV_PIX_FMT_DRM_PRIME;
|
||||
}
|
||||
|
||||
bool DrmRenderer::initializeEGL(IFFmpegRenderer* eglRenderer,
|
||||
EGLDisplay display,
|
||||
bool DrmRenderer::initializeEGL(EGLDisplay display,
|
||||
const EGLExtensions &ext) {
|
||||
return m_EglImageFactory.initializeEGL(eglRenderer, display, ext);
|
||||
return m_EglImageFactory.initializeEGL(display, ext);
|
||||
}
|
||||
|
||||
ssize_t DrmRenderer::exportEGLImages(AVFrame *frame, EGLDisplay dpy,
|
||||
|
||||
@@ -588,7 +588,7 @@ class DrmRenderer : public IFFmpegRenderer {
|
||||
|
||||
bool apply() {
|
||||
if (!m_Atomic) {
|
||||
return true;
|
||||
return 0;
|
||||
}
|
||||
|
||||
drmModeAtomicReqPtr req = nullptr;
|
||||
@@ -770,13 +770,12 @@ public:
|
||||
virtual bool testRenderFrame(AVFrame* frame) override;
|
||||
virtual bool isDirectRenderingSupported() override;
|
||||
virtual int getDecoderColorspace() override;
|
||||
virtual int getDecoderColorRange() override;
|
||||
virtual void setHdrMode(bool enabled) override;
|
||||
virtual void notifyOverlayUpdated(Overlay::OverlayType type) override;
|
||||
#ifdef HAVE_EGL
|
||||
virtual bool canExportEGL() override;
|
||||
virtual AVPixelFormat getEGLImagePixelFormat() override;
|
||||
virtual bool initializeEGL(IFFmpegRenderer* eglRenderer, EGLDisplay dpy, const EGLExtensions &ext) override;
|
||||
virtual bool initializeEGL(EGLDisplay dpy, const EGLExtensions &ext) override;
|
||||
virtual ssize_t exportEGLImages(AVFrame *frame, EGLDisplay dpy, EGLImage images[EGL_MAX_PLANES]) override;
|
||||
#endif
|
||||
|
||||
|
||||
@@ -784,14 +784,6 @@ int DXVA2Renderer::getDecoderColorspace()
|
||||
}
|
||||
}
|
||||
|
||||
int DXVA2Renderer::getDecoderColorRange()
|
||||
{
|
||||
// StretchRect() assumes limited range on Intel and Qualcomm GPUs.
|
||||
// VideoProcessBlt() should handle either fine, but let's not take
|
||||
// chances on potentially broken DXVA2 GPU drivers for little gain.
|
||||
return COLOR_RANGE_LIMITED;
|
||||
}
|
||||
|
||||
int DXVA2Renderer::getDecoderCapabilities()
|
||||
{
|
||||
return CAPABILITY_REFERENCE_FRAME_INVALIDATION_HEVC |
|
||||
|
||||
@@ -18,7 +18,6 @@ public:
|
||||
virtual void renderFrame(AVFrame* frame) override;
|
||||
virtual void notifyOverlayUpdated(Overlay::OverlayType type) override;
|
||||
virtual int getDecoderColorspace() override;
|
||||
virtual int getDecoderColorRange() override;
|
||||
virtual int getDecoderCapabilities() override;
|
||||
|
||||
private:
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
#define DRM_FORMAT_GR88 fourcc_code('G', 'R', '8', '8')
|
||||
#endif
|
||||
|
||||
EglImageFactory::EglImageFactory() :
|
||||
m_Renderer(nullptr),
|
||||
EglImageFactory::EglImageFactory(IFFmpegRenderer* renderer) :
|
||||
m_Renderer(renderer),
|
||||
m_EGLExtDmaBuf(false),
|
||||
m_eglCreateImage(nullptr),
|
||||
m_eglDestroyImage(nullptr),
|
||||
@@ -36,16 +36,9 @@ EglImageFactory::EglImageFactory() :
|
||||
{
|
||||
}
|
||||
|
||||
bool EglImageFactory::initializeEGL(IFFmpegRenderer* eglRenderer,
|
||||
EGLDisplay,
|
||||
bool EglImageFactory::initializeEGL(EGLDisplay,
|
||||
const EGLExtensions &ext)
|
||||
{
|
||||
// The EGL renderer is guaranteed to be alive for any calls to this factory,
|
||||
// since it's the one that calls exportEGLImages() on the backend renderer.
|
||||
SDL_assert(eglRenderer->getRendererType() == IFFmpegRenderer::RendererType::EGL);
|
||||
SDL_assert(!m_Renderer);
|
||||
m_Renderer = eglRenderer;
|
||||
|
||||
if (!ext.isSupported("EGL_EXT_image_dma_buf_import")) {
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"DRM-EGL: DMABUF unsupported");
|
||||
@@ -82,8 +75,6 @@ void EglImageFactory::resetCache()
|
||||
|
||||
ssize_t EglImageFactory::exportDRMImages(AVFrame* frame, EGLDisplay dpy, EGLImage images[EGL_MAX_PLANES])
|
||||
{
|
||||
SDL_assert(m_Renderer);
|
||||
|
||||
SDL_assert(frame->format == AV_PIX_FMT_DRM_PRIME);
|
||||
AVDRMFrameDescriptor* drmFrame = (AVDRMFrameDescriptor*)frame->data[0];
|
||||
|
||||
@@ -273,8 +264,6 @@ ssize_t EglImageFactory::exportDRMImages(AVFrame* frame, EGLDisplay dpy, EGLImag
|
||||
|
||||
ssize_t EglImageFactory::exportVAImages(AVFrame *frame, uint32_t exportFlags, EGLDisplay dpy, EGLImage images[EGL_MAX_PLANES])
|
||||
{
|
||||
SDL_assert(m_Renderer);
|
||||
|
||||
SDL_assert(frame->format == AV_PIX_FMT_VAAPI);
|
||||
auto hwFrameCtx = (AVHWFramesContext*)frame->hw_frames_ctx->data;
|
||||
AVVAAPIDeviceContext* vaDeviceContext = (AVVAAPIDeviceContext*)hwFrameCtx->device_ctx->hwctx;
|
||||
|
||||
@@ -41,8 +41,8 @@ class EglImageFactory
|
||||
};
|
||||
|
||||
public:
|
||||
EglImageFactory();
|
||||
bool initializeEGL(IFFmpegRenderer* eglRenderer, EGLDisplay, const EGLExtensions &ext);
|
||||
EglImageFactory(IFFmpegRenderer* renderer);
|
||||
bool initializeEGL(EGLDisplay, const EGLExtensions &ext);
|
||||
void resetCache();
|
||||
|
||||
#ifdef HAVE_DRM
|
||||
|
||||
@@ -523,7 +523,7 @@ bool EGLRenderer::initialize(PDECODER_PARAMETERS params)
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!m_Backend->initializeEGL(this, m_EGLDisplay, eglExtensions))
|
||||
if (!m_Backend->initializeEGL(m_EGLDisplay, eglExtensions))
|
||||
return false;
|
||||
|
||||
if (!(m_glEGLImageTargetTexture2DOES = (typeof(m_glEGLImageTargetTexture2DOES))eglGetProcAddress("glEGLImageTargetTexture2DOES"))) {
|
||||
@@ -627,8 +627,6 @@ bool EGLRenderer::setupVideoRenderingState() {
|
||||
glGenTextures(EGL_MAX_PLANES, m_Textures);
|
||||
for (size_t i = 0; i < EGL_MAX_PLANES; ++i) {
|
||||
glBindTexture(GL_TEXTURE_EXTERNAL_OES, m_Textures[i]);
|
||||
glTexParameteri(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
||||
glTexParameteri(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
||||
glTexParameteri(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
||||
glTexParameteri(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
||||
}
|
||||
@@ -786,6 +784,16 @@ void EGLRenderer::renderFrame(AVFrame* frame)
|
||||
}
|
||||
}
|
||||
|
||||
int drawableWidth, drawableHeight;
|
||||
SDL_GL_GetDrawableSize(m_Window, &drawableWidth, &drawableHeight);
|
||||
SDL_Rect src, dst;
|
||||
src.x = src.y = dst.x = dst.y = 0;
|
||||
src.w = frame->width;
|
||||
src.h = frame->height;
|
||||
dst.w = drawableWidth;
|
||||
dst.h = drawableHeight;
|
||||
StreamUtils::scaleSourceToDestinationSurface(&src, &dst);
|
||||
|
||||
ssize_t plane_count = m_Backend->exportEGLImages(frame, m_EGLDisplay, imgs);
|
||||
if (plane_count < 0)
|
||||
return;
|
||||
@@ -793,6 +801,16 @@ void EGLRenderer::renderFrame(AVFrame* frame)
|
||||
glActiveTexture(GL_TEXTURE0 + i);
|
||||
glBindTexture(GL_TEXTURE_EXTERNAL_OES, m_Textures[i]);
|
||||
m_glEGLImageTargetTexture2DOES(GL_TEXTURE_EXTERNAL_OES, imgs[i]);
|
||||
|
||||
// Use GL_NEAREST to reduce sampling if the video region is a multiple of the frame size
|
||||
if (dst.w % frame->width == 0 && dst.h % frame->height == 0) {
|
||||
glTexParameteri(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
||||
glTexParameteri(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
||||
}
|
||||
else {
|
||||
glTexParameteri(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
||||
glTexParameteri(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
||||
}
|
||||
}
|
||||
|
||||
// We already called glClear() after last frame's SDL_GL_SwapWindow()
|
||||
@@ -801,17 +819,7 @@ void EGLRenderer::renderFrame(AVFrame* frame)
|
||||
glClear(GL_COLOR_BUFFER_BIT);
|
||||
}
|
||||
|
||||
int drawableWidth, drawableHeight;
|
||||
SDL_GL_GetDrawableSize(m_Window, &drawableWidth, &drawableHeight);
|
||||
|
||||
// Set the viewport to the size of the aspect-ratio-scaled video
|
||||
SDL_Rect src, dst;
|
||||
src.x = src.y = dst.x = dst.y = 0;
|
||||
src.w = frame->width;
|
||||
src.h = frame->height;
|
||||
dst.w = drawableWidth;
|
||||
dst.h = drawableHeight;
|
||||
StreamUtils::scaleSourceToDestinationSurface(&src, &dst);
|
||||
glViewport(dst.x, dst.y, dst.w, dst.h);
|
||||
|
||||
glUseProgram(m_ShaderProgram);
|
||||
|
||||
@@ -242,12 +242,6 @@ int MmalRenderer::getDecoderColorspace()
|
||||
return COLORSPACE_REC_709;
|
||||
}
|
||||
|
||||
int MmalRenderer::getDecoderColorRange()
|
||||
{
|
||||
// MMAL_COLOR_SPACE_ITUR_BT709 assumes limited range content
|
||||
return COLOR_RANGE_LIMITED;
|
||||
}
|
||||
|
||||
void MmalRenderer::InputPortCallback(MMAL_PORT_T*, MMAL_BUFFER_HEADER_T* buffer)
|
||||
{
|
||||
mmal_buffer_header_release(buffer);
|
||||
|
||||
@@ -18,7 +18,6 @@ public:
|
||||
virtual enum AVPixelFormat getPreferredPixelFormat(int videoFormat) override;
|
||||
virtual int getRendererAttributes() override;
|
||||
virtual int getDecoderColorspace() override;
|
||||
virtual int getDecoderColorRange() override;
|
||||
|
||||
private:
|
||||
static void InputPortCallback(MMAL_PORT_T* port, MMAL_BUFFER_HEADER_T* buffer);
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
#include <SDL_vulkan.h>
|
||||
|
||||
extern "C" {
|
||||
#include <libavutil/hwcontext_drm.h>
|
||||
#include <libavutil/hwcontext_vulkan.h>
|
||||
}
|
||||
|
||||
@@ -135,10 +134,10 @@ void PlVkRenderer::overlayUploadComplete(void* opaque)
|
||||
SDL_FreeSurface((SDL_Surface*)opaque);
|
||||
}
|
||||
|
||||
PlVkRenderer::PlVkRenderer(AVHWDeviceType hwDeviceType, IFFmpegRenderer *backendRenderer) :
|
||||
PlVkRenderer::PlVkRenderer(bool hwaccel, IFFmpegRenderer *backendRenderer) :
|
||||
IFFmpegRenderer(RendererType::Vulkan),
|
||||
m_Backend(backendRenderer),
|
||||
m_HwDeviceType(hwDeviceType)
|
||||
m_HwAccelBackend(hwaccel)
|
||||
{
|
||||
bool ok;
|
||||
|
||||
@@ -162,10 +161,6 @@ PlVkRenderer::~PlVkRenderer()
|
||||
SDL_assert(!m_HasPendingSwapchainFrame);
|
||||
|
||||
if (m_Vulkan != nullptr) {
|
||||
#ifdef PLVK_USE_EARLY_RENDER_TO_WAIT
|
||||
pl_tex_destroy(m_Vulkan->gpu, &m_EmptyOverlay.tex);
|
||||
#endif
|
||||
|
||||
for (int i = 0; i < (int)SDL_arraysize(m_Overlays); i++) {
|
||||
pl_tex_destroy(m_Vulkan->gpu, &m_Overlays[i].overlay.tex);
|
||||
pl_tex_destroy(m_Vulkan->gpu, &m_Overlays[i].stagingOverlay.tex);
|
||||
@@ -182,9 +177,6 @@ PlVkRenderer::~PlVkRenderer()
|
||||
|
||||
pl_renderer_destroy(&m_Renderer);
|
||||
pl_swapchain_destroy(&m_Swapchain);
|
||||
#ifdef Q_OS_DARWIN
|
||||
m_MetalTextureFactory.reset();
|
||||
#endif
|
||||
pl_vulkan_destroy(&m_Vulkan);
|
||||
|
||||
// This surface was created by SDL, so there's no libplacebo API to destroy it
|
||||
@@ -192,7 +184,10 @@ PlVkRenderer::~PlVkRenderer()
|
||||
fn_vkDestroySurfaceKHR(m_PlVkInstance->instance, m_VkSurface, nullptr);
|
||||
}
|
||||
|
||||
av_buffer_unref(&m_HwDeviceCtx);
|
||||
if (m_HwDeviceCtx != nullptr) {
|
||||
av_buffer_unref(&m_HwDeviceCtx);
|
||||
}
|
||||
|
||||
pl_vk_inst_destroy(&m_PlVkInstance);
|
||||
}
|
||||
|
||||
@@ -292,8 +287,20 @@ bool PlVkRenderer::tryInitializeDevice(VkPhysicalDevice device, VkPhysicalDevice
|
||||
return false;
|
||||
}
|
||||
|
||||
#ifdef Q_OS_WIN32
|
||||
// Intel's Windows drivers seem to have interoperability issues as of FFmpeg 7.0.1
|
||||
// when using Vulkan Video decoding. Since they also expose HEVC REXT profiles using
|
||||
// D3D11VA, let's reject them here so we can select a different Vulkan device or
|
||||
// just allow D3D11VA to take over.
|
||||
if (m_HwAccelBackend && deviceProps->vendorID == 0x8086 && !qEnvironmentVariableIntValue("PLVK_ALLOW_INTEL")) {
|
||||
SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"Skipping Intel GPU for Vulkan Video due to broken drivers");
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
|
||||
// If we're acting as the decoder backend, we need a physical device with Vulkan video support
|
||||
if (m_HwDeviceType == AV_HWDEVICE_TYPE_VULKAN) {
|
||||
if (m_HwAccelBackend) {
|
||||
const char* videoDecodeExtension;
|
||||
|
||||
if (decoderParams->videoFormat & VIDEO_FORMAT_MASK_H264) {
|
||||
@@ -323,18 +330,6 @@ bool PlVkRenderer::tryInitializeDevice(VkPhysicalDevice device, VkPhysicalDevice
|
||||
videoDecodeExtension);
|
||||
return false;
|
||||
}
|
||||
|
||||
#ifdef Q_OS_WIN32
|
||||
// Intel's Windows drivers seem to have interoperability issues as of FFmpeg 7.0.1
|
||||
// when using Vulkan Video decoding. Since they also expose HEVC REXT profiles using
|
||||
// D3D11VA, let's reject them here so we can select a different Vulkan device or
|
||||
// just allow D3D11VA to take over.
|
||||
if (deviceProps->vendorID == 0x8086 && !qEnvironmentVariableIntValue("PLVK_ALLOW_INTEL")) {
|
||||
SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"Skipping Intel GPU for Vulkan Video due to broken drivers");
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
if (!isSurfacePresentationSupportedByPhysicalDevice(device)) {
|
||||
@@ -364,16 +359,13 @@ bool PlVkRenderer::tryInitializeDevice(VkPhysicalDevice device, VkPhysicalDevice
|
||||
vkParams.get_proc_addr = m_PlVkInstance->get_proc_addr;
|
||||
vkParams.surface = m_VkSurface;
|
||||
vkParams.device = device;
|
||||
|
||||
if (m_HwDeviceType == AV_HWDEVICE_TYPE_VULKAN) {
|
||||
#if LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(60, 26, 100)
|
||||
vkParams.opt_extensions = av_vk_get_optional_device_extensions(&vkParams.num_opt_extensions);
|
||||
vkParams.opt_extensions = av_vk_get_optional_device_extensions(&vkParams.num_opt_extensions);
|
||||
#else
|
||||
vkParams.opt_extensions = k_OptionalDeviceExtensions;
|
||||
vkParams.num_opt_extensions = SDL_arraysize(k_OptionalDeviceExtensions);
|
||||
vkParams.opt_extensions = k_OptionalDeviceExtensions;
|
||||
vkParams.num_opt_extensions = SDL_arraysize(k_OptionalDeviceExtensions);
|
||||
#endif
|
||||
vkParams.extra_queues = VK_QUEUE_FLAG_BITS_MAX_ENUM;
|
||||
}
|
||||
vkParams.extra_queues = m_HwAccelBackend ? VK_QUEUE_FLAG_BITS_MAX_ENUM : 0;
|
||||
|
||||
{
|
||||
// Don't let Qt take DRM master from us during pl_vulkan_create()
|
||||
@@ -426,7 +418,6 @@ bool PlVkRenderer::isExtensionSupportedByPhysicalDevice(VkPhysicalDevice device,
|
||||
bool PlVkRenderer::initialize(PDECODER_PARAMETERS params)
|
||||
{
|
||||
m_Window = params->window;
|
||||
m_MaxVideoFps = params->frameRate;
|
||||
|
||||
unsigned int instanceExtensionCount = 0;
|
||||
if (!SDL_Vulkan_GetInstanceExtensions(params->window, &instanceExtensionCount, nullptr)) {
|
||||
@@ -494,17 +485,18 @@ bool PlVkRenderer::initialize(PDECODER_PARAMETERS params)
|
||||
return false;
|
||||
}
|
||||
|
||||
VkPresentModeKHR presentMode;
|
||||
if (params->enableVsync) {
|
||||
// FIFO mode improves frame pacing compared with Mailbox, especially for
|
||||
// platforms like X11 that lack a VSyncSource implementation for Pacer.
|
||||
m_VkPresentMode = VK_PRESENT_MODE_FIFO_KHR;
|
||||
presentMode = VK_PRESENT_MODE_FIFO_KHR;
|
||||
}
|
||||
else {
|
||||
// We want immediate mode for V-Sync disabled if possible
|
||||
if (isPresentModeSupportedByPhysicalDevice(m_Vulkan->phys_device, VK_PRESENT_MODE_IMMEDIATE_KHR)) {
|
||||
SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"Using Immediate present mode with V-Sync disabled");
|
||||
m_VkPresentMode = VK_PRESENT_MODE_IMMEDIATE_KHR;
|
||||
presentMode = VK_PRESENT_MODE_IMMEDIATE_KHR;
|
||||
}
|
||||
else {
|
||||
SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION,
|
||||
@@ -514,26 +506,41 @@ bool PlVkRenderer::initialize(PDECODER_PARAMETERS params)
|
||||
if (isPresentModeSupportedByPhysicalDevice(m_Vulkan->phys_device, VK_PRESENT_MODE_FIFO_RELAXED_KHR)) {
|
||||
SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"Using FIFO Relaxed present mode with V-Sync disabled");
|
||||
m_VkPresentMode = VK_PRESENT_MODE_FIFO_RELAXED_KHR;
|
||||
presentMode = VK_PRESENT_MODE_FIFO_RELAXED_KHR;
|
||||
}
|
||||
// Mailbox at least provides non-blocking behavior
|
||||
else if (isPresentModeSupportedByPhysicalDevice(m_Vulkan->phys_device, VK_PRESENT_MODE_MAILBOX_KHR)) {
|
||||
SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"Using Mailbox present mode with V-Sync disabled");
|
||||
m_VkPresentMode = VK_PRESENT_MODE_MAILBOX_KHR;
|
||||
presentMode = VK_PRESENT_MODE_MAILBOX_KHR;
|
||||
}
|
||||
// FIFO is always supported
|
||||
else {
|
||||
SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"Using FIFO present mode with V-Sync disabled");
|
||||
m_VkPresentMode = VK_PRESENT_MODE_FIFO_KHR;
|
||||
presentMode = VK_PRESENT_MODE_FIFO_KHR;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Start with a swapchain that is double-buffered for lowest display latency
|
||||
if (!createSwapchain(1)) {
|
||||
return false;
|
||||
pl_vulkan_swapchain_params vkSwapchainParams = {};
|
||||
vkSwapchainParams.surface = m_VkSurface;
|
||||
vkSwapchainParams.present_mode = presentMode;
|
||||
vkSwapchainParams.swapchain_depth = 1; // No queued frames
|
||||
#if PL_API_VER >= 338
|
||||
vkSwapchainParams.disable_10bit_sdr = true; // Some drivers don't dither 10-bit SDR output correctly
|
||||
#endif
|
||||
|
||||
{
|
||||
// Don't let Qt take DRM master from us during pl_vulkan_create_swapchain()
|
||||
DrmMasterLocker locker;
|
||||
|
||||
m_Swapchain = pl_vulkan_create_swapchain(m_Vulkan, &vkSwapchainParams);
|
||||
if (m_Swapchain == nullptr) {
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"pl_vulkan_create_swapchain() failed");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
m_Renderer = pl_renderer_create(m_Log, m_Vulkan->gpu);
|
||||
@@ -543,27 +550,8 @@ bool PlVkRenderer::initialize(PDECODER_PARAMETERS params)
|
||||
return false;
|
||||
}
|
||||
|
||||
#ifdef PLVK_USE_EARLY_RENDER_TO_WAIT
|
||||
SDL_Surface *emptySurface = SDL_CreateRGBSurfaceWithFormat(0, 1, 1, 0, SDL_PIXELFORMAT_ARGB8888);
|
||||
if (emptySurface == nullptr) {
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"SDL_CreateRGBSurfaceWithFormat() failed: %s", SDL_GetError());
|
||||
return false;
|
||||
}
|
||||
|
||||
// emptySurface is owned now by the overlay upload code (even on failure)
|
||||
if (!createOverlay(&m_EmptyOverlay, emptySurface)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
m_EmptyOverlayPart.src = { 0.0f, 0.0f, 1.0f, 1.0f };
|
||||
m_EmptyOverlayPart.dst = { 0.0f, 0.0f, 1.0f, 1.0f };
|
||||
m_EmptyOverlay.num_parts = 1;
|
||||
m_EmptyOverlay.parts = &m_EmptyOverlayPart;
|
||||
#endif
|
||||
|
||||
// We only need an hwaccel device context if we're going to act as the backend renderer too
|
||||
if (m_HwDeviceType == AV_HWDEVICE_TYPE_VULKAN) {
|
||||
if (m_HwAccelBackend) {
|
||||
m_HwDeviceCtx = av_hwdevice_ctx_alloc(AV_HWDEVICE_TYPE_VULKAN);
|
||||
if (m_HwDeviceCtx == nullptr) {
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
@@ -584,7 +572,7 @@ bool PlVkRenderer::initialize(PDECODER_PARAMETERS params)
|
||||
vkDeviceContext->nb_enabled_inst_extensions = m_PlVkInstance->num_extensions;
|
||||
vkDeviceContext->enabled_dev_extensions = m_Vulkan->extensions;
|
||||
vkDeviceContext->nb_enabled_dev_extensions = m_Vulkan->num_extensions;
|
||||
#if LIBAVUTIL_VERSION_INT > AV_VERSION_INT(58, 9, 100) && LIBAVUTIL_VERSION_MAJOR < 62
|
||||
#if LIBAVUTIL_VERSION_INT > AV_VERSION_INT(58, 9, 100)
|
||||
vkDeviceContext->lock_queue = lockQueue;
|
||||
vkDeviceContext->unlock_queue = unlockQueue;
|
||||
#endif
|
||||
@@ -600,75 +588,17 @@ bool PlVkRenderer::initialize(PDECODER_PARAMETERS params)
|
||||
return false;
|
||||
}
|
||||
}
|
||||
else if (m_HwDeviceType != AV_HWDEVICE_TYPE_NONE) {
|
||||
int err = av_hwdevice_ctx_create(&m_HwDeviceCtx,
|
||||
m_HwDeviceType,
|
||||
nullptr,
|
||||
nullptr,
|
||||
0);
|
||||
if (err < 0) {
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"av_hwdevice_ctx_create() failed: %d",
|
||||
err);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef Q_OS_DARWIN
|
||||
m_MetalTextureFactory = std::make_unique<MetalVulkanTextureFactory>(m_Vulkan);
|
||||
|
||||
// Set an initial wide colorspace hint to ensure that MoltenVK sets wantsExtendedDynamicRangeContent
|
||||
// before we request the first drawable. If we don't do this, our Metal layer ends up stuck in SDR
|
||||
// mode even if we later change the colorspace to VK_COLOR_SPACE_HDR10_ST2084_EXT.
|
||||
if (params->videoFormat & VIDEO_FORMAT_MASK_10BIT) {
|
||||
pl_color_space wideColorspace = {};
|
||||
wideColorspace.primaries = PL_COLOR_PRIM_BT_709;
|
||||
wideColorspace.transfer = PL_COLOR_TRC_SCRGB;
|
||||
pl_swapchain_colorspace_hint(m_Swapchain, &wideColorspace);
|
||||
}
|
||||
#endif
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
bool PlVkRenderer::createSwapchain(int depth)
|
||||
{
|
||||
pl_swapchain_destroy(&m_Swapchain);
|
||||
|
||||
pl_vulkan_swapchain_params vkSwapchainParams = {};
|
||||
vkSwapchainParams.surface = m_VkSurface;
|
||||
vkSwapchainParams.present_mode = m_VkPresentMode;
|
||||
vkSwapchainParams.swapchain_depth = depth;
|
||||
#if PL_API_VER >= 338
|
||||
vkSwapchainParams.disable_10bit_sdr = true; // Some drivers don't dither 10-bit SDR output correctly
|
||||
#endif
|
||||
|
||||
{
|
||||
// Don't let Qt take DRM master from us during pl_vulkan_create_swapchain()
|
||||
DrmMasterLocker locker;
|
||||
|
||||
m_Swapchain = pl_vulkan_create_swapchain(m_Vulkan, &vkSwapchainParams);
|
||||
if (m_Swapchain == nullptr) {
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"pl_vulkan_create_swapchain() failed");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
m_SwapchainDepth = depth;
|
||||
return true;
|
||||
}
|
||||
|
||||
bool PlVkRenderer::prepareDecoderContext(AVCodecContext *context, AVDictionary **)
|
||||
{
|
||||
if (m_HwDeviceCtx) {
|
||||
context->hw_device_ctx = av_buffer_ref(m_HwDeviceCtx);
|
||||
}
|
||||
|
||||
if (m_HwDeviceType == AV_HWDEVICE_TYPE_VULKAN) {
|
||||
if (m_HwAccelBackend) {
|
||||
SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"Using Vulkan video decoding");
|
||||
|
||||
context->hw_device_ctx = av_buffer_ref(m_HwDeviceCtx);
|
||||
}
|
||||
else {
|
||||
SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION,
|
||||
@@ -680,23 +610,13 @@ bool PlVkRenderer::prepareDecoderContext(AVCodecContext *context, AVDictionary *
|
||||
|
||||
bool PlVkRenderer::mapAvFrameToPlacebo(const AVFrame *frame, pl_frame* mappedFrame)
|
||||
{
|
||||
#ifdef Q_OS_DARWIN
|
||||
if (frame->format == AV_PIX_FMT_VIDEOTOOLBOX) {
|
||||
if (!m_MetalTextureFactory->mapVideoToolboxToPlacebo(frame, mappedFrame)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
else
|
||||
#endif
|
||||
{
|
||||
pl_avframe_params mapParams = {};
|
||||
mapParams.frame = frame;
|
||||
mapParams.tex = m_Textures;
|
||||
if (!pl_map_avframe_ex(m_Vulkan->gpu, mappedFrame, &mapParams)) {
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"pl_map_avframe_ex() failed");
|
||||
return false;
|
||||
}
|
||||
pl_avframe_params mapParams = {};
|
||||
mapParams.frame = frame;
|
||||
mapParams.tex = m_Textures;
|
||||
if (!pl_map_avframe_ex(m_Vulkan->gpu, mappedFrame, &mapParams)) {
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"pl_map_avframe_ex() failed");
|
||||
return false;
|
||||
}
|
||||
|
||||
// libplacebo assumes a minimum luminance value of 0 means the actual value was unknown.
|
||||
@@ -718,21 +638,6 @@ bool PlVkRenderer::mapAvFrameToPlacebo(const AVFrame *frame, pl_frame* mappedFra
|
||||
return true;
|
||||
}
|
||||
|
||||
void PlVkRenderer::unmapAvFrameFromPlacebo(const AVFrame *frame, pl_frame* mappedFrame)
|
||||
{
|
||||
#ifdef Q_OS_DARWIN
|
||||
if (frame->format == AV_PIX_FMT_VIDEOTOOLBOX) {
|
||||
m_MetalTextureFactory->unmapVideoToolboxFromPlacebo(mappedFrame);
|
||||
}
|
||||
else
|
||||
#else
|
||||
Q_UNUSED(frame)
|
||||
#endif
|
||||
{
|
||||
pl_unmap_avframe(m_Vulkan->gpu, mappedFrame);
|
||||
}
|
||||
}
|
||||
|
||||
bool PlVkRenderer::populateQueues(int videoFormat)
|
||||
{
|
||||
auto vkDeviceContext = (AVVulkanDeviceContext*)((AVHWDeviceContext *)m_HwDeviceCtx->data)->hwctx;
|
||||
@@ -864,27 +769,6 @@ bool PlVkRenderer::isSurfacePresentationSupportedByPhysicalDevice(VkPhysicalDevi
|
||||
return false;
|
||||
}
|
||||
|
||||
void PlVkRenderer::beginRenderTiming()
|
||||
{
|
||||
#ifdef PLVK_USE_DYNAMIC_SWAPCHAIN_DEPTH
|
||||
m_RenderStartTime = SDL_GetTicks();
|
||||
#endif
|
||||
}
|
||||
|
||||
void PlVkRenderer::endRenderTiming()
|
||||
{
|
||||
#ifdef PLVK_USE_DYNAMIC_SWAPCHAIN_DEPTH
|
||||
// Trigger a switch to triple-buffered mode if our frame presentation time
|
||||
// exceeds 110% of the frame interval for half a second of frames.
|
||||
if (SDL_GetTicks() - m_RenderStartTime > (1100U / m_MaxVideoFps)) {
|
||||
m_DelayedPresents++;
|
||||
}
|
||||
else if (m_DelayedPresents > 0) {
|
||||
m_DelayedPresents--;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void PlVkRenderer::waitToRender()
|
||||
{
|
||||
// Check if the GPU has failed before doing anything else
|
||||
@@ -924,25 +808,6 @@ void PlVkRenderer::waitToRender()
|
||||
// renderFrame() wasn't called after waitToRender().
|
||||
if (pl_swapchain_start_frame(m_Swapchain, &m_SwapchainFrame)) {
|
||||
m_HasPendingSwapchainFrame = true;
|
||||
|
||||
#ifdef PLVK_USE_EARLY_RENDER_TO_WAIT
|
||||
// This is a workaround for MoltenVK which lazily fetches a drawable when the
|
||||
// swapchain frame is first modified (rather than in pl_swapchain_start_frame()).
|
||||
// By rendering an empty overlay on the swapchain here, we will trigger this wait
|
||||
// in the desired context (before we've latched the next frame to present), rather
|
||||
// than in the renderFrame() path where delays directly increase video latency.
|
||||
pl_frame targetFrame;
|
||||
pl_frame_from_swapchain(&targetFrame, &m_SwapchainFrame);
|
||||
targetFrame.num_overlays = 1;
|
||||
targetFrame.overlays = &m_EmptyOverlay;
|
||||
|
||||
beginRenderTiming();
|
||||
if (!pl_render_image(m_Renderer, nullptr, &targetFrame, &pl_render_fast_params)) {
|
||||
SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"pl_render_image() failed during render wait");
|
||||
}
|
||||
endRenderTiming();
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
@@ -975,19 +840,7 @@ void PlVkRenderer::renderFrame(AVFrame *frame)
|
||||
if (!pl_color_space_equal(&mappedFrame.color, &m_LastColorspace)) {
|
||||
m_LastColorspace = mappedFrame.color;
|
||||
SDL_assert(pl_color_space_equal(&mappedFrame.color, &m_LastColorspace));
|
||||
|
||||
#ifdef Q_OS_DARWIN
|
||||
// There is a gamma mismatch on macOS between what libplacebo thinks BT.709
|
||||
// should use and what the Metal layer actually displays. Use sRGB for the
|
||||
// swapchain when the incoming frames are BT.709 as a workaround.
|
||||
if (pl_color_space_equal(&mappedFrame.color, &pl_color_space_bt709)) {
|
||||
pl_swapchain_colorspace_hint(m_Swapchain, &pl_color_space_srgb);
|
||||
}
|
||||
else
|
||||
#endif
|
||||
{
|
||||
pl_swapchain_colorspace_hint(m_Swapchain, &mappedFrame.color);
|
||||
}
|
||||
pl_swapchain_colorspace_hint(m_Swapchain, &mappedFrame.color);
|
||||
}
|
||||
|
||||
// Reserve enough space to avoid allocating under the overlay lock
|
||||
@@ -1069,11 +922,6 @@ void PlVkRenderer::renderFrame(AVFrame *frame)
|
||||
targetFrame.crop.x1 = dst.x + dst.w;
|
||||
targetFrame.crop.y1 = dst.y + dst.h;
|
||||
|
||||
#ifndef PLVK_USE_EARLY_RENDER_TO_WAIT
|
||||
// For PLVK_USE_EARLY_RENDER_TO_WAIT, we already timed our early render in waitToRender()
|
||||
beginRenderTiming();
|
||||
#endif
|
||||
|
||||
// Render the video image and overlays into the swapchain buffer
|
||||
targetFrame.num_overlays = (int)overlays.size();
|
||||
targetFrame.overlays = overlays.data();
|
||||
@@ -1096,27 +944,6 @@ void PlVkRenderer::renderFrame(AVFrame *frame)
|
||||
goto UnmapExit;
|
||||
}
|
||||
|
||||
#ifndef PLVK_USE_EARLY_RENDER_TO_WAIT
|
||||
endRenderTiming();
|
||||
#endif
|
||||
|
||||
#ifdef PLVK_USE_DYNAMIC_SWAPCHAIN_DEPTH
|
||||
if (m_DelayedPresents == m_MaxVideoFps / 2 && m_SwapchainDepth < 2) {
|
||||
SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"Switching to triple-buffered swapchain after delayed presentations");
|
||||
if (!createSwapchain(2)) {
|
||||
// Recreate the renderer
|
||||
SDL_Event event;
|
||||
event.type = SDL_RENDER_DEVICE_RESET;
|
||||
SDL_PushEvent(&event);
|
||||
goto UnmapExit;
|
||||
}
|
||||
|
||||
// Restore the swapchain's colorspace from the previous swapchain frame
|
||||
pl_swapchain_colorspace_hint(m_Swapchain, &targetFrame.color);
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_WIN32
|
||||
// On Windows, we swap buffers here instead of waitToRender()
|
||||
// to avoid some performance problems on Nvidia GPUs.
|
||||
@@ -1129,109 +956,18 @@ UnmapExit:
|
||||
pl_tex_destroy(m_Vulkan->gpu, &texture);
|
||||
}
|
||||
|
||||
unmapAvFrameFromPlacebo(frame, &mappedFrame);
|
||||
pl_unmap_avframe(m_Vulkan->gpu, &mappedFrame);
|
||||
}
|
||||
|
||||
bool PlVkRenderer::testRenderFrame(AVFrame *frame)
|
||||
{
|
||||
#if PL_API_VER < 360
|
||||
{
|
||||
// Add a check for unrecognized pixel formats on older libplacebo
|
||||
// versions which will dereference a null pointer in this case.
|
||||
// See #1409 for details.
|
||||
pl_frame out;
|
||||
pl_frame_from_avframe(&out, frame);
|
||||
if (out.num_planes == 0) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
if (frame->format == AV_PIX_FMT_DRM_PRIME) {
|
||||
auto drmFrame = (AVDRMFrameDescriptor*)frame->data[0];
|
||||
|
||||
// This can happen with out-of-tree FFmpeg patches if the V4L2
|
||||
// format lacks a mapping to a DRM format.
|
||||
if (drmFrame->nb_layers == 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Current versions of libplacebo only support one plane per layer
|
||||
// and will assert if provided a frame that violates this constraint.
|
||||
for (int i = 0; i < drmFrame->nb_layers; i++) {
|
||||
if (drmFrame->layers[i].nb_planes != 1) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Test if the frame can be mapped to libplacebo
|
||||
pl_frame mappedFrame;
|
||||
if (!mapAvFrameToPlacebo(frame, &mappedFrame)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
unmapAvFrameFromPlacebo(frame, &mappedFrame);
|
||||
return true;
|
||||
}
|
||||
|
||||
// Takes ownership of surface in all cases!
|
||||
bool PlVkRenderer::createOverlay(pl_overlay* overlay, SDL_Surface* surface)
|
||||
{
|
||||
// Find a compatible texture format
|
||||
SDL_assert(surface->format->format == SDL_PIXELFORMAT_ARGB8888);
|
||||
pl_fmt texFormat = pl_find_named_fmt(m_Vulkan->gpu, "bgra8");
|
||||
if (!texFormat) {
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"pl_find_named_fmt(bgra8) failed");
|
||||
SDL_FreeSurface(surface);
|
||||
return false;
|
||||
}
|
||||
|
||||
// Create a new texture for this overlay if necessary, otherwise reuse the existing texture.
|
||||
// NB: We're guaranteed that the render thread won't be reading this concurrently because
|
||||
// we set hasStagingOverlay to false above.
|
||||
pl_tex_params texParams = {};
|
||||
texParams.w = surface->w;
|
||||
texParams.h = surface->h;
|
||||
texParams.format = texFormat;
|
||||
texParams.sampleable = true;
|
||||
texParams.host_writable = true;
|
||||
texParams.blit_src = !!(texFormat->caps & PL_FMT_CAP_BLITTABLE);
|
||||
texParams.debug_tag = PL_DEBUG_TAG;
|
||||
if (!pl_tex_recreate(m_Vulkan->gpu, &overlay->tex, &texParams)) {
|
||||
pl_tex_destroy(m_Vulkan->gpu, &overlay->tex);
|
||||
SDL_zerop(overlay);
|
||||
SDL_FreeSurface(surface);
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"pl_tex_recreate() failed");
|
||||
return false;
|
||||
}
|
||||
|
||||
// Upload the surface data to the new texture
|
||||
SDL_assert(!SDL_MUSTLOCK(surface));
|
||||
pl_tex_transfer_params xferParams = {};
|
||||
xferParams.tex = overlay->tex;
|
||||
xferParams.row_pitch = (size_t)surface->pitch;
|
||||
xferParams.ptr = surface->pixels;
|
||||
xferParams.callback = overlayUploadComplete;
|
||||
xferParams.priv = surface;
|
||||
if (!pl_tex_upload(m_Vulkan->gpu, &xferParams)) {
|
||||
pl_tex_destroy(m_Vulkan->gpu, &overlay->tex);
|
||||
SDL_zerop(overlay);
|
||||
SDL_FreeSurface(surface);
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"pl_tex_upload() failed");
|
||||
return false;
|
||||
}
|
||||
|
||||
// surface is now owned by the texture upload process. It will be freed in overlayUploadComplete()
|
||||
|
||||
// Initialize the rest of the overlay params
|
||||
overlay->mode = PL_OVERLAY_NORMAL;
|
||||
overlay->coords = PL_OVERLAY_COORDS_DST_FRAME;
|
||||
overlay->repr = pl_color_repr_rgb;
|
||||
overlay->color = pl_color_space_srgb;
|
||||
pl_unmap_avframe(m_Vulkan->gpu, &mappedFrame);
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -1259,11 +995,62 @@ void PlVkRenderer::notifyOverlayUpdated(Overlay::OverlayType type)
|
||||
return;
|
||||
}
|
||||
|
||||
// newSurface is now owned by the texture upload process
|
||||
if (!createOverlay(&m_Overlays[type].stagingOverlay, newSurface)) {
|
||||
// Find a compatible texture format
|
||||
SDL_assert(newSurface->format->format == SDL_PIXELFORMAT_ARGB8888);
|
||||
pl_fmt texFormat = pl_find_named_fmt(m_Vulkan->gpu, "bgra8");
|
||||
if (!texFormat) {
|
||||
SDL_FreeSurface(newSurface);
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"pl_find_named_fmt(bgra8) failed");
|
||||
return;
|
||||
}
|
||||
|
||||
// Create a new texture for this overlay if necessary, otherwise reuse the existing texture.
|
||||
// NB: We're guaranteed that the render thread won't be reading this concurrently because
|
||||
// we set hasStagingOverlay to false above.
|
||||
pl_tex_params texParams = {};
|
||||
texParams.w = newSurface->w;
|
||||
texParams.h = newSurface->h;
|
||||
texParams.format = texFormat;
|
||||
texParams.sampleable = true;
|
||||
texParams.host_writable = true;
|
||||
texParams.blit_src = !!(texFormat->caps & PL_FMT_CAP_BLITTABLE);
|
||||
texParams.debug_tag = PL_DEBUG_TAG;
|
||||
if (!pl_tex_recreate(m_Vulkan->gpu, &m_Overlays[type].stagingOverlay.tex, &texParams)) {
|
||||
pl_tex_destroy(m_Vulkan->gpu, &m_Overlays[type].stagingOverlay.tex);
|
||||
SDL_zero(m_Overlays[type].stagingOverlay);
|
||||
SDL_FreeSurface(newSurface);
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"pl_tex_recreate() failed");
|
||||
return;
|
||||
}
|
||||
|
||||
// Upload the surface data to the new texture
|
||||
SDL_assert(!SDL_MUSTLOCK(newSurface));
|
||||
pl_tex_transfer_params xferParams = {};
|
||||
xferParams.tex = m_Overlays[type].stagingOverlay.tex;
|
||||
xferParams.row_pitch = (size_t)newSurface->pitch;
|
||||
xferParams.ptr = newSurface->pixels;
|
||||
xferParams.callback = overlayUploadComplete;
|
||||
xferParams.priv = newSurface;
|
||||
if (!pl_tex_upload(m_Vulkan->gpu, &xferParams)) {
|
||||
pl_tex_destroy(m_Vulkan->gpu, &m_Overlays[type].stagingOverlay.tex);
|
||||
SDL_zero(m_Overlays[type].stagingOverlay);
|
||||
SDL_FreeSurface(newSurface);
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"pl_tex_upload() failed");
|
||||
return;
|
||||
}
|
||||
|
||||
// newSurface is now owned by the texture upload process. It will be freed in overlayUploadComplete()
|
||||
newSurface = nullptr;
|
||||
|
||||
// Initialize the rest of the overlay params
|
||||
m_Overlays[type].stagingOverlay.mode = PL_OVERLAY_NORMAL;
|
||||
m_Overlays[type].stagingOverlay.coords = PL_OVERLAY_COORDS_DST_FRAME;
|
||||
m_Overlays[type].stagingOverlay.repr = pl_color_repr_rgb;
|
||||
m_Overlays[type].stagingOverlay.color = pl_color_space_srgb;
|
||||
|
||||
// Make this staging overlay visible to the render thread
|
||||
SDL_AtomicLock(&m_OverlayLock);
|
||||
SDL_assert(!m_Overlays[type].hasStagingOverlay);
|
||||
@@ -1304,7 +1091,7 @@ int PlVkRenderer::getDecoderCapabilities()
|
||||
|
||||
bool PlVkRenderer::isPixelFormatSupported(int videoFormat, AVPixelFormat pixelFormat)
|
||||
{
|
||||
if (m_HwDeviceType == AV_HWDEVICE_TYPE_VULKAN) {
|
||||
if (m_HwAccelBackend) {
|
||||
return pixelFormat == AV_PIX_FMT_VULKAN;
|
||||
}
|
||||
else if (m_Backend) {
|
||||
|
||||
@@ -10,34 +10,9 @@
|
||||
#include <libplacebo/renderer.h>
|
||||
#include <libplacebo/vulkan.h>
|
||||
|
||||
#ifdef Q_OS_DARWIN
|
||||
class MetalVulkanTextureFactory {
|
||||
public:
|
||||
MetalVulkanTextureFactory(pl_vulkan vulkan);
|
||||
~MetalVulkanTextureFactory();
|
||||
|
||||
bool mapVideoToolboxToPlacebo(const AVFrame *frame, pl_frame* mappedFrame);
|
||||
void unmapVideoToolboxFromPlacebo(pl_frame* mappedFrame);
|
||||
|
||||
private:
|
||||
pl_vulkan m_Vulkan;
|
||||
/* CVMetalTextureCacheRef */ void* m_TextureCache = nullptr;
|
||||
};
|
||||
|
||||
// Work around direct-to-display mode sometimes (but not always!) blocking us
|
||||
// from getting a new drawable while the current one is getting scanned out.
|
||||
#define PLVK_USE_DYNAMIC_SWAPCHAIN_DEPTH 1
|
||||
|
||||
// MoltenVK will block for the next drawable when we render the next frame
|
||||
// rather than inside pl_swapchain_start_frame(), so we will force it to wait
|
||||
// by rendering some no-op work right after we get the new swapchain frame.
|
||||
#define PLVK_USE_EARLY_RENDER_TO_WAIT 1
|
||||
|
||||
#endif
|
||||
|
||||
class PlVkRenderer : public IFFmpegRenderer {
|
||||
public:
|
||||
PlVkRenderer(AVHWDeviceType hwDeviceType = AV_HWDEVICE_TYPE_NONE, IFFmpegRenderer *backendRenderer = nullptr);
|
||||
PlVkRenderer(bool hwaccel = false, IFFmpegRenderer *backendRenderer = nullptr);
|
||||
virtual ~PlVkRenderer() override;
|
||||
virtual bool initialize(PDECODER_PARAMETERS params) override;
|
||||
virtual bool prepareDecoderContext(AVCodecContext* context, AVDictionary** options) override;
|
||||
@@ -59,13 +34,7 @@ private:
|
||||
static void unlockQueue(AVHWDeviceContext *dev_ctx, uint32_t queue_family, uint32_t index);
|
||||
static void overlayUploadComplete(void* opaque);
|
||||
|
||||
void beginRenderTiming();
|
||||
void endRenderTiming();
|
||||
|
||||
bool createSwapchain(int depth);
|
||||
bool createOverlay(pl_overlay* overlay, SDL_Surface* surface);
|
||||
bool mapAvFrameToPlacebo(const AVFrame *frame, pl_frame* mappedFrame);
|
||||
void unmapAvFrameFromPlacebo(const AVFrame *frame, pl_frame* mappedFrame);
|
||||
bool populateQueues(int videoFormat);
|
||||
bool chooseVulkanDevice(PDECODER_PARAMETERS params, bool hdrOutputRequired);
|
||||
bool tryInitializeDevice(VkPhysicalDevice device, VkPhysicalDeviceProperties* deviceProps,
|
||||
@@ -77,40 +46,21 @@ private:
|
||||
|
||||
// The backend renderer if we're frontend-only
|
||||
IFFmpegRenderer* m_Backend;
|
||||
AVHWDeviceType m_HwDeviceType;
|
||||
|
||||
#ifdef Q_OS_DARWIN
|
||||
std::unique_ptr<MetalVulkanTextureFactory> m_MetalTextureFactory;
|
||||
#endif
|
||||
|
||||
#ifdef PLVK_USE_DYNAMIC_SWAPCHAIN_DEPTH
|
||||
int m_DelayedPresents = 0;
|
||||
Uint32 m_RenderStartTime = 0;
|
||||
#endif
|
||||
bool m_HwAccelBackend;
|
||||
|
||||
// SDL state
|
||||
SDL_Window* m_Window = nullptr;
|
||||
|
||||
// Stream state
|
||||
int m_MaxVideoFps;
|
||||
|
||||
// The libplacebo rendering state
|
||||
pl_log m_Log = nullptr;
|
||||
pl_vk_inst m_PlVkInstance = nullptr;
|
||||
VkSurfaceKHR m_VkSurface = VK_NULL_HANDLE;
|
||||
int m_SwapchainDepth = 0;
|
||||
VkPresentModeKHR m_VkPresentMode;
|
||||
pl_vulkan m_Vulkan = nullptr;
|
||||
pl_swapchain m_Swapchain = nullptr;
|
||||
pl_renderer m_Renderer = nullptr;
|
||||
pl_tex m_Textures[PL_MAX_PLANES] = {};
|
||||
pl_color_space m_LastColorspace = {};
|
||||
|
||||
#ifdef PLVK_USE_EARLY_RENDER_TO_WAIT
|
||||
pl_overlay m_EmptyOverlay = {};
|
||||
pl_overlay_part m_EmptyOverlayPart = {};
|
||||
#endif
|
||||
|
||||
// Pending swapchain state shared between waitToRender(), renderFrame(), and cleanupRenderContext()
|
||||
pl_swapchain_frame m_SwapchainFrame = {};
|
||||
bool m_HasPendingSwapchainFrame = false;
|
||||
|
||||
@@ -1,159 +0,0 @@
|
||||
#include "plvk.h"
|
||||
|
||||
#define PL_LIBAV_IMPLEMENTATION 0
|
||||
#include <libplacebo/utils/libav.h>
|
||||
|
||||
#import <Metal/Metal.h>
|
||||
#import <MetalKit/MetalKit.h>
|
||||
|
||||
#include <CoreVideo/CVPixelBuffer.h>
|
||||
#include <CoreVideo/CVMetalTexture.h>
|
||||
|
||||
#include <vulkan/vulkan.h>
|
||||
#include <vulkan/vulkan_metal.h>
|
||||
|
||||
static id<MTLDevice> getVulkanMetalDevice(pl_vulkan vulkan)
|
||||
{
|
||||
VkExportMetalDeviceInfoEXT metalDeviceInfo = {};
|
||||
metalDeviceInfo.sType = VK_STRUCTURE_TYPE_EXPORT_METAL_DEVICE_INFO_EXT;
|
||||
|
||||
VkExportMetalObjectsInfoEXT exportInfo = {};
|
||||
exportInfo.sType = VK_STRUCTURE_TYPE_EXPORT_METAL_OBJECTS_INFO_EXT;
|
||||
exportInfo.pNext = &metalDeviceInfo;
|
||||
|
||||
auto vkExportMetalObjectsEXT = (PFN_vkExportMetalObjectsEXT)(vulkan->get_proc_addr(vulkan->instance, "vkExportMetalObjectsEXT"));
|
||||
if (vkExportMetalObjectsEXT) {
|
||||
vkExportMetalObjectsEXT(vulkan->device, &exportInfo);
|
||||
return metalDeviceInfo.mtlDevice;
|
||||
}
|
||||
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
MetalVulkanTextureFactory::MetalVulkanTextureFactory(pl_vulkan vulkan) :
|
||||
m_Vulkan(vulkan)
|
||||
{
|
||||
id<MTLDevice> device = getVulkanMetalDevice(vulkan);
|
||||
if (!device) {
|
||||
return;
|
||||
}
|
||||
|
||||
CFStringRef keys[1] = { kCVMetalTextureUsage };
|
||||
NSUInteger values[1] = { MTLTextureUsageShaderRead };
|
||||
auto cacheAttributes = CFDictionaryCreate(kCFAllocatorDefault, (const void**)keys, (const void**)values, 1, nullptr, nullptr);
|
||||
int err = CVMetalTextureCacheCreate(kCFAllocatorDefault, cacheAttributes, device, nullptr, (CVMetalTextureCacheRef*)&m_TextureCache);
|
||||
CFRelease(cacheAttributes);
|
||||
|
||||
if (err != kCVReturnSuccess) {
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"CVMetalTextureCacheCreate() failed: %d",
|
||||
err);
|
||||
}
|
||||
}
|
||||
|
||||
MetalVulkanTextureFactory::~MetalVulkanTextureFactory()
|
||||
{
|
||||
if (m_TextureCache) {
|
||||
CFRelease((CVMetalTextureCacheRef)m_TextureCache);
|
||||
}
|
||||
}
|
||||
|
||||
bool MetalVulkanTextureFactory::mapVideoToolboxToPlacebo(const AVFrame *frame, pl_frame* mappedFrame)
|
||||
{
|
||||
SDL_assert(frame->format == AV_PIX_FMT_VIDEOTOOLBOX);
|
||||
|
||||
if (!m_TextureCache) {
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"Unable to map VT frames without Metal texture cache");
|
||||
return false;
|
||||
}
|
||||
|
||||
CVPixelBufferRef pixBuf = (CVPixelBufferRef)(frame->data[3]);
|
||||
size_t planes = CVPixelBufferGetPlaneCount(pixBuf);
|
||||
|
||||
// Map the AVFrame metadata into the pl_frame
|
||||
pl_frame_from_avframe(mappedFrame, frame);
|
||||
|
||||
// Create Metal textures for the planes of the CVPixelBuffer
|
||||
mappedFrame->num_planes = 0;
|
||||
for (size_t i = 0; i < planes; i++) {
|
||||
MTLPixelFormat fmt;
|
||||
|
||||
pl_tex_params texParams = {};
|
||||
texParams.w = CVPixelBufferGetWidthOfPlane(pixBuf, i);
|
||||
texParams.h = CVPixelBufferGetHeightOfPlane(pixBuf, i);
|
||||
texParams.sampleable = true;
|
||||
|
||||
switch (CVPixelBufferGetPixelFormatType(pixBuf)) {
|
||||
case kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange:
|
||||
case kCVPixelFormatType_444YpCbCr8BiPlanarVideoRange:
|
||||
case kCVPixelFormatType_420YpCbCr8BiPlanarFullRange:
|
||||
case kCVPixelFormatType_444YpCbCr8BiPlanarFullRange:
|
||||
fmt = (i == 0) ? MTLPixelFormatR8Unorm : MTLPixelFormatRG8Unorm;
|
||||
texParams.format = pl_find_named_fmt(m_Vulkan->gpu, (i == 0) ? "r8" : "rg8");
|
||||
break;
|
||||
|
||||
case kCVPixelFormatType_420YpCbCr10BiPlanarFullRange:
|
||||
case kCVPixelFormatType_444YpCbCr10BiPlanarFullRange:
|
||||
case kCVPixelFormatType_420YpCbCr10BiPlanarVideoRange:
|
||||
case kCVPixelFormatType_444YpCbCr10BiPlanarVideoRange:
|
||||
fmt = (i == 0) ? MTLPixelFormatR16Unorm : MTLPixelFormatRG16Unorm;
|
||||
texParams.format = pl_find_named_fmt(m_Vulkan->gpu, (i == 0) ? "r16" : "rg16");
|
||||
break;
|
||||
|
||||
default:
|
||||
unmapVideoToolboxFromPlacebo(mappedFrame);
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"Unknown pixel format: %x",
|
||||
CVPixelBufferGetPixelFormatType(pixBuf));
|
||||
return false;
|
||||
}
|
||||
|
||||
CVMetalTextureRef cvTexture;
|
||||
CVReturn err = CVMetalTextureCacheCreateTextureFromImage(kCFAllocatorDefault, (CVMetalTextureCacheRef)m_TextureCache,
|
||||
pixBuf, nullptr, fmt, texParams.w, texParams.h, i,
|
||||
&cvTexture);
|
||||
if (err != kCVReturnSuccess) {
|
||||
unmapVideoToolboxFromPlacebo(mappedFrame);
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"CVMetalTextureCacheCreateTextureFromImage() failed: %d",
|
||||
err);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (i == 0) {
|
||||
mappedFrame->planes[i].components = 1;
|
||||
mappedFrame->planes[i].component_mapping[0] = PL_CHANNEL_Y;
|
||||
}
|
||||
else {
|
||||
mappedFrame->planes[i].components = 2;
|
||||
mappedFrame->planes[i].component_mapping[0] = PL_CHANNEL_CB;
|
||||
mappedFrame->planes[i].component_mapping[1] = PL_CHANNEL_CR;
|
||||
}
|
||||
|
||||
texParams.import_handle = PL_HANDLE_MTL_TEX;
|
||||
texParams.shared_mem.handle.handle = (__bridge void *)CVMetalTextureGetTexture(cvTexture);
|
||||
texParams.user_data = cvTexture;
|
||||
mappedFrame->planes[i].texture = pl_tex_create(m_Vulkan->gpu, &texParams);
|
||||
if (!mappedFrame->planes[i].texture) {
|
||||
CFRelease(cvTexture);
|
||||
unmapVideoToolboxFromPlacebo(mappedFrame);
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"pl_tex_create() failed");
|
||||
return false;
|
||||
}
|
||||
|
||||
mappedFrame->num_planes++;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void MetalVulkanTextureFactory::unmapVideoToolboxFromPlacebo(pl_frame* mappedFrame)
|
||||
{
|
||||
for (int i = 0; i < mappedFrame->num_planes; i++) {
|
||||
auto cvTexture = (CVMetalTextureRef)mappedFrame->planes[i].texture->params.user_data;
|
||||
pl_tex_destroy(m_Vulkan->gpu, &mappedFrame->planes[i].texture);
|
||||
CFRelease(cvTexture);
|
||||
}
|
||||
}
|
||||
@@ -224,8 +224,8 @@ public:
|
||||
}
|
||||
|
||||
virtual int getDecoderColorRange() {
|
||||
// Full is the default
|
||||
return COLOR_RANGE_FULL;
|
||||
// Limited is the default
|
||||
return COLOR_RANGE_LIMITED;
|
||||
}
|
||||
|
||||
virtual int getFrameColorspace(const AVFrame* frame) {
|
||||
@@ -247,16 +247,10 @@ public:
|
||||
}
|
||||
|
||||
virtual bool isFrameFullRange(const AVFrame* frame) {
|
||||
switch (frame->color_range) {
|
||||
case AVCOL_RANGE_JPEG:
|
||||
return true;
|
||||
case AVCOL_RANGE_MPEG:
|
||||
return false;
|
||||
default:
|
||||
// If the color range is not populated, assume the encoder
|
||||
// is sending the color range that we requested.
|
||||
return getDecoderColorRange() == COLOR_RANGE_FULL;
|
||||
}
|
||||
// This handles the case where the color range is unknown,
|
||||
// so that we use Limited color range which is the default
|
||||
// behavior for Moonlight.
|
||||
return frame->color_range == AVCOL_RANGE_JPEG;
|
||||
}
|
||||
|
||||
virtual bool isRenderThreadSupported() {
|
||||
@@ -508,8 +502,7 @@ public:
|
||||
return AV_PIX_FMT_NONE;
|
||||
}
|
||||
|
||||
virtual bool initializeEGL(IFFmpegRenderer*,
|
||||
EGLDisplay,
|
||||
virtual bool initializeEGL(EGLDisplay,
|
||||
const EGLExtensions &) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -352,11 +352,9 @@ ReadbackRetry:
|
||||
av_dict_set_int(&options, "srcw", frame->width, 0);
|
||||
av_dict_set_int(&options, "srch", frame->height, 0);
|
||||
av_dict_set_int(&options, "src_format", frame->format, 0);
|
||||
av_dict_set_int(&options, "src_range", isFrameFullRange(frame) ? 1 : 0, 0);
|
||||
av_dict_set_int(&options, "dstw", m_RgbFrame->width, 0);
|
||||
av_dict_set_int(&options, "dsth", m_RgbFrame->height, 0);
|
||||
av_dict_set_int(&options, "dst_format", m_RgbFrame->format, 0);
|
||||
av_dict_set_int(&options, "dst_range", 1, 0);
|
||||
av_dict_set_int(&options, "threads", std::min(SDL_GetCPUCount(), 4), 0); // Up to 4 threads
|
||||
|
||||
err = av_opt_set_dict(m_SwsContext, &options);
|
||||
@@ -578,6 +576,11 @@ ReadbackRetry:
|
||||
// Ensure the viewport is set to the desired video region
|
||||
SDL_RenderSetViewport(m_Renderer, &dst);
|
||||
|
||||
// Use nearest pixel sampling if the video region size is a multiple of the frame size
|
||||
SDL_SetTextureScaleMode(m_Texture,
|
||||
dst.w % frame->width == 0 && dst.h % frame->height == 0 ?
|
||||
SDL_ScaleModeNearest : SDL_ScaleModeLinear);
|
||||
|
||||
// Draw the video content itself
|
||||
SDL_RenderCopy(m_Renderer, m_Texture, nullptr, nullptr);
|
||||
|
||||
@@ -640,21 +643,3 @@ bool SdlRenderer::notifyWindowChanged(PWINDOW_STATE_CHANGE_INFO info)
|
||||
// We can transparently handle size and display changes
|
||||
return !(info->stateChangeFlags & ~(WINDOW_STATE_CHANGE_SIZE | WINDOW_STATE_CHANGE_DISPLAY));
|
||||
}
|
||||
|
||||
int SdlRenderer::getDecoderColorspace()
|
||||
{
|
||||
// SDL2 only supports both full and limited range for BT.601. Additionally, libswscale
|
||||
// assumes content is in the BT.601 color space when performing YUV to RGB conversion.
|
||||
return COLORSPACE_REC_601;
|
||||
}
|
||||
|
||||
int SdlRenderer::getDecoderColorRange()
|
||||
{
|
||||
// Prefer full range only on FFmpeg 5.0 or later, since we don't implement
|
||||
// color range handling in the legacy FFmpeg 4.x codepath.
|
||||
#if LIBSWSCALE_VERSION_INT >= AV_VERSION_INT(6, 1, 100)
|
||||
return COLOR_RANGE_FULL;
|
||||
#else
|
||||
return COLOR_RANGE_LIMITED;
|
||||
#endif
|
||||
}
|
||||
|
||||
@@ -23,8 +23,6 @@ public:
|
||||
virtual bool isPixelFormatSupported(int videoFormat, enum AVPixelFormat pixelFormat) override;
|
||||
virtual bool testRenderFrame(AVFrame* frame) override;
|
||||
virtual bool notifyWindowChanged(PWINDOW_STATE_CHANGE_INFO) override;
|
||||
virtual int getDecoderColorspace() override;
|
||||
virtual int getDecoderColorRange() override;
|
||||
|
||||
private:
|
||||
void renderOverlay(Overlay::OverlayType type);
|
||||
|
||||
@@ -26,7 +26,8 @@ VAAPIRenderer::VAAPIRenderer(int decoderSelectionPass)
|
||||
m_RequiresExplicitPixelFormat(false),
|
||||
m_OverlayMutex(nullptr)
|
||||
#ifdef HAVE_EGL
|
||||
, m_EglExportType(EglExportType::Unknown)
|
||||
, m_EglExportType(EglExportType::Unknown),
|
||||
m_EglImageFactory(this)
|
||||
#endif
|
||||
{
|
||||
#ifdef HAVE_LIBVA_X11
|
||||
@@ -647,12 +648,6 @@ int VAAPIRenderer::getDecoderColorspace()
|
||||
return COLORSPACE_REC_601;
|
||||
}
|
||||
|
||||
int VAAPIRenderer::getDecoderColorRange()
|
||||
{
|
||||
// vaPutSurface() assumes limited range
|
||||
return COLOR_RANGE_LIMITED;
|
||||
}
|
||||
|
||||
int VAAPIRenderer::getDecoderCapabilities()
|
||||
{
|
||||
int caps = 0;
|
||||
@@ -1081,12 +1076,11 @@ AVPixelFormat VAAPIRenderer::getEGLImagePixelFormat() {
|
||||
}
|
||||
|
||||
bool
|
||||
VAAPIRenderer::initializeEGL(IFFmpegRenderer* eglRenderer,
|
||||
EGLDisplay dpy,
|
||||
VAAPIRenderer::initializeEGL(EGLDisplay dpy,
|
||||
const EGLExtensions &ext) {
|
||||
VADRMPRIMESurfaceDescriptor descriptor;
|
||||
|
||||
if (!m_EglImageFactory.initializeEGL(eglRenderer, dpy, ext)) {
|
||||
if (!m_EglImageFactory.initializeEGL(dpy, ext)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@@ -64,7 +64,6 @@ public:
|
||||
virtual void renderFrame(AVFrame* frame) override;
|
||||
virtual bool isDirectRenderingSupported() override;
|
||||
virtual int getDecoderColorspace() override;
|
||||
virtual int getDecoderColorRange() override;
|
||||
virtual int getDecoderCapabilities() override;
|
||||
virtual void notifyOverlayUpdated(Overlay::OverlayType) override;
|
||||
virtual bool notifyWindowChanged(PWINDOW_STATE_CHANGE_INFO) override;
|
||||
@@ -72,7 +71,7 @@ public:
|
||||
#ifdef HAVE_EGL
|
||||
virtual bool canExportEGL() override;
|
||||
virtual AVPixelFormat getEGLImagePixelFormat() override;
|
||||
virtual bool initializeEGL(IFFmpegRenderer* eglRenderer, EGLDisplay dpy, const EGLExtensions &ext) override;
|
||||
virtual bool initializeEGL(EGLDisplay dpy, const EGLExtensions &ext) override;
|
||||
virtual ssize_t exportEGLImages(AVFrame *frame, EGLDisplay dpy, EGLImage images[EGL_MAX_PLANES]) override;
|
||||
#endif
|
||||
|
||||
|
||||
@@ -276,7 +276,7 @@ bool VDPAURenderer::initialize(PDECODER_PARAMETERS params)
|
||||
else {
|
||||
SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"Display size not within capabilities %dx%d vs %dx%d",
|
||||
m_DisplayWidth, m_DisplayHeight,
|
||||
m_DisplayWidth, m_DisplayWidth,
|
||||
maxWidth, maxHeight);
|
||||
}
|
||||
}
|
||||
@@ -470,12 +470,6 @@ int VDPAURenderer::getDecoderColorspace()
|
||||
return COLORSPACE_REC_601;
|
||||
}
|
||||
|
||||
int VDPAURenderer::getDecoderColorRange()
|
||||
{
|
||||
// The default VdpVideoMixer CSC matrix assumes limited range
|
||||
return COLOR_RANGE_LIMITED;
|
||||
}
|
||||
|
||||
int VDPAURenderer::getDecoderCapabilities()
|
||||
{
|
||||
return CAPABILITY_REFERENCE_FRAME_INVALIDATION_HEVC |
|
||||
|
||||
@@ -19,7 +19,6 @@ public:
|
||||
virtual void waitToRender() override;
|
||||
virtual void renderFrame(AVFrame* frame) override;
|
||||
virtual int getDecoderColorspace() override;
|
||||
virtual int getDecoderColorRange() override;
|
||||
virtual int getDecoderCapabilities() override;
|
||||
|
||||
private:
|
||||
|
||||
@@ -457,11 +457,6 @@ public:
|
||||
return COLORSPACE_REC_601;
|
||||
}
|
||||
|
||||
int getDecoderColorRange() override
|
||||
{
|
||||
return COLOR_RANGE_LIMITED;
|
||||
}
|
||||
|
||||
int getDecoderCapabilities() override
|
||||
{
|
||||
return CAPABILITY_REFERENCE_FRAME_INVALIDATION_HEVC |
|
||||
|
||||
@@ -324,7 +324,7 @@ public:
|
||||
pipelineDesc.colorAttachments[0].destinationAlphaBlendFactor = MTLBlendFactorOneMinusSourceAlpha;
|
||||
[m_OverlayPipelineState release];
|
||||
m_OverlayPipelineState = [m_MetalLayer.device newRenderPipelineStateWithDescriptor:pipelineDesc error:nullptr];
|
||||
if (!m_OverlayPipelineState) {
|
||||
if (!m_VideoPipelineState) {
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"Failed to create overlay pipeline state");
|
||||
return false;
|
||||
@@ -398,81 +398,6 @@ public:
|
||||
return m_SwMappingTextures[planeIndex];
|
||||
}
|
||||
|
||||
bool createTexturesFromFrame(AVFrame* frame, std::array<CVMetalTextureRef, MAX_VIDEO_PLANES>& cvMetalTextures)
|
||||
{
|
||||
SDL_assert(frame->format == AV_PIX_FMT_VIDEOTOOLBOX);
|
||||
|
||||
CVPixelBufferRef pixBuf = reinterpret_cast<CVPixelBufferRef>(frame->data[3]);
|
||||
size_t planes = getFramePlaneCount(frame);
|
||||
|
||||
// Create Metal textures for the planes of the CVPixelBuffer
|
||||
for (size_t i = 0; i < planes; i++) {
|
||||
MTLPixelFormat fmt;
|
||||
|
||||
switch (CVPixelBufferGetPixelFormatType(pixBuf)) {
|
||||
case kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange:
|
||||
case kCVPixelFormatType_444YpCbCr8BiPlanarVideoRange:
|
||||
case kCVPixelFormatType_420YpCbCr8BiPlanarFullRange:
|
||||
case kCVPixelFormatType_444YpCbCr8BiPlanarFullRange:
|
||||
fmt = (i == 0) ? MTLPixelFormatR8Unorm : MTLPixelFormatRG8Unorm;
|
||||
break;
|
||||
|
||||
case kCVPixelFormatType_420YpCbCr10BiPlanarFullRange:
|
||||
case kCVPixelFormatType_444YpCbCr10BiPlanarFullRange:
|
||||
case kCVPixelFormatType_420YpCbCr10BiPlanarVideoRange:
|
||||
case kCVPixelFormatType_444YpCbCr10BiPlanarVideoRange:
|
||||
fmt = (i == 0) ? MTLPixelFormatR16Unorm : MTLPixelFormatRG16Unorm;
|
||||
break;
|
||||
|
||||
default:
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"Unknown pixel format: %x",
|
||||
CVPixelBufferGetPixelFormatType(pixBuf));
|
||||
return false;
|
||||
}
|
||||
|
||||
CVReturn err = CVMetalTextureCacheCreateTextureFromImage(kCFAllocatorDefault, m_TextureCache, pixBuf, nullptr, fmt,
|
||||
CVPixelBufferGetWidthOfPlane(pixBuf, i),
|
||||
CVPixelBufferGetHeightOfPlane(pixBuf, i),
|
||||
i,
|
||||
&cvMetalTextures[i]);
|
||||
if (err != kCVReturnSuccess) {
|
||||
for (size_t j = 0; j < i; j++) {
|
||||
CFRelease(cvMetalTextures[j]);
|
||||
}
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"CVMetalTextureCacheCreateTextureFromImage() failed: %d",
|
||||
err);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool testRenderFrame(AVFrame *frame) override
|
||||
{ @autoreleasepool {
|
||||
if (frame->format == AV_PIX_FMT_VIDEOTOOLBOX) {
|
||||
std::array<CVMetalTextureRef, MAX_VIDEO_PLANES> cvMetalTextures;
|
||||
size_t planes = getFramePlaneCount(frame);
|
||||
SDL_assert(planes <= MAX_VIDEO_PLANES);
|
||||
|
||||
// Test that we can actually create Metal textures from the CVPixelBufferRef
|
||||
if (!createTexturesFromFrame(frame, cvMetalTextures)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
for (size_t i = 0; i < planes; i++) {
|
||||
CFRelease(cvMetalTextures[i]);
|
||||
}
|
||||
}
|
||||
else {
|
||||
// Mapping software frames should always work
|
||||
}
|
||||
|
||||
return true;
|
||||
}}
|
||||
|
||||
// Caller frees frame after we return
|
||||
virtual void renderFrameIntoDrawable(AVFrame* frame, id<CAMetalDrawable> drawable)
|
||||
{ @autoreleasepool {
|
||||
@@ -481,8 +406,45 @@ public:
|
||||
SDL_assert(planes <= MAX_VIDEO_PLANES);
|
||||
|
||||
if (frame->format == AV_PIX_FMT_VIDEOTOOLBOX) {
|
||||
if (!createTexturesFromFrame(frame, cvMetalTextures)) {
|
||||
return;
|
||||
CVPixelBufferRef pixBuf = reinterpret_cast<CVPixelBufferRef>(frame->data[3]);
|
||||
|
||||
// Create Metal textures for the planes of the CVPixelBuffer
|
||||
for (size_t i = 0; i < planes; i++) {
|
||||
MTLPixelFormat fmt;
|
||||
|
||||
switch (CVPixelBufferGetPixelFormatType(pixBuf)) {
|
||||
case kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange:
|
||||
case kCVPixelFormatType_444YpCbCr8BiPlanarVideoRange:
|
||||
case kCVPixelFormatType_420YpCbCr8BiPlanarFullRange:
|
||||
case kCVPixelFormatType_444YpCbCr8BiPlanarFullRange:
|
||||
fmt = (i == 0) ? MTLPixelFormatR8Unorm : MTLPixelFormatRG8Unorm;
|
||||
break;
|
||||
|
||||
case kCVPixelFormatType_420YpCbCr10BiPlanarFullRange:
|
||||
case kCVPixelFormatType_444YpCbCr10BiPlanarFullRange:
|
||||
case kCVPixelFormatType_420YpCbCr10BiPlanarVideoRange:
|
||||
case kCVPixelFormatType_444YpCbCr10BiPlanarVideoRange:
|
||||
fmt = (i == 0) ? MTLPixelFormatR16Unorm : MTLPixelFormatRG16Unorm;
|
||||
break;
|
||||
|
||||
default:
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"Unknown pixel format: %x",
|
||||
CVPixelBufferGetPixelFormatType(pixBuf));
|
||||
return;
|
||||
}
|
||||
|
||||
CVReturn err = CVMetalTextureCacheCreateTextureFromImage(kCFAllocatorDefault, m_TextureCache, pixBuf, nullptr, fmt,
|
||||
CVPixelBufferGetWidthOfPlane(pixBuf, i),
|
||||
CVPixelBufferGetHeightOfPlane(pixBuf, i),
|
||||
i,
|
||||
&cvMetalTextures[i]);
|
||||
if (err != kCVReturnSuccess) {
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"CVMetalTextureCacheCreateTextureFromImage() failed: %d",
|
||||
err);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -639,22 +601,27 @@ public:
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// First, try to find a low power (Intel) or unified memory (Apple Silicon) GPU
|
||||
for (id<MTLDevice> device in devices) {
|
||||
if (device.isLowPower || device.hasUnifiedMemory) {
|
||||
return device;
|
||||
}
|
||||
}
|
||||
|
||||
// Next, we'll just try to pick something internal to the system
|
||||
for (id<MTLDevice> device in devices) {
|
||||
if (!device.isRemovable) {
|
||||
return device;
|
||||
}
|
||||
if (!m_HwAccel) {
|
||||
// Metal software decoding is always available
|
||||
return [MTLCreateSystemDefaultDevice() autorelease];
|
||||
}
|
||||
else if (qgetenv("VT_FORCE_METAL") == "1") {
|
||||
SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"Using Metal renderer due to VT_FORCE_METAL=1 override.");
|
||||
return [MTLCreateSystemDefaultDevice() autorelease];
|
||||
}
|
||||
else {
|
||||
SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION,
|
||||
"Avoiding Metal renderer due to use of dGPU/eGPU. Use VT_FORCE_METAL=1 to override.");
|
||||
}
|
||||
|
||||
// Use the system-default device
|
||||
return [MTLCreateSystemDefaultDevice() autorelease];
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
virtual bool initialize(PDECODER_PARAMETERS params) override
|
||||
|
||||
+37
-146
@@ -368,7 +368,7 @@ bool FFmpegVideoDecoder::createFrontendRenderer(PDECODER_PARAMETERS params, bool
|
||||
if (!vulkanIsSlow) {
|
||||
// The Vulkan renderer can also handle HDR with a supported compositor. We prefer
|
||||
// rendering HDR with Vulkan if possible since it's more fully featured than DRM.
|
||||
m_FrontendRenderer = new PlVkRenderer(AV_HWDEVICE_TYPE_NONE, m_BackendRenderer);
|
||||
m_FrontendRenderer = new PlVkRenderer(false, m_BackendRenderer);
|
||||
if (initializeRendererInternal(m_FrontendRenderer, params) && (m_FrontendRenderer->getRendererAttributes() & RENDERER_ATTRIBUTE_HDR_SUPPORT)) {
|
||||
return true;
|
||||
}
|
||||
@@ -396,7 +396,7 @@ bool FFmpegVideoDecoder::createFrontendRenderer(PDECODER_PARAMETERS params, bool
|
||||
if (vulkanIsSlow) {
|
||||
// Try Vulkan even if it's slow because we have no other renderer
|
||||
// that can display HDR properly on Linux.
|
||||
m_FrontendRenderer = new PlVkRenderer(AV_HWDEVICE_TYPE_NONE, m_BackendRenderer);
|
||||
m_FrontendRenderer = new PlVkRenderer(false, m_BackendRenderer);
|
||||
if (initializeRendererInternal(m_FrontendRenderer, params) && (m_FrontendRenderer->getRendererAttributes() & RENDERER_ATTRIBUTE_HDR_SUPPORT)) {
|
||||
return true;
|
||||
}
|
||||
@@ -409,7 +409,7 @@ bool FFmpegVideoDecoder::createFrontendRenderer(PDECODER_PARAMETERS params, bool
|
||||
{
|
||||
#ifdef HAVE_LIBPLACEBO_VULKAN
|
||||
if (qgetenv("PREFER_VULKAN") == "1") {
|
||||
m_FrontendRenderer = new PlVkRenderer(AV_HWDEVICE_TYPE_NONE, m_BackendRenderer);
|
||||
m_FrontendRenderer = new PlVkRenderer(false, m_BackendRenderer);
|
||||
if (initializeRendererInternal(m_FrontendRenderer, params)) {
|
||||
return true;
|
||||
}
|
||||
@@ -988,10 +988,8 @@ void FFmpegVideoDecoder::logVideoStats(VIDEO_STATS& stats, const char* title)
|
||||
}
|
||||
}
|
||||
|
||||
IFFmpegRenderer* FFmpegVideoDecoder::createHwAccelRenderer(const AVCodecHWConfig* hwDecodeCfg, PDECODER_PARAMETERS params, int pass)
|
||||
IFFmpegRenderer* FFmpegVideoDecoder::createHwAccelRenderer(const AVCodecHWConfig* hwDecodeCfg, int pass)
|
||||
{
|
||||
Q_UNUSED(params);
|
||||
|
||||
if (!(hwDecodeCfg->methods & AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX)) {
|
||||
return nullptr;
|
||||
}
|
||||
@@ -1007,19 +1005,8 @@ IFFmpegRenderer* FFmpegVideoDecoder::createHwAccelRenderer(const AVCodecHWConfig
|
||||
#endif
|
||||
#ifdef Q_OS_DARWIN
|
||||
case AV_HWDEVICE_TYPE_VIDEOTOOLBOX:
|
||||
// Prefer the libplacebo (on MoltenVK) renderer unless explicitly opted out
|
||||
#ifdef HAVE_LIBPLACEBO_VULKAN
|
||||
if (params->renderer == StreamingPreferences::RS_AUTO || params->renderer == StreamingPreferences::RS_VULKAN) {
|
||||
return new PlVkRenderer(hwDecodeCfg->device_type);
|
||||
}
|
||||
#endif
|
||||
if (params->renderer == StreamingPreferences::RS_AVSBDL) {
|
||||
return VTRendererFactory::createRenderer();
|
||||
}
|
||||
else {
|
||||
// This covers both Metal explicitly selected and probe-only (since Metal is cheap to instantiate)
|
||||
return VTMetalRendererFactory::createRenderer(true);
|
||||
}
|
||||
// Prefer the Metal renderer if hardware is compatible
|
||||
return VTMetalRendererFactory::createRenderer(true);
|
||||
#endif
|
||||
#ifdef HAVE_LIBVA
|
||||
case AV_HWDEVICE_TYPE_VAAPI:
|
||||
@@ -1035,7 +1022,7 @@ IFFmpegRenderer* FFmpegVideoDecoder::createHwAccelRenderer(const AVCodecHWConfig
|
||||
#endif
|
||||
#ifdef HAVE_LIBPLACEBO_VULKAN
|
||||
case AV_HWDEVICE_TYPE_VULKAN:
|
||||
return new PlVkRenderer(hwDecodeCfg->device_type);
|
||||
return new PlVkRenderer(true);
|
||||
#endif
|
||||
default:
|
||||
switch (hwDecodeCfg->pix_fmt) {
|
||||
@@ -1180,10 +1167,10 @@ bool FFmpegVideoDecoder::tryInitializeRenderer(const AVCodec* decoder,
|
||||
*failureReason = IFFmpegRenderer::InitFailureReason::Unknown;
|
||||
}
|
||||
|
||||
// i == 0 - Indirect via EGL, DRM, or Vulkan frontend with zero-copy buffer passing
|
||||
// i == 1 - Direct rendering or indirect via SDL or DRM read-back
|
||||
// i == 0 - Indirect via EGL or DRM frontend with zero-copy DMA-BUF passing
|
||||
// i == 1 - Direct rendering or indirect via SDL read-back
|
||||
bool backendInitFailure = false;
|
||||
#if defined(Q_OS_UNIX) && !defined(Q_OS_DARWIN) && (defined(HAVE_EGL) || defined(HAVE_DRM) || defined(HAVE_LIBPLACEBO_VULKAN))
|
||||
#ifdef HAVE_EGL
|
||||
for (int i = 0; i < 2 && !backendInitFailure; i++) {
|
||||
#else
|
||||
for (int i = 1; i < 2 && !backendInitFailure; i++) {
|
||||
@@ -1342,7 +1329,7 @@ bool FFmpegVideoDecoder::tryInitializeRendererForUnknownDecoder(const AVCodec* d
|
||||
// Initialize the hardware codec and submit a test frame if the renderer needs it
|
||||
IFFmpegRenderer::InitFailureReason failureReason;
|
||||
if (tryInitializeRenderer(decoder, AV_PIX_FMT_NONE, params, config, &failureReason,
|
||||
[config, params, pass]() -> IFFmpegRenderer* { return createHwAccelRenderer(config, params, pass); })) {
|
||||
[config, pass]() -> IFFmpegRenderer* { return createHwAccelRenderer(config, pass); })) {
|
||||
return true;
|
||||
}
|
||||
else if (failureReason == IFFmpegRenderer::InitFailureReason::NoHardwareSupport) {
|
||||
@@ -1542,7 +1529,7 @@ bool FFmpegVideoDecoder::tryInitializeHwAccelDecoder(PDECODER_PARAMETERS params,
|
||||
// Initialize the hardware codec and submit a test frame if the renderer needs it
|
||||
IFFmpegRenderer::InitFailureReason failureReason;
|
||||
if (tryInitializeRenderer(decoder, AV_PIX_FMT_NONE, params, config, &failureReason,
|
||||
[config, params, pass]() -> IFFmpegRenderer* { return createHwAccelRenderer(config, params, pass); })) {
|
||||
[config, pass]() -> IFFmpegRenderer* { return createHwAccelRenderer(config, pass); })) {
|
||||
return true;
|
||||
}
|
||||
else if (failureReason == IFFmpegRenderer::InitFailureReason::NoHardwareSupport) {
|
||||
@@ -1763,7 +1750,6 @@ void FFmpegVideoDecoder::writeBuffer(PLENTRY entry, int& offset)
|
||||
if (m_NeedsSpsFixup && entry->bufferType == BUFFER_TYPE_SPS) {
|
||||
h264_stream_t* stream = h264_new();
|
||||
int nalStart, nalEnd;
|
||||
bool needsFixup;
|
||||
|
||||
// Read the old NALU
|
||||
find_nal_unit((uint8_t*)entry->data, entry->length, &nalStart, &nalEnd);
|
||||
@@ -1776,60 +1762,33 @@ void FFmpegVideoDecoder::writeBuffer(PLENTRY entry, int& offset)
|
||||
|
||||
// Fixup the SPS to what OS X needs to use hardware acceleration
|
||||
// This is also critical for decoding latency on the Pi 2.
|
||||
needsFixup = (stream->sps->num_ref_frames != 1 || stream->sps->vui.max_dec_frame_buffering != 1);
|
||||
#ifndef QT_DEBUG
|
||||
if (needsFixup)
|
||||
#endif
|
||||
{
|
||||
stream->sps->num_ref_frames = 1;
|
||||
stream->sps->vui.max_dec_frame_buffering = 1;
|
||||
stream->sps->num_ref_frames = 1;
|
||||
stream->sps->vui.max_dec_frame_buffering = 1;
|
||||
|
||||
// NVENC doesn't seem to add bitstream restrictions anymore (591.59),
|
||||
// so we need to add them ourselves if not present to ensure that
|
||||
// the max_dec_frame_buffering option actually takes effect.
|
||||
// We use the defaults for everything except max_dec_frame_buffering.
|
||||
if (!stream->sps->vui.bitstream_restriction_flag) {
|
||||
stream->sps->vui.bitstream_restriction_flag = 1;
|
||||
stream->sps->vui.motion_vectors_over_pic_boundaries_flag = 1;
|
||||
stream->sps->vui.max_bytes_per_pic_denom = 2;
|
||||
stream->sps->vui.max_bits_per_mb_denom = 1;
|
||||
stream->sps->vui.log2_max_mv_length_horizontal = 16;
|
||||
stream->sps->vui.log2_max_mv_length_vertical = 16;
|
||||
stream->sps->vui.num_reorder_frames = 0;
|
||||
}
|
||||
|
||||
int initialOffset = offset;
|
||||
|
||||
// Copy the modified NALU data. This clobbers byte 0 and starts NALU data at byte 1.
|
||||
// Since it prepended one extra byte, subtract one from the returned length.
|
||||
offset += write_nal_unit(stream, (uint8_t*)&m_DecodeBuffer.data()[initialOffset + nalStart - 1],
|
||||
MAX_SPS_EXTRA_SIZE + entry->length - nalStart) - 1;
|
||||
|
||||
// Copy the NALU prefix over from the original SPS
|
||||
memcpy(&m_DecodeBuffer.data()[initialOffset], entry->data, nalStart);
|
||||
offset += nalStart;
|
||||
|
||||
#ifdef QT_DEBUG
|
||||
// If we didn't need a fixup, the SPS should have stayed the exact same
|
||||
if (!needsFixup) {
|
||||
SDL_assert(offset - initialOffset == entry->length);
|
||||
SDL_assert(memcmp(&m_DecodeBuffer.data()[initialOffset], entry->data, entry->length) == 0);
|
||||
}
|
||||
else {
|
||||
// The SPS should never get smaller with a fixup
|
||||
SDL_assert(offset - initialOffset >= entry->length);
|
||||
}
|
||||
#endif
|
||||
// NVENC doesn't seem to add bitstream restrictions anymore (591.59),
|
||||
// so we need to add them ourselves if not present to ensure that
|
||||
// the max_dec_frame_buffering option actually takes effect.
|
||||
// We use the defaults for everything except max_dec_frame_buffering.
|
||||
if (!stream->sps->vui.bitstream_restriction_flag) {
|
||||
stream->sps->vui.bitstream_restriction_flag = 1;
|
||||
stream->sps->vui.motion_vectors_over_pic_boundaries_flag = 1;
|
||||
stream->sps->vui.max_bytes_per_pic_denom = 2;
|
||||
stream->sps->vui.max_bits_per_mb_denom = 1;
|
||||
stream->sps->vui.log2_max_mv_length_horizontal = 16;
|
||||
stream->sps->vui.log2_max_mv_length_vertical = 16;
|
||||
stream->sps->vui.num_reorder_frames = 0;
|
||||
}
|
||||
#ifndef QT_DEBUG
|
||||
else {
|
||||
// Write the SPS as-is if it required no modification
|
||||
memcpy(&m_DecodeBuffer.data()[offset],
|
||||
entry->data,
|
||||
entry->length);
|
||||
offset += entry->length;
|
||||
}
|
||||
#endif
|
||||
|
||||
int initialOffset = offset;
|
||||
|
||||
// Copy the modified NALU data. This clobbers byte 0 and starts NALU data at byte 1.
|
||||
// Since it prepended one extra byte, subtract one from the returned length.
|
||||
offset += write_nal_unit(stream, (uint8_t*)&m_DecodeBuffer.data()[initialOffset + nalStart - 1],
|
||||
MAX_SPS_EXTRA_SIZE + entry->length - nalStart) - 1;
|
||||
|
||||
// Copy the NALU prefix over from the original SPS
|
||||
memcpy(&m_DecodeBuffer.data()[initialOffset], entry->data, nalStart);
|
||||
offset += nalStart;
|
||||
|
||||
h264_free(stream);
|
||||
}
|
||||
@@ -1946,74 +1905,6 @@ void FFmpegVideoDecoder::decoderThreadProc()
|
||||
}
|
||||
}
|
||||
|
||||
// Some decoders don't propagate color metadata from the bitstream,
|
||||
// so we will try to guess it here if it was unset.
|
||||
if (frame->color_range == AVCOL_RANGE_UNSPECIFIED) {
|
||||
switch (getDecoderColorRange()) {
|
||||
case COLOR_RANGE_LIMITED:
|
||||
frame->color_range = AVCOL_RANGE_MPEG;
|
||||
break;
|
||||
case COLOR_RANGE_FULL:
|
||||
frame->color_range = AVCOL_RANGE_JPEG;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (frame->colorspace == AVCOL_SPC_UNSPECIFIED) {
|
||||
switch (getDecoderColorspace()) {
|
||||
case COLORSPACE_REC_601:
|
||||
frame->colorspace = AVCOL_SPC_SMPTE170M;
|
||||
break;
|
||||
case COLORSPACE_REC_709:
|
||||
frame->colorspace = AVCOL_SPC_BT709;
|
||||
break;
|
||||
case COLORSPACE_REC_2020:
|
||||
frame->colorspace = AVCOL_SPC_BT2020_NCL;
|
||||
break;
|
||||
}
|
||||
|
||||
// HDR forces BT.2020 regardless of decoder preference
|
||||
if (LiGetCurrentHostDisplayHdrMode()) {
|
||||
frame->colorspace = AVCOL_SPC_BT2020_NCL;
|
||||
}
|
||||
}
|
||||
if (frame->color_primaries == AVCOL_PRI_UNSPECIFIED) {
|
||||
switch (frame->colorspace) {
|
||||
case AVCOL_SPC_BT709:
|
||||
frame->color_primaries = AVCOL_PRI_BT709;
|
||||
break;
|
||||
case AVCOL_SPC_SMPTE170M:
|
||||
frame->color_primaries = AVCOL_PRI_SMPTE170M;
|
||||
break;
|
||||
case AVCOL_SPC_BT2020_NCL:
|
||||
case AVCOL_SPC_BT2020_CL:
|
||||
frame->color_primaries = AVCOL_PRI_BT2020;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (frame->color_trc == AVCOL_TRC_UNSPECIFIED) {
|
||||
switch (frame->colorspace) {
|
||||
case AVCOL_SPC_BT709:
|
||||
frame->color_trc = AVCOL_TRC_BT709;
|
||||
break;
|
||||
case AVCOL_SPC_SMPTE170M:
|
||||
frame->color_trc = AVCOL_TRC_SMPTE170M;
|
||||
break;
|
||||
case AVCOL_SPC_BT2020_NCL:
|
||||
case AVCOL_SPC_BT2020_CL:
|
||||
frame->color_trc = AVCOL_TRC_BT2020_10;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
// HDR forces SMPTE 2084 PQ regardless of decoder preference
|
||||
if (LiGetCurrentHostDisplayHdrMode()) {
|
||||
frame->color_trc = AVCOL_TRC_SMPTE2084;
|
||||
}
|
||||
}
|
||||
|
||||
// Reset failed decodes count if we reached this far
|
||||
m_ConsecutiveFailedDecodes = 0;
|
||||
|
||||
|
||||
@@ -86,7 +86,7 @@ private:
|
||||
IFFmpegRenderer::InitFailureReason* failureReason,
|
||||
std::function<IFFmpegRenderer*()> createRendererFunc);
|
||||
|
||||
static IFFmpegRenderer* createHwAccelRenderer(const AVCodecHWConfig* hwDecodeCfg, PDECODER_PARAMETERS params, int pass);
|
||||
static IFFmpegRenderer* createHwAccelRenderer(const AVCodecHWConfig* hwDecodeCfg, int pass);
|
||||
|
||||
bool initializeRendererInternal(IFFmpegRenderer* renderer, PDECODER_PARAMETERS params);
|
||||
|
||||
|
||||
@@ -60,7 +60,9 @@ char* OverlayManager::getOverlayText(OverlayType type)
|
||||
|
||||
void OverlayManager::updateOverlayText(OverlayType type, const char* text)
|
||||
{
|
||||
SDL_utf8strlcpy(m_Overlays[type].text, text, sizeof(m_Overlays[0].text));
|
||||
strncpy(m_Overlays[type].text, text, sizeof(m_Overlays[0].text));
|
||||
m_Overlays[type].text[getOverlayMaxTextLength() - 1] = '\0';
|
||||
|
||||
setOverlayTextUpdated(type);
|
||||
}
|
||||
|
||||
@@ -149,12 +151,10 @@ void OverlayManager::notifyOverlayUpdated(OverlayType type)
|
||||
(void**)&m_Overlays[type].surface,
|
||||
m_Overlays[type].enabled ?
|
||||
// The _Wrapped variant is required for line breaks to work
|
||||
RenderTextOutlinedWrapped(m_Overlays[type].font,
|
||||
m_Overlays[type].text,
|
||||
m_Overlays[type].color,
|
||||
{0, 0, 0, 255},
|
||||
4,
|
||||
1024)
|
||||
TTF_RenderText_Blended_Wrapped(m_Overlays[type].font,
|
||||
m_Overlays[type].text,
|
||||
m_Overlays[type].color,
|
||||
1024)
|
||||
: nullptr);
|
||||
|
||||
// Notify the renderer
|
||||
@@ -165,47 +165,3 @@ void OverlayManager::notifyOverlayUpdated(OverlayType type)
|
||||
SDL_FreeSurface(oldSurface);
|
||||
}
|
||||
}
|
||||
|
||||
SDL_Surface* OverlayManager::RenderTextOutlinedWrapped(TTF_Font* font, const char* text, SDL_Color textColor, SDL_Color outlineColor, int outlineWidth, int wrapWidth) {
|
||||
if (text == nullptr || text[0] == '\0') {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
int oldOutline = TTF_GetFontOutline(font);
|
||||
TTF_SetFontOutline(font, outlineWidth);
|
||||
|
||||
// Verify that the string won't require wrapping (which could cause the outline and the text
|
||||
// to diverge due to different wrapping positions).
|
||||
//
|
||||
// FIXME: We do this rather than just disabling wrapping entirely (wrapWidth = 0) because we
|
||||
// need further testing to ensure that all renderers can handle non-NPOT overlay textures.
|
||||
for (const QString& line : QString(text).split('\n')) {
|
||||
int extent, count;
|
||||
if (TTF_MeasureUTF8(font, line.toUtf8(), wrapWidth, &extent, &count) == 0 && count < line.size()) {
|
||||
// If it requires wrapping, render it without the outline
|
||||
TTF_SetFontOutline(font, oldOutline);
|
||||
return TTF_RenderUTF8_Blended_Wrapped(font, text, textColor, wrapWidth);
|
||||
}
|
||||
}
|
||||
|
||||
// Draw text twice, but outline is a bit bigger
|
||||
auto outlineSurface = TTF_RenderUTF8_Blended_Wrapped(font, text, outlineColor, wrapWidth);
|
||||
TTF_SetFontOutline(font, 0);
|
||||
auto textSurface = TTF_RenderUTF8_Blended_Wrapped(font, text, textColor, wrapWidth);
|
||||
TTF_SetFontOutline(font, oldOutline);
|
||||
|
||||
if (outlineSurface == nullptr || textSurface == nullptr) {
|
||||
SDL_FreeSurface(outlineSurface);
|
||||
SDL_FreeSurface(textSurface);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// Merge the texts
|
||||
SDL_Rect dst = { outlineWidth, outlineWidth, textSurface->w, textSurface->h };
|
||||
SDL_BlitSurface(textSurface, nullptr, outlineSurface, &dst);
|
||||
|
||||
SDL_FreeSurface(textSurface);
|
||||
return outlineSurface;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -41,7 +41,6 @@ public:
|
||||
|
||||
private:
|
||||
void notifyOverlayUpdated(OverlayType type);
|
||||
SDL_Surface* RenderTextOutlinedWrapped(TTF_Font* font, const char* text, SDL_Color textColor, SDL_Color outlineColor, int outlineWidth, int wrapWidth);
|
||||
|
||||
struct {
|
||||
bool enabled;
|
||||
|
||||
+1
-1
@@ -26,7 +26,7 @@ CONFIG(release, debug|release) {
|
||||
# Enable ASan for Windows
|
||||
#QMAKE_CFLAGS += -fsanitize=address
|
||||
#QMAKE_CXXFLAGS += -fsanitize=address
|
||||
#QMAKE_LFLAGS += -incremental:no
|
||||
#QMAKE_LFLAGS += -incremental:no -wholearchive:clang_rt.asan_dynamic-x86_64.lib -wholearchive:clang_rt.asan_dynamic_runtime_thunk-x86_64.lib
|
||||
|
||||
# Propagate environment variable flags
|
||||
QMAKE_CFLAGS += $$(CFLAGS)
|
||||
|
||||
@@ -1,504 +0,0 @@
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 2.1, February 1999
|
||||
|
||||
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
||||
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
[This is the first released version of the Lesser GPL. It also counts
|
||||
as the successor of the GNU Library Public License, version 2, hence
|
||||
the version number 2.1.]
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
Licenses are intended to guarantee your freedom to share and change
|
||||
free software--to make sure the software is free for all its users.
|
||||
|
||||
This license, the Lesser General Public License, applies to some
|
||||
specially designated software packages--typically libraries--of the
|
||||
Free Software Foundation and other authors who decide to use it. You
|
||||
can use it too, but we suggest you first think carefully about whether
|
||||
this license or the ordinary General Public License is the better
|
||||
strategy to use in any particular case, based on the explanations below.
|
||||
|
||||
When we speak of free software, we are referring to freedom of use,
|
||||
not price. Our General Public Licenses are designed to make sure that
|
||||
you have the freedom to distribute copies of free software (and charge
|
||||
for this service if you wish); that you receive source code or can get
|
||||
it if you want it; that you can change the software and use pieces of
|
||||
it in new free programs; and that you are informed that you can do
|
||||
these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
distributors to deny you these rights or to ask you to surrender these
|
||||
rights. These restrictions translate to certain responsibilities for
|
||||
you if you distribute copies of the library or if you modify it.
|
||||
|
||||
For example, if you distribute copies of the library, whether gratis
|
||||
or for a fee, you must give the recipients all the rights that we gave
|
||||
you. You must make sure that they, too, receive or can get the source
|
||||
code. If you link other code with the library, you must provide
|
||||
complete object files to the recipients, so that they can relink them
|
||||
with the library after making changes to the library and recompiling
|
||||
it. And you must show them these terms so they know their rights.
|
||||
|
||||
We protect your rights with a two-step method: (1) we copyright the
|
||||
library, and (2) we offer you this license, which gives you legal
|
||||
permission to copy, distribute and/or modify the library.
|
||||
|
||||
To protect each distributor, we want to make it very clear that
|
||||
there is no warranty for the free library. Also, if the library is
|
||||
modified by someone else and passed on, the recipients should know
|
||||
that what they have is not the original version, so that the original
|
||||
author's reputation will not be affected by problems that might be
|
||||
introduced by others.
|
||||
|
||||
Finally, software patents pose a constant threat to the existence of
|
||||
any free program. We wish to make sure that a company cannot
|
||||
effectively restrict the users of a free program by obtaining a
|
||||
restrictive license from a patent holder. Therefore, we insist that
|
||||
any patent license obtained for a version of the library must be
|
||||
consistent with the full freedom of use specified in this license.
|
||||
|
||||
Most GNU software, including some libraries, is covered by the
|
||||
ordinary GNU General Public License. This license, the GNU Lesser
|
||||
General Public License, applies to certain designated libraries, and
|
||||
is quite different from the ordinary General Public License. We use
|
||||
this license for certain libraries in order to permit linking those
|
||||
libraries into non-free programs.
|
||||
|
||||
When a program is linked with a library, whether statically or using
|
||||
a shared library, the combination of the two is legally speaking a
|
||||
combined work, a derivative of the original library. The ordinary
|
||||
General Public License therefore permits such linking only if the
|
||||
entire combination fits its criteria of freedom. The Lesser General
|
||||
Public License permits more lax criteria for linking other code with
|
||||
the library.
|
||||
|
||||
We call this license the "Lesser" General Public License because it
|
||||
does Less to protect the user's freedom than the ordinary General
|
||||
Public License. It also provides other free software developers Less
|
||||
of an advantage over competing non-free programs. These disadvantages
|
||||
are the reason we use the ordinary General Public License for many
|
||||
libraries. However, the Lesser license provides advantages in certain
|
||||
special circumstances.
|
||||
|
||||
For example, on rare occasions, there may be a special need to
|
||||
encourage the widest possible use of a certain library, so that it becomes
|
||||
a de-facto standard. To achieve this, non-free programs must be
|
||||
allowed to use the library. A more frequent case is that a free
|
||||
library does the same job as widely used non-free libraries. In this
|
||||
case, there is little to gain by limiting the free library to free
|
||||
software only, so we use the Lesser General Public License.
|
||||
|
||||
In other cases, permission to use a particular library in non-free
|
||||
programs enables a greater number of people to use a large body of
|
||||
free software. For example, permission to use the GNU C Library in
|
||||
non-free programs enables many more people to use the whole GNU
|
||||
operating system, as well as its variant, the GNU/Linux operating
|
||||
system.
|
||||
|
||||
Although the Lesser General Public License is Less protective of the
|
||||
users' freedom, it does ensure that the user of a program that is
|
||||
linked with the Library has the freedom and the wherewithal to run
|
||||
that program using a modified version of the Library.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow. Pay close attention to the difference between a
|
||||
"work based on the library" and a "work that uses the library". The
|
||||
former contains code derived from the library, whereas the latter must
|
||||
be combined with the library in order to run.
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License Agreement applies to any software library or other
|
||||
program which contains a notice placed by the copyright holder or
|
||||
other authorized party saying it may be distributed under the terms of
|
||||
this Lesser General Public License (also called "this License").
|
||||
Each licensee is addressed as "you".
|
||||
|
||||
A "library" means a collection of software functions and/or data
|
||||
prepared so as to be conveniently linked with application programs
|
||||
(which use some of those functions and data) to form executables.
|
||||
|
||||
The "Library", below, refers to any such software library or work
|
||||
which has been distributed under these terms. A "work based on the
|
||||
Library" means either the Library or any derivative work under
|
||||
copyright law: that is to say, a work containing the Library or a
|
||||
portion of it, either verbatim or with modifications and/or translated
|
||||
straightforwardly into another language. (Hereinafter, translation is
|
||||
included without limitation in the term "modification".)
|
||||
|
||||
"Source code" for a work means the preferred form of the work for
|
||||
making modifications to it. For a library, complete source code means
|
||||
all the source code for all modules it contains, plus any associated
|
||||
interface definition files, plus the scripts used to control compilation
|
||||
and installation of the library.
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running a program using the Library is not restricted, and output from
|
||||
such a program is covered only if its contents constitute a work based
|
||||
on the Library (independent of the use of the Library in a tool for
|
||||
writing it). Whether that is true depends on what the Library does
|
||||
and what the program that uses the Library does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Library's
|
||||
complete source code as you receive it, in any medium, provided that
|
||||
you conspicuously and appropriately publish on each copy an
|
||||
appropriate copyright notice and disclaimer of warranty; keep intact
|
||||
all the notices that refer to this License and to the absence of any
|
||||
warranty; and distribute a copy of this License along with the
|
||||
Library.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy,
|
||||
and you may at your option offer warranty protection in exchange for a
|
||||
fee.
|
||||
|
||||
2. You may modify your copy or copies of the Library or any portion
|
||||
of it, thus forming a work based on the Library, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) The modified work must itself be a software library.
|
||||
|
||||
b) You must cause the files modified to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
c) You must cause the whole of the work to be licensed at no
|
||||
charge to all third parties under the terms of this License.
|
||||
|
||||
d) If a facility in the modified Library refers to a function or a
|
||||
table of data to be supplied by an application program that uses
|
||||
the facility, other than as an argument passed when the facility
|
||||
is invoked, then you must make a good faith effort to ensure that,
|
||||
in the event an application does not supply such function or
|
||||
table, the facility still operates, and performs whatever part of
|
||||
its purpose remains meaningful.
|
||||
|
||||
(For example, a function in a library to compute square roots has
|
||||
a purpose that is entirely well-defined independent of the
|
||||
application. Therefore, Subsection 2d requires that any
|
||||
application-supplied function or table used by this function must
|
||||
be optional: if the application does not supply it, the square
|
||||
root function must still compute square roots.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Library,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Library, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote
|
||||
it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Library.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Library
|
||||
with the Library (or with a work based on the Library) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may opt to apply the terms of the ordinary GNU General Public
|
||||
License instead of this License to a given copy of the Library. To do
|
||||
this, you must alter all the notices that refer to this License, so
|
||||
that they refer to the ordinary GNU General Public License, version 2,
|
||||
instead of to this License. (If a newer version than version 2 of the
|
||||
ordinary GNU General Public License has appeared, then you can specify
|
||||
that version instead if you wish.) Do not make any other change in
|
||||
these notices.
|
||||
|
||||
Once this change is made in a given copy, it is irreversible for
|
||||
that copy, so the ordinary GNU General Public License applies to all
|
||||
subsequent copies and derivative works made from that copy.
|
||||
|
||||
This option is useful when you wish to copy part of the code of
|
||||
the Library into a program that is not a library.
|
||||
|
||||
4. You may copy and distribute the Library (or a portion or
|
||||
derivative of it, under Section 2) in object code or executable form
|
||||
under the terms of Sections 1 and 2 above provided that you accompany
|
||||
it with the complete corresponding machine-readable source code, which
|
||||
must be distributed under the terms of Sections 1 and 2 above on a
|
||||
medium customarily used for software interchange.
|
||||
|
||||
If distribution of object code is made by offering access to copy
|
||||
from a designated place, then offering equivalent access to copy the
|
||||
source code from the same place satisfies the requirement to
|
||||
distribute the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
5. A program that contains no derivative of any portion of the
|
||||
Library, but is designed to work with the Library by being compiled or
|
||||
linked with it, is called a "work that uses the Library". Such a
|
||||
work, in isolation, is not a derivative work of the Library, and
|
||||
therefore falls outside the scope of this License.
|
||||
|
||||
However, linking a "work that uses the Library" with the Library
|
||||
creates an executable that is a derivative of the Library (because it
|
||||
contains portions of the Library), rather than a "work that uses the
|
||||
library". The executable is therefore covered by this License.
|
||||
Section 6 states terms for distribution of such executables.
|
||||
|
||||
When a "work that uses the Library" uses material from a header file
|
||||
that is part of the Library, the object code for the work may be a
|
||||
derivative work of the Library even though the source code is not.
|
||||
Whether this is true is especially significant if the work can be
|
||||
linked without the Library, or if the work is itself a library. The
|
||||
threshold for this to be true is not precisely defined by law.
|
||||
|
||||
If such an object file uses only numerical parameters, data
|
||||
structure layouts and accessors, and small macros and small inline
|
||||
functions (ten lines or less in length), then the use of the object
|
||||
file is unrestricted, regardless of whether it is legally a derivative
|
||||
work. (Executables containing this object code plus portions of the
|
||||
Library will still fall under Section 6.)
|
||||
|
||||
Otherwise, if the work is a derivative of the Library, you may
|
||||
distribute the object code for the work under the terms of Section 6.
|
||||
Any executables containing that work also fall under Section 6,
|
||||
whether or not they are linked directly with the Library itself.
|
||||
|
||||
6. As an exception to the Sections above, you may also combine or
|
||||
link a "work that uses the Library" with the Library to produce a
|
||||
work containing portions of the Library, and distribute that work
|
||||
under terms of your choice, provided that the terms permit
|
||||
modification of the work for the customer's own use and reverse
|
||||
engineering for debugging such modifications.
|
||||
|
||||
You must give prominent notice with each copy of the work that the
|
||||
Library is used in it and that the Library and its use are covered by
|
||||
this License. You must supply a copy of this License. If the work
|
||||
during execution displays copyright notices, you must include the
|
||||
copyright notice for the Library among them, as well as a reference
|
||||
directing the user to the copy of this License. Also, you must do one
|
||||
of these things:
|
||||
|
||||
a) Accompany the work with the complete corresponding
|
||||
machine-readable source code for the Library including whatever
|
||||
changes were used in the work (which must be distributed under
|
||||
Sections 1 and 2 above); and, if the work is an executable linked
|
||||
with the Library, with the complete machine-readable "work that
|
||||
uses the Library", as object code and/or source code, so that the
|
||||
user can modify the Library and then relink to produce a modified
|
||||
executable containing the modified Library. (It is understood
|
||||
that the user who changes the contents of definitions files in the
|
||||
Library will not necessarily be able to recompile the application
|
||||
to use the modified definitions.)
|
||||
|
||||
b) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (1) uses at run time a
|
||||
copy of the library already present on the user's computer system,
|
||||
rather than copying library functions into the executable, and (2)
|
||||
will operate properly with a modified version of the library, if
|
||||
the user installs one, as long as the modified version is
|
||||
interface-compatible with the version that the work was made with.
|
||||
|
||||
c) Accompany the work with a written offer, valid for at
|
||||
least three years, to give the same user the materials
|
||||
specified in Subsection 6a, above, for a charge no more
|
||||
than the cost of performing this distribution.
|
||||
|
||||
d) If distribution of the work is made by offering access to copy
|
||||
from a designated place, offer equivalent access to copy the above
|
||||
specified materials from the same place.
|
||||
|
||||
e) Verify that the user has already received a copy of these
|
||||
materials or that you have already sent this user a copy.
|
||||
|
||||
For an executable, the required form of the "work that uses the
|
||||
Library" must include any data and utility programs needed for
|
||||
reproducing the executable from it. However, as a special exception,
|
||||
the materials to be distributed need not include anything that is
|
||||
normally distributed (in either source or binary form) with the major
|
||||
components (compiler, kernel, and so on) of the operating system on
|
||||
which the executable runs, unless that component itself accompanies
|
||||
the executable.
|
||||
|
||||
It may happen that this requirement contradicts the license
|
||||
restrictions of other proprietary libraries that do not normally
|
||||
accompany the operating system. Such a contradiction means you cannot
|
||||
use both them and the Library together in an executable that you
|
||||
distribute.
|
||||
|
||||
7. You may place library facilities that are a work based on the
|
||||
Library side-by-side in a single library together with other library
|
||||
facilities not covered by this License, and distribute such a combined
|
||||
library, provided that the separate distribution of the work based on
|
||||
the Library and of the other library facilities is otherwise
|
||||
permitted, and provided that you do these two things:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work
|
||||
based on the Library, uncombined with any other library
|
||||
facilities. This must be distributed under the terms of the
|
||||
Sections above.
|
||||
|
||||
b) Give prominent notice with the combined library of the fact
|
||||
that part of it is a work based on the Library, and explaining
|
||||
where to find the accompanying uncombined form of the same work.
|
||||
|
||||
8. You may not copy, modify, sublicense, link with, or distribute
|
||||
the Library except as expressly provided under this License. Any
|
||||
attempt otherwise to copy, modify, sublicense, link with, or
|
||||
distribute the Library is void, and will automatically terminate your
|
||||
rights under this License. However, parties who have received copies,
|
||||
or rights, from you under this License will not have their licenses
|
||||
terminated so long as such parties remain in full compliance.
|
||||
|
||||
9. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Library or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Library (or any work based on the
|
||||
Library), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Library or works based on it.
|
||||
|
||||
10. Each time you redistribute the Library (or any work based on the
|
||||
Library), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute, link with or modify the Library
|
||||
subject to these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties with
|
||||
this License.
|
||||
|
||||
11. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Library at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Library by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Library.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under any
|
||||
particular circumstance, the balance of the section is intended to apply,
|
||||
and the section as a whole is intended to apply in other circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
12. If the distribution and/or use of the Library is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Library under this License may add
|
||||
an explicit geographical distribution limitation excluding those countries,
|
||||
so that distribution is permitted only in or among countries not thus
|
||||
excluded. In such case, this License incorporates the limitation as if
|
||||
written in the body of this License.
|
||||
|
||||
13. The Free Software Foundation may publish revised and/or new
|
||||
versions of the Lesser General Public License from time to time.
|
||||
Such new versions will be similar in spirit to the present version,
|
||||
but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Library
|
||||
specifies a version number of this License which applies to it and
|
||||
"any later version", you have the option of following the terms and
|
||||
conditions either of that version or of any later version published by
|
||||
the Free Software Foundation. If the Library does not specify a
|
||||
license version number, you may choose any version ever published by
|
||||
the Free Software Foundation.
|
||||
|
||||
14. If you wish to incorporate parts of the Library into other free
|
||||
programs whose distribution conditions are incompatible with these,
|
||||
write to the author to ask for permission. For software which is
|
||||
copyrighted by the Free Software Foundation, write to the Free
|
||||
Software Foundation; we sometimes make exceptions for this. Our
|
||||
decision will be guided by the two goals of preserving the free status
|
||||
of all derivatives of our free software and of promoting the sharing
|
||||
and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
||||
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
||||
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
||||
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
||||
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
||||
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
||||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
||||
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
||||
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
||||
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
||||
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
||||
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
||||
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
||||
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
||||
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Libraries
|
||||
|
||||
If you develop a new library, and you want it to be of the greatest
|
||||
possible use to the public, we recommend making it free software that
|
||||
everyone can redistribute and change. You can do so by permitting
|
||||
redistribution under these terms (or, alternatively, under the terms of the
|
||||
ordinary General Public License).
|
||||
|
||||
To apply these terms, attach the following notices to the library. It is
|
||||
safest to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least the
|
||||
"copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the library's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the library, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the
|
||||
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1990
|
||||
Ty Coon, President of Vice
|
||||
|
||||
That's all there is to it!
|
||||
|
||||
|
||||
@@ -1,279 +0,0 @@
|
||||
#ifndef _H264_BS_H
|
||||
#define _H264_BS_H 1
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct
|
||||
{
|
||||
uint8_t* start;
|
||||
uint8_t* p;
|
||||
uint8_t* end;
|
||||
int bits_left;
|
||||
} bs_t;
|
||||
|
||||
#define _OPTIMIZE_BS_ 1
|
||||
|
||||
#if ( _OPTIMIZE_BS_ > 0 )
|
||||
#ifndef FAST_U8
|
||||
#define FAST_U8
|
||||
#endif
|
||||
#endif
|
||||
|
||||
static bs_t* bs_new(uint8_t* buf, size_t size);
|
||||
static void bs_free(bs_t* b);
|
||||
static bs_t* bs_init(bs_t* b, uint8_t* buf, size_t size);
|
||||
static uint32_t bs_byte_aligned(bs_t* b);
|
||||
static int bs_eof(bs_t* b);
|
||||
static int bs_overrun(bs_t* b);
|
||||
static int bs_pos(bs_t* b);
|
||||
|
||||
static uint32_t bs_read_u1(bs_t* b);
|
||||
static void bs_skip_u1(bs_t* b);
|
||||
static uint32_t bs_read_u(bs_t* b, int n);
|
||||
static void bs_skip_u(bs_t* b, int n);
|
||||
static uint32_t bs_read_u8(bs_t* b);
|
||||
static uint32_t bs_read_ue(bs_t* b);
|
||||
static int32_t bs_read_se(bs_t* b);
|
||||
|
||||
static void bs_write_u1(bs_t* b, uint32_t v);
|
||||
static void bs_write_u(bs_t* b, int n, uint32_t v);
|
||||
static void bs_write_u8(bs_t* b, uint32_t v);
|
||||
static void bs_write_ue(bs_t* b, uint32_t v);
|
||||
static void bs_write_se(bs_t* b, int32_t v);
|
||||
|
||||
// IMPLEMENTATION
|
||||
|
||||
static inline bs_t* bs_init(bs_t* b, uint8_t* buf, size_t size)
|
||||
{
|
||||
b->start = buf;
|
||||
b->p = buf;
|
||||
b->end = buf + size;
|
||||
b->bits_left = 8;
|
||||
return b;
|
||||
}
|
||||
|
||||
static inline bs_t* bs_new(uint8_t* buf, size_t size)
|
||||
{
|
||||
bs_t* b = (bs_t*)malloc(sizeof(bs_t));
|
||||
bs_init(b, buf, size);
|
||||
return b;
|
||||
}
|
||||
|
||||
static inline void bs_free(bs_t* b)
|
||||
{
|
||||
free(b);
|
||||
}
|
||||
|
||||
static inline uint32_t bs_byte_aligned(bs_t* b)
|
||||
{
|
||||
return (b->bits_left == 8);
|
||||
}
|
||||
|
||||
static inline int bs_eof(bs_t* b) { if (b->p >= b->end) { return 1; } else { return 0; } }
|
||||
|
||||
static inline int bs_overrun(bs_t* b) { if (b->p > b->end) { return 1; } else { return 0; } }
|
||||
|
||||
static inline int bs_pos(bs_t* b) { if (b->p > b->end) { return (b->end - b->start); } else { return (b->p - b->start); } }
|
||||
|
||||
static inline uint32_t bs_read_u1(bs_t* b)
|
||||
{
|
||||
uint32_t r = 0;
|
||||
|
||||
b->bits_left--;
|
||||
|
||||
if (! bs_eof(b))
|
||||
{
|
||||
r = ((*(b->p)) >> b->bits_left) & 0x01;
|
||||
}
|
||||
|
||||
if (b->bits_left == 0) { b->p ++; b->bits_left = 8; }
|
||||
|
||||
return r;
|
||||
}
|
||||
|
||||
static inline void bs_skip_u1(bs_t* b)
|
||||
{
|
||||
b->bits_left--;
|
||||
if (b->bits_left == 0) { b->p ++; b->bits_left = 8; }
|
||||
}
|
||||
|
||||
static inline uint32_t bs_read_u(bs_t* b, int n)
|
||||
{
|
||||
uint32_t r = 0;
|
||||
int i;
|
||||
for (i = 0; i < n; i++)
|
||||
{
|
||||
r |= ( bs_read_u1(b) << ( n - i - 1 ) );
|
||||
}
|
||||
return r;
|
||||
}
|
||||
|
||||
static inline void bs_skip_u(bs_t* b, int n)
|
||||
{
|
||||
int i;
|
||||
for ( i = 0; i < n; i++ )
|
||||
{
|
||||
bs_skip_u1( b );
|
||||
}
|
||||
}
|
||||
|
||||
static inline uint32_t bs_read_u8(bs_t* b)
|
||||
{
|
||||
#ifdef FAST_U8
|
||||
if (b->bits_left == 8 && ! bs_eof(b)) // can do fast read
|
||||
{
|
||||
uint32_t r = b->p[0];
|
||||
b->p++;
|
||||
return r;
|
||||
}
|
||||
#endif
|
||||
return bs_read_u(b, 8);
|
||||
}
|
||||
|
||||
static inline uint32_t bs_read_ue(bs_t* b)
|
||||
{
|
||||
uint32_t r = 0;
|
||||
int i = 0;
|
||||
|
||||
while (!bs_eof(b) && (i < 32) && (bs_read_u1(b) == 0))
|
||||
{
|
||||
i++;
|
||||
}
|
||||
if (i >= 32)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
r = bs_read_u(b, i);
|
||||
r += (1U << i) - 1U;
|
||||
return r;
|
||||
}
|
||||
|
||||
static inline int32_t bs_read_se(bs_t* b)
|
||||
{
|
||||
int32_t r = bs_read_ue(b);
|
||||
if (r & 0x01)
|
||||
{
|
||||
r = (r+1)/2;
|
||||
}
|
||||
else
|
||||
{
|
||||
r = -(r/2);
|
||||
}
|
||||
return r;
|
||||
}
|
||||
|
||||
static inline void bs_write_u1(bs_t* b, uint32_t v)
|
||||
{
|
||||
b->bits_left--;
|
||||
|
||||
if (! bs_eof(b))
|
||||
{
|
||||
(*(b->p)) &= ~(0x01 << b->bits_left);
|
||||
(*(b->p)) |= ((v & 0x01) << b->bits_left);
|
||||
}
|
||||
|
||||
if (b->bits_left == 0) { b->p ++; b->bits_left = 8; }
|
||||
}
|
||||
|
||||
static inline void bs_write_u(bs_t* b, int n, uint32_t v)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < n; i++)
|
||||
{
|
||||
bs_write_u1(b, (v >> ( n - i - 1 ))&0x01 );
|
||||
}
|
||||
}
|
||||
|
||||
static inline void bs_write_u8(bs_t* b, uint32_t v)
|
||||
{
|
||||
#ifdef FAST_U8
|
||||
if (b->bits_left == 8 && ! bs_eof(b)) // can do fast write
|
||||
{
|
||||
b->p[0] = v;
|
||||
b->p++;
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
bs_write_u(b, 8, v);
|
||||
}
|
||||
|
||||
static inline void bs_write_ue(bs_t* b, uint32_t v)
|
||||
{
|
||||
static const int len_table[256] =
|
||||
{
|
||||
1,
|
||||
1,
|
||||
2,2,
|
||||
3,3,3,3,
|
||||
4,4,4,4,4,4,4,4,
|
||||
5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
|
||||
6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
|
||||
6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
|
||||
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
|
||||
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
|
||||
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
|
||||
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
|
||||
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
|
||||
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
|
||||
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
|
||||
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
|
||||
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
|
||||
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
|
||||
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
|
||||
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
|
||||
};
|
||||
|
||||
int len;
|
||||
|
||||
if (v == 0)
|
||||
{
|
||||
bs_write_u1(b, 1);
|
||||
}
|
||||
else
|
||||
{
|
||||
v++;
|
||||
|
||||
if (v >= 0x01000000)
|
||||
{
|
||||
len = 24 + len_table[ v >> 24 ];
|
||||
}
|
||||
else if(v >= 0x00010000)
|
||||
{
|
||||
len = 16 + len_table[ v >> 16 ];
|
||||
}
|
||||
else if(v >= 0x00000100)
|
||||
{
|
||||
len = 8 + len_table[ v >> 8 ];
|
||||
}
|
||||
else
|
||||
{
|
||||
len = len_table[ v ];
|
||||
}
|
||||
|
||||
bs_write_u(b, 2*len-1, v);
|
||||
}
|
||||
}
|
||||
|
||||
static inline void bs_write_se(bs_t* b, int32_t v)
|
||||
{
|
||||
if (v <= 0)
|
||||
{
|
||||
bs_write_ue(b, (~(uint32_t)v + 1) * 2);
|
||||
}
|
||||
else
|
||||
{
|
||||
bs_write_ue(b, ((uint32_t)v) * 2 - 1);
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
@@ -1,151 +0,0 @@
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "h264_stream.h"
|
||||
|
||||
h264_stream_t* h264_new()
|
||||
{
|
||||
h264_stream_t* h = (h264_stream_t*)calloc(1, sizeof(h264_stream_t));
|
||||
h->nal = (nal_t*)calloc(1, sizeof(nal_t));
|
||||
h->sps = (sps_t*)calloc(1, sizeof(sps_t));
|
||||
return h;
|
||||
}
|
||||
|
||||
void h264_free(h264_stream_t* h)
|
||||
{
|
||||
free(h->nal);
|
||||
free(h->sps);
|
||||
free(h);
|
||||
}
|
||||
|
||||
int find_nal_unit(uint8_t* buf, int size, int* nal_start, int* nal_end)
|
||||
{
|
||||
int i;
|
||||
*nal_start = 0;
|
||||
*nal_end = 0;
|
||||
|
||||
i = 0;
|
||||
while (
|
||||
(i + 2 < size) &&
|
||||
(buf[i] != 0 || buf[i+1] != 0 || buf[i+2] != 0x01) &&
|
||||
(i + 3 >= size || buf[i] != 0 || buf[i+1] != 0 || buf[i+2] != 0 || buf[i+3] != 0x01)
|
||||
)
|
||||
{
|
||||
i++;
|
||||
}
|
||||
|
||||
if (i + 2 >= size) { return 0; }
|
||||
|
||||
if (buf[i] != 0 || buf[i+1] != 0 || buf[i+2] != 0x01)
|
||||
{
|
||||
i++;
|
||||
}
|
||||
|
||||
if (i + 2 >= size || buf[i] != 0 || buf[i+1] != 0 || buf[i+2] != 0x01) { return 0; }
|
||||
i += 3;
|
||||
*nal_start = i;
|
||||
|
||||
while (
|
||||
(i + 2 < size) &&
|
||||
(buf[i] != 0 || buf[i+1] != 0 || buf[i+2] != 0) &&
|
||||
(buf[i] != 0 || buf[i+1] != 0 || buf[i+2] != 0x01)
|
||||
)
|
||||
{
|
||||
i++;
|
||||
}
|
||||
|
||||
if (i + 2 >= size) { *nal_end = size; return (*nal_end - *nal_start); }
|
||||
|
||||
*nal_end = i;
|
||||
return (*nal_end - *nal_start);
|
||||
}
|
||||
|
||||
int rbsp_to_nal(const uint8_t* rbsp_buf, const int* rbsp_size, uint8_t* nal_buf, int* nal_size)
|
||||
{
|
||||
int i;
|
||||
int j = 1;
|
||||
int count = 0;
|
||||
|
||||
if (*nal_size > 0) { nal_buf[0] = 0x00; }
|
||||
|
||||
for ( i = 0; i < *rbsp_size ; )
|
||||
{
|
||||
if ( j >= *nal_size )
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
if ( ( count == 2 ) && !(rbsp_buf[i] & 0xFC) )
|
||||
{
|
||||
nal_buf[j] = 0x03;
|
||||
j++;
|
||||
count = 0;
|
||||
continue;
|
||||
}
|
||||
nal_buf[j] = rbsp_buf[i];
|
||||
if ( rbsp_buf[i] == 0x00 )
|
||||
{
|
||||
count++;
|
||||
}
|
||||
else
|
||||
{
|
||||
count = 0;
|
||||
}
|
||||
i++;
|
||||
j++;
|
||||
}
|
||||
|
||||
*nal_size = j;
|
||||
return j;
|
||||
}
|
||||
|
||||
int nal_to_rbsp(const uint8_t* nal_buf, int* nal_size, uint8_t* rbsp_buf, int* rbsp_size)
|
||||
{
|
||||
int i;
|
||||
int j = 0;
|
||||
int count = 0;
|
||||
|
||||
for( i = 0; i < *nal_size; i++ )
|
||||
{
|
||||
if( ( count == 2 ) && ( nal_buf[i] < 0x03) )
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
if( ( count == 2 ) && ( nal_buf[i] == 0x03) )
|
||||
{
|
||||
if((i < *nal_size - 1) && (nal_buf[i+1] > 0x03))
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
if(i == *nal_size - 1)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
i++;
|
||||
count = 0;
|
||||
}
|
||||
|
||||
if ( j >= *rbsp_size )
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
rbsp_buf[j] = nal_buf[i];
|
||||
if(nal_buf[i] == 0x00)
|
||||
{
|
||||
count++;
|
||||
}
|
||||
else
|
||||
{
|
||||
count = 0;
|
||||
}
|
||||
j++;
|
||||
}
|
||||
|
||||
*nal_size = i;
|
||||
*rbsp_size = j;
|
||||
return j;
|
||||
}
|
||||
@@ -1,532 +0,0 @@
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "bs.h"
|
||||
#include "h264_stream.h"
|
||||
|
||||
int read_nal_unit(h264_stream_t* h, uint8_t* buf, int size)
|
||||
{
|
||||
nal_t* nal = h->nal;
|
||||
|
||||
int nal_size = size;
|
||||
int rbsp_size = size;
|
||||
uint8_t* rbsp_buf = (uint8_t*)calloc(1, rbsp_size);
|
||||
|
||||
int rc = nal_to_rbsp(buf, &nal_size, rbsp_buf, &rbsp_size);
|
||||
if (rc < 0) { free(rbsp_buf); return -1; }
|
||||
|
||||
bs_t* b = bs_new(rbsp_buf, rbsp_size);
|
||||
bs_skip_u(b, 1);
|
||||
nal->nal_ref_idc = bs_read_u(b, 2);
|
||||
nal->nal_unit_type = bs_read_u(b, 5);
|
||||
|
||||
if (nal->nal_unit_type == NAL_UNIT_TYPE_SPS)
|
||||
{
|
||||
read_seq_parameter_set_rbsp(h->sps, b);
|
||||
read_rbsp_trailing_bits(b);
|
||||
}
|
||||
else
|
||||
{
|
||||
bs_free(b);
|
||||
free(rbsp_buf);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (bs_overrun(b)) { bs_free(b); free(rbsp_buf); return -1; }
|
||||
|
||||
bs_free(b);
|
||||
free(rbsp_buf);
|
||||
|
||||
return nal_size;
|
||||
}
|
||||
|
||||
void read_seq_parameter_set_rbsp(sps_t* sps, bs_t* b)
|
||||
{
|
||||
int i;
|
||||
|
||||
memset(sps, 0, sizeof(sps_t));
|
||||
sps->chroma_format_idc = 1;
|
||||
|
||||
sps->profile_idc = bs_read_u8(b);
|
||||
sps->constraint_set0_flag = bs_read_u1(b);
|
||||
sps->constraint_set1_flag = bs_read_u1(b);
|
||||
sps->constraint_set2_flag = bs_read_u1(b);
|
||||
sps->constraint_set3_flag = bs_read_u1(b);
|
||||
sps->constraint_set4_flag = bs_read_u1(b);
|
||||
sps->constraint_set5_flag = bs_read_u1(b);
|
||||
bs_skip_u(b, 2);
|
||||
sps->level_idc = bs_read_u8(b);
|
||||
sps->seq_parameter_set_id = bs_read_ue(b);
|
||||
|
||||
if( sps->profile_idc == 100 || sps->profile_idc == 110 ||
|
||||
sps->profile_idc == 122 || sps->profile_idc == 244 ||
|
||||
sps->profile_idc == 44 || sps->profile_idc == 83 ||
|
||||
sps->profile_idc == 86 || sps->profile_idc == 118 ||
|
||||
sps->profile_idc == 128 || sps->profile_idc == 138 ||
|
||||
sps->profile_idc == 139 || sps->profile_idc == 134
|
||||
)
|
||||
{
|
||||
sps->chroma_format_idc = bs_read_ue(b);
|
||||
if( sps->chroma_format_idc == 3 )
|
||||
{
|
||||
sps->residual_colour_transform_flag = bs_read_u1(b);
|
||||
}
|
||||
sps->bit_depth_luma_minus8 = bs_read_ue(b);
|
||||
sps->bit_depth_chroma_minus8 = bs_read_ue(b);
|
||||
sps->qpprime_y_zero_transform_bypass_flag = bs_read_u1(b);
|
||||
sps->seq_scaling_matrix_present_flag = bs_read_u1(b);
|
||||
if( sps->seq_scaling_matrix_present_flag )
|
||||
{
|
||||
for( i = 0; i < ((sps->chroma_format_idc != 3) ? 8 : 12); i++ )
|
||||
{
|
||||
sps->seq_scaling_list_present_flag[ i ] = bs_read_u1(b);
|
||||
if( sps->seq_scaling_list_present_flag[ i ] )
|
||||
{
|
||||
if( i < 6 )
|
||||
{
|
||||
read_scaling_list( b, sps->ScalingList4x4[ i ], 16,
|
||||
&( sps->UseDefaultScalingMatrix4x4Flag[ i ] ) );
|
||||
}
|
||||
else
|
||||
{
|
||||
read_scaling_list( b, sps->ScalingList8x8[ i - 6 ], 64,
|
||||
&( sps->UseDefaultScalingMatrix8x8Flag[ i - 6 ] ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
sps->log2_max_frame_num_minus4 = bs_read_ue(b);
|
||||
sps->pic_order_cnt_type = bs_read_ue(b);
|
||||
if( sps->pic_order_cnt_type == 0 )
|
||||
{
|
||||
sps->log2_max_pic_order_cnt_lsb_minus4 = bs_read_ue(b);
|
||||
}
|
||||
else if( sps->pic_order_cnt_type == 1 )
|
||||
{
|
||||
sps->delta_pic_order_always_zero_flag = bs_read_u1(b);
|
||||
sps->offset_for_non_ref_pic = bs_read_se(b);
|
||||
sps->offset_for_top_to_bottom_field = bs_read_se(b);
|
||||
sps->num_ref_frames_in_pic_order_cnt_cycle = bs_read_ue(b);
|
||||
if (sps->num_ref_frames_in_pic_order_cnt_cycle > 256)
|
||||
{
|
||||
sps->num_ref_frames_in_pic_order_cnt_cycle = 256;
|
||||
}
|
||||
for( i = 0; i < sps->num_ref_frames_in_pic_order_cnt_cycle; i++ )
|
||||
{
|
||||
sps->offset_for_ref_frame[ i ] = bs_read_se(b);
|
||||
}
|
||||
}
|
||||
sps->num_ref_frames = bs_read_ue(b);
|
||||
sps->gaps_in_frame_num_value_allowed_flag = bs_read_u1(b);
|
||||
sps->pic_width_in_mbs_minus1 = bs_read_ue(b);
|
||||
sps->pic_height_in_map_units_minus1 = bs_read_ue(b);
|
||||
sps->frame_mbs_only_flag = bs_read_u1(b);
|
||||
if( !sps->frame_mbs_only_flag )
|
||||
{
|
||||
sps->mb_adaptive_frame_field_flag = bs_read_u1(b);
|
||||
}
|
||||
sps->direct_8x8_inference_flag = bs_read_u1(b);
|
||||
sps->frame_cropping_flag = bs_read_u1(b);
|
||||
if( sps->frame_cropping_flag )
|
||||
{
|
||||
sps->frame_crop_left_offset = bs_read_ue(b);
|
||||
sps->frame_crop_right_offset = bs_read_ue(b);
|
||||
sps->frame_crop_top_offset = bs_read_ue(b);
|
||||
sps->frame_crop_bottom_offset = bs_read_ue(b);
|
||||
}
|
||||
sps->vui_parameters_present_flag = bs_read_u1(b);
|
||||
if( sps->vui_parameters_present_flag )
|
||||
{
|
||||
read_vui_parameters(sps, b);
|
||||
}
|
||||
}
|
||||
|
||||
void read_scaling_list(bs_t* b, int* scalingList, int sizeOfScalingList, int* useDefaultScalingMatrixFlag )
|
||||
{
|
||||
int lastScale = 8;
|
||||
int nextScale = 8;
|
||||
int delta_scale;
|
||||
for( int j = 0; j < sizeOfScalingList; j++ )
|
||||
{
|
||||
if( nextScale != 0 )
|
||||
{
|
||||
delta_scale = bs_read_se(b);
|
||||
nextScale = ( lastScale + delta_scale + 256 ) % 256;
|
||||
useDefaultScalingMatrixFlag[0] = ( j == 0 && nextScale == 0 );
|
||||
}
|
||||
scalingList[ j ] = ( nextScale == 0 ) ? lastScale : nextScale;
|
||||
lastScale = scalingList[ j ];
|
||||
}
|
||||
}
|
||||
|
||||
void read_vui_parameters(sps_t* sps, bs_t* b)
|
||||
{
|
||||
sps->vui.aspect_ratio_info_present_flag = bs_read_u1(b);
|
||||
if( sps->vui.aspect_ratio_info_present_flag )
|
||||
{
|
||||
sps->vui.aspect_ratio_idc = bs_read_u8(b);
|
||||
if( sps->vui.aspect_ratio_idc == SAR_Extended )
|
||||
{
|
||||
sps->vui.sar_width = bs_read_u(b, 16);
|
||||
sps->vui.sar_height = bs_read_u(b, 16);
|
||||
}
|
||||
}
|
||||
sps->vui.overscan_info_present_flag = bs_read_u1(b);
|
||||
if( sps->vui.overscan_info_present_flag )
|
||||
{
|
||||
sps->vui.overscan_appropriate_flag = bs_read_u1(b);
|
||||
}
|
||||
sps->vui.video_signal_type_present_flag = bs_read_u1(b);
|
||||
if( sps->vui.video_signal_type_present_flag )
|
||||
{
|
||||
sps->vui.video_format = bs_read_u(b, 3);
|
||||
sps->vui.video_full_range_flag = bs_read_u1(b);
|
||||
sps->vui.colour_description_present_flag = bs_read_u1(b);
|
||||
if( sps->vui.colour_description_present_flag )
|
||||
{
|
||||
sps->vui.colour_primaries = bs_read_u8(b);
|
||||
sps->vui.transfer_characteristics = bs_read_u8(b);
|
||||
sps->vui.matrix_coefficients = bs_read_u8(b);
|
||||
}
|
||||
}
|
||||
sps->vui.chroma_loc_info_present_flag = bs_read_u1(b);
|
||||
if( sps->vui.chroma_loc_info_present_flag )
|
||||
{
|
||||
sps->vui.chroma_sample_loc_type_top_field = bs_read_ue(b);
|
||||
sps->vui.chroma_sample_loc_type_bottom_field = bs_read_ue(b);
|
||||
}
|
||||
sps->vui.timing_info_present_flag = bs_read_u1(b);
|
||||
if( sps->vui.timing_info_present_flag )
|
||||
{
|
||||
sps->vui.num_units_in_tick = bs_read_u(b, 32);
|
||||
sps->vui.time_scale = bs_read_u(b, 32);
|
||||
sps->vui.fixed_frame_rate_flag = bs_read_u1(b);
|
||||
}
|
||||
sps->vui.nal_hrd_parameters_present_flag = bs_read_u1(b);
|
||||
if( sps->vui.nal_hrd_parameters_present_flag )
|
||||
{
|
||||
read_hrd_parameters(&sps->hrd_nal, b);
|
||||
}
|
||||
sps->vui.vcl_hrd_parameters_present_flag = bs_read_u1(b);
|
||||
if( sps->vui.vcl_hrd_parameters_present_flag )
|
||||
{
|
||||
read_hrd_parameters(&sps->hrd_vcl, b);
|
||||
}
|
||||
if( sps->vui.nal_hrd_parameters_present_flag || sps->vui.vcl_hrd_parameters_present_flag )
|
||||
{
|
||||
sps->vui.low_delay_hrd_flag = bs_read_u1(b);
|
||||
}
|
||||
sps->vui.pic_struct_present_flag = bs_read_u1(b);
|
||||
sps->vui.bitstream_restriction_flag = bs_read_u1(b);
|
||||
if( sps->vui.bitstream_restriction_flag )
|
||||
{
|
||||
sps->vui.motion_vectors_over_pic_boundaries_flag = bs_read_u1(b);
|
||||
sps->vui.max_bytes_per_pic_denom = bs_read_ue(b);
|
||||
sps->vui.max_bits_per_mb_denom = bs_read_ue(b);
|
||||
sps->vui.log2_max_mv_length_horizontal = bs_read_ue(b);
|
||||
sps->vui.log2_max_mv_length_vertical = bs_read_ue(b);
|
||||
sps->vui.num_reorder_frames = bs_read_ue(b);
|
||||
sps->vui.max_dec_frame_buffering = bs_read_ue(b);
|
||||
}
|
||||
}
|
||||
|
||||
void read_hrd_parameters(hrd_t* hrd, bs_t* b)
|
||||
{
|
||||
hrd->cpb_cnt_minus1 = bs_read_ue(b);
|
||||
if (hrd->cpb_cnt_minus1 > 31)
|
||||
{
|
||||
hrd->cpb_cnt_minus1 = 31;
|
||||
}
|
||||
hrd->bit_rate_scale = bs_read_u(b, 4);
|
||||
hrd->cpb_size_scale = bs_read_u(b, 4);
|
||||
for( int SchedSelIdx = 0; SchedSelIdx <= hrd->cpb_cnt_minus1; SchedSelIdx++ )
|
||||
{
|
||||
hrd->bit_rate_value_minus1[ SchedSelIdx ] = bs_read_ue(b);
|
||||
hrd->cpb_size_value_minus1[ SchedSelIdx ] = bs_read_ue(b);
|
||||
hrd->cbr_flag[ SchedSelIdx ] = bs_read_u1(b);
|
||||
}
|
||||
hrd->initial_cpb_removal_delay_length_minus1 = bs_read_u(b, 5);
|
||||
hrd->cpb_removal_delay_length_minus1 = bs_read_u(b, 5);
|
||||
hrd->dpb_output_delay_length_minus1 = bs_read_u(b, 5);
|
||||
hrd->time_offset_length = bs_read_u(b, 5);
|
||||
}
|
||||
|
||||
void read_rbsp_trailing_bits(bs_t* b)
|
||||
{
|
||||
bs_skip_u(b, 1);
|
||||
|
||||
while( !bs_byte_aligned(b) )
|
||||
{
|
||||
bs_skip_u(b, 1);
|
||||
}
|
||||
}
|
||||
|
||||
int write_nal_unit(h264_stream_t* h, uint8_t* buf, int size)
|
||||
{
|
||||
nal_t* nal = h->nal;
|
||||
|
||||
int nal_size = size;
|
||||
int rbsp_size = size;
|
||||
uint8_t* rbsp_buf = (uint8_t*)calloc(1, rbsp_size);
|
||||
|
||||
bs_t* b = bs_new(rbsp_buf, rbsp_size);
|
||||
bs_write_u(b, 1, 0);
|
||||
bs_write_u(b, 2, nal->nal_ref_idc);
|
||||
bs_write_u(b, 5, nal->nal_unit_type);
|
||||
|
||||
if( nal->nal_unit_type == NAL_UNIT_TYPE_SPS )
|
||||
{
|
||||
write_seq_parameter_set_rbsp(h->sps, b);
|
||||
write_rbsp_trailing_bits(b);
|
||||
}
|
||||
else
|
||||
{
|
||||
bs_free(b);
|
||||
free(rbsp_buf);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (bs_overrun(b)) { bs_free(b); free(rbsp_buf); return -1; }
|
||||
|
||||
rbsp_size = bs_pos(b);
|
||||
int rc = rbsp_to_nal(rbsp_buf, &rbsp_size, buf, &nal_size);
|
||||
if (rc < 0) { bs_free(b); free(rbsp_buf); return -1; }
|
||||
|
||||
bs_free(b);
|
||||
free(rbsp_buf);
|
||||
|
||||
return nal_size;
|
||||
}
|
||||
|
||||
void write_seq_parameter_set_rbsp(sps_t* sps, bs_t* b)
|
||||
{
|
||||
int i;
|
||||
|
||||
bs_write_u8(b, sps->profile_idc);
|
||||
bs_write_u1(b, sps->constraint_set0_flag);
|
||||
bs_write_u1(b, sps->constraint_set1_flag);
|
||||
bs_write_u1(b, sps->constraint_set2_flag);
|
||||
bs_write_u1(b, sps->constraint_set3_flag);
|
||||
bs_write_u1(b, sps->constraint_set4_flag);
|
||||
bs_write_u1(b, sps->constraint_set5_flag);
|
||||
bs_write_u(b, 2, 0);
|
||||
bs_write_u8(b, sps->level_idc);
|
||||
bs_write_ue(b, sps->seq_parameter_set_id);
|
||||
|
||||
if( sps->profile_idc == 100 || sps->profile_idc == 110 ||
|
||||
sps->profile_idc == 122 || sps->profile_idc == 244 ||
|
||||
sps->profile_idc == 44 || sps->profile_idc == 83 ||
|
||||
sps->profile_idc == 86 || sps->profile_idc == 118 ||
|
||||
sps->profile_idc == 128 || sps->profile_idc == 138 ||
|
||||
sps->profile_idc == 139 || sps->profile_idc == 134
|
||||
)
|
||||
{
|
||||
bs_write_ue(b, sps->chroma_format_idc);
|
||||
if( sps->chroma_format_idc == 3 )
|
||||
{
|
||||
bs_write_u1(b, sps->residual_colour_transform_flag);
|
||||
}
|
||||
bs_write_ue(b, sps->bit_depth_luma_minus8);
|
||||
bs_write_ue(b, sps->bit_depth_chroma_minus8);
|
||||
bs_write_u1(b, sps->qpprime_y_zero_transform_bypass_flag);
|
||||
bs_write_u1(b, sps->seq_scaling_matrix_present_flag);
|
||||
if( sps->seq_scaling_matrix_present_flag )
|
||||
{
|
||||
for( i = 0; i < ((sps->chroma_format_idc != 3) ? 8 : 12); i++ )
|
||||
{
|
||||
bs_write_u1(b, sps->seq_scaling_list_present_flag[ i ]);
|
||||
if( sps->seq_scaling_list_present_flag[ i ] )
|
||||
{
|
||||
if( i < 6 )
|
||||
{
|
||||
write_scaling_list( b, sps->ScalingList4x4[ i ], 16,
|
||||
&( sps->UseDefaultScalingMatrix4x4Flag[ i ] ) );
|
||||
}
|
||||
else
|
||||
{
|
||||
write_scaling_list( b, sps->ScalingList8x8[ i - 6 ], 64,
|
||||
&( sps->UseDefaultScalingMatrix8x8Flag[ i - 6 ] ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
bs_write_ue(b, sps->log2_max_frame_num_minus4);
|
||||
bs_write_ue(b, sps->pic_order_cnt_type);
|
||||
if( sps->pic_order_cnt_type == 0 )
|
||||
{
|
||||
bs_write_ue(b, sps->log2_max_pic_order_cnt_lsb_minus4);
|
||||
}
|
||||
else if( sps->pic_order_cnt_type == 1 )
|
||||
{
|
||||
bs_write_u1(b, sps->delta_pic_order_always_zero_flag);
|
||||
bs_write_se(b, sps->offset_for_non_ref_pic);
|
||||
bs_write_se(b, sps->offset_for_top_to_bottom_field);
|
||||
bs_write_ue(b, sps->num_ref_frames_in_pic_order_cnt_cycle);
|
||||
for( i = 0; i < sps->num_ref_frames_in_pic_order_cnt_cycle; i++ )
|
||||
{
|
||||
bs_write_se(b, sps->offset_for_ref_frame[ i ]);
|
||||
}
|
||||
}
|
||||
bs_write_ue(b, sps->num_ref_frames);
|
||||
bs_write_u1(b, sps->gaps_in_frame_num_value_allowed_flag);
|
||||
bs_write_ue(b, sps->pic_width_in_mbs_minus1);
|
||||
bs_write_ue(b, sps->pic_height_in_map_units_minus1);
|
||||
bs_write_u1(b, sps->frame_mbs_only_flag);
|
||||
if( !sps->frame_mbs_only_flag )
|
||||
{
|
||||
bs_write_u1(b, sps->mb_adaptive_frame_field_flag);
|
||||
}
|
||||
bs_write_u1(b, sps->direct_8x8_inference_flag);
|
||||
bs_write_u1(b, sps->frame_cropping_flag);
|
||||
if( sps->frame_cropping_flag )
|
||||
{
|
||||
bs_write_ue(b, sps->frame_crop_left_offset);
|
||||
bs_write_ue(b, sps->frame_crop_right_offset);
|
||||
bs_write_ue(b, sps->frame_crop_top_offset);
|
||||
bs_write_ue(b, sps->frame_crop_bottom_offset);
|
||||
}
|
||||
bs_write_u1(b, sps->vui_parameters_present_flag);
|
||||
if( sps->vui_parameters_present_flag )
|
||||
{
|
||||
write_vui_parameters(sps, b);
|
||||
}
|
||||
}
|
||||
|
||||
void write_scaling_list(bs_t* b, int* scalingList, int sizeOfScalingList, int* useDefaultScalingMatrixFlag )
|
||||
{
|
||||
int lastScale = 8;
|
||||
int nextScale = 8;
|
||||
int delta_scale;
|
||||
for( int j = 0; j < sizeOfScalingList; j++ )
|
||||
{
|
||||
if( nextScale != 0 )
|
||||
{
|
||||
if (useDefaultScalingMatrixFlag[0]) {
|
||||
nextScale = 0;
|
||||
} else {
|
||||
nextScale = scalingList[ j ];
|
||||
if (j > 0 && nextScale == lastScale) {
|
||||
int all_same = 1;
|
||||
for (int k = j + 1; k < sizeOfScalingList; k++) {
|
||||
if (scalingList[k] != lastScale) {
|
||||
all_same = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (all_same) {
|
||||
nextScale = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
delta_scale = nextScale - lastScale;
|
||||
if (delta_scale < -128) {
|
||||
delta_scale += 256;
|
||||
} else if (delta_scale > 127) {
|
||||
delta_scale -= 256;
|
||||
}
|
||||
bs_write_se(b, delta_scale);
|
||||
}
|
||||
lastScale = scalingList[ j ];
|
||||
}
|
||||
}
|
||||
|
||||
void write_vui_parameters(sps_t* sps, bs_t* b)
|
||||
{
|
||||
bs_write_u1(b, sps->vui.aspect_ratio_info_present_flag);
|
||||
if( sps->vui.aspect_ratio_info_present_flag )
|
||||
{
|
||||
bs_write_u8(b, sps->vui.aspect_ratio_idc);
|
||||
if( sps->vui.aspect_ratio_idc == SAR_Extended )
|
||||
{
|
||||
bs_write_u(b, 16, sps->vui.sar_width);
|
||||
bs_write_u(b, 16, sps->vui.sar_height);
|
||||
}
|
||||
}
|
||||
bs_write_u1(b, sps->vui.overscan_info_present_flag);
|
||||
if( sps->vui.overscan_info_present_flag )
|
||||
{
|
||||
bs_write_u1(b, sps->vui.overscan_appropriate_flag);
|
||||
}
|
||||
bs_write_u1(b, sps->vui.video_signal_type_present_flag);
|
||||
if( sps->vui.video_signal_type_present_flag )
|
||||
{
|
||||
bs_write_u(b, 3, sps->vui.video_format);
|
||||
bs_write_u1(b, sps->vui.video_full_range_flag);
|
||||
bs_write_u1(b, sps->vui.colour_description_present_flag);
|
||||
if( sps->vui.colour_description_present_flag )
|
||||
{
|
||||
bs_write_u8(b, sps->vui.colour_primaries);
|
||||
bs_write_u8(b, sps->vui.transfer_characteristics);
|
||||
bs_write_u8(b, sps->vui.matrix_coefficients);
|
||||
}
|
||||
}
|
||||
bs_write_u1(b, sps->vui.chroma_loc_info_present_flag);
|
||||
if( sps->vui.chroma_loc_info_present_flag )
|
||||
{
|
||||
bs_write_ue(b, sps->vui.chroma_sample_loc_type_top_field);
|
||||
bs_write_ue(b, sps->vui.chroma_sample_loc_type_bottom_field);
|
||||
}
|
||||
bs_write_u1(b, sps->vui.timing_info_present_flag);
|
||||
if( sps->vui.timing_info_present_flag )
|
||||
{
|
||||
bs_write_u(b, 32, sps->vui.num_units_in_tick);
|
||||
bs_write_u(b, 32, sps->vui.time_scale);
|
||||
bs_write_u1(b, sps->vui.fixed_frame_rate_flag);
|
||||
}
|
||||
bs_write_u1(b, sps->vui.nal_hrd_parameters_present_flag);
|
||||
if( sps->vui.nal_hrd_parameters_present_flag )
|
||||
{
|
||||
write_hrd_parameters(&sps->hrd_nal, b);
|
||||
}
|
||||
bs_write_u1(b, sps->vui.vcl_hrd_parameters_present_flag);
|
||||
if( sps->vui.vcl_hrd_parameters_present_flag )
|
||||
{
|
||||
write_hrd_parameters(&sps->hrd_vcl, b);
|
||||
}
|
||||
if( sps->vui.nal_hrd_parameters_present_flag || sps->vui.vcl_hrd_parameters_present_flag )
|
||||
{
|
||||
bs_write_u1(b, sps->vui.low_delay_hrd_flag);
|
||||
}
|
||||
bs_write_u1(b, sps->vui.pic_struct_present_flag);
|
||||
bs_write_u1(b, sps->vui.bitstream_restriction_flag);
|
||||
if( sps->vui.bitstream_restriction_flag )
|
||||
{
|
||||
bs_write_u1(b, sps->vui.motion_vectors_over_pic_boundaries_flag);
|
||||
bs_write_ue(b, sps->vui.max_bytes_per_pic_denom);
|
||||
bs_write_ue(b, sps->vui.max_bits_per_mb_denom);
|
||||
bs_write_ue(b, sps->vui.log2_max_mv_length_horizontal);
|
||||
bs_write_ue(b, sps->vui.log2_max_mv_length_vertical);
|
||||
bs_write_ue(b, sps->vui.num_reorder_frames);
|
||||
bs_write_ue(b, sps->vui.max_dec_frame_buffering);
|
||||
}
|
||||
}
|
||||
|
||||
void write_hrd_parameters(hrd_t* hrd, bs_t* b)
|
||||
{
|
||||
bs_write_ue(b, hrd->cpb_cnt_minus1);
|
||||
bs_write_u(b, 4, hrd->bit_rate_scale);
|
||||
bs_write_u(b, 4, hrd->cpb_size_scale);
|
||||
for( int SchedSelIdx = 0; SchedSelIdx <= hrd->cpb_cnt_minus1; SchedSelIdx++ )
|
||||
{
|
||||
bs_write_ue(b, hrd->bit_rate_value_minus1[ SchedSelIdx ]);
|
||||
bs_write_ue(b, hrd->cpb_size_value_minus1[ SchedSelIdx ]);
|
||||
bs_write_u1(b, hrd->cbr_flag[ SchedSelIdx ]);
|
||||
}
|
||||
bs_write_u(b, 5, hrd->initial_cpb_removal_delay_length_minus1);
|
||||
bs_write_u(b, 5, hrd->cpb_removal_delay_length_minus1);
|
||||
bs_write_u(b, 5, hrd->dpb_output_delay_length_minus1);
|
||||
bs_write_u(b, 5, hrd->time_offset_length);
|
||||
}
|
||||
|
||||
void write_rbsp_trailing_bits(bs_t* b)
|
||||
{
|
||||
bs_write_u(b, 1, 1);
|
||||
|
||||
while( !bs_byte_aligned(b) )
|
||||
{
|
||||
bs_write_u(b, 1, 0);
|
||||
}
|
||||
}
|
||||
@@ -1,154 +0,0 @@
|
||||
#ifndef _H264_STREAM_H
|
||||
#define _H264_STREAM_H 1
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "bs.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct
|
||||
{
|
||||
int cpb_cnt_minus1;
|
||||
int bit_rate_scale;
|
||||
int cpb_size_scale;
|
||||
int bit_rate_value_minus1[32];
|
||||
int cpb_size_value_minus1[32];
|
||||
int cbr_flag[32];
|
||||
int initial_cpb_removal_delay_length_minus1;
|
||||
int cpb_removal_delay_length_minus1;
|
||||
int dpb_output_delay_length_minus1;
|
||||
int time_offset_length;
|
||||
} hrd_t;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
int profile_idc;
|
||||
int constraint_set0_flag;
|
||||
int constraint_set1_flag;
|
||||
int constraint_set2_flag;
|
||||
int constraint_set3_flag;
|
||||
int constraint_set4_flag;
|
||||
int constraint_set5_flag;
|
||||
int reserved_zero_2bits;
|
||||
int level_idc;
|
||||
int seq_parameter_set_id;
|
||||
int chroma_format_idc;
|
||||
int residual_colour_transform_flag;
|
||||
int bit_depth_luma_minus8;
|
||||
int bit_depth_chroma_minus8;
|
||||
int qpprime_y_zero_transform_bypass_flag;
|
||||
int seq_scaling_matrix_present_flag;
|
||||
int seq_scaling_list_present_flag[12];
|
||||
int ScalingList4x4[6][16];
|
||||
int UseDefaultScalingMatrix4x4Flag[6];
|
||||
int ScalingList8x8[6][64];
|
||||
int UseDefaultScalingMatrix8x8Flag[6];
|
||||
int log2_max_frame_num_minus4;
|
||||
int pic_order_cnt_type;
|
||||
int log2_max_pic_order_cnt_lsb_minus4;
|
||||
int delta_pic_order_always_zero_flag;
|
||||
int offset_for_non_ref_pic;
|
||||
int offset_for_top_to_bottom_field;
|
||||
int num_ref_frames_in_pic_order_cnt_cycle;
|
||||
int offset_for_ref_frame[256];
|
||||
int num_ref_frames;
|
||||
int gaps_in_frame_num_value_allowed_flag;
|
||||
int pic_width_in_mbs_minus1;
|
||||
int pic_height_in_map_units_minus1;
|
||||
int frame_mbs_only_flag;
|
||||
int mb_adaptive_frame_field_flag;
|
||||
int direct_8x8_inference_flag;
|
||||
int frame_cropping_flag;
|
||||
int frame_crop_left_offset;
|
||||
int frame_crop_right_offset;
|
||||
int frame_crop_top_offset;
|
||||
int frame_crop_bottom_offset;
|
||||
int vui_parameters_present_flag;
|
||||
|
||||
struct
|
||||
{
|
||||
int aspect_ratio_info_present_flag;
|
||||
int aspect_ratio_idc;
|
||||
int sar_width;
|
||||
int sar_height;
|
||||
int overscan_info_present_flag;
|
||||
int overscan_appropriate_flag;
|
||||
int video_signal_type_present_flag;
|
||||
int video_format;
|
||||
int video_full_range_flag;
|
||||
int colour_description_present_flag;
|
||||
int colour_primaries;
|
||||
int transfer_characteristics;
|
||||
int matrix_coefficients;
|
||||
int chroma_loc_info_present_flag;
|
||||
int chroma_sample_loc_type_top_field;
|
||||
int chroma_sample_loc_type_bottom_field;
|
||||
int timing_info_present_flag;
|
||||
int num_units_in_tick;
|
||||
int time_scale;
|
||||
int fixed_frame_rate_flag;
|
||||
int nal_hrd_parameters_present_flag;
|
||||
int vcl_hrd_parameters_present_flag;
|
||||
int low_delay_hrd_flag;
|
||||
int pic_struct_present_flag;
|
||||
int bitstream_restriction_flag;
|
||||
int motion_vectors_over_pic_boundaries_flag;
|
||||
int max_bytes_per_pic_denom;
|
||||
int max_bits_per_mb_denom;
|
||||
int log2_max_mv_length_horizontal;
|
||||
int log2_max_mv_length_vertical;
|
||||
int num_reorder_frames;
|
||||
int max_dec_frame_buffering;
|
||||
} vui;
|
||||
|
||||
hrd_t hrd_nal;
|
||||
hrd_t hrd_vcl;
|
||||
|
||||
} sps_t;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
int nal_ref_idc;
|
||||
int nal_unit_type;
|
||||
} nal_t;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
nal_t* nal;
|
||||
sps_t* sps;
|
||||
} h264_stream_t;
|
||||
|
||||
h264_stream_t* h264_new();
|
||||
void h264_free(h264_stream_t* h);
|
||||
|
||||
int find_nal_unit(uint8_t* buf, int size, int* nal_start, int* nal_end);
|
||||
|
||||
int rbsp_to_nal(const uint8_t* rbsp_buf, const int* rbsp_size, uint8_t* nal_buf, int* nal_size);
|
||||
int nal_to_rbsp(const uint8_t* nal_buf, int* nal_size, uint8_t* rbsp_buf, int* rbsp_size);
|
||||
|
||||
int read_nal_unit(h264_stream_t* h, uint8_t* buf, int size);
|
||||
int write_nal_unit(h264_stream_t* h, uint8_t* buf, int size);
|
||||
|
||||
void read_seq_parameter_set_rbsp(sps_t* sps, bs_t* b);
|
||||
void read_scaling_list(bs_t* b, int* scalingList, int sizeOfScalingList, int* useDefaultScalingMatrixFlag);
|
||||
void read_vui_parameters(sps_t* sps, bs_t* b);
|
||||
void read_hrd_parameters(hrd_t* hrd, bs_t* b);
|
||||
void read_rbsp_trailing_bits(bs_t* b);
|
||||
|
||||
void write_seq_parameter_set_rbsp(sps_t* sps, bs_t* b);
|
||||
void write_scaling_list(bs_t* b, int* scalingList, int sizeOfScalingList, int* useDefaultScalingMatrixFlag);
|
||||
void write_vui_parameters(sps_t* sps, bs_t* b);
|
||||
void write_hrd_parameters(hrd_t* hrd, bs_t* b);
|
||||
void write_rbsp_trailing_bits(bs_t* b);
|
||||
|
||||
#define NAL_UNIT_TYPE_SPS 7
|
||||
#define SAR_Extended 255
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Submodule
+1
Submodule h264bitstream/h264bitstream added at 34f3c58afa
@@ -24,10 +24,16 @@ include(../globaldefs.pri)
|
||||
QMAKE_CFLAGS += -std=gnu99
|
||||
}
|
||||
|
||||
SRC_DIR = $$PWD/h264bitstream
|
||||
|
||||
SOURCES += \
|
||||
h264_nal.c \
|
||||
h264_stream.c
|
||||
$$SRC_DIR/h264_nal.c \
|
||||
$$SRC_DIR/h264_sei.c \
|
||||
$$SRC_DIR/h264_stream.c
|
||||
|
||||
HEADERS += \
|
||||
bs.h \
|
||||
h264_stream.h
|
||||
$$SRC_DIR/bs.h \
|
||||
$$SRC_DIR/h264_sei.h \
|
||||
$$SRC_DIR/h264_stream.h
|
||||
|
||||
INCLUDEPATH += $$INC_DIR
|
||||
|
||||
Submodule moonlight-common-c/moonlight-common-c updated: 874ac9548f...7b026e77be
@@ -50,9 +50,7 @@ SOURCES += \
|
||||
$$ENET_DIR/protocol.c \
|
||||
$$ENET_DIR/unix.c \
|
||||
$$ENET_DIR/win32.c \
|
||||
$$COMMON_C_DIR/nanors/deps/obl/oblas_common.c \
|
||||
$$COMMON_C_DIR/nanors/deps/obl/oblas_lite.c \
|
||||
$$COMMON_C_DIR/nanors/rs.c \
|
||||
$$COMMON_C_DIR/src/rswrapper.c \
|
||||
$$COMMON_C_DIR/src/AudioStream.c \
|
||||
$$COMMON_C_DIR/src/ByteBuffer.c \
|
||||
$$COMMON_C_DIR/src/Connection.c \
|
||||
|
||||
@@ -32,21 +32,9 @@ mkdir $BUILD_FOLDER
|
||||
mkdir $DEPLOY_FOLDER
|
||||
mkdir $INSTALLER_FOLDER
|
||||
|
||||
# Enable LTO for official builds
|
||||
export CFLAGS=-flto=auto
|
||||
export CXXFLAGS=-flto=auto
|
||||
export LDFLAGS=-flto=auto
|
||||
|
||||
echo Configuring the project
|
||||
pushd $BUILD_FOLDER
|
||||
# Building with Wayland support will cause linuxdeploy to include libwayland-client.so in the AppImage.
|
||||
# Since we always use the host implementation of EGL, this can cause libEGL_mesa.so to fail to load due
|
||||
# to missing symbols from the host's version of libwayland-client.so that aren't present in the older
|
||||
# version of libwayland-client.so from our AppImage build environment. When this happens, EGL fails to
|
||||
# work even in X11. To avoid this, we will disable Wayland support for the AppImage.
|
||||
#
|
||||
# We disable DRM support because linuxdeploy doesn't bundle the appropriate libraries for Qt EGLFS.
|
||||
qmake6 $SOURCE_ROOT/moonlight-qt.pro CONFIG+=disable-wayland CONFIG+=disable-libdrm PREFIX=$DEPLOY_FOLDER/usr DEFINES+=APP_IMAGE || fail "Qmake failed!"
|
||||
qmake6 $SOURCE_ROOT/moonlight-qt.pro PREFIX=$DEPLOY_FOLDER/usr DEFINES+=APP_IMAGE || fail "Qmake failed!"
|
||||
popd
|
||||
|
||||
echo Compiling Moonlight in $BUILD_CONFIG configuration
|
||||
@@ -61,6 +49,8 @@ popd
|
||||
|
||||
export QML_SOURCES_PATHS=$SOURCE_ROOT/app/gui
|
||||
export QMAKE=qmake6
|
||||
export EXTRA_QT_MODULES="waylandclient;eglfsdeviceintegration;eglfskmssupport"
|
||||
export EXTRA_PLATFORM_PLUGINS="libqwayland-egl.so;libqwayland-generic.so;libqeglfs.so;libqlinuxfb.so"
|
||||
|
||||
echo Creating AppImage
|
||||
pushd $INSTALLER_FOLDER
|
||||
|
||||
+5
-33
@@ -41,15 +41,15 @@ if /I "%BUILD_CONFIG%"=="debug" (
|
||||
|
||||
rem Locate qmake and determine if we're using qmake.exe or (host-)qmake.bat
|
||||
rem (host-)qmake.bat is an ARM64 forwarder to the x64 version of qmake.exe
|
||||
where /q qmake.bat
|
||||
where qmake.bat
|
||||
if !ERRORLEVEL! EQU 0 (
|
||||
set QMAKE_CMD=call qmake.bat
|
||||
) else (
|
||||
where /q host-qmake.bat
|
||||
where host-qmake.bat
|
||||
if !ERRORLEVEL! EQU 0 (
|
||||
set QMAKE_CMD=call host-qmake.bat
|
||||
) else (
|
||||
where /q qmake.exe
|
||||
where qmake.exe
|
||||
if !ERRORLEVEL! EQU 0 (
|
||||
set QMAKE_CMD=qmake.exe
|
||||
) else (
|
||||
@@ -134,8 +134,7 @@ if /I "%VC_ARCH%" NEQ "%PROCESSOR_ARCHITECTURE%" (
|
||||
)
|
||||
|
||||
rem Find Visual Studio and run vcvarsall.bat
|
||||
call "%SOURCE_ROOT%\scripts\find-vswhere.bat"
|
||||
if !ERRORLEVEL! NEQ 0 goto Error
|
||||
set VSWHERE="%SOURCE_ROOT%\scripts\vswhere.exe"
|
||||
for /f "usebackq delims=" %%i in (`%VSWHERE% -latest -property installationPath`) do (
|
||||
call "%%i\VC\Auxiliary\Build\vcvarsall.bat" %VC_ARCH%
|
||||
)
|
||||
@@ -143,7 +142,6 @@ if !ERRORLEVEL! NEQ 0 goto Error
|
||||
|
||||
rem Find VC redistributable DLLs
|
||||
for /f "usebackq delims=" %%i in (`%VSWHERE% -latest -find VC\Redist\MSVC\*\%ARCH%\Microsoft.VC*.CRT`) do set VC_REDIST_DLL_PATH=%%i
|
||||
if !ERRORLEVEL! NEQ 0 goto Error
|
||||
|
||||
echo Cleaning output directories
|
||||
rmdir /s /q %DEPLOY_FOLDER%
|
||||
@@ -156,41 +154,15 @@ mkdir %BUILD_FOLDER%
|
||||
mkdir %INSTALLER_FOLDER%
|
||||
mkdir %SYMBOLS_FOLDER%
|
||||
|
||||
rem Enable LTCG for official builds
|
||||
set CFLAGS=/GL
|
||||
set CXXFLAGS=/GL
|
||||
set LDFLAGS=/LTCG
|
||||
|
||||
echo Configuring the project
|
||||
pushd %BUILD_FOLDER%
|
||||
%QMAKE_CMD% %SOURCE_ROOT%\moonlight-qt.pro
|
||||
if !ERRORLEVEL! NEQ 0 goto Error
|
||||
popd
|
||||
|
||||
rem Locate jom.exe or fall back to nmake.exe
|
||||
where /q jom.exe
|
||||
if !ERRORLEVEL! EQU 0 (
|
||||
set JOM_CMD=jom.exe
|
||||
) else if exist "%QT_PATH%\..\..\..\Tools\QtCreator\bin\jom\jom.exe" (
|
||||
set JOM_CMD="%QT_PATH%\..\..\..\Tools\QtCreator\bin\jom\jom.exe"
|
||||
) else if exist "%QT_PATH%\..\..\..\Tools\QtCreator\bin\jom.exe" (
|
||||
set JOM_CMD="%QT_PATH%\..\..\..\Tools\QtCreator\bin\jom.exe"
|
||||
) else if exist "%QT_PATH%\..\..\..\Tools\jom\jom.exe" (
|
||||
set JOM_CMD="%QT_PATH%\..\..\..\Tools\jom\jom.exe"
|
||||
) else (
|
||||
where /q nmake.exe
|
||||
if !ERRORLEVEL! EQU 0 (
|
||||
echo jom.exe not found. Falling back to nmake.exe.
|
||||
set JOM_CMD=nmake.exe
|
||||
) else (
|
||||
echo Unable to find jom.exe or nmake.exe!
|
||||
goto Error
|
||||
)
|
||||
)
|
||||
|
||||
echo Compiling Moonlight in %BUILD_CONFIG% configuration
|
||||
pushd %BUILD_FOLDER%
|
||||
!JOM_CMD! %BUILD_CONFIG%
|
||||
%SOURCE_ROOT%\scripts\jom.exe %BUILD_CONFIG%
|
||||
if !ERRORLEVEL! NEQ 0 goto Error
|
||||
popd
|
||||
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
@echo off
|
||||
|
||||
rem Search the PATH first, then well-known paths
|
||||
where /q vswhere.exe
|
||||
if %ERRORLEVEL% EQU 0 (
|
||||
set VSWHERE=vswhere.exe
|
||||
) else if exist "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" (
|
||||
set VSWHERE="%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe"
|
||||
) else if exist "%ProgramFiles%\Microsoft Visual Studio\Installer\vswhere.exe" (
|
||||
set VSWHERE="%ProgramFiles%\Microsoft Visual Studio\Installer\vswhere.exe"
|
||||
) else (
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
exit /b 0
|
||||
@@ -65,8 +65,7 @@ mkdir %BUILD_FOLDER%
|
||||
mkdir %INSTALLER_FOLDER%
|
||||
|
||||
rem Find Visual Studio and run vcvarsall.bat
|
||||
call "%SOURCE_ROOT%\scripts\find-vswhere.bat"
|
||||
if !ERRORLEVEL! NEQ 0 goto Error
|
||||
set VSWHERE="%SOURCE_ROOT%\scripts\vswhere.exe"
|
||||
for /f "usebackq delims=" %%i in (`%VSWHERE% -latest -property installationPath`) do (
|
||||
call "%%i\VC\Auxiliary\Build\vcvarsall.bat" x86
|
||||
)
|
||||
|
||||
@@ -41,11 +41,6 @@ mkdir $BUILD_ROOT
|
||||
mkdir $BUILD_FOLDER
|
||||
mkdir $INSTALLER_FOLDER
|
||||
|
||||
# Enable LTO for official builds
|
||||
export CFLAGS=-flto=thin
|
||||
export CXXFLAGS=-flto=thin
|
||||
export LDFLAGS=-flto=thin
|
||||
|
||||
echo Configuring the project
|
||||
pushd $BUILD_FOLDER
|
||||
qmake $SOURCE_ROOT/moonlight-qt.pro QMAKE_APPLE_DEVICE_ARCHS="x86_64 arm64" || fail "Qmake failed!"
|
||||
|
||||
Binary file not shown.
Binary file not shown.
+1
-1
@@ -4,7 +4,7 @@ $Organization = "moonlight-stream"
|
||||
$PrebuiltRepo = "moonlight-qt-deps"
|
||||
$TargetDir = Join-Path $PSScriptRoot "libs\windows"
|
||||
$Assets = @("windows-x64.zip", "windows-ARM64.zip")
|
||||
$Tag = "v12"
|
||||
$Tag = "v2"
|
||||
|
||||
if (Test-Path $TargetDir) {
|
||||
Write-Host "Cleaning target directory..." -ForegroundColor Cyan
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ import shutil
|
||||
|
||||
ORGANIZATION = "moonlight-stream"
|
||||
PREBUILT_REPO = "moonlight-qt-deps"
|
||||
TAG = "v12"
|
||||
TAG = "v2"
|
||||
|
||||
def get_platform_config():
|
||||
system = platform.system()
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<!-- This block is autogenerated using scripts\update-msvcredist.ps1 -->
|
||||
<?define VCREDIST_VER = "14.51.36247.0" ?>
|
||||
<?define VCREDIST_X64_SIZE = "18731856" ?>
|
||||
<?define VCREDIST_X64_SHA512 = "C42C82CFD5EAA2165B600F6109CB14FF4308CDF4CFF656A1375B4A933F1630BFE54C99C4D0FB9ED3BEA4DC4E4FDAA3DB8E7C58356CCA07C2954F4C297757D62D" ?>
|
||||
<?define VCREDIST_X64_URL = "https://download.visualstudio.microsoft.com/download/pr/ebdab8e5-1d7b-4d9f-a11b-cbb1720c3b12/843068991DAAA1F73AD9F6239BCE4D0F6A07A51F18C37EA2A867E9BECA71295C/VC_redist.x64.exe" ?>
|
||||
<?define VCREDIST_VER = "14.50.35719.0" ?>
|
||||
<?define VCREDIST_X64_SIZE = "18558944" ?>
|
||||
<?define VCREDIST_X64_SHA512 = "B618F601A1989A696C8EFA0208EFD977A3BFE9A8DF8ACE8FAE9EEF20262240E7EEFCB67CE466FE166BDC606D80D594D2DE80B3B4E530749AAB8E99F5CECD86D4" ?>
|
||||
<?define VCREDIST_X64_URL = "https://download.visualstudio.microsoft.com/download/pr/6f02464a-5e9b-486d-a506-c99a17db9a83/8995548DFFFCDE7C49987029C764355612BA6850EE09A7B6F0FDDC85BDC5C280/VC_redist.x64.exe" ?>
|
||||
<?define VCREDIST_X64_UPGRADE_CODE = "36F68A90-239C-34DF-B58C-64B30153CE35" ?>
|
||||
<?define VCREDIST_ARM64_SIZE = "11870816" ?>
|
||||
<?define VCREDIST_ARM64_SHA512 = "1B6B606B92002C6F31C0DBE1AF412D313BF9D651ABB5A4C4457E4EC17E711BFF044506F8FDB9F29639FCA7742DF4775E4B1BEA1FB438DF456A8446DA5ED658AB" ?>
|
||||
<?define VCREDIST_ARM64_URL = "https://download.visualstudio.microsoft.com/download/pr/ddfd326a-05c1-4646-9cf7-9fbc5206a9e8/B70EF586669A620A0A30A1156969C05C6A3831DC8F8BC992DA75779D2A92F944/VC_redist.arm64.exe" ?>
|
||||
<?define VCREDIST_ARM64_SIZE = "11740976" ?>
|
||||
<?define VCREDIST_ARM64_SHA512 = "5DA5D37877DA4FEDF6E50117D3CAE587E2321522C467B2C124EFF2176526C87CB2C415E6A06C7DF14C4ED4A6C296EF646638FB161F5AA52FAE6CC26DD43ADAD6" ?>
|
||||
<?define VCREDIST_ARM64_URL = "https://download.visualstudio.microsoft.com/download/pr/6f02464a-5e9b-486d-a506-c99a17db9a83/FCDA7B24413F170BD456052F08AE49FB60AC1638F083AAB7A35AFEB957AEB1D6/VC_redist.arm64.exe" ?>
|
||||
<?define VCREDIST_ARM64_UPGRADE_CODE = "DC9BAE42-810B-423A-9E25-E4073F1C7B00" ?>
|
||||
|
||||
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
|
||||
|
||||
Reference in New Issue
Block a user