diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-05-03 19:28:25 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-05-03 19:29:04 +0200 |
commit | 0cdc3599318f05a820b3c936f83c98b4b3d11567 (patch) | |
tree | f3618bb6c424f645e97606e0f68e34b2a9ded27b /src/main.cpp | |
parent | 39bc110a2015f9dba8ee707ecd2c9c2901d8c2ff (diff) |
Fix audio capture not working with noisetorch if combined with another source with some audio devices. Remove the ability to set audio track name for now. If you need this, email me
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/main.cpp b/src/main.cpp index 0be3768..4bfd94b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1383,12 +1383,6 @@ static MergedAudioInputs parse_audio_input_arg(const char *str, const AudioDevic return result; } - const char *track_name_sep_ptr = strchr(str, '/'); - if(track_name_sep_ptr) { - result.track_name.assign(str, track_name_sep_ptr - str); - str = track_name_sep_ptr + 1; - } - split_string(str, '|', [&](const char *sub, size_t size) { AudioInput audio_input; audio_input.name.assign(sub, size); |