decodebin2: Fix type-punning warning
authorJan Schmidt <jan.schmidt@sun.com>
Wed, 7 Oct 2009 23:17:21 +0000 (00:17 +0100)
committerJan Schmidt <jan.schmidt@sun.com>
Wed, 7 Oct 2009 23:17:21 +0000 (00:17 +0100)
gst/playback/gstdecodebin2.c

index 60dbf57cb9259dd2ca312d969751d883daa464e4..f6545385400a0d5bada84cc8591c0388804b91b4 100644 (file)
@@ -2131,7 +2131,7 @@ gst_decode_group_control_demuxer_pad (GstDecodeGroup * group, GstPad * pad)
 
   it = gst_pad_iterate_internal_links (sinkpad);
 
-  if (!it || (gst_iterator_next (it, (gpointer *) & srcpad)) != GST_ITERATOR_OK
+  if (!it || (gst_iterator_next (it, (gpointer) & srcpad)) != GST_ITERATOR_OK
       || srcpad == NULL) {
     GST_ERROR_OBJECT (dbin,
         "Couldn't get srcpad from multiqueue for sinkpad %" GST_PTR_FORMAT,
@@ -2267,9 +2267,8 @@ gst_decode_chain_handle_eos (GstDecodeChain * eos_chain)
     break;
   }
 
-  drained =
-      chain->active_group ? gst_decode_group_is_drained (chain->
-      active_group) : TRUE;
+  drained = chain->active_group ?
+      gst_decode_group_is_drained (chain->active_group) : TRUE;
 
   /* Now either group == NULL and chain == dbin->decode_chain
    * or chain is the lowest chain that has a non-drained group */