mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
172eaade07
Original commit message from CVS: * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose), (gst_alsa_finalize): * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init), (gst_cdaudio_finalize): * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init), (cdparanoia_finalize): * ext/divx/gstdivxdec.c: (gst_divxdec_dispose): * ext/divx/gstdivxenc.c: (gst_divxenc_dispose): * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init), (dvdreadsrc_finalize): * ext/flac/gstflacdec.c: (gst_flacdec_class_init), (gst_flacdec_finalize): * ext/flac/gstflacenc.c: (gst_flacenc_class_init), (gst_flacenc_finalize): * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init), (gst_gnomevfssink_finalize): * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_finalize): * ext/libfame/gstlibfame.c: (gst_fameenc_class_init), (gst_fameenc_finalize): * ext/nas/nassink.c: (gst_nassink_class_init), (gst_nassink_finalize): * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize), (gst_sdlvideosink_class_init): * ext/sndfile/gstsf.c: (gst_sf_dispose): * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose): * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose): * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose): * gst-libs/gst/xwindowlistener/xwindowlistener.c: (gst_x_window_listener_dispose): * gst/audioscale/gstaudioscale.c: * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init), (play_on_demand_finalize): * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose): * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): * sys/cdrom/gstcdplayer.c: (cdplayer_class_init), (cdplayer_finalize): * sys/glsink/glimagesink.c: (gst_glimagesink_finalize), (gst_glimagesink_class_init): * sys/oss/gstosselement.c: (gst_osselement_class_init), (gst_osselement_finalize): * sys/oss/gstosssink.c: (gst_osssink_dispose): * sys/oss/gstosssrc.c: (gst_osssrc_dispose): * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose): Fixes a bunch of problems with finalize and dispose functions, either assumptions that dispose is only called once, or not calling the parent class dispose/finalize function
98 lines
2.3 KiB
C
98 lines
2.3 KiB
C
/* GStreamer Tuner
|
|
* Copyright (C) 2003 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
|
*
|
|
* tunernorm.c: tuner norm object design
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "tunernorm.h"
|
|
|
|
enum
|
|
{
|
|
/* FILL ME */
|
|
LAST_SIGNAL
|
|
};
|
|
|
|
static void gst_tuner_norm_class_init (GstTunerNormClass * klass);
|
|
static void gst_tuner_norm_init (GstTunerNorm * norm);
|
|
static void gst_tuner_norm_dispose (GObject * object);
|
|
|
|
static GObjectClass *parent_class = NULL;
|
|
|
|
/*static guint signals[LAST_SIGNAL] = { 0 };*/
|
|
|
|
GType
|
|
gst_tuner_norm_get_type (void)
|
|
{
|
|
static GType gst_tuner_norm_type = 0;
|
|
|
|
if (!gst_tuner_norm_type) {
|
|
static const GTypeInfo tuner_norm_info = {
|
|
sizeof (GstTunerNormClass),
|
|
NULL,
|
|
NULL,
|
|
(GClassInitFunc) gst_tuner_norm_class_init,
|
|
NULL,
|
|
NULL,
|
|
sizeof (GstTunerNorm),
|
|
0,
|
|
(GInstanceInitFunc) gst_tuner_norm_init,
|
|
NULL
|
|
};
|
|
|
|
gst_tuner_norm_type =
|
|
g_type_register_static (G_TYPE_OBJECT,
|
|
"GstTunerNorm", &tuner_norm_info, 0);
|
|
}
|
|
|
|
return gst_tuner_norm_type;
|
|
}
|
|
|
|
static void
|
|
gst_tuner_norm_class_init (GstTunerNormClass * klass)
|
|
{
|
|
GObjectClass *object_klass = (GObjectClass *) klass;
|
|
|
|
parent_class = g_type_class_ref (G_TYPE_OBJECT);
|
|
|
|
object_klass->dispose = gst_tuner_norm_dispose;
|
|
}
|
|
|
|
static void
|
|
gst_tuner_norm_init (GstTunerNorm * norm)
|
|
{
|
|
norm->label = NULL;
|
|
norm->fps = 0.;
|
|
}
|
|
|
|
static void
|
|
gst_tuner_norm_dispose (GObject * object)
|
|
{
|
|
GstTunerNorm *norm = GST_TUNER_NORM (object);
|
|
|
|
if (norm->label) {
|
|
g_free (norm->label);
|
|
norm->label = NULL;
|
|
}
|
|
|
|
if (parent_class->dispose)
|
|
parent_class->dispose (object);
|
|
}
|