Skip to content

Commit 1035795

Browse files
committed
Merge branch 'hotfix/2025.3.1' into develop
2 parents b2c8b90 + 4786376 commit 1035795

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

CHANGES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,16 @@
2222
- [ADD] python/tests に Hisui Python バインディングのテストコードを追加する
2323
- @voluntas
2424

25+
## 2025.3.1
26+
27+
**リリース日**: 2025-11-27
28+
29+
- [FIX] FDK-ACC を使って合成を行う場合に SIGSEGV が発生する問題を修正する
30+
- shiguredo_fdk_aac 2025.1.0 でのバグだったため、それが修正された 2025.1.1 にバージョンをあげた
31+
- @sile
32+
- [UPDATE] shiguredo_fdk_aac のバージョンを 2025.1.1 にあげる
33+
- @sile
34+
2535
## 2025.3.0
2636

2737
**リリース日**: 2025-11-06

tests/e2e.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,12 @@ fn test_simple_single_source_common(
103103
return Ok(());
104104
}
105105

106+
if expected_audio_codec == CodecName::Aac {
107+
// 現状の Hisui は読み込み側での AAC には対応しておらず、AAC の場合はこれ以降の確認は行えないので、
108+
// ここで終了する
109+
return Ok(());
110+
}
111+
106112
// 変換結果ファイルを読み込む
107113
assert!(out_file.path().exists());
108114
let mut audio_reader =

0 commit comments

Comments
 (0)