mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-03-31 09:07:13 +09:00
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
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user