summaryrefslogtreecommitdiffstats
path: root/gst/real/gstrealvideodec.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst/real/gstrealvideodec.c')
-rw-r--r--gst/real/gstrealvideodec.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/gst/real/gstrealvideodec.c b/gst/real/gstrealvideodec.c
index 27558426..5abe945e 100644
--- a/gst/real/gstrealvideodec.c
+++ b/gst/real/gstrealvideodec.c
@@ -504,10 +504,11 @@ codec_search_done:
goto could_not_load;
}
- lib->Init = rv_init;
- lib->Free = rv_free;
- lib->Transform = rv_transform;
- lib->Message = rv_custom_msg;
+ lib->Init = (guint32 (*)(gpointer, gpointer)) rv_init;
+ lib->Free = (guint32 (*)(gpointer)) rv_free;
+ lib->Transform = (guint32 (*)(gchar *, gchar *, gpointer, gpointer, gpointer))
+ rv_transform;
+ lib->Message = (guint32 (*)(gpointer, gpointer)) rv_custom_msg;
lib->module = module;
dec->error_count = 0;