summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
Diffstat (limited to 'gst')
-rw-r--r--gst/chart/gstchart.c2
-rw-r--r--gst/colorspace/gstcolorspace.c2
-rw-r--r--gst/deinterlace/gstdeinterlace.c2
-rw-r--r--gst/filter/gstbpwsinc.c2
-rw-r--r--gst/filter/gstiir.c2
-rw-r--r--gst/filter/gstlpwsinc.c2
-rw-r--r--gst/flx/gstflxdec.c2
-rw-r--r--gst/games/gstpuzzle.c2
-rw-r--r--gst/librfb/gstrfbsrc.c2
-rw-r--r--gst/mpeg1sys/gstmpeg1systemencode.c2
-rw-r--r--gst/mpeg2sub/gstmpeg2subt.c2
-rw-r--r--gst/mpegaudioparse/gstmpegaudioparse.c2
-rw-r--r--gst/multifilesink/gstmultifilesink.c2
-rw-r--r--gst/smooth/gstsmooth.c2
-rw-r--r--gst/spectrum/gstspectrum.c1
-rw-r--r--gst/stereo/gststereo.c2
-rw-r--r--gst/vbidec/gstvbidec.c2
-rw-r--r--gst/videocrop/gstvideocrop.c1
-rw-r--r--gst/virtualdub/gstxsharpen.c2
-rw-r--r--gst/y4m/gsty4mencode.c2
20 files changed, 0 insertions, 38 deletions
diff --git a/gst/chart/gstchart.c b/gst/chart/gstchart.c
index d84eadcd..a1606ac1 100644
--- a/gst/chart/gstchart.c
+++ b/gst/chart/gstchart.c
@@ -364,7 +364,6 @@ gst_chart_set_property (GObject * object, guint prop_id, const GValue * value,
{
GstChart *chart;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_CHART (object));
chart = GST_CHART (object);
@@ -380,7 +379,6 @@ gst_chart_get_property (GObject * object, guint prop_id, GValue * value,
{
GstChart *chart;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_CHART (object));
chart = GST_CHART (object);
diff --git a/gst/colorspace/gstcolorspace.c b/gst/colorspace/gstcolorspace.c
index d85e87ef..6b28d8fd 100644
--- a/gst/colorspace/gstcolorspace.c
+++ b/gst/colorspace/gstcolorspace.c
@@ -588,7 +588,6 @@ gst_colorspace_set_property (GObject * object, guint prop_id,
{
GstColorspace *space;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_COLORSPACE (object));
space = GST_COLORSPACE (object);
@@ -604,7 +603,6 @@ gst_colorspace_get_property (GObject * object, guint prop_id, GValue * value,
{
GstColorspace *space;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_COLORSPACE (object));
space = GST_COLORSPACE (object);
diff --git a/gst/deinterlace/gstdeinterlace.c b/gst/deinterlace/gstdeinterlace.c
index df797a84..e5bf2158 100644
--- a/gst/deinterlace/gstdeinterlace.c
+++ b/gst/deinterlace/gstdeinterlace.c
@@ -346,7 +346,6 @@ gst_deinterlace_set_property (GObject * object, guint prop_id,
{
GstDeInterlace *filter;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_DEINTERLACE (object));
filter = GST_DEINTERLACE (object);
@@ -375,7 +374,6 @@ gst_deinterlace_get_property (GObject * object, guint prop_id, GValue * value,
{
GstDeInterlace *filter;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_DEINTERLACE (object));
filter = GST_DEINTERLACE (object);
diff --git a/gst/filter/gstbpwsinc.c b/gst/filter/gstbpwsinc.c
index 7be94398..c96da82f 100644
--- a/gst/filter/gstbpwsinc.c
+++ b/gst/filter/gstbpwsinc.c
@@ -345,7 +345,6 @@ gst_bpwsinc_set_property (GObject * object, guint prop_id, const GValue * value,
{
GstBPWSinc *filter;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_BPWSINC (object));
filter = GST_BPWSINC (object);
@@ -371,7 +370,6 @@ gst_bpwsinc_get_property (GObject * object, guint prop_id, GValue * value,
{
GstBPWSinc *filter;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_BPWSINC (object));
filter = GST_BPWSINC (object);
diff --git a/gst/filter/gstiir.c b/gst/filter/gstiir.c
index 438c35a7..818d495b 100644
--- a/gst/filter/gstiir.c
+++ b/gst/filter/gstiir.c
@@ -226,7 +226,6 @@ gst_iir_set_property (GObject * object, guint prop_id, const GValue * value,
{
GstIIR *filter;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_IIR (object));
filter = GST_IIR (object);
@@ -255,7 +254,6 @@ gst_iir_get_property (GObject * object, guint prop_id, GValue * value,
{
GstIIR *filter;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_IIR (object));
filter = GST_IIR (object);
diff --git a/gst/filter/gstlpwsinc.c b/gst/filter/gstlpwsinc.c
index e5406143..bf2773e6 100644
--- a/gst/filter/gstlpwsinc.c
+++ b/gst/filter/gstlpwsinc.c
@@ -292,7 +292,6 @@ gst_lpwsinc_set_property (GObject * object, guint prop_id, const GValue * value,
{
GstLPWSinc *filter;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_LPWSINC (object));
filter = GST_LPWSINC (object);
@@ -315,7 +314,6 @@ gst_lpwsinc_get_property (GObject * object, guint prop_id, GValue * value,
{
GstLPWSinc *filter;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_LPWSINC (object));
filter = GST_LPWSINC (object);
diff --git a/gst/flx/gstflxdec.c b/gst/flx/gstflxdec.c
index 68f44559..a0a6c282 100644
--- a/gst/flx/gstflxdec.c
+++ b/gst/flx/gstflxdec.c
@@ -614,7 +614,6 @@ gst_flxdec_set_property (GObject * object, guint prop_id, const GValue * value,
{
GstFlxDec *flxdec;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_FLXDEC (object));
flxdec = GST_FLXDEC (object);
@@ -630,7 +629,6 @@ gst_flxdec_get_property (GObject * object, guint prop_id, GValue * value,
{
GstFlxDec *flxdec;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_FLXDEC (object));
flxdec = GST_FLXDEC (object);
diff --git a/gst/games/gstpuzzle.c b/gst/games/gstpuzzle.c
index 9aef3cc2..f15e4839 100644
--- a/gst/games/gstpuzzle.c
+++ b/gst/games/gstpuzzle.c
@@ -444,7 +444,6 @@ gst_puzzle_set_property (GObject * object, guint prop_id,
{
GstPuzzle *src;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_PUZZLE (object));
src = GST_PUZZLE (object);
@@ -470,7 +469,6 @@ gst_puzzle_get_property (GObject * object, guint prop_id, GValue * value,
{
GstPuzzle *src;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_PUZZLE (object));
src = GST_PUZZLE (object);
diff --git a/gst/librfb/gstrfbsrc.c b/gst/librfb/gstrfbsrc.c
index 99e3144c..5793907b 100644
--- a/gst/librfb/gstrfbsrc.c
+++ b/gst/librfb/gstrfbsrc.c
@@ -499,7 +499,6 @@ gst_rfbsrc_set_property (GObject * object, guint prop_id, const GValue * value,
{
GstRfbsrc *src;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_RFBSRC (object));
src = GST_RFBSRC (object);
@@ -522,7 +521,6 @@ gst_rfbsrc_get_property (GObject * object, guint prop_id, GValue * value,
{
GstRfbsrc *src;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_RFBSRC (object));
src = GST_RFBSRC (object);
diff --git a/gst/mpeg1sys/gstmpeg1systemencode.c b/gst/mpeg1sys/gstmpeg1systemencode.c
index 35c3e0b6..7481b128 100644
--- a/gst/mpeg1sys/gstmpeg1systemencode.c
+++ b/gst/mpeg1sys/gstmpeg1systemencode.c
@@ -562,7 +562,6 @@ gst_system_encode_set_property (GObject * object, guint prop_id,
{
GstMPEG1SystemEncode *system_encode;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_SYSTEM_ENCODE (object));
system_encode = GST_SYSTEM_ENCODE (object);
@@ -579,7 +578,6 @@ gst_system_encode_get_property (GObject * object, guint prop_id, GValue * value,
{
GstMPEG1SystemEncode *src;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_SYSTEM_ENCODE (object));
src = GST_SYSTEM_ENCODE (object);
diff --git a/gst/mpeg2sub/gstmpeg2subt.c b/gst/mpeg2sub/gstmpeg2subt.c
index 23a2456e..7e178209 100644
--- a/gst/mpeg2sub/gstmpeg2subt.c
+++ b/gst/mpeg2sub/gstmpeg2subt.c
@@ -1016,7 +1016,6 @@ gst_mpeg2subt_set_property (GObject * object, guint prop_id,
{
GstMpeg2Subt *src;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_MPEG2SUBT (object));
src = GST_MPEG2SUBT (object);
@@ -1032,7 +1031,6 @@ gst_mpeg2subt_get_property (GObject * object, guint prop_id, GValue * value,
{
GstMpeg2Subt *src;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_MPEG2SUBT (object));
src = GST_MPEG2SUBT (object);
diff --git a/gst/mpegaudioparse/gstmpegaudioparse.c b/gst/mpegaudioparse/gstmpegaudioparse.c
index 8e77acac..de128f5d 100644
--- a/gst/mpegaudioparse/gstmpegaudioparse.c
+++ b/gst/mpegaudioparse/gstmpegaudioparse.c
@@ -523,7 +523,6 @@ gst_mp3parse_set_property (GObject * object, guint prop_id,
{
GstMPEGAudioParse *src;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_MP3PARSE (object));
src = GST_MP3PARSE (object);
@@ -542,7 +541,6 @@ gst_mp3parse_get_property (GObject * object, guint prop_id, GValue * value,
{
GstMPEGAudioParse *src;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_MP3PARSE (object));
src = GST_MP3PARSE (object);
diff --git a/gst/multifilesink/gstmultifilesink.c b/gst/multifilesink/gstmultifilesink.c
index 4bde51b0..01948713 100644
--- a/gst/multifilesink/gstmultifilesink.c
+++ b/gst/multifilesink/gstmultifilesink.c
@@ -238,7 +238,6 @@ gst_multifilesink_set_property (GObject * object, guint prop_id,
{
GstMultiFileSink *sink;
- /* it's not null if we got it, but it might not be ours */
sink = GST_MULTIFILESINK (object);
switch (prop_id) {
@@ -258,7 +257,6 @@ gst_multifilesink_get_property (GObject * object, guint prop_id, GValue * value,
{
GstMultiFileSink *sink;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_MULTIFILESINK (object));
sink = GST_MULTIFILESINK (object);
diff --git a/gst/smooth/gstsmooth.c b/gst/smooth/gstsmooth.c
index 0ebca104..4654281d 100644
--- a/gst/smooth/gstsmooth.c
+++ b/gst/smooth/gstsmooth.c
@@ -284,7 +284,6 @@ gst_smooth_set_property (GObject * object, guint prop_id, const GValue * value,
{
GstSmooth *smooth;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_SMOOTH (object));
smooth = GST_SMOOTH (object);
@@ -312,7 +311,6 @@ gst_smooth_get_property (GObject * object, guint prop_id, GValue * value,
{
GstSmooth *smooth;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_SMOOTH (object));
smooth = GST_SMOOTH (object);
diff --git a/gst/spectrum/gstspectrum.c b/gst/spectrum/gstspectrum.c
index 41765253..6c1d297e 100644
--- a/gst/spectrum/gstspectrum.c
+++ b/gst/spectrum/gstspectrum.c
@@ -129,7 +129,6 @@ gst_spectrum_set_property (GObject * object, guint prop_id,
{
GstSpectrum *spectrum;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_SPECTRUM (object));
spectrum = GST_SPECTRUM (object);
diff --git a/gst/stereo/gststereo.c b/gst/stereo/gststereo.c
index 50aea79a..317d5570 100644
--- a/gst/stereo/gststereo.c
+++ b/gst/stereo/gststereo.c
@@ -185,7 +185,6 @@ gst_stereo_set_property (GObject * object, guint prop_id, const GValue * value,
{
GstStereo *stereo;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_STEREO (object));
stereo = GST_STEREO (object);
@@ -207,7 +206,6 @@ gst_stereo_get_property (GObject * object, guint prop_id, GValue * value,
{
GstStereo *stereo;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_STEREO (object));
stereo = GST_STEREO (object);
diff --git a/gst/vbidec/gstvbidec.c b/gst/vbidec/gstvbidec.c
index 749cf65d..1ee991a4 100644
--- a/gst/vbidec/gstvbidec.c
+++ b/gst/vbidec/gstvbidec.c
@@ -330,7 +330,6 @@ gst_vbidec_set_property (GObject * object, guint prop_id, const GValue * value,
{
GstVBIDec *vbidec;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_VBIDEC (object));
vbidec = GST_VBIDEC (object);
@@ -357,7 +356,6 @@ gst_vbidec_get_property (GObject * object, guint prop_id, GValue * value,
{
GstVBIDec *vbidec;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_VBIDEC (object));
vbidec = GST_VBIDEC (object);
diff --git a/gst/videocrop/gstvideocrop.c b/gst/videocrop/gstvideocrop.c
index 47a2def8..6009ef7c 100644
--- a/gst/videocrop/gstvideocrop.c
+++ b/gst/videocrop/gstvideocrop.c
@@ -213,7 +213,6 @@ gst_video_crop_set_property (GObject * object, guint prop_id,
{
GstVideoCrop *video_crop;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_VIDEO_CROP (object));
video_crop = GST_VIDEO_CROP (object);
diff --git a/gst/virtualdub/gstxsharpen.c b/gst/virtualdub/gstxsharpen.c
index 41456a56..426d8fea 100644
--- a/gst/virtualdub/gstxsharpen.c
+++ b/gst/virtualdub/gstxsharpen.c
@@ -399,7 +399,6 @@ gst_xsharpen_set_property (GObject * object, guint prop_id,
{
GstXsharpen *xsharpen;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_XSHARPEN (object));
xsharpen = GST_XSHARPEN (object);
@@ -421,7 +420,6 @@ gst_xsharpen_get_property (GObject * object, guint prop_id, GValue * value,
{
GstXsharpen *xsharpen;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_XSHARPEN (object));
xsharpen = GST_XSHARPEN (object);
diff --git a/gst/y4m/gsty4mencode.c b/gst/y4m/gsty4mencode.c
index f70f101a..c70d8c84 100644
--- a/gst/y4m/gsty4mencode.c
+++ b/gst/y4m/gsty4mencode.c
@@ -232,7 +232,6 @@ gst_y4mencode_set_property (GObject * object, guint prop_id,
{
GstY4mEncode *filter;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_Y4MENCODE (object));
filter = GST_Y4MENCODE (object);
@@ -248,7 +247,6 @@ gst_y4mencode_get_property (GObject * object, guint prop_id, GValue * value,
{
GstY4mEncode *filter;
- /* it's not null if we got it, but it might not be ours */
g_return_if_fail (GST_IS_Y4MENCODE (object));
filter = GST_Y4MENCODE (object);