From 09ed8e87e7484b44081543feded52a76335002fd Mon Sep 17 00:00:00 2001 From: David Schleef Date: Wed, 22 Sep 2010 11:57:28 -0700 Subject: [PATCH] schrodec: Fix class definition Class structures should include parent class, not the parent instance structure. --- ext/schroedinger/gstschrodec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/schroedinger/gstschrodec.c b/ext/schroedinger/gstschrodec.c index cfde8cd661..dc80fcbc35 100644 --- a/ext/schroedinger/gstschrodec.c +++ b/ext/schroedinger/gstschrodec.c @@ -60,7 +60,7 @@ struct _GstSchroDec struct _GstSchroDecClass { - GstBaseVideoDecoder base_video_decoder_class; + GstBaseVideoDecoderClass base_video_decoder_class; }; GType gst_schro_dec_get_type (void);