decodebin2: Removing dead assignment.
authorEdward Hervey <bilboed@bilboed.com>
Thu, 1 Apr 2010 11:53:37 +0000 (13:53 +0200)
committerEdward Hervey <bilboed@bilboed.com>
Thu, 1 Apr 2010 11:53:37 +0000 (13:53 +0200)
The value of group is overwritten a few lines below before being used.

gst/playback/gstdecodebin2.c

index e4726eb..fe6b0b4 100644 (file)
@@ -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;