gst/real/gstrealvideodec.c: Add some casts to fix the build on Forte

Original commit message from CVS:
* gst/real/gstrealvideodec.c: (open_library):
Add some casts to fix the build on Forte
This commit is contained in:
Jan Schmidt 2008-07-16 14:15:39 +00:00
parent 504c667069
commit 32e80c449f
2 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2008-07-16 Jan Schmidt <Jan.Schmidt@sun.com>
* gst/real/gstrealvideodec.c: (open_library):
Add some casts to fix the build on Forte
2008-07-14 Edward Hervey <edward.hervey@collabora.co.uk>
* gst/deinterlace2/tvtime/greedy.c:

View file

@ -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;