]> err.no Git - mapper/commitdiff
Misc
authorKaj-Michael Lang <milang@angel.tal.org>
Thu, 25 Oct 2007 10:09:49 +0000 (13:09 +0300)
committerKaj-Michael Lang <milang@angel.tal.org>
Thu, 25 Oct 2007 10:09:49 +0000 (13:09 +0300)
src/audio-note.c
src/audio-note.h

index 1ff76aa46382fe6a1c853ba2a0aa52bbc3700712..3f0245082527d466a9be9e9d480dfcb184f2f622 100644 (file)
@@ -112,7 +112,7 @@ gboolean
 audio_note_play(gchar *file)
 {
 audio_set_filename(note_play.src, file);
-if (gst_element_set_state (note_play.pipeline, GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE) {
+if (gst_element_set_state(note_play.pipeline, GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE) {
        g_printf("Failed to play file %s\n", file);
        return FALSE;
 }
@@ -126,13 +126,19 @@ gboolean
 audio_note_record(gchar *file)
 {
 audio_set_filename(note_record.sink, file);
-if (gst_element_set_state (note_record.pipeline, GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE) {
+if (gst_element_set_state(note_record.pipeline, GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE) {
        g_printf("Failed to record to file %s\n", file);
        return FALSE;
 }
 return TRUE;
 }
 
+gboolean
+audio_note_stop()
+{
+return TRUE;
+}
+
 /**
  * Init gst pipelines for note play and record
  */
index 911f4c6b2e9a87355c59b3378c4f5943c90681eb..1d0fda997223d49471365b949bf20841411cb435 100644 (file)
@@ -22,6 +22,8 @@
 #define _AUDIO_NOTE_H
 
 gboolean audio_note_init(void);
+void audio_note_deinit(void);
+
 gboolean audio_note_record(gchar *file);
 gboolean audio_note_play(gchar *file);