summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Moutte <julien@moutte.net>2004-01-27 16:42:40 +0000
committerJulien Moutte <julien@moutte.net>2004-01-27 16:42:40 +0000
commit2ec67efa3ad69351135c4a3f644ee74bfa499bdf (patch)
tree117bfe582b3de85658c2954f868f122ecdedfcd3
parentf2f78ffcf12c8dcb704cacfe5bc165e87115bca5 (diff)
downloadgst-plugins-bad-2ec67efa3ad69351135c4a3f644ee74bfa499bdf.tar.gz
gst-plugins-bad-2ec67efa3ad69351135c4a3f644ee74bfa499bdf.tar.bz2
gst-plugins-bad-2ec67efa3ad69351135c4a3f644ee74bfa499bdf.zip
gst-libs/gst/play/gstplay.c: The easiest fix ever... Inverting 2 lines of code make spider autoplug correctly tagged ...
Original commit message from CVS: 2004-01-27 Julien MOUTTE <julien@moutte.net> * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest fix ever... Inverting 2 lines of code make spider autoplug correctly tagged mp3 !
-rw-r--r--ChangeLog6
-rw-r--r--gst-libs/gst/play/gstplay.c2
-rw-r--r--gst-libs/gst/play/play.c2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ff072882..c7d323ab 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-01-27 Julien MOUTTE <julien@moutte.net>
+
+ * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
+ fix ever... Inverting 2 lines of code make spider autoplug correctly
+ tagged mp3 !
+
2004-01-27 David Schleef <ds@schleef.org>
* gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
diff --git a/gst-libs/gst/play/gstplay.c b/gst-libs/gst/play/gstplay.c
index c9d28d0e..16b0f009 100644
--- a/gst-libs/gst/play/gstplay.c
+++ b/gst-libs/gst/play/gstplay.c
@@ -573,8 +573,8 @@ gst_play_set_location (GstPlay *play, const char *location)
gst_bin_add (GST_BIN (work_thread), autoplugger);
gst_element_link (source, autoplugger);
- gst_element_link (autoplugger, identity);
gst_element_link (autoplugger, audioconvert);
+ gst_element_link (autoplugger, identity);
g_hash_table_replace (play->priv->elements, "autoplugger", autoplugger);
diff --git a/gst-libs/gst/play/play.c b/gst-libs/gst/play/play.c
index c9d28d0e..16b0f009 100644
--- a/gst-libs/gst/play/play.c
+++ b/gst-libs/gst/play/play.c
@@ -573,8 +573,8 @@ gst_play_set_location (GstPlay *play, const char *location)
gst_bin_add (GST_BIN (work_thread), autoplugger);
gst_element_link (source, autoplugger);
- gst_element_link (autoplugger, identity);
gst_element_link (autoplugger, audioconvert);
+ gst_element_link (autoplugger, identity);
g_hash_table_replace (play->priv->elements, "autoplugger", autoplugger);