mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-08-01 19:18:28 -04:00
feat(bluetooth): built in audio codec support - another dep bites the dust
- Updated the codec logic to utilize WirePlumber, bye pactl - Improved UI to display media and call codec sections
This commit is contained in:
@@ -18,6 +18,8 @@ Item {
|
|||||||
property string statusMessage: ""
|
property string statusMessage: ""
|
||||||
property bool statusIsError: false
|
property bool statusIsError: false
|
||||||
|
|
||||||
|
readonly property var mediaCodecs: availableCodecs.filter(c => (c.category || "media") !== "call")
|
||||||
|
readonly property var callCodecs: availableCodecs.filter(c => c.category === "call")
|
||||||
readonly property bool deviceValid: device !== null && device.connected && BluetoothService.isAudioDevice(device)
|
readonly property bool deviceValid: device !== null && device.connected && BluetoothService.isAudioDevice(device)
|
||||||
|
|
||||||
signal codecSelected(string deviceAddress, string codecName)
|
signal codecSelected(string deviceAddress, string codecName)
|
||||||
@@ -64,8 +66,8 @@ Item {
|
|||||||
availableCodecs = codecs;
|
availableCodecs = codecs;
|
||||||
currentCodec = current;
|
currentCodec = current;
|
||||||
isLoading = false;
|
isLoading = false;
|
||||||
if (BluetoothService.pactlChecked && !BluetoothService.pactlAvailable) {
|
if (BluetoothService.wpexecChecked && !BluetoothService.wpexecAvailable && !BluetoothService.dbusBridgeAvailable) {
|
||||||
statusMessage = I18n.tr("Codec switching is unavailable because pactl was not found");
|
statusMessage = I18n.tr("Codec switching is unavailable because WirePlumber was not found");
|
||||||
statusIsError = true;
|
statusIsError = true;
|
||||||
} else if (codecs.length === 0) {
|
} else if (codecs.length === 0) {
|
||||||
statusMessage = I18n.tr("No codecs found");
|
statusMessage = I18n.tr("No codecs found");
|
||||||
@@ -98,12 +100,14 @@ Item {
|
|||||||
|
|
||||||
isLoading = false;
|
isLoading = false;
|
||||||
if (success) {
|
if (success) {
|
||||||
|
BluetoothService.updateDeviceCodec(capturedAddress, selectedCodec.name);
|
||||||
|
codecSelected(capturedAddress, selectedCodec.name);
|
||||||
ToastService.showToast(message, ToastService.levelInfo);
|
ToastService.showToast(message, ToastService.levelInfo);
|
||||||
Qt.callLater(root.hide);
|
Qt.callLater(root.hide);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ToastService.showToast(message, ToastService.levelError);
|
ToastService.showToast(message, ToastService.levelError);
|
||||||
});
|
}, selectedCodec.name);
|
||||||
}
|
}
|
||||||
|
|
||||||
onDeviceValidChanged: {
|
onDeviceValidChanged: {
|
||||||
@@ -254,86 +258,118 @@ Item {
|
|||||||
spacing: Theme.spacingXS
|
spacing: Theme.spacingXS
|
||||||
visible: !isLoading && availableCodecs.length > 0
|
visible: !isLoading && availableCodecs.length > 0
|
||||||
|
|
||||||
|
StyledText {
|
||||||
|
text: I18n.tr("Media")
|
||||||
|
font.pixelSize: Theme.fontSizeSmall
|
||||||
|
font.weight: Font.Medium
|
||||||
|
color: Theme.surfaceTextMedium
|
||||||
|
visible: root.mediaCodecs.length > 0 && root.callCodecs.length > 0
|
||||||
|
width: parent.width
|
||||||
|
}
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
model: availableCodecs
|
model: root.mediaCodecs
|
||||||
|
delegate: codecRow
|
||||||
|
}
|
||||||
|
|
||||||
|
Item {
|
||||||
|
width: 1
|
||||||
|
height: Theme.spacingS
|
||||||
|
visible: root.mediaCodecs.length > 0 && root.callCodecs.length > 0
|
||||||
|
}
|
||||||
|
|
||||||
|
StyledText {
|
||||||
|
text: I18n.tr("Calls / Headset")
|
||||||
|
font.pixelSize: Theme.fontSizeSmall
|
||||||
|
font.weight: Font.Medium
|
||||||
|
color: Theme.surfaceTextMedium
|
||||||
|
visible: root.callCodecs.length > 0
|
||||||
|
width: parent.width
|
||||||
|
}
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
model: root.callCodecs
|
||||||
|
delegate: codecRow
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Component {
|
||||||
|
id: codecRow
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
required property var modelData
|
||||||
|
width: parent ? parent.width : 280
|
||||||
|
height: 48
|
||||||
|
radius: Theme.cornerRadius
|
||||||
|
color: {
|
||||||
|
if (modelData.name === root.currentCodec)
|
||||||
|
return Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency);
|
||||||
|
if (codecMouseArea.containsMouse)
|
||||||
|
return Theme.surfaceHover;
|
||||||
|
return "transparent";
|
||||||
|
}
|
||||||
|
border.color: "transparent"
|
||||||
|
border.width: 0
|
||||||
|
|
||||||
|
Row {
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.leftMargin: Theme.spacingM
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
spacing: Theme.spacingS
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
width: parent.width
|
width: 6
|
||||||
height: 48
|
height: 6
|
||||||
radius: Theme.cornerRadius
|
radius: 3
|
||||||
color: {
|
color: modelData.qualityColor
|
||||||
if (modelData.name === currentCodec)
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
return Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency);
|
}
|
||||||
else if (codecMouseArea.containsMouse)
|
|
||||||
return Theme.surfaceHover;
|
|
||||||
else
|
|
||||||
return "transparent";
|
|
||||||
}
|
|
||||||
border.color: "transparent"
|
|
||||||
border.width: 0
|
|
||||||
|
|
||||||
Row {
|
Column {
|
||||||
anchors.left: parent.left
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
anchors.leftMargin: Theme.spacingM
|
spacing: Theme.spacingXXS
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
|
||||||
spacing: Theme.spacingS
|
|
||||||
|
|
||||||
Rectangle {
|
StyledText {
|
||||||
width: 6
|
text: modelData.name
|
||||||
height: 6
|
font.pixelSize: Theme.fontSizeMedium
|
||||||
radius: 3
|
color: modelData.name === root.currentCodec ? Theme.primary : Theme.surfaceText
|
||||||
color: modelData.qualityColor
|
font.weight: modelData.name === root.currentCodec ? Font.Medium : Font.Normal
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
|
||||||
}
|
|
||||||
|
|
||||||
Column {
|
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
|
||||||
spacing: Theme.spacingXXS
|
|
||||||
|
|
||||||
StyledText {
|
|
||||||
text: modelData.name
|
|
||||||
font.pixelSize: Theme.fontSizeMedium
|
|
||||||
color: modelData.name === currentCodec ? Theme.primary : Theme.surfaceText
|
|
||||||
font.weight: modelData.name === currentCodec ? Font.Medium : Font.Normal
|
|
||||||
}
|
|
||||||
|
|
||||||
StyledText {
|
|
||||||
text: modelData.description
|
|
||||||
font.pixelSize: Theme.fontSizeSmall
|
|
||||||
color: Theme.surfaceTextMedium
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
DankIcon {
|
StyledText {
|
||||||
name: "check"
|
text: modelData.description
|
||||||
size: Theme.iconSize - 4
|
font.pixelSize: Theme.fontSizeSmall
|
||||||
color: Theme.primary
|
color: Theme.surfaceTextMedium
|
||||||
anchors.right: parent.right
|
|
||||||
anchors.rightMargin: Theme.spacingM
|
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
|
||||||
visible: modelData.name === currentCodec
|
|
||||||
}
|
|
||||||
|
|
||||||
DankRipple {
|
|
||||||
id: codecRipple
|
|
||||||
cornerRadius: parent.radius
|
|
||||||
}
|
|
||||||
|
|
||||||
MouseArea {
|
|
||||||
id: codecMouseArea
|
|
||||||
|
|
||||||
anchors.fill: parent
|
|
||||||
hoverEnabled: true
|
|
||||||
cursorShape: Qt.PointingHandCursor
|
|
||||||
enabled: modelData.name !== currentCodec && !isLoading
|
|
||||||
onPressed: mouse => codecRipple.trigger(mouse.x, mouse.y)
|
|
||||||
onClicked: {
|
|
||||||
selectCodec(modelData.profile);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DankIcon {
|
||||||
|
name: "check"
|
||||||
|
size: Theme.iconSize - 4
|
||||||
|
color: Theme.primary
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.rightMargin: Theme.spacingM
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
visible: modelData.name === root.currentCodec
|
||||||
|
}
|
||||||
|
|
||||||
|
DankRipple {
|
||||||
|
id: codecRipple
|
||||||
|
cornerRadius: parent.radius
|
||||||
|
}
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
id: codecMouseArea
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
hoverEnabled: true
|
||||||
|
cursorShape: Qt.PointingHandCursor
|
||||||
|
enabled: modelData.name !== root.currentCodec && !root.isLoading
|
||||||
|
onPressed: mouse => codecRipple.trigger(mouse.x, mouse.y)
|
||||||
|
onClicked: root.selectCodec(modelData.profile)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -92,15 +92,7 @@ Rectangle {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function updateDeviceCodecDisplay(deviceAddress, codecName) {
|
function updateDeviceCodecDisplay(deviceAddress, codecName) {
|
||||||
for (let i = 0; i < pairedRepeater.count; i++) {
|
BluetoothService.updateDeviceCodec(deviceAddress, codecName);
|
||||||
const item = pairedRepeater.itemAt(i);
|
|
||||||
if (!item?.modelData)
|
|
||||||
continue;
|
|
||||||
if (item.modelData.address !== deviceAddress)
|
|
||||||
continue;
|
|
||||||
item.currentCodec = codecName;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function normalizePinList(value) {
|
function normalizePinList(value) {
|
||||||
@@ -255,7 +247,10 @@ Rectangle {
|
|||||||
required property var modelData
|
required property var modelData
|
||||||
required property int index
|
required property int index
|
||||||
|
|
||||||
readonly property string currentCodec: BluetoothService.deviceCodecs[modelData.address] || ""
|
readonly property string currentCodec: {
|
||||||
|
const codecs = BluetoothService.deviceCodecs;
|
||||||
|
return codecs[modelData.address] || "";
|
||||||
|
}
|
||||||
readonly property bool isConnecting: modelData.state === BluetoothDeviceState.Connecting
|
readonly property bool isConnecting: modelData.state === BluetoothDeviceState.Connecting
|
||||||
readonly property bool isConnected: modelData.connected
|
readonly property bool isConnected: modelData.connected
|
||||||
readonly property bool isPinned: root.getPinnedDevices().includes(modelData.address)
|
readonly property bool isPinned: root.getPinnedDevices().includes(modelData.address)
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import QtQuick
|
|||||||
import Quickshell
|
import Quickshell
|
||||||
import Quickshell.Io
|
import Quickshell.Io
|
||||||
import Quickshell.Bluetooth
|
import Quickshell.Bluetooth
|
||||||
|
import qs.Common
|
||||||
import qs.Services
|
import qs.Services
|
||||||
|
|
||||||
Singleton {
|
Singleton {
|
||||||
@@ -14,9 +15,18 @@ Singleton {
|
|||||||
readonly property bool available: adapter !== null
|
readonly property bool available: adapter !== null
|
||||||
readonly property bool enabled: (adapter && adapter.enabled) ?? false
|
readonly property bool enabled: (adapter && adapter.enabled) ?? false
|
||||||
readonly property bool discovering: (adapter && adapter.discovering) ?? false
|
readonly property bool discovering: (adapter && adapter.discovering) ?? false
|
||||||
property bool pactlAvailable: false
|
readonly property bool dbusBridgeAvailable: DMSService.isConnected && DMSService.capabilities.includes("dbus")
|
||||||
property bool pactlChecked: false
|
property bool wpexecAvailable: false
|
||||||
property var pendingPactlActions: []
|
property bool wpexecChecked: false
|
||||||
|
property var pendingCodecActions: []
|
||||||
|
property bool _codecSignalsSubscribed: false
|
||||||
|
readonly property string bluezService: "org.bluez"
|
||||||
|
readonly property string mediaTransportIface: "org.bluez.MediaTransport1"
|
||||||
|
readonly property string mediaEndpointIface: "org.bluez.MediaEndpoint1"
|
||||||
|
readonly property string objectManagerIface: "org.freedesktop.DBus.ObjectManager"
|
||||||
|
readonly property string propertiesIface: "org.freedesktop.DBus.Properties"
|
||||||
|
readonly property string cardProfileScript: Quickshell.shellDir + "/scripts/bluez-card-profile.lua"
|
||||||
|
readonly property bool codecControlAvailable: wpexecChecked && wpexecAvailable
|
||||||
readonly property var devices: adapter ? adapter.devices : null
|
readonly property var devices: adapter ? adapter.devices : null
|
||||||
readonly property bool enhancedPairingAvailable: DMSService.dmsAvailable && DMSService.apiVersion >= 9 && DMSService.capabilities.includes("bluetooth")
|
readonly property bool enhancedPairingAvailable: DMSService.dmsAvailable && DMSService.apiVersion >= 9 && DMSService.capabilities.includes("bluetooth")
|
||||||
readonly property bool connected: {
|
readonly property bool connected: {
|
||||||
@@ -65,20 +75,189 @@ Singleton {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
detectPactlProcess.running = true;
|
detectWpexecProcess.running = true;
|
||||||
|
maybeSubscribeCodecSignals();
|
||||||
}
|
}
|
||||||
|
|
||||||
function whenPactlChecked(action) {
|
Connections {
|
||||||
if (pactlChecked) {
|
target: DMSService
|
||||||
|
|
||||||
|
function onConnectionStateChanged() {
|
||||||
|
root._codecSignalsSubscribed = false;
|
||||||
|
root.maybeSubscribeCodecSignals();
|
||||||
|
}
|
||||||
|
|
||||||
|
function onCapabilitiesReceived() {
|
||||||
|
root.maybeSubscribeCodecSignals();
|
||||||
|
}
|
||||||
|
|
||||||
|
function onDbusSignalReceived(subscriptionId, data) {
|
||||||
|
root.handleCodecDbusSignal(data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function whenCodecBackendReady(action) {
|
||||||
|
if (wpexecChecked) {
|
||||||
action();
|
action();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const actions = pendingPactlActions.slice();
|
const actions = pendingCodecActions.slice();
|
||||||
actions.push(action);
|
actions.push(action);
|
||||||
pendingPactlActions = actions;
|
pendingCodecActions = actions;
|
||||||
if (!detectPactlProcess.running)
|
if (!detectWpexecProcess.running)
|
||||||
detectPactlProcess.running = true;
|
detectWpexecProcess.running = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
function maybeSubscribeCodecSignals() {
|
||||||
|
if (!dbusBridgeAvailable || _codecSignalsSubscribed)
|
||||||
|
return;
|
||||||
|
_codecSignalsSubscribed = true;
|
||||||
|
DMSService.dbusSubscribe("system", bluezService, "", objectManagerIface, "InterfacesAdded", null);
|
||||||
|
DMSService.dbusSubscribe("system", bluezService, "", objectManagerIface, "InterfacesRemoved", null);
|
||||||
|
DMSService.dbusSubscribe("system", bluezService, "", propertiesIface, "PropertiesChanged", null);
|
||||||
|
}
|
||||||
|
|
||||||
|
function handleCodecDbusSignal(data) {
|
||||||
|
if (!data?.path || !data.path.includes("/dev_"))
|
||||||
|
return;
|
||||||
|
|
||||||
|
const member = data.member || "";
|
||||||
|
if (member !== "InterfacesAdded" && member !== "InterfacesRemoved" && member !== "PropertiesChanged")
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (member === "PropertiesChanged" && data.body?.[0] !== mediaTransportIface && data.body?.[0] !== mediaEndpointIface)
|
||||||
|
return;
|
||||||
|
|
||||||
|
const device = deviceForDbusPath(data.path);
|
||||||
|
if (device && device.connected && isAudioDevice(device))
|
||||||
|
Qt.callLater(() => root.refreshDeviceCodec(device));
|
||||||
|
}
|
||||||
|
|
||||||
|
function deviceForDbusPath(path) {
|
||||||
|
if (!path || !adapter?.devices)
|
||||||
|
return null;
|
||||||
|
const match = path.match(/\/dev_([0-9A-Fa-f_]+)/);
|
||||||
|
if (!match)
|
||||||
|
return null;
|
||||||
|
const address = match[1].replace(/_/g, ":").toUpperCase();
|
||||||
|
return adapter.devices.values.find(d => (d.address || "").toUpperCase() === address) ?? null;
|
||||||
|
}
|
||||||
|
|
||||||
|
function bytesFromDbusValue(value) {
|
||||||
|
if (!value)
|
||||||
|
return [];
|
||||||
|
if (Array.isArray(value))
|
||||||
|
return value.map(v => Number(v) & 0xff);
|
||||||
|
if (typeof value === "string") {
|
||||||
|
try {
|
||||||
|
const decoded = Qt.atob(value);
|
||||||
|
if (decoded instanceof ArrayBuffer) {
|
||||||
|
return Array.from(new Uint8Array(decoded));
|
||||||
|
}
|
||||||
|
const bytes = [];
|
||||||
|
for (let i = 0; i < decoded.length; i++)
|
||||||
|
bytes.push(decoded.charCodeAt(i) & 0xff);
|
||||||
|
return bytes;
|
||||||
|
} catch (e) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
function codecNameFromBluez(codecId, configValue) {
|
||||||
|
const id = Number(codecId);
|
||||||
|
if (id === 0x00)
|
||||||
|
return "SBC";
|
||||||
|
if (id === 0x01)
|
||||||
|
return "MPEG12";
|
||||||
|
if (id === 0x02)
|
||||||
|
return "AAC";
|
||||||
|
if (id === 0x04)
|
||||||
|
return "ATRAC";
|
||||||
|
if (id === 0xFF) {
|
||||||
|
const bytes = bytesFromDbusValue(configValue);
|
||||||
|
if (bytes.length >= 6) {
|
||||||
|
const vendor = bytes[0] | (bytes[1] << 8) | (bytes[2] << 16) | (bytes[3] << 24);
|
||||||
|
const vendorCodec = bytes[4] | (bytes[5] << 8);
|
||||||
|
if (vendor === 0x0000004f && vendorCodec === 0x0001)
|
||||||
|
return "APTX";
|
||||||
|
if (vendor === 0x000000d7 && vendorCodec === 0x0024)
|
||||||
|
return "APTX_HD";
|
||||||
|
if (vendor === 0x0000000a && vendorCodec === 0x0002)
|
||||||
|
return "APTX";
|
||||||
|
if (vendor === 0x0000012d && vendorCodec === 0x00aa)
|
||||||
|
return "LDAC";
|
||||||
|
}
|
||||||
|
return "VENDOR";
|
||||||
|
}
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
function queryBluezCodecState(device, callback) {
|
||||||
|
if (!dbusBridgeAvailable || !device) {
|
||||||
|
callback([], "");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const devicePath = getDevicePath(device);
|
||||||
|
if (!devicePath) {
|
||||||
|
callback([], "");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
DMSService.dbusCall("system", bluezService, "/", objectManagerIface, "GetManagedObjects", [], response => {
|
||||||
|
if (response.error) {
|
||||||
|
callback([], "");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const objects = response.result?.values?.[0] || {};
|
||||||
|
const codecs = [];
|
||||||
|
let current = "";
|
||||||
|
|
||||||
|
for (const path in objects) {
|
||||||
|
if (!path.startsWith(devicePath + "/"))
|
||||||
|
continue;
|
||||||
|
const ifaces = objects[path] || {};
|
||||||
|
const transport = ifaces[mediaTransportIface];
|
||||||
|
if (transport) {
|
||||||
|
const name = codecNameFromBluez(transport.Codec, transport.Configuration);
|
||||||
|
if (name) {
|
||||||
|
current = root.getCodecInfo(name).name;
|
||||||
|
if (!codecs.some(c => c.name === current)) {
|
||||||
|
const info = root.getCodecInfo(name);
|
||||||
|
codecs.push({
|
||||||
|
"name": info.name,
|
||||||
|
"profile": info.name,
|
||||||
|
"description": info.description,
|
||||||
|
"qualityColor": info.qualityColor,
|
||||||
|
"category": root.codecCategory(info.name, info.name)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const endpoint = ifaces[mediaEndpointIface];
|
||||||
|
if (endpoint) {
|
||||||
|
const name = codecNameFromBluez(endpoint.Codec, endpoint.Capabilities || endpoint.Configuration);
|
||||||
|
if (name) {
|
||||||
|
const info = root.getCodecInfo(name);
|
||||||
|
if (!codecs.some(c => c.name === info.name)) {
|
||||||
|
codecs.push({
|
||||||
|
"name": info.name,
|
||||||
|
"profile": info.name,
|
||||||
|
"description": info.description,
|
||||||
|
"qualityColor": info.qualityColor,
|
||||||
|
"category": root.codecCategory(info.name, info.name)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
callback(codecs, current);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function sortDevices(devices) {
|
function sortDevices(devices) {
|
||||||
@@ -256,8 +435,8 @@ Singleton {
|
|||||||
function getDevicePath(device) {
|
function getDevicePath(device) {
|
||||||
if (!device || !device.address) {
|
if (!device || !device.address) {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
return device.dbusPath ?? "";
|
return device.dbusPath ?? "";
|
||||||
}
|
}
|
||||||
|
|
||||||
function isAudioDevice(device) {
|
function isAudioDevice(device) {
|
||||||
@@ -282,16 +461,61 @@ Singleton {
|
|||||||
"description": "High quality • Balanced battery",
|
"description": "High quality • Balanced battery",
|
||||||
"qualityColor": "#FF9800"
|
"qualityColor": "#FF9800"
|
||||||
},
|
},
|
||||||
|
"APTX_LL": {
|
||||||
|
"name": "aptX LL",
|
||||||
|
"description": "Low latency • Gaming and video",
|
||||||
|
"qualityColor": "#FF9800"
|
||||||
|
},
|
||||||
|
"APTX_ADAPTIVE": {
|
||||||
|
"name": "aptX Adaptive",
|
||||||
|
"description": "Adaptive quality and latency",
|
||||||
|
"qualityColor": "#FF9800"
|
||||||
|
},
|
||||||
"APTX": {
|
"APTX": {
|
||||||
"name": "aptX",
|
"name": "aptX",
|
||||||
"description": "Good quality • Low latency",
|
"description": "Good quality • Low latency",
|
||||||
"qualityColor": "#FF9800"
|
"qualityColor": "#FF9800"
|
||||||
},
|
},
|
||||||
|
"AAC_ELD": {
|
||||||
|
"name": "AAC-ELD",
|
||||||
|
"description": "Low-delay AAC • Voice and video",
|
||||||
|
"qualityColor": "#2196F3"
|
||||||
|
},
|
||||||
"AAC": {
|
"AAC": {
|
||||||
"name": "AAC",
|
"name": "AAC",
|
||||||
"description": "Balanced quality and battery",
|
"description": "Balanced quality and battery",
|
||||||
"qualityColor": "#2196F3"
|
"qualityColor": "#2196F3"
|
||||||
},
|
},
|
||||||
|
"OPUS_05": {
|
||||||
|
"name": "Opus",
|
||||||
|
"description": "High quality • Modern Bluetooth LE audio",
|
||||||
|
"qualityColor": "#4CAF50"
|
||||||
|
},
|
||||||
|
"OPUS_G": {
|
||||||
|
"name": "Opus",
|
||||||
|
"description": "High quality • Modern Bluetooth LE audio",
|
||||||
|
"qualityColor": "#4CAF50"
|
||||||
|
},
|
||||||
|
"OPUS": {
|
||||||
|
"name": "Opus",
|
||||||
|
"description": "High quality • Efficient streaming",
|
||||||
|
"qualityColor": "#4CAF50"
|
||||||
|
},
|
||||||
|
"LC3": {
|
||||||
|
"name": "LC3",
|
||||||
|
"description": "LE Audio • Efficient high quality",
|
||||||
|
"qualityColor": "#4CAF50"
|
||||||
|
},
|
||||||
|
"LC3_SWB": {
|
||||||
|
"name": "LC3-SWB",
|
||||||
|
"description": "Wideband speech • Hands-free calls",
|
||||||
|
"qualityColor": "#9E9E9E"
|
||||||
|
},
|
||||||
|
"LC3_A127": {
|
||||||
|
"name": "LC3",
|
||||||
|
"description": "LE Audio speech • Hands-free calls",
|
||||||
|
"qualityColor": "#9E9E9E"
|
||||||
|
},
|
||||||
"SBC_XQ": {
|
"SBC_XQ": {
|
||||||
"name": "SBC-XQ",
|
"name": "SBC-XQ",
|
||||||
"description": "Enhanced SBC • Better compatibility",
|
"description": "Enhanced SBC • Better compatibility",
|
||||||
@@ -311,6 +535,11 @@ Singleton {
|
|||||||
"name": "CVSD",
|
"name": "CVSD",
|
||||||
"description": "Basic speech codec • Legacy compatibility",
|
"description": "Basic speech codec • Legacy compatibility",
|
||||||
"qualityColor": "#9E9E9E"
|
"qualityColor": "#9E9E9E"
|
||||||
|
},
|
||||||
|
"FASTSTREAM": {
|
||||||
|
"name": "FastStream",
|
||||||
|
"description": "Low latency SBC variant",
|
||||||
|
"qualityColor": "#2196F3"
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -324,29 +553,73 @@ Singleton {
|
|||||||
property var deviceCodecs: ({})
|
property var deviceCodecs: ({})
|
||||||
|
|
||||||
function updateDeviceCodec(deviceAddress, codec) {
|
function updateDeviceCodec(deviceAddress, codec) {
|
||||||
deviceCodecs[deviceAddress] = codec;
|
if (!deviceAddress || !codec)
|
||||||
deviceCodecsChanged();
|
return;
|
||||||
|
const next = Object.assign({}, deviceCodecs);
|
||||||
|
next[deviceAddress] = codec;
|
||||||
|
deviceCodecs = next;
|
||||||
|
}
|
||||||
|
|
||||||
|
function codecCategory(codecName, profileName) {
|
||||||
|
const profile = String(profileName || "").toLowerCase();
|
||||||
|
const codec = String(codecName || "").replace(/[-\s]+/g, "_").toUpperCase();
|
||||||
|
if (profile.includes("headset") || profile.includes("hfp") || profile.includes("hsp") || profile.includes("handsfree") || profile.includes("head-unit") || profile.includes("audio-gateway"))
|
||||||
|
return "call";
|
||||||
|
if (codec === "CVSD" || codec === "MSBC" || codec === "LC3_SWB" || codec === "LC3_A127")
|
||||||
|
return "call";
|
||||||
|
return "media";
|
||||||
|
}
|
||||||
|
|
||||||
|
function codecNameFromProfile(profileName) {
|
||||||
|
if (!profileName)
|
||||||
|
return "";
|
||||||
|
const match = String(profileName).match(/codec\s+([^\)]+)/i);
|
||||||
|
if (match)
|
||||||
|
return getCodecInfo(match[1].trim()).name;
|
||||||
|
const parts = String(profileName).split(/[-_]/);
|
||||||
|
if (parts.length > 1) {
|
||||||
|
const tail = parts.slice(1).join("_");
|
||||||
|
const info = getCodecInfo(tail);
|
||||||
|
if (info.description !== "Unknown codec")
|
||||||
|
return info.name;
|
||||||
|
const last = parts[parts.length - 1];
|
||||||
|
const lastInfo = getCodecInfo(last);
|
||||||
|
if (lastInfo.description !== "Unknown codec")
|
||||||
|
return lastInfo.name;
|
||||||
|
}
|
||||||
|
const info = getCodecInfo(profileName);
|
||||||
|
return info.description === "Unknown codec" ? "" : info.name;
|
||||||
}
|
}
|
||||||
|
|
||||||
function refreshDeviceCodec(device) {
|
function refreshDeviceCodec(device) {
|
||||||
if (!device || !device.connected || !isAudioDevice(device)) {
|
if (!device || !device.connected || !isAudioDevice(device)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!pactlChecked) {
|
|
||||||
whenPactlChecked(() => root.refreshDeviceCodec(device));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (!pactlAvailable) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const cardName = getCardName(device);
|
whenCodecBackendReady(() => {
|
||||||
codecQueryProcess.cardName = cardName;
|
if (root.wpexecAvailable) {
|
||||||
codecQueryProcess.deviceAddress = device.address;
|
root.queryCardProfiles(device, (codecs, current) => {
|
||||||
codecQueryProcess.availableCodecs = [];
|
if (current) {
|
||||||
codecQueryProcess.parsingTargetCard = false;
|
root.updateDeviceCodec(device.address, current);
|
||||||
codecQueryProcess.detectedCodec = "";
|
return;
|
||||||
codecQueryProcess.running = true;
|
}
|
||||||
|
if (!root.dbusBridgeAvailable)
|
||||||
|
return;
|
||||||
|
root.queryBluezCodecState(device, (bluezCodecs, bluezCurrent) => {
|
||||||
|
if (bluezCurrent)
|
||||||
|
root.updateDeviceCodec(device.address, bluezCurrent);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!root.dbusBridgeAvailable)
|
||||||
|
return;
|
||||||
|
root.queryBluezCodecState(device, (codecs, current) => {
|
||||||
|
if (current)
|
||||||
|
root.updateDeviceCodec(device.address, current);
|
||||||
|
});
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function getCurrentCodec(device, callback) {
|
function getCurrentCodec(device, callback) {
|
||||||
@@ -354,22 +627,33 @@ Singleton {
|
|||||||
callback("");
|
callback("");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!pactlChecked) {
|
|
||||||
whenPactlChecked(() => root.getCurrentCodec(device, callback));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (!pactlAvailable) {
|
|
||||||
callback("");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const cardName = getCardName(device);
|
whenCodecBackendReady(() => {
|
||||||
codecQueryProcess.cardName = cardName;
|
if (root.wpexecAvailable) {
|
||||||
codecQueryProcess.callback = callback;
|
root.queryCardProfiles(device, (codecs, current) => {
|
||||||
codecQueryProcess.availableCodecs = [];
|
if (current) {
|
||||||
codecQueryProcess.parsingTargetCard = false;
|
callback(current);
|
||||||
codecQueryProcess.detectedCodec = "";
|
return;
|
||||||
codecQueryProcess.running = true;
|
}
|
||||||
|
if (!root.dbusBridgeAvailable) {
|
||||||
|
callback("");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
root.queryBluezCodecState(device, (bluezCodecs, bluezCurrent) => {
|
||||||
|
callback(bluezCurrent || "");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!root.dbusBridgeAvailable) {
|
||||||
|
callback("");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
root.queryBluezCodecState(device, (codecs, current) => {
|
||||||
|
callback(current || "");
|
||||||
|
});
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function getAvailableCodecs(device, callback) {
|
function getAvailableCodecs(device, callback) {
|
||||||
@@ -377,215 +661,136 @@ Singleton {
|
|||||||
callback([], "");
|
callback([], "");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!pactlChecked) {
|
|
||||||
whenPactlChecked(() => root.getAvailableCodecs(device, callback));
|
whenCodecBackendReady(() => {
|
||||||
|
if (!root.wpexecAvailable) {
|
||||||
|
if (root.dbusBridgeAvailable) {
|
||||||
|
root.queryBluezCodecState(device, callback);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
callback([], "");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
root.queryCardProfiles(device, (codecs, current) => {
|
||||||
|
if (codecs.length > 0 || !root.dbusBridgeAvailable) {
|
||||||
|
callback(codecs, current);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
root.queryBluezCodecState(device, (bluezCodecs, bluezCurrent) => {
|
||||||
|
callback(bluezCodecs, bluezCurrent || current);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function switchCodec(device, profileName, callback, codecDisplayName) {
|
||||||
|
if (!device || !isAudioDevice(device)) {
|
||||||
|
callback(false, "Invalid device");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!pactlAvailable) {
|
|
||||||
|
whenCodecBackendReady(() => {
|
||||||
|
if (!root.wpexecAvailable) {
|
||||||
|
callback(false, I18n.tr("Codec switching is unavailable. WirePlumber wpexec was not found."));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const cardName = root.getCardName(device);
|
||||||
|
codecSwitchProcess.cardName = cardName;
|
||||||
|
codecSwitchProcess.profile = profileName;
|
||||||
|
codecSwitchProcess.deviceAddress = device.address || "";
|
||||||
|
codecSwitchProcess.expectedCodec = codecDisplayName || root.codecNameFromProfile(profileName);
|
||||||
|
codecSwitchProcess.callback = callback;
|
||||||
|
codecSwitchProcess.command = ["wpexec", root.cardProfileScript, JSON.stringify({
|
||||||
|
"mode": "set",
|
||||||
|
"device": cardName,
|
||||||
|
"target": profileName
|
||||||
|
})];
|
||||||
|
codecSwitchProcess.running = true;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function queryCardProfiles(device, callback) {
|
||||||
|
if (!device || !wpexecAvailable) {
|
||||||
callback([], "");
|
callback([], "");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const cardName = getCardName(device);
|
const cardName = getCardName(device);
|
||||||
codecFullQueryProcess.cardName = cardName;
|
codecListProcess.cardName = cardName;
|
||||||
codecFullQueryProcess.callback = callback;
|
codecListProcess.callback = callback;
|
||||||
codecFullQueryProcess.availableCodecs = [];
|
codecListProcess.availableCodecs = [];
|
||||||
codecFullQueryProcess.parsingTargetCard = false;
|
codecListProcess.detectedCodec = "";
|
||||||
codecFullQueryProcess.detectedCodec = "";
|
codecListProcess.command = ["wpexec", cardProfileScript, JSON.stringify({
|
||||||
codecFullQueryProcess.running = true;
|
"mode": "list",
|
||||||
}
|
"device": cardName
|
||||||
|
})];
|
||||||
function switchCodec(device, profileName, callback) {
|
codecListProcess.running = true;
|
||||||
if (!device || !isAudioDevice(device)) {
|
|
||||||
callback(false, "Invalid device");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (!pactlChecked) {
|
|
||||||
whenPactlChecked(() => root.switchCodec(device, profileName, callback));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (!pactlAvailable) {
|
|
||||||
callback(false, I18n.tr("Codec switching is unavailable because pactl was not found"));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const cardName = getCardName(device);
|
|
||||||
codecSwitchProcess.cardName = cardName;
|
|
||||||
codecSwitchProcess.profile = profileName;
|
|
||||||
codecSwitchProcess.callback = callback;
|
|
||||||
codecSwitchProcess.running = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Process {
|
Process {
|
||||||
id: detectPactlProcess
|
id: detectWpexecProcess
|
||||||
running: false
|
running: false
|
||||||
command: ["sh", "-c", "command -v pactl"]
|
command: ["sh", "-c", "command -v wpexec"]
|
||||||
|
|
||||||
onExited: function (exitCode) {
|
onExited: function (exitCode) {
|
||||||
root.pactlAvailable = (exitCode === 0);
|
root.wpexecAvailable = (exitCode === 0);
|
||||||
root.pactlChecked = true;
|
root.wpexecChecked = true;
|
||||||
const actions = root.pendingPactlActions.slice();
|
const actions = root.pendingCodecActions.slice();
|
||||||
root.pendingPactlActions = [];
|
root.pendingCodecActions = [];
|
||||||
actions.forEach(action => action());
|
actions.forEach(action => action());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Process {
|
Process {
|
||||||
id: codecQueryProcess
|
id: codecListProcess
|
||||||
|
|
||||||
property string cardName: ""
|
property string cardName: ""
|
||||||
property string deviceAddress: ""
|
|
||||||
property var callback: null
|
property var callback: null
|
||||||
property bool parsingTargetCard: false
|
|
||||||
property string detectedCodec: ""
|
property string detectedCodec: ""
|
||||||
property var availableCodecs: []
|
property var availableCodecs: []
|
||||||
|
|
||||||
command: ["pactl", "list", "cards"]
|
command: ["wpexec", root.cardProfileScript, "{}"]
|
||||||
|
|
||||||
onExited: (exitCode, exitStatus) => {
|
|
||||||
if (exitCode === 0 && detectedCodec) {
|
|
||||||
if (deviceAddress) {
|
|
||||||
root.updateDeviceCodec(deviceAddress, detectedCodec);
|
|
||||||
}
|
|
||||||
if (callback) {
|
|
||||||
callback(detectedCodec);
|
|
||||||
}
|
|
||||||
} else if (callback) {
|
|
||||||
callback("");
|
|
||||||
}
|
|
||||||
|
|
||||||
parsingTargetCard = false;
|
|
||||||
detectedCodec = "";
|
|
||||||
availableCodecs = [];
|
|
||||||
deviceAddress = "";
|
|
||||||
callback = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
stdout: SplitParser {
|
stdout: SplitParser {
|
||||||
splitMarker: "\n"
|
splitMarker: "\n"
|
||||||
onRead: data => {
|
onRead: data => {
|
||||||
let line = data.trim();
|
const line = data.trim();
|
||||||
|
if (!line.startsWith("CODEC\t"))
|
||||||
if (line.includes(`Name: ${codecQueryProcess.cardName}`)) {
|
|
||||||
codecQueryProcess.parsingTargetCard = true;
|
|
||||||
return;
|
return;
|
||||||
}
|
const parts = line.split("\t");
|
||||||
|
if (parts.length < 5)
|
||||||
if (codecQueryProcess.parsingTargetCard && line.startsWith("Name: ") && !line.includes(codecQueryProcess.cardName)) {
|
|
||||||
codecQueryProcess.parsingTargetCard = false;
|
|
||||||
return;
|
return;
|
||||||
}
|
const codecName = parts[1];
|
||||||
|
const profile = parts[2];
|
||||||
if (codecQueryProcess.parsingTargetCard) {
|
const isCurrent = parts[4] === "1";
|
||||||
if (line.startsWith("Active Profile:")) {
|
const codecInfo = root.getCodecInfo(codecName);
|
||||||
let profile = line.split(": ")[1] || "";
|
if (!codecInfo)
|
||||||
let activeCodec = codecQueryProcess.availableCodecs.find(c => {
|
return;
|
||||||
return c.profile === profile;
|
if (isCurrent)
|
||||||
});
|
codecListProcess.detectedCodec = codecInfo.name;
|
||||||
if (activeCodec) {
|
if (!codecListProcess.availableCodecs.some(c => c.profile === profile)) {
|
||||||
codecQueryProcess.detectedCodec = activeCodec.name;
|
const next = codecListProcess.availableCodecs.slice();
|
||||||
}
|
next.push({
|
||||||
return;
|
"name": codecInfo.name,
|
||||||
}
|
"profile": profile,
|
||||||
if (line.includes("codec") && line.includes("available: yes")) {
|
"description": codecInfo.description,
|
||||||
let parts = line.split(": ");
|
"qualityColor": codecInfo.qualityColor,
|
||||||
if (parts.length >= 2) {
|
"category": root.codecCategory(codecInfo.name, profile)
|
||||||
let profile = parts[0].trim();
|
});
|
||||||
let description = parts[1];
|
codecListProcess.availableCodecs = next;
|
||||||
let codecMatch = description.match(/codec ([^\)]+)\)/i);
|
|
||||||
let codecName = codecMatch ? codecMatch[1].trim().toUpperCase() : "UNKNOWN";
|
|
||||||
let codecInfo = root.getCodecInfo(codecName);
|
|
||||||
if (codecInfo && !codecQueryProcess.availableCodecs.some(c => {
|
|
||||||
return c.profile === profile;
|
|
||||||
})) {
|
|
||||||
let newCodecs = codecQueryProcess.availableCodecs.slice();
|
|
||||||
newCodecs.push({
|
|
||||||
"name": codecInfo.name,
|
|
||||||
"profile": profile,
|
|
||||||
"description": codecInfo.description,
|
|
||||||
"qualityColor": codecInfo.qualityColor
|
|
||||||
});
|
|
||||||
codecQueryProcess.availableCodecs = newCodecs;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
Process {
|
onExited: function (exitCode) {
|
||||||
id: codecFullQueryProcess
|
if (callback)
|
||||||
|
|
||||||
property string cardName: ""
|
|
||||||
property var callback: null
|
|
||||||
property bool parsingTargetCard: false
|
|
||||||
property string detectedCodec: ""
|
|
||||||
property var availableCodecs: []
|
|
||||||
|
|
||||||
command: ["pactl", "list", "cards"]
|
|
||||||
|
|
||||||
onExited: function (exitCode, exitStatus) {
|
|
||||||
if (callback) {
|
|
||||||
callback(exitCode === 0 ? availableCodecs : [], exitCode === 0 ? detectedCodec : "");
|
callback(exitCode === 0 ? availableCodecs : [], exitCode === 0 ? detectedCodec : "");
|
||||||
}
|
|
||||||
parsingTargetCard = false;
|
|
||||||
detectedCodec = "";
|
detectedCodec = "";
|
||||||
availableCodecs = [];
|
availableCodecs = [];
|
||||||
callback = null;
|
callback = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
stdout: SplitParser {
|
|
||||||
splitMarker: "\n"
|
|
||||||
onRead: data => {
|
|
||||||
let line = data.trim();
|
|
||||||
|
|
||||||
if (line.includes(`Name: ${codecFullQueryProcess.cardName}`)) {
|
|
||||||
codecFullQueryProcess.parsingTargetCard = true;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (codecFullQueryProcess.parsingTargetCard && line.startsWith("Name: ") && !line.includes(codecFullQueryProcess.cardName)) {
|
|
||||||
codecFullQueryProcess.parsingTargetCard = false;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (codecFullQueryProcess.parsingTargetCard) {
|
|
||||||
if (line.startsWith("Active Profile:")) {
|
|
||||||
let profile = line.split(": ")[1] || "";
|
|
||||||
let activeCodec = codecFullQueryProcess.availableCodecs.find(c => {
|
|
||||||
return c.profile === profile;
|
|
||||||
});
|
|
||||||
if (activeCodec) {
|
|
||||||
codecFullQueryProcess.detectedCodec = activeCodec.name;
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (line.includes("codec") && line.includes("available: yes")) {
|
|
||||||
let parts = line.split(": ");
|
|
||||||
if (parts.length >= 2) {
|
|
||||||
let profile = parts[0].trim();
|
|
||||||
let description = parts[1];
|
|
||||||
let codecMatch = description.match(/codec ([^\)]+)\)/i);
|
|
||||||
let codecName = codecMatch ? codecMatch[1].trim().toUpperCase() : "UNKNOWN";
|
|
||||||
let codecInfo = root.getCodecInfo(codecName);
|
|
||||||
if (codecInfo && !codecFullQueryProcess.availableCodecs.some(c => {
|
|
||||||
return c.profile === profile;
|
|
||||||
})) {
|
|
||||||
let newCodecs = codecFullQueryProcess.availableCodecs.slice();
|
|
||||||
newCodecs.push({
|
|
||||||
"name": codecInfo.name,
|
|
||||||
"profile": profile,
|
|
||||||
"description": codecInfo.description,
|
|
||||||
"qualityColor": codecInfo.qualityColor
|
|
||||||
});
|
|
||||||
codecFullQueryProcess.availableCodecs = newCodecs;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Process {
|
Process {
|
||||||
@@ -593,26 +798,37 @@ Singleton {
|
|||||||
|
|
||||||
property string cardName: ""
|
property string cardName: ""
|
||||||
property string profile: ""
|
property string profile: ""
|
||||||
|
property string deviceAddress: ""
|
||||||
|
property string expectedCodec: ""
|
||||||
property var callback: null
|
property var callback: null
|
||||||
|
property bool sawOk: false
|
||||||
|
|
||||||
command: ["pactl", "set-card-profile", cardName, profile]
|
command: ["wpexec", root.cardProfileScript, "{}"]
|
||||||
|
|
||||||
onExited: function (exitCode, exitStatus) {
|
stdout: SplitParser {
|
||||||
if (callback) {
|
splitMarker: "\n"
|
||||||
callback(exitCode === 0, exitCode === 0 ? "Codec switched successfully" : "Failed to switch codec");
|
onRead: data => {
|
||||||
|
const line = data.trim();
|
||||||
|
if (!line.startsWith("OK\t"))
|
||||||
|
return;
|
||||||
|
codecSwitchProcess.sawOk = true;
|
||||||
|
const appliedProfile = line.split("\t")[1] || "";
|
||||||
|
if (appliedProfile)
|
||||||
|
codecSwitchProcess.expectedCodec = root.codecNameFromProfile(appliedProfile) || codecSwitchProcess.expectedCodec;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// If successful, refresh the codec for this device
|
onExited: function (exitCode) {
|
||||||
if (exitCode === 0) {
|
const success = exitCode === 0 && sawOk;
|
||||||
if (root.adapter && root.adapter.devices) {
|
if (success && deviceAddress && expectedCodec)
|
||||||
root.adapter.devices.values.forEach(device => {
|
root.updateDeviceCodec(deviceAddress, expectedCodec);
|
||||||
if (device && root.getCardName(device) === cardName) {
|
|
||||||
Qt.callLater(() => root.refreshDeviceCodec(device));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
if (callback)
|
||||||
|
callback(success, success ? I18n.tr("Codec switched successfully") : I18n.tr("Failed to switch codec"));
|
||||||
|
|
||||||
|
sawOk = false;
|
||||||
|
expectedCodec = "";
|
||||||
|
deviceAddress = "";
|
||||||
callback = null;
|
callback = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Executable
+142
@@ -0,0 +1,142 @@
|
|||||||
|
#!/usr/bin/wpexec
|
||||||
|
cutils = require("common-utils")
|
||||||
|
|
||||||
|
local args = (...):parse()
|
||||||
|
local mode = args.mode or "list"
|
||||||
|
local dev_name = args.device or ""
|
||||||
|
local target = args.target or ""
|
||||||
|
|
||||||
|
local function fail(msg)
|
||||||
|
print("ERROR: " .. msg)
|
||||||
|
Core.quit()
|
||||||
|
end
|
||||||
|
|
||||||
|
if dev_name == "" then
|
||||||
|
fail("missing device")
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local om = ObjectManager {
|
||||||
|
Interest {
|
||||||
|
type = "device",
|
||||||
|
Constraint { "media.class", "=", "Audio/Device", type = "pw-global" },
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
local handled = false
|
||||||
|
|
||||||
|
local function profile_available(profile)
|
||||||
|
return profile and profile.available ~= "no"
|
||||||
|
end
|
||||||
|
|
||||||
|
local function codec_from_profile(profile)
|
||||||
|
if not profile then
|
||||||
|
return ""
|
||||||
|
end
|
||||||
|
local desc = profile.description or ""
|
||||||
|
local codec = desc:match("[Cc]odec%s+([%w%+%-%._]+)")
|
||||||
|
if not codec then
|
||||||
|
return ""
|
||||||
|
end
|
||||||
|
return codec:gsub("%-", "_"):upper()
|
||||||
|
end
|
||||||
|
|
||||||
|
local function handle_device(device)
|
||||||
|
if handled then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
local name = device.properties["device.name"] or ""
|
||||||
|
if name ~= dev_name then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
handled = true
|
||||||
|
|
||||||
|
if mode == "list" then
|
||||||
|
local active_index = nil
|
||||||
|
for p in device:iterate_params("Profile") do
|
||||||
|
local active = cutils.parseParam(p, "Profile")
|
||||||
|
if active then
|
||||||
|
active_index = active.index
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
for p in device:iterate_params("EnumProfile") do
|
||||||
|
local profile = cutils.parseParam(p, "EnumProfile")
|
||||||
|
if profile_available(profile) then
|
||||||
|
local codec = codec_from_profile(profile)
|
||||||
|
if codec ~= "" then
|
||||||
|
local current = (active_index ~= nil and profile.index == active_index) and "1" or "0"
|
||||||
|
print(string.format("CODEC\t%s\t%s\t%s\t%s", codec, profile.name, profile.description or "", current))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
Core.quit()
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
if mode == "set" then
|
||||||
|
if target == "" then
|
||||||
|
fail("missing target")
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local target_lower = tostring(target):lower()
|
||||||
|
local match = nil
|
||||||
|
for p in device:iterate_params("EnumProfile") do
|
||||||
|
local profile = cutils.parseParam(p, "EnumProfile")
|
||||||
|
if profile_available(profile) then
|
||||||
|
local pname = profile.name or ""
|
||||||
|
local codec = codec_from_profile(profile):lower()
|
||||||
|
if pname == target or pname:lower() == target_lower or codec == target_lower
|
||||||
|
or codec == target_lower:gsub("%-", "_") then
|
||||||
|
match = profile
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if not match then
|
||||||
|
fail("profile not found: " .. target)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local param = Pod.Object {
|
||||||
|
"Spa:Pod:Object:Param:Profile", "Profile",
|
||||||
|
index = tonumber(match.index),
|
||||||
|
save = true,
|
||||||
|
}
|
||||||
|
device:set_param("Profile", param)
|
||||||
|
Core.sync(function()
|
||||||
|
print("OK\t" .. (match.name or target))
|
||||||
|
Core.quit()
|
||||||
|
end)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
fail("unknown mode " .. mode)
|
||||||
|
end
|
||||||
|
|
||||||
|
om:connect("object-added", function(_, device)
|
||||||
|
handle_device(device)
|
||||||
|
end)
|
||||||
|
|
||||||
|
om:connect("installed", function()
|
||||||
|
if handled then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
for device in om:iterate() do
|
||||||
|
handle_device(device)
|
||||||
|
if handled then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
end
|
||||||
|
fail("device not found: " .. dev_name)
|
||||||
|
end)
|
||||||
|
|
||||||
|
om:activate()
|
||||||
|
Core.timeout_add(3000, function()
|
||||||
|
if not handled then
|
||||||
|
fail("timed out waiting for device " .. dev_name)
|
||||||
|
end
|
||||||
|
return false
|
||||||
|
end)
|
||||||
Reference in New Issue
Block a user