mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 05:56:31 +00:00
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:
parent
504c667069
commit
32e80c449f
2 changed files with 10 additions and 4 deletions
|
@ -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:
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue