diff src/filewriter/filewriter.c @ 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 dcd8d93ba781
children 57d499fc5056
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;