Commit c4c9966
File tree
- binding
- src
- VoicevoxCoreSharp.Core.Unity/Runtime/Script/Native
- VoicevoxCoreSharp.Core
- Native
Submodule voicevox_core updated 92 files
- .github/ISSUE_TEMPLATE/bugreport.md+2
- .github/ISSUE_TEMPLATE/featurerequest.md+2
- .github/ISSUE_TEMPLATE/question.md+2
- .github/labeler.yml-6
- .github/workflows/build_and_deploy.yml+60-36
- .github/workflows/build_and_deploy_downloader.yml+1-1
- .github/workflows/labeler.yml-17
- .github/workflows/test.yml+2-1
- Cargo.lock+14-28
- Cargo.toml+3-3
- crates/downloader/Cargo.toml+3-3
- crates/downloader/src/main.rs+110-49
- crates/test_util/build.rs+1-1
- crates/test_util/src/lib.rs+1
- crates/voicevox_core/Cargo.toml+1-1
- crates/voicevox_core/src/__internal/interop.rs+3-3
- crates/voicevox_core/src/__internal/interop/raii.rs+1
- crates/voicevox_core/src/asyncs.rs+5
- crates/voicevox_core/src/core/infer.rs+1-1
- crates/voicevox_core/src/core/infer/domains.rs+10-3
- crates/voicevox_core/src/core/infer/domains/experimental_talk.rs+1-1
- crates/voicevox_core/src/core/infer/domains/frame_decode.rs+1-1
- crates/voicevox_core/src/core/infer/domains/singing_teacher.rs+1-1
- crates/voicevox_core/src/core/infer/domains/talk.rs+1-1
- crates/voicevox_core/src/core/infer/runtimes/onnxruntime.rs+13-11
- crates/voicevox_core/src/core/manifest.rs+14-13
- crates/voicevox_core/src/core/metas.rs+11-4
- crates/voicevox_core/src/core/status.rs+19-8
- crates/voicevox_core/src/core/voice_model.rs+67-22
- crates/voicevox_core/src/engine/acoustic_feature_extractor.rs+8-8
- crates/voicevox_core/src/engine/talk.rs+2-2
- crates/voicevox_core/src/engine/talk/full_context_label.rs+13-10
- crates/voicevox_core/src/engine/talk/interpret_query.rs+1-1
- crates/voicevox_core/src/engine/talk/model.rs+1-1
- crates/voicevox_core/src/engine/talk/open_jtalk.rs+41-9
- crates/voicevox_core/src/engine/talk/user_dict.rs+2-2
- crates/voicevox_core/src/engine/talk/user_dict/dict.rs+11-11
- crates/voicevox_core/src/engine/talk/user_dict/word.rs+8-7
- crates/voicevox_core/src/error.rs+4-4
- crates/voicevox_core/src/lib.rs+9-9
- crates/voicevox_core/src/synthesizer.rs+109-40
- crates/voicevox_core/src/version.rs+1-1
- crates/voicevox_core_c_api/Cargo.toml+2-2
- crates/voicevox_core_c_api/include/voicevox_core.h+12-12
- crates/voicevox_core_c_api/src/c_impls.rs+2-2
- crates/voicevox_core_c_api/src/compatible_engine.rs+8-5
- crates/voicevox_core_c_api/src/drop_check.rs+19-7
- crates/voicevox_core_c_api/src/helpers.rs+14-5
- crates/voicevox_core_c_api/src/lib.rs+111-61
- crates/voicevox_core_c_api/src/object.rs+4
- crates/voicevox_core_c_api/src/slice_owner.rs+21-11
- crates/voicevox_core_c_api/tests/e2e/assert_cdylib.rs+5-1
- crates/voicevox_core_c_api/tests/e2e/snapshots.rs+1-1
- crates/voicevox_core_c_api/tests/e2e/testcases.rs+1
- crates/voicevox_core_c_api/tests/e2e/testcases/compatible_engine.rs+108-72
- crates/voicevox_core_c_api/tests/e2e/testcases/compatible_engine_load_model_before_initialize.rs+8-5
- crates/voicevox_core_c_api/tests/e2e/testcases/double_delete_openjtalk.rs+15-9
- crates/voicevox_core_c_api/tests/e2e/testcases/double_delete_synthesizer.rs+42-24
- crates/voicevox_core_c_api/tests/e2e/testcases/double_delete_user_dict.rs+9-6
- crates/voicevox_core_c_api/tests/e2e/testcases/double_delete_voice_model_file.rs+17-9
- crates/voicevox_core_c_api/tests/e2e/testcases/free_for_null.rs+43
- crates/voicevox_core_c_api/tests/e2e/testcases/global_info.rs+41-26
- crates/voicevox_core_c_api/tests/e2e/testcases/simple_tts.rs+79-41
- crates/voicevox_core_c_api/tests/e2e/testcases/synthesizer_new_output_json.rs+66-33
- crates/voicevox_core_c_api/tests/e2e/testcases/tts.rs+323-153
- crates/voicevox_core_c_api/tests/e2e/testcases/user_dict_load.rs+101-54
- crates/voicevox_core_c_api/tests/e2e/testcases/user_dict_manipulate.rs+49-19
- crates/voicevox_core_java_api/Cargo.toml+1-1
- crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/AccentPhrase.java+14
- crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/AudioQuery.java+17
- crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/CharacterMeta.java+28-1
- crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/Mora.java+26-1
- crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/StyleMeta.java+25-1
- crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/SupportedDevices.java+15-2
- crates/voicevox_core_java_api/src/audio_query.rs+2-2
- crates/voicevox_core_java_api/src/common.rs+4-4
- crates/voicevox_core_java_api/src/info.rs+1-1
- crates/voicevox_core_java_api/src/logger.rs+2-2
- crates/voicevox_core_java_api/src/onnxruntime.rs+15-5
- crates/voicevox_core_java_api/src/open_jtalk.rs+38-12
- crates/voicevox_core_java_api/src/synthesizer.rs+189-87
- crates/voicevox_core_java_api/src/user_dict.rs+82-28
- crates/voicevox_core_java_api/src/voice_model.rs+30-12
- crates/voicevox_core_macros/src/extract.rs+1-1
- crates/voicevox_core_macros/src/inference_domain.rs+3-3
- crates/voicevox_core_macros/src/inference_domains.rs+14-12
- crates/voicevox_core_python_api/python/voicevox_core/_rust/asyncio.pyi+4
- crates/voicevox_core_python_api/python/voicevox_core/_rust/blocking.pyi+6
- crates/voicevox_core_python_api/src/convert.rs+9-9
- crates/voicevox_core_python_api/src/lib.rs+157-21
- deny.toml+1-6
- rust-toolchain+1-1
Lines changed: 12 additions & 12 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
180 | 180 | | |
181 | 181 | | |
182 | 182 | | |
183 | | - | |
| 183 | + | |
184 | 184 | | |
185 | 185 | | |
186 | 186 | | |
| |||
283 | 283 | | |
284 | 284 | | |
285 | 285 | | |
286 | | - | |
| 286 | + | |
287 | 287 | | |
288 | 288 | | |
289 | 289 | | |
| |||
317 | 317 | | |
318 | 318 | | |
319 | 319 | | |
320 | | - | |
| 320 | + | |
321 | 321 | | |
322 | 322 | | |
323 | 323 | | |
| |||
747 | 747 | | |
748 | 748 | | |
749 | 749 | | |
750 | | - | |
| 750 | + | |
751 | 751 | | |
752 | 752 | | |
753 | | - | |
| 753 | + | |
754 | 754 | | |
755 | 755 | | |
756 | 756 | | |
| |||
763 | 763 | | |
764 | 764 | | |
765 | 765 | | |
766 | | - | |
767 | | - | |
| 766 | + | |
| 767 | + | |
768 | 768 | | |
769 | 769 | | |
770 | 770 | | |
| |||
775 | 775 | | |
776 | 776 | | |
777 | 777 | | |
778 | | - | |
| 778 | + | |
779 | 779 | | |
780 | 780 | | |
781 | | - | |
| 781 | + | |
782 | 782 | | |
783 | 783 | | |
784 | | - | |
785 | | - | |
| 784 | + | |
| 785 | + | |
786 | 786 | | |
787 | 787 | | |
788 | 788 | | |
| |||
963 | 963 | | |
964 | 964 | | |
965 | 965 | | |
966 | | - | |
| 966 | + | |
967 | 967 | | |
968 | 968 | | |
969 | 969 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
180 | 180 | | |
181 | 181 | | |
182 | 182 | | |
183 | | - | |
| 183 | + | |
184 | 184 | | |
185 | 185 | | |
186 | 186 | | |
| |||
283 | 283 | | |
284 | 284 | | |
285 | 285 | | |
286 | | - | |
| 286 | + | |
287 | 287 | | |
288 | 288 | | |
289 | 289 | | |
| |||
317 | 317 | | |
318 | 318 | | |
319 | 319 | | |
320 | | - | |
| 320 | + | |
321 | 321 | | |
322 | 322 | | |
323 | 323 | | |
| |||
747 | 747 | | |
748 | 748 | | |
749 | 749 | | |
750 | | - | |
| 750 | + | |
751 | 751 | | |
752 | 752 | | |
753 | | - | |
| 753 | + | |
754 | 754 | | |
755 | 755 | | |
756 | 756 | | |
| |||
763 | 763 | | |
764 | 764 | | |
765 | 765 | | |
766 | | - | |
767 | | - | |
| 766 | + | |
| 767 | + | |
768 | 768 | | |
769 | 769 | | |
770 | 770 | | |
| |||
775 | 775 | | |
776 | 776 | | |
777 | 777 | | |
778 | | - | |
| 778 | + | |
779 | 779 | | |
780 | 780 | | |
781 | | - | |
| 781 | + | |
782 | 782 | | |
783 | 783 | | |
784 | | - | |
785 | | - | |
| 784 | + | |
| 785 | + | |
786 | 786 | | |
787 | 787 | | |
788 | 788 | | |
| |||
963 | 963 | | |
964 | 964 | | |
965 | 965 | | |
966 | | - | |
| 966 | + | |
967 | 967 | | |
968 | 968 | | |
969 | 969 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
| 4 | + | |
5 | 5 | | |
6 | 6 | | |
0 commit comments