fix(j314): correct mic output routing and volume (#1) - #95
fix(j314): correct mic output routing and volume (#1)#95tristonarmstrong wants to merge 1 commit into
Conversation
|
de0b801 also changed j316 and j415 - shouldn't those one also be fixed? |
I cant physically test those, despite it PROBABLY being a safe fix.. For all i know audio position aux0 means something different on the 16inch and the person who made that commit could have had your same thought and was like, "shiiiiii they all need it ig".. lol i can only confirm the one working is the one i changed. |
|
oop gotta sign this commits - will do that soon |
|
This is what gpt-5.6-sol says to this PR:
The PR changes: - "state.default-volume": 0.343,
+ "state.default-volume": 0.70,PipeWire stores channel volume as a linear gain, while PulseAudio-compatible UIs use a cubic scale. WirePlumber’s documentation demonstrates this explicitly: 40% UI volume is stored as So Additionally, Required correction: keep
The other change is: - "audio.position": ["AUX0"]
+ "audio.position": ["MONO"]This is the exposed, processed, single-channel This does not conflict with The PR description saying it “duplicates the signal to both speakers” is imprecise. It marks the source semantically as mono, allowing normal downstream channel mixing; the configuration itself does not explicitly copy samples to speakers. |
|
hmmmm.. Ok so ill keep and yeah semantics aside, mono was DEFINITELY needed lol |
AUX0 routes mono playback to front-left only. MONO duplicates to both speakers. Signed-off-by: Triston Armstrong <tarmstrong95@proton.me>
|
ive made the changes and signed my commit |
AUX0 causes PulseAudio to route mono audio only to the front-left channel. MONO duplicates the signal to both speakers.
The original commit (de0b801) set state.default-volume to 0.343 while the commit message stated 70%. The value 0.343 is 34.3%, not 70%. Corrected to 0.70 (70%).