changeset 2969:20ad1c7ff026

changed default values for filewriter: - made mp3 as the default format. 192k, stereo and id3v2 are used. - made prepend track number be default.
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Tue, 25 Nov 2008 16:23:17 +0900
parents 12a6def8a4b8
children 57d499fc5056
files src/filewriter/filewriter.c src/filewriter/mp3.c
diffstat 2 files changed, 7 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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;
 
--- 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;