mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-27 09:38:17 +00:00
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 !
This commit is contained in:
parent
f2f78ffcf1
commit
2ec67efa3a
3 changed files with 8 additions and 2 deletions
|
@ -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>
|
2004-01-27 David Schleef <ds@schleef.org>
|
||||||
|
|
||||||
* gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
|
* gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
|
||||||
|
|
|
@ -573,8 +573,8 @@ gst_play_set_location (GstPlay *play, const char *location)
|
||||||
|
|
||||||
gst_bin_add (GST_BIN (work_thread), autoplugger);
|
gst_bin_add (GST_BIN (work_thread), autoplugger);
|
||||||
gst_element_link (source, autoplugger);
|
gst_element_link (source, autoplugger);
|
||||||
gst_element_link (autoplugger, identity);
|
|
||||||
gst_element_link (autoplugger, audioconvert);
|
gst_element_link (autoplugger, audioconvert);
|
||||||
|
gst_element_link (autoplugger, identity);
|
||||||
|
|
||||||
g_hash_table_replace (play->priv->elements, "autoplugger", autoplugger);
|
g_hash_table_replace (play->priv->elements, "autoplugger", autoplugger);
|
||||||
|
|
||||||
|
|
|
@ -573,8 +573,8 @@ gst_play_set_location (GstPlay *play, const char *location)
|
||||||
|
|
||||||
gst_bin_add (GST_BIN (work_thread), autoplugger);
|
gst_bin_add (GST_BIN (work_thread), autoplugger);
|
||||||
gst_element_link (source, autoplugger);
|
gst_element_link (source, autoplugger);
|
||||||
gst_element_link (autoplugger, identity);
|
|
||||||
gst_element_link (autoplugger, audioconvert);
|
gst_element_link (autoplugger, audioconvert);
|
||||||
|
gst_element_link (autoplugger, identity);
|
||||||
|
|
||||||
g_hash_table_replace (play->priv->elements, "autoplugger", autoplugger);
|
g_hash_table_replace (play->priv->elements, "autoplugger", autoplugger);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue