init
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled

This commit is contained in:
allhaileris
2026-02-16 15:50:16 +03:00
commit afb81b8278
13816 changed files with 3689732 additions and 0 deletions

View File

@@ -0,0 +1,97 @@
// This file is part of Desktop App Toolkit,
// a set of libraries for developing nice desktop applications.
//
// For license and copyright information please follow this link:
// https://github.com/desktop-app/legal/blob/master/LEGAL
//
#include "webrtc/platform/linux/webrtc_environment_linux.h"
#include "base/debug_log.h"
#ifdef WEBRTC_USE_PIPEWIRE
#include <modules/desktop_capture/linux/wayland/base_capturer_pipewire.h>
#include <modules/portal/pipewire_utils.h>
#endif // WEBRTC_USE_PIPEWIRE
namespace Webrtc::Platform {
EnvironmentLinux::EnvironmentLinux(not_null<EnvironmentDelegate*> delegate)
: _audioFallback(delegate)
, _cameraFallback(delegate) {
#ifdef WEBRTC_USE_PIPEWIRE
if (!webrtc::InitializePipeWire()) {
LOG(("Audio Info: Failed to load pipewire 0.3 stubs."));
}
#endif // WEBRTC_USE_PIPEWIRE
}
EnvironmentLinux::~EnvironmentLinux() {
}
QString EnvironmentLinux::defaultId(DeviceType type) {
return (type == DeviceType::Camera)
? _cameraFallback.defaultId(type)
: _audioFallback.defaultId(type);
}
DeviceInfo EnvironmentLinux::device(DeviceType type, const QString &id) {
return (type == DeviceType::Camera)
? _cameraFallback.device(type, id)
: _audioFallback.device(type, id);
}
std::vector<DeviceInfo> EnvironmentLinux::devices(DeviceType type) {
return (type == DeviceType::Camera)
? _cameraFallback.devices(type)
: _audioFallback.devices(type);
}
bool EnvironmentLinux::refreshFullListOnChange(DeviceType type) {
return (type == DeviceType::Camera)
? _cameraFallback.refreshFullListOnChange(type)
: _audioFallback.refreshFullListOnChange(type);
}
bool EnvironmentLinux::desktopCaptureAllowed() const {
return true;
}
std::optional<QString> EnvironmentLinux::uniqueDesktopCaptureSource() const {
#ifdef WEBRTC_USE_PIPEWIRE
if (webrtc::DesktopCapturer::IsRunningUnderWayland()) {
return u"desktop_capturer_pipewire"_q;
}
#endif // WEBRTC_USE_PIPEWIRE
return std::nullopt;
}
void EnvironmentLinux::defaultIdRequested(DeviceType type) {
if (type == DeviceType::Camera) {
_cameraFallback.defaultIdRequested(type);
} else {
_audioFallback.defaultIdRequested(type);
}
}
void EnvironmentLinux::devicesRequested(DeviceType type) {
if (type == DeviceType::Camera) {
_cameraFallback.devicesRequested(type);
} else {
_audioFallback.devicesRequested(type);
}
}
DeviceResolvedId EnvironmentLinux::threadSafeResolveId(
const DeviceResolvedId &lastResolvedId,
const QString &savedId) {
return (lastResolvedId.type == DeviceType::Camera)
? _cameraFallback.threadSafeResolveId(lastResolvedId, savedId)
: _audioFallback.threadSafeResolveId(lastResolvedId, savedId);
}
std::unique_ptr<Environment> CreateEnvironment(
not_null<EnvironmentDelegate*> delegate) {
return std::make_unique<EnvironmentLinux>(delegate);
}
} // namespace Webrtc::Platform

View File

@@ -0,0 +1,43 @@
// This file is part of Desktop App Toolkit,
// a set of libraries for developing nice desktop applications.
//
// For license and copyright information please follow this link:
// https://github.com/desktop-app/legal/blob/master/LEGAL
//
#pragma once
#include "webrtc/platform/webrtc_platform_environment.h"
#include "webrtc/details/webrtc_environment_openal.h"
#include "webrtc/details/webrtc_environment_video_capture.h"
namespace Webrtc::Platform {
class EnvironmentLinux final : public Environment {
public:
explicit EnvironmentLinux(not_null<EnvironmentDelegate*> delegate);
~EnvironmentLinux();
QString defaultId(DeviceType type) override;
DeviceInfo device(DeviceType type, const QString &id) override;
std::vector<DeviceInfo> devices(DeviceType type) override;
bool refreshFullListOnChange(DeviceType type) override;
bool desktopCaptureAllowed() const override;
std::optional<QString> uniqueDesktopCaptureSource() const override;
void defaultIdRequested(DeviceType type) override;
void devicesRequested(DeviceType type) override;
DeviceResolvedId threadSafeResolveId(
const DeviceResolvedId &lastResolvedId,
const QString &savedId) override;
private:
details::EnvironmentOpenAL _audioFallback;
details::EnvironmentVideoCapture _cameraFallback;
};
} // namespace Webrtc::Platform