fix: TAD for TSVM producing distorted audio

This commit is contained in:
minjaesong
2025-11-10 10:43:49 +09:00
parent 0e6f2162c8
commit 0f5875d45b
2 changed files with 30 additions and 14 deletions

View File

@@ -1070,10 +1070,10 @@ int main(int argc, char *argv[]) {
output_file[dir_len + name_len] = '\0';
// Replace last dot with underscore (for .qNN pattern)
char *last_dot = strrchr(output_file, '.');
/*char *last_dot = strrchr(output_file, '.');
if (last_dot && last_dot > output_file + dir_len) {
*last_dot = '_';
}
}*/
} else {
// No .tad extension, copy entire basename
strcpy(output_file + dir_len, basename_start);