mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 18:35:35 +00:00
decodebin2: Removing dead assignment.
The value of group is overwritten a few lines below before being used.
This commit is contained in:
parent
7173d4b1c2
commit
a58183459f
1 changed files with 1 additions and 1 deletions
|
@ -2602,7 +2602,7 @@ static void
|
|||
gst_decode_chain_handle_eos (GstDecodeChain * eos_chain)
|
||||
{
|
||||
GstDecodeBin *dbin = eos_chain->dbin;
|
||||
GstDecodeGroup *group = eos_chain->parent;
|
||||
GstDecodeGroup *group;
|
||||
GstDecodeChain *chain = eos_chain;
|
||||
gboolean drained;
|
||||
|
||||
|
|
Loading…
Reference in a new issue