diff options
Diffstat (limited to 'gst/effectv/gstdice.c')
-rw-r--r-- | gst/effectv/gstdice.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/effectv/gstdice.c b/gst/effectv/gstdice.c index b6355319..7bff8242 100644 --- a/gst/effectv/gstdice.c +++ b/gst/effectv/gstdice.c @@ -59,7 +59,7 @@ struct _GstDiceTVClass { GstElementClass parent_class; - void (*reset) (GstElement *elem); + void (*reset) (GstElement *element); }; GstElementDetails gst_dicetv_details = { @@ -196,9 +196,9 @@ gst_dicetv_init (GstDiceTV * filter) } static void -gst_dicetv_reset_handler (GstElement *elem) +gst_dicetv_reset_handler (GstElement *element) { - GstDiceTV *filter = GST_DICETV (elem); + GstDiceTV *filter = GST_DICETV (element); gst_dicetv_create_map (filter); } |