Skip to content

Commit

Permalink
optionsの定数に対する変更を取り消し
Browse files Browse the repository at this point in the history
VOICEVOX#557 のため。
  • Loading branch information
qryxip committed Aug 1, 2023
1 parent 570d782 commit e45db25
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions crates/voicevox_core_c_api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ pub struct VoicevoxInitializeOptions {
load_all_models: bool,
}

/// ::VoicevoxInitializeOptions のデフォルト値。
/// デフォルトの初期化オプション
#[no_mangle]
pub static voicevox_default_initialize_options: VoicevoxInitializeOptions = ConstDefault::DEFAULT;

Expand Down Expand Up @@ -504,7 +504,7 @@ pub struct VoicevoxAudioQueryOptions {
kana: bool,
}

/// ::VoicevoxAudioQueryOptions のデフォルト値。
/// デフォルトの AudioQuery のオプション
#[no_mangle]
pub static voicevox_default_audio_query_options: VoicevoxAudioQueryOptions = ConstDefault::DEFAULT;

Expand Down Expand Up @@ -578,7 +578,7 @@ pub struct VoicevoxAccentPhrasesOptions {
kana: bool,
}

/// デフォルトの ::VoicevoxAccentPhrasesOptions。
/// デフォルトの `accent_phrases` のオプション
#[no_mangle]
pub static voicevox_default_accent_phrases_options: VoicevoxAccentPhrasesOptions =
ConstDefault::DEFAULT;
Expand Down Expand Up @@ -774,7 +774,7 @@ pub struct VoicevoxSynthesisOptions {
enable_interrogative_upspeak: bool,
}

/// ::VoicevoxSynthesisOptions のデフォルト値。
/// デフォルトの `voicevox_synthesizer_synthesis` のオプション
#[no_mangle]
pub static voicevox_default_synthesis_options: VoicevoxSynthesisOptions = ConstDefault::DEFAULT;

Expand Down Expand Up @@ -831,7 +831,7 @@ pub struct VoicevoxTtsOptions {
enable_interrogative_upspeak: bool,
}

/// ::VoicevoxTtsOptions のデフォルト値
/// デフォルトのテキスト音声合成オプション
#[no_mangle]
pub static voicevox_default_tts_options: VoicevoxTtsOptions = ConstDefault::DEFAULT;

Expand Down

0 comments on commit e45db25

Please sign in to comment.