summaryrefslogtreecommitdiffstats
path: root/gst/videofilter/gstvideoflip.c
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2003-07-02 08:10:35 +0000
committerDavid Schleef <ds@schleef.org>2003-07-02 08:10:35 +0000
commit2b054f0f893ce33500b2d09a418575fb1eedc352 (patch)
treef9867e1a49351251007473cd036093245c6500e5 /gst/videofilter/gstvideoflip.c
parent96e5a724f81dd64cb83ce48d2aee6d60daff3834 (diff)
add formats to base class, not the actual videofilter class
Original commit message from CVS: add formats to base class, not the actual videofilter class
Diffstat (limited to 'gst/videofilter/gstvideoflip.c')
-rw-r--r--gst/videofilter/gstvideoflip.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/videofilter/gstvideoflip.c b/gst/videofilter/gstvideoflip.c
index f10040e9..36cd5c08 100644
--- a/gst/videofilter/gstvideoflip.c
+++ b/gst/videofilter/gstvideoflip.c
@@ -146,7 +146,8 @@ gst_videoflip_class_init (GstVideoflipClass *klass)
gstvideofilter_class->setup = gst_videoflip_setup;
for(i=0;i<G_N_ELEMENTS(gst_videoflip_formats);i++){
- gst_videofilter_class_add_format(parent_class, gst_videoflip_formats + i);
+ gst_videofilter_class_add_format(gstvideofilter_class,
+ gst_videoflip_formats + i);
}
}