mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
decodebin2: preserve next groups order
This commit is contained in:
parent
42db7c7b08
commit
054ffc6e2b
1 changed files with 1 additions and 1 deletions
|
@ -2747,7 +2747,7 @@ gst_decode_chain_get_current_group (GstDecodeChain * chain)
|
||||||
/* group = chain->next_groups->data */
|
/* group = chain->next_groups->data */
|
||||||
} else {
|
} else {
|
||||||
group = gst_decode_group_new (chain->dbin, chain);
|
group = gst_decode_group_new (chain->dbin, chain);
|
||||||
chain->next_groups = g_list_prepend (chain->next_groups, group);
|
chain->next_groups = g_list_append (chain->next_groups, group);
|
||||||
}
|
}
|
||||||
|
|
||||||
return group;
|
return group;
|
||||||
|
|
Loading…
Reference in a new issue