dtsdec: Use gst_buffer_ref/unref, not gst_object_ref/unref
authorJan Schmidt <thaytan@noraisin.net>
Fri, 16 Oct 2009 10:08:05 +0000 (11:08 +0100)
committerJan Schmidt <thaytan@noraisin.net>
Fri, 16 Oct 2009 10:09:15 +0000 (11:09 +0100)
properly fixes: #598274

ext/dts/gstdtsdec.c

index a91ab55..8d026a4 100644 (file)
@@ -740,12 +740,12 @@ gst_dtsdec_chain (GstPad * pad, GstBuffer * buf)
       ret = gst_dtsdec_chain_raw (pad, subbuf);
     }
   } else {
-    gst_object_ref (buf);
+    gst_buffer_ref (buf);
     ret = gst_dtsdec_chain_raw (pad, buf);
   }
 
 done:
-  gst_object_unref (buf);
+  gst_buffer_unref (buf);
   return ret;
 
 /* ERRORS */
@@ -753,14 +753,14 @@ not_enough_data:
   {
     GST_ELEMENT_ERROR (GST_ELEMENT (dts), STREAM, DECODE, (NULL),
         ("Insufficient data in buffer. Can't determine first_acess"));
-    gst_object_unref (buf);
+    gst_buffer_unref (buf);
     return GST_FLOW_ERROR;
   }
 bad_first_access_parameter:
   {
     GST_ELEMENT_ERROR (GST_ELEMENT (dts), STREAM, DECODE, (NULL),
         ("Bad first_access parameter (%d) in buffer", first_access));
-    gst_object_unref (buf);
+    gst_buffer_unref (buf);
     return GST_FLOW_ERROR;
   }
 }