From f45029f506009fd1410fa727c79f8b2fb86a8cf3 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Fri, 27 Jun 2003 23:39:46 +0000 Subject: fix state change for modplug fixes #116152 Original commit message from CVS: fix state change for modplug fixes #116152 --- gst/modplug/gstmodplug.cc | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'gst/modplug/gstmodplug.cc') diff --git a/gst/modplug/gstmodplug.cc b/gst/modplug/gstmodplug.cc index adc3a7da..4b7cf19b 100644 --- a/gst/modplug/gstmodplug.cc +++ b/gst/modplug/gstmodplug.cc @@ -371,6 +371,8 @@ gst_modplug_init (GstModPlug *modplug) modplug->_16bit = TRUE; modplug->channel = 2; modplug->frequency = 44100; + modplug->audiobuffer = NULL; + modplug->buffer_in = NULL; } @@ -656,6 +658,7 @@ gst_modplug_loop (GstElement *element) } modplug->mSoundFile->Create (modplug->buffer_in, modplug->song_size); + modplug->opened = TRUE; modplug->audiobuffer = (guchar *) g_malloc (modplug->length); @@ -744,9 +747,13 @@ gst_modplug_change_state (GstElement *element) break; case GST_STATE_PAUSED_TO_READY: gst_bytestream_destroy (modplug->bs); - modplug->mSoundFile->Destroy (); - g_free (modplug->audiobuffer); - g_free (modplug->buffer_in); + modplug->bs = NULL; + if (modplug->opened) + { + modplug->mSoundFile->Destroy (); + modplug->opened = FALSE; + } + if (modplug->audiobuffer) g_free (modplug->audiobuffer); modplug->audiobuffer = NULL; modplug->buffer_in = NULL; modplug->state = MODPLUG_STATE_NEED_TUNE; -- cgit v1.2.1