summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xine-engine/audio_decoder.c15
-rw-r--r--src/xine-engine/load_plugins.c3
2 files changed, 15 insertions, 3 deletions
diff --git a/src/xine-engine/audio_decoder.c b/src/xine-engine/audio_decoder.c
index 3a42a2369..4b3cbb848 100644
--- a/src/xine-engine/audio_decoder.c
+++ b/src/xine-engine/audio_decoder.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: audio_decoder.c,v 1.91 2002/12/06 01:13:15 miguelfreitas Exp $
+ * $Id: audio_decoder.c,v 1.92 2002/12/18 03:59:10 guenter Exp $
*
*
* functions that implement audio decoding
@@ -83,7 +83,17 @@ void *audio_decoder_loop (void *stream_gen) {
break;
case BUF_CONTROL_START:
+
+#ifdef LOG
+ printf ("audio_decoder: start\n");
+#endif
+
if (stream->audio_decoder_plugin) {
+
+#ifdef LOG
+ printf ("audio_decoder: close old decoder\n");
+#endif
+
free_audio_decoder (stream, stream->audio_decoder_plugin);
stream->audio_decoder_plugin = NULL;
stream->audio_track_map_entries = 0;
@@ -142,6 +152,9 @@ void *audio_decoder_loop (void *stream_gen) {
break;
case BUF_CONTROL_RESET_DECODER:
+#ifdef LOG
+ printf ("audio_decoder: reset\n");
+#endif
if (stream->audio_decoder_plugin)
stream->audio_decoder_plugin->reset (stream->audio_decoder_plugin);
break;
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c
index d1a87219f..bffca3cd2 100644
--- a/src/xine-engine/load_plugins.c
+++ b/src/xine-engine/load_plugins.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: load_plugins.c,v 1.122 2002/12/16 01:50:52 guenter Exp $
+ * $Id: load_plugins.c,v 1.123 2002/12/18 03:59:10 guenter Exp $
*
*
* Load input/demux/audio_out/video_out/codec plugins
@@ -689,7 +689,6 @@ static void save_catalog (xine_t *this) {
strlen(dirname) + 3);
sprintf(dirfile, "%s/%s", xine_get_homedir(), dirname);
mkdir (dirfile, 0755);
- printf ("\n\nsave_catalog: %s created\n", dirfile);
free (dirfile);
if( (fp = fopen(cachefile,"w")) != NULL ) {