summaryrefslogtreecommitdiffstats
path: root/gst/level
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2007-02-12 12:43:00 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2007-02-12 12:43:00 +0000
commit14d79a36f3ee209a9f660f0a96df977760dc4d0f (patch)
treef338cc90e02cfd4db45f1b05fdc2f962a720a08b /gst/level
parent84c6815cf7dc6ecf427a508b3ca5e562440e40c3 (diff)
gst/goom/gstgoom.*: Improved docs and use GST_DEBUG_FUNCPTR.
Original commit message from CVS: * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init), (gst_goom_change_state): * gst/goom/gstgoom.h: Improved docs and use GST_DEBUG_FUNCPTR. * gst/level/gstlevel.c: (gst_level_class_init): Use GST_DEBUG_FUNCPTR. * gst/monoscope/gstmonoscope.c: (gst_monoscope_init), (gst_monoscope_chain), (gst_monoscope_change_state): Improved docs source cleanups.
Diffstat (limited to 'gst/level')
-rw-r--r--gst/level/gstlevel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/level/gstlevel.c b/gst/level/gstlevel.c
index 10439191..fcb0907c 100644
--- a/gst/level/gstlevel.c
+++ b/gst/level/gstlevel.c
@@ -183,8 +183,8 @@ gst_level_class_init (GstLevelClass * klass)
GST_DEBUG_CATEGORY_INIT (level_debug, "level", 0, "Level calculation");
- trans_class->set_caps = gst_level_set_caps;
- trans_class->transform_ip = gst_level_transform_ip;
+ trans_class->set_caps = GST_DEBUG_FUNCPTR (gst_level_set_caps);
+ trans_class->transform_ip = GST_DEBUG_FUNCPTR (gst_level_transform_ip);
trans_class->passthrough_on_same_caps = TRUE;
}