# HG changeset patch # User Yoshiki Yazawa # Date 1227597797 -32400 # Node ID 20ad1c7ff026038cd363b9d94464ca01ba1ced16 # Parent 12a6def8a4b835337269c251fb759dc7c987f641 changed default values for filewriter: - made mp3 as the default format. 192k, stereo and id3v2 are used. - made prepend track number be default. diff -r 12a6def8a4b8 -r 20ad1c7ff026 src/filewriter/filewriter.c --- a/src/filewriter/filewriter.c Tue Nov 25 15:37:24 2008 +0900 +++ b/src/filewriter/filewriter.c Tue Nov 25 16:23:17 2008 +0900 @@ -47,7 +47,8 @@ FILEEXT_MAX }; -static gint fileext = WAV; +//static gint fileext = WAV; +static gint fileext = MP3; static gchar *fileext_str[] = { "wav", @@ -74,7 +75,7 @@ static gboolean use_suffix = FALSE; static GtkWidget *prependnumber_toggle; -static gboolean prependnumber = FALSE; +static gboolean prependnumber = TRUE; static gchar *file_path = NULL; diff -r 12a6def8a4b8 -r 20ad1c7ff026 src/filewriter/mp3.c --- a/src/filewriter/mp3.c Tue Nov 25 15:37:24 2008 +0900 +++ b/src/filewriter/mp3.c Tue Nov 25 16:23:17 2008 +0900 @@ -105,15 +105,16 @@ static gint toggle_xing_val = 1; static gint mark_original_val = 1; static gint mark_copyright_val = 0; -static gint force_v2_val = 0; +static gint force_v2_val = 1; static gint only_v1_val = 0; static gint only_v2_val = 0; static gint algo_quality_val = 5; static gint out_samplerate_val = 0; -static gint bitrate_val = 128; +static gint bitrate_val = 192; static gfloat compression_val = 11; static gint enc_toggle_val = 0; -static gint audio_mode_val = 4; +//static gint audio_mode_val = 4; //auto +static gint audio_mode_val = 0; //stereo static gint enforce_iso_val = 0; static gint error_protect_val = 0;