Fix more broken GObject macros
[platform/upstream/gst-plugins-good.git] / gst / level / gstlevel.h
1 /* GStreamer
2  * Copyright (C) 1999 Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) 2000,2001,2002,2003,2005
4  *           Thomas Vander Stichele <thomas at apestaart dot org>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22
23 #ifndef __GST_LEVEL_H__
24 #define __GST_LEVEL_H__
25
26
27 #include <gst/gst.h>
28 #include <gst/base/gstbasetransform.h>
29
30
31 G_BEGIN_DECLS
32
33
34 #define GST_TYPE_LEVEL \
35   (gst_level_get_type())
36 #define GST_LEVEL(obj) \
37   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_LEVEL,GstLevel))
38 #define GST_LEVEL_CLASS(klass) \
39   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_LEVEL,GstLevelClass))
40 #define GST_LEVEL_GET_CLASS(obj) \
41   (G_TYPE_INSTANCE_GET_CLASS((obj),GST_TYPE_LEVEL,GstLevelClass))
42 #define GST_IS_LEVEL(obj) \
43   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_LEVEL))
44 #define GST_IS_LEVEL_CLASS(klass) \
45   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_LEVEL))
46
47
48 typedef struct _GstLevel GstLevel;
49 typedef struct _GstLevelClass GstLevelClass;
50
51
52 struct _GstLevel {
53   GstBaseTransform element;
54
55   gboolean message;             /* whether or not to post messages */
56   gdouble interval;             /* how many seconds between emits */
57
58   gint rate;                    /* caps variables */
59   gint width;
60   gint channels;
61
62   gdouble decay_peak_ttl;       /* time to live for peak in seconds */
63   gdouble decay_peak_falloff;   /* falloff in dB/sec */
64   gint num_frames;              /* frame count (1 sample per channel)
65                                  * since last emit */
66
67   /* per-channel arrays for intermediate values */
68   gdouble *CS;                  /* normalized Cumulative Square */
69   gdouble *peak;                /* normalized Peak value over buffer */
70   gdouble *last_peak;           /* last normalized Peak value over interval */
71   gdouble *decay_peak;          /* running decaying normalized Peak */
72   gdouble *decay_peak_base;     /* value of last peak we are decaying from */
73   gdouble *MS;                  /* normalized Mean Square of buffer */
74   gdouble *RMS_dB;              /* RMS in dB to emit */
75   GstClockTime *decay_peak_age; /* age of last peak */
76 };
77
78 struct _GstLevelClass {
79   GstBaseTransformClass parent_class;
80 };
81
82 GType gst_level_get_type (void);
83
84
85 G_END_DECLS
86
87
88 #endif /* __GST_LEVEL_H__ */