Skip to content

Commit

Permalink
bugfix: modified stride is ignored in into_raw_vec
Browse files Browse the repository at this point in the history
  • Loading branch information
Yosshi999 committed Nov 13, 2024
1 parent db7a3b6 commit 510d16d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/voicevox_core/src/synthesizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1044,7 +1044,7 @@ mod inner {
)?;
let output_with_margin = self.render_audio_segment(intermediate, style_id)?;
let output = trim_margin_from_wave(output_with_margin);
Ok(output.into_raw_vec())
Ok(output.to_vec())
}
}

Expand Down

0 comments on commit 510d16d

Please sign in to comment.