From: jait Date: Fri, 8 Sep 2006 17:09:41 +0000 (+0000) Subject: wavs saved as wavs, pumped up version X-Git-Tag: 0.3.0~14 X-Git-Url: http://git.maemo.org/git/?p=maemo-recorder;a=commitdiff_plain;h=8a17270361d8ff1be4b20f7482dee4733064f839 wavs saved as wavs, pumped up version git-svn-id: svn+ssh://garage/svnroot/maemo-recorder/trunk@10 2441f5eb-5316-0410-9386-a49b32a51a4a --- diff --git a/TODO b/TODO index 848a382..95b67a1 100644 --- a/TODO +++ b/TODO @@ -2,6 +2,9 @@ TODO for maemo-recorder ----------------------- + - bigger finger-pushable buttons + - probably at the top if we cannot use the toolbar + - could be an alternate/configurable mode - support for changing the capabilities and properties of the elements using UI - especially for "raw" files, the user should be able to choose the format @@ -19,9 +22,12 @@ TODO for maemo-recorder - Use temp files more carefully and clean them up - GStreamer bugs - GStreamer doesn't report stream length, except for MP3 - - GSstreamer doesn't want to seek streams, except MP3 + - GStreamer doesn't want to seek streams, except MP3 - GStreamer gives stream position only after ~2 secs of playback, for some streams (at least PCM) the reported position can exceed the real audio stream length (that is stored in the file) - mime type for raw PCM?, icons for mime types - - About menu entry & dialog + - visualisation / eye candy + - VU meter (using "level" element), only drawback is that it requires audio/x-raw-int + - oscillator =) + - About menu entry & dialog? diff --git a/debian/changelog b/debian/changelog index 9bc91df..a656a80 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +maemo-recorder (0.0.18) unstable; urgency=low + + * cleaned up and re-organized the settings dialog + * WAVs are now saved as .wav, not .raw :) + * added mime type for wav + + -- Jari Tenhunen Fri, 8 Sep 2006 20:06:14 +0300 + maemo-recorder (0.0.17) unstable; urgency=low * add settings diff --git a/src/maemo-recorder-file.c b/src/maemo-recorder-file.c index eaa8238..af5d07d 100644 --- a/src/maemo-recorder-file.c +++ b/src/maemo-recorder-file.c @@ -90,6 +90,8 @@ getExtension(gint format) case FORMAT_PCMU: return EXTENSION_AU; /* return EXTENSION_PCMU; */ + case FORMAT_WAV: + return EXTENSION_WAV; case FORMAT_PCM: default: return EXTENSION_RAW;