mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
gst/playback/gstplaybasebin.c: Wrong var used to get g_list_next.
Original commit message from CVS: * gst/playback/gstplaybasebin.c: (setup_source): Wrong var used to get g_list_next.
This commit is contained in:
parent
b4c826232a
commit
0e9b17a986
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-10-11 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
|
* gst/playback/gstplaybasebin.c: (setup_source):
|
||||||
|
Wrong var used to get g_list_next.
|
||||||
|
|
||||||
2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
* ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
|
* ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
|
||||||
|
|
|
@ -447,7 +447,7 @@ setup_source (GstPlayBaseBin * play_base_bin)
|
||||||
|
|
||||||
if (g_str_has_prefix (mimetype, "audio/x-raw") ||
|
if (g_str_has_prefix (mimetype, "audio/x-raw") ||
|
||||||
g_str_has_prefix (mimetype, "video/x-raw")) {
|
g_str_has_prefix (mimetype, "video/x-raw")) {
|
||||||
new_decoded_pad (play_base_bin->source, pad, g_list_next (pad) == NULL,
|
new_decoded_pad (play_base_bin->source, pad, g_list_next (pads) == NULL,
|
||||||
play_base_bin);
|
play_base_bin);
|
||||||
|
|
||||||
is_raw = TRUE;
|
is_raw = TRUE;
|
||||||
|
|
Loading…
Reference in a new issue