diff --git a/ChangeLog b/ChangeLog index 80fc3fb871..94416a8b02 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-07-05 Andy Wingo + + * gst/elements, testsuite: Null if we got it... + 2005-07-05 Wim Taymans * configure.ac: diff --git a/gst/elements/gstfakesrc.c b/gst/elements/gstfakesrc.c index 8c744b0dfb..8016b73e32 100644 --- a/gst/elements/gstfakesrc.c +++ b/gst/elements/gstfakesrc.c @@ -451,7 +451,6 @@ gst_fakesrc_get_property (GObject * object, guint prop_id, GValue * value, GstFakeSrc *src; GstBaseSrc *basesrc; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_FAKESRC (object)); src = GST_FAKESRC (object); diff --git a/gst/elements/gstfdsink.c b/gst/elements/gstfdsink.c index 1fca02c387..ee49bb838d 100644 --- a/gst/elements/gstfdsink.c +++ b/gst/elements/gstfdsink.c @@ -137,7 +137,6 @@ gst_fdsink_set_property (GObject * object, guint prop_id, const GValue * value, { GstFdSink *fdsink; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_FDSINK (object)); fdsink = GST_FDSINK (object); @@ -157,7 +156,6 @@ gst_fdsink_get_property (GObject * object, guint prop_id, GValue * value, { GstFdSink *fdsink; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_FDSINK (object)); fdsink = GST_FDSINK (object); diff --git a/gst/elements/gstfdsrc.c b/gst/elements/gstfdsrc.c index e658cd3a9d..b61498e0cb 100644 --- a/gst/elements/gstfdsrc.c +++ b/gst/elements/gstfdsrc.c @@ -174,7 +174,6 @@ gst_fdsrc_set_property (GObject * object, guint prop_id, const GValue * value, { GstFdSrc *src; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_FDSRC (object)); src = GST_FDSRC (object); @@ -201,7 +200,6 @@ gst_fdsrc_get_property (GObject * object, guint prop_id, GValue * value, { GstFdSrc *src; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_FDSRC (object)); src = GST_FDSRC (object); diff --git a/gst/elements/gstfilesink.c b/gst/elements/gstfilesink.c index d6323eb18e..e5b8eba271 100644 --- a/gst/elements/gstfilesink.c +++ b/gst/elements/gstfilesink.c @@ -188,7 +188,6 @@ gst_filesink_set_property (GObject * object, guint prop_id, { GstFileSink *sink; - /* it's not null if we got it, but it might not be ours */ sink = GST_FILESINK (object); switch (prop_id) { @@ -207,7 +206,6 @@ gst_filesink_get_property (GObject * object, guint prop_id, GValue * value, { GstFileSink *sink; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_FILESINK (object)); sink = GST_FILESINK (object); diff --git a/gst/elements/gstfilesrc.c b/gst/elements/gstfilesrc.c index 27421e85ce..cc3367c151 100644 --- a/gst/elements/gstfilesrc.c +++ b/gst/elements/gstfilesrc.c @@ -286,7 +286,6 @@ gst_filesrc_set_property (GObject * object, guint prop_id, const GValue * value, { GstFileSrc *src; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_FILESRC (object)); src = GST_FILESRC (object); @@ -321,7 +320,6 @@ gst_filesrc_get_property (GObject * object, guint prop_id, GValue * value, { GstFileSrc *src; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_FILESRC (object)); src = GST_FILESRC (object); diff --git a/plugins/elements/gstfakesrc.c b/plugins/elements/gstfakesrc.c index 8c744b0dfb..8016b73e32 100644 --- a/plugins/elements/gstfakesrc.c +++ b/plugins/elements/gstfakesrc.c @@ -451,7 +451,6 @@ gst_fakesrc_get_property (GObject * object, guint prop_id, GValue * value, GstFakeSrc *src; GstBaseSrc *basesrc; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_FAKESRC (object)); src = GST_FAKESRC (object); diff --git a/plugins/elements/gstfdsink.c b/plugins/elements/gstfdsink.c index 1fca02c387..ee49bb838d 100644 --- a/plugins/elements/gstfdsink.c +++ b/plugins/elements/gstfdsink.c @@ -137,7 +137,6 @@ gst_fdsink_set_property (GObject * object, guint prop_id, const GValue * value, { GstFdSink *fdsink; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_FDSINK (object)); fdsink = GST_FDSINK (object); @@ -157,7 +156,6 @@ gst_fdsink_get_property (GObject * object, guint prop_id, GValue * value, { GstFdSink *fdsink; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_FDSINK (object)); fdsink = GST_FDSINK (object); diff --git a/plugins/elements/gstfdsrc.c b/plugins/elements/gstfdsrc.c index e658cd3a9d..b61498e0cb 100644 --- a/plugins/elements/gstfdsrc.c +++ b/plugins/elements/gstfdsrc.c @@ -174,7 +174,6 @@ gst_fdsrc_set_property (GObject * object, guint prop_id, const GValue * value, { GstFdSrc *src; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_FDSRC (object)); src = GST_FDSRC (object); @@ -201,7 +200,6 @@ gst_fdsrc_get_property (GObject * object, guint prop_id, GValue * value, { GstFdSrc *src; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_FDSRC (object)); src = GST_FDSRC (object); diff --git a/plugins/elements/gstfilesink.c b/plugins/elements/gstfilesink.c index d6323eb18e..e5b8eba271 100644 --- a/plugins/elements/gstfilesink.c +++ b/plugins/elements/gstfilesink.c @@ -188,7 +188,6 @@ gst_filesink_set_property (GObject * object, guint prop_id, { GstFileSink *sink; - /* it's not null if we got it, but it might not be ours */ sink = GST_FILESINK (object); switch (prop_id) { @@ -207,7 +206,6 @@ gst_filesink_get_property (GObject * object, guint prop_id, GValue * value, { GstFileSink *sink; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_FILESINK (object)); sink = GST_FILESINK (object); diff --git a/plugins/elements/gstfilesrc.c b/plugins/elements/gstfilesrc.c index 27421e85ce..cc3367c151 100644 --- a/plugins/elements/gstfilesrc.c +++ b/plugins/elements/gstfilesrc.c @@ -286,7 +286,6 @@ gst_filesrc_set_property (GObject * object, guint prop_id, const GValue * value, { GstFileSrc *src; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_FILESRC (object)); src = GST_FILESRC (object); @@ -321,7 +320,6 @@ gst_filesrc_get_property (GObject * object, guint prop_id, GValue * value, { GstFileSrc *src; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_FILESRC (object)); src = GST_FILESRC (object); diff --git a/tests/old/testsuite/bytestream/gstbstest.c b/tests/old/testsuite/bytestream/gstbstest.c index 3eb6ae4437..9f24b088d6 100644 --- a/tests/old/testsuite/bytestream/gstbstest.c +++ b/tests/old/testsuite/bytestream/gstbstest.c @@ -300,7 +300,6 @@ gst_bstest_set_property (GObject * object, guint prop_id, const GValue * value, { GstBsTest *bstest; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_BSTEST (object)); bstest = GST_BSTEST (object); @@ -348,7 +347,6 @@ gst_bstest_get_property (GObject * object, guint prop_id, GValue * value, { GstBsTest *bstest; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_BSTEST (object)); bstest = GST_BSTEST (object); diff --git a/tests/old/testsuite/dynparams/dparamstest.c b/tests/old/testsuite/dynparams/dparamstest.c index e41c96dac9..7d07920077 100644 --- a/tests/old/testsuite/dynparams/dparamstest.c +++ b/tests/old/testsuite/dynparams/dparamstest.c @@ -171,7 +171,6 @@ gst_dptest_set_property (GObject * object, guint prop_id, const GValue * value, { GstDpTest *dptest; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_DPTEST (object)); dptest = GST_DPTEST (object); diff --git a/testsuite/bytestream/gstbstest.c b/testsuite/bytestream/gstbstest.c index 3eb6ae4437..9f24b088d6 100644 --- a/testsuite/bytestream/gstbstest.c +++ b/testsuite/bytestream/gstbstest.c @@ -300,7 +300,6 @@ gst_bstest_set_property (GObject * object, guint prop_id, const GValue * value, { GstBsTest *bstest; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_BSTEST (object)); bstest = GST_BSTEST (object); @@ -348,7 +347,6 @@ gst_bstest_get_property (GObject * object, guint prop_id, GValue * value, { GstBsTest *bstest; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_BSTEST (object)); bstest = GST_BSTEST (object); diff --git a/testsuite/dynparams/dparamstest.c b/testsuite/dynparams/dparamstest.c index e41c96dac9..7d07920077 100644 --- a/testsuite/dynparams/dparamstest.c +++ b/testsuite/dynparams/dparamstest.c @@ -171,7 +171,6 @@ gst_dptest_set_property (GObject * object, guint prop_id, const GValue * value, { GstDpTest *dptest; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail (GST_IS_DPTEST (object)); dptest = GST_DPTEST (object);