mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 17:18:15 +00:00
Many files: Null if we got it....
Original commit message from CVS: 2005-07-05 Andy Wingo <wingo@pobox.com> * Many files: Null if we got it....
This commit is contained in:
parent
8c6f8b846f
commit
e4180644b1
13 changed files with 4 additions and 20 deletions
|
@ -1,3 +1,7 @@
|
|||
2005-07-05 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
* Many files: Null if we got it....
|
||||
|
||||
2005-07-05 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
* gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read):
|
||||
|
|
|
@ -341,7 +341,6 @@ cdparanoia_set_property (GObject * object, guint prop_id, const GValue * value,
|
|||
{
|
||||
CDParanoia *src;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_CDPARANOIA (object));
|
||||
|
||||
src = CDPARANOIA (object);
|
||||
|
|
|
@ -312,7 +312,6 @@ gst_gnomevfssink_set_property (GObject * object, guint prop_id,
|
|||
{
|
||||
GstGnomeVFSSink *sink;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
sink = GST_GNOMEVFSSINK (object);
|
||||
|
||||
switch (prop_id) {
|
||||
|
@ -375,7 +374,6 @@ gst_gnomevfssink_get_property (GObject * object, guint prop_id, GValue * value,
|
|||
{
|
||||
GstGnomeVFSSink *sink;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_GNOMEVFSSINK (object));
|
||||
|
||||
sink = GST_GNOMEVFSSINK (object);
|
||||
|
|
|
@ -972,7 +972,6 @@ gst_vorbisenc_get_property (GObject * object, guint prop_id, GValue * value,
|
|||
{
|
||||
VorbisEnc *vorbisenc;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_VORBISENC (object));
|
||||
|
||||
vorbisenc = GST_VORBISENC (object);
|
||||
|
@ -1008,7 +1007,6 @@ gst_vorbisenc_set_property (GObject * object, guint prop_id,
|
|||
{
|
||||
VorbisEnc *vorbisenc;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_VORBISENC (object));
|
||||
|
||||
vorbisenc = GST_VORBISENC (object);
|
||||
|
|
|
@ -260,7 +260,6 @@ gst_audiofilter_set_property (GObject * object, guint prop_id,
|
|||
{
|
||||
GstAudiofilter *src;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_AUDIOFILTER (object));
|
||||
src = GST_AUDIOFILTER (object);
|
||||
|
||||
|
@ -277,7 +276,6 @@ gst_audiofilter_get_property (GObject * object, guint prop_id, GValue * value,
|
|||
{
|
||||
GstAudiofilter *src;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_AUDIOFILTER (object));
|
||||
src = GST_AUDIOFILTER (object);
|
||||
|
||||
|
|
|
@ -179,7 +179,6 @@ gst_audiofilter_template_set_property (GObject * object, guint prop_id,
|
|||
{
|
||||
GstAudiofilterTemplate *src;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_AUDIOFILTER_TEMPLATE (object));
|
||||
src = GST_AUDIOFILTER_TEMPLATE (object);
|
||||
|
||||
|
@ -196,7 +195,6 @@ gst_audiofilter_template_get_property (GObject * object, guint prop_id,
|
|||
{
|
||||
GstAudiofilterTemplate *src;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_AUDIOFILTER_TEMPLATE (object));
|
||||
src = GST_AUDIOFILTER_TEMPLATE (object);
|
||||
|
||||
|
|
|
@ -677,7 +677,6 @@ gst_audioscale_set_property (GObject * object, guint prop_id,
|
|||
Audioscale *src;
|
||||
gst_resample_t *r;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_AUDIOSCALE (object));
|
||||
src = GST_AUDIOSCALE (object);
|
||||
r = &(src->gst_resample_template);
|
||||
|
|
|
@ -471,7 +471,6 @@ gst_sinesrc_get_property (GObject * object, guint prop_id,
|
|||
{
|
||||
GstSineSrc *src;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_SINESRC (object));
|
||||
src = GST_SINESRC (object);
|
||||
|
||||
|
|
|
@ -269,7 +269,6 @@ gst_tcpclientsink_set_property (GObject * object, guint prop_id,
|
|||
{
|
||||
GstTCPClientSink *tcpclientsink;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_TCPCLIENTSINK (object));
|
||||
tcpclientsink = GST_TCPCLIENTSINK (object);
|
||||
|
||||
|
@ -301,7 +300,6 @@ gst_tcpclientsink_get_property (GObject * object, guint prop_id, GValue * value,
|
|||
{
|
||||
GstTCPClientSink *tcpclientsink;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_TCPCLIENTSINK (object));
|
||||
tcpclientsink = GST_TCPCLIENTSINK (object);
|
||||
|
||||
|
|
|
@ -333,7 +333,6 @@ gst_tcpclientsrc_set_property (GObject * object, guint prop_id,
|
|||
{
|
||||
GstTCPClientSrc *tcpclientsrc;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_TCPCLIENTSRC (object));
|
||||
tcpclientsrc = GST_TCPCLIENTSRC (object);
|
||||
|
||||
|
|
|
@ -691,7 +691,6 @@ gst_videotestsrc_set_property (GObject * object, guint prop_id,
|
|||
{
|
||||
GstVideotestsrc *videotestsrc;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_VIDEOTESTSRC (object));
|
||||
videotestsrc = GST_VIDEOTESTSRC (object);
|
||||
|
||||
|
@ -719,7 +718,6 @@ gst_videotestsrc_get_property (GObject * object, guint prop_id, GValue * value,
|
|||
{
|
||||
GstVideotestsrc *videotestsrc;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_VIDEOTESTSRC (object));
|
||||
videotestsrc = GST_VIDEOTESTSRC (object);
|
||||
|
||||
|
|
|
@ -441,7 +441,6 @@ gst_v4lelement_set_property (GObject * object,
|
|||
{
|
||||
GstV4lElement *v4lelement;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_V4LELEMENT (object));
|
||||
v4lelement = GST_V4LELEMENT (object);
|
||||
|
||||
|
@ -464,7 +463,6 @@ gst_v4lelement_get_property (GObject * object,
|
|||
{
|
||||
GstV4lElement *v4lelement;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_V4LELEMENT (object));
|
||||
v4lelement = GST_V4LELEMENT (object);
|
||||
|
||||
|
|
|
@ -335,7 +335,6 @@ gst_v4lmjpegsink_set_property (GObject * object,
|
|||
{
|
||||
GstV4lMjpegSink *v4lmjpegsink;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
g_return_if_fail (GST_IS_V4LMJPEGSINK (object));
|
||||
|
||||
v4lmjpegsink = GST_V4LMJPEGSINK (object);
|
||||
|
@ -366,7 +365,6 @@ gst_v4lmjpegsink_get_property (GObject * object,
|
|||
{
|
||||
GstV4lMjpegSink *v4lmjpegsink;
|
||||
|
||||
/* it's not null if we got it, but it might not be ours */
|
||||
v4lmjpegsink = GST_V4LMJPEGSINK (object);
|
||||
|
||||
switch (prop_id) {
|
||||
|
|
Loading…
Reference in a new issue