decodebin2: Removing dead assignment.

The value of group is overwritten a few lines below before being used.
This commit is contained in:
Edward Hervey 2010-04-01 13:53:37 +02:00
parent 7173d4b1c2
commit a58183459f

View file

@ -2602,7 +2602,7 @@ static void
gst_decode_chain_handle_eos (GstDecodeChain * eos_chain) gst_decode_chain_handle_eos (GstDecodeChain * eos_chain)
{ {
GstDecodeBin *dbin = eos_chain->dbin; GstDecodeBin *dbin = eos_chain->dbin;
GstDecodeGroup *group = eos_chain->parent; GstDecodeGroup *group;
GstDecodeChain *chain = eos_chain; GstDecodeChain *chain = eos_chain;
gboolean drained; gboolean drained;