mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
typefind: fix prototype of helper_find_suggest
The proto for helper_find_suggest has a different argument than the actual function in the same file has. This causes the Sun Studio compiler to fail. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=676624 Conflicts: libs/gst/base/gsttypefindhelper.c
This commit is contained in:
parent
8af3ee2501
commit
461178fb59
1 changed files with 2 additions and 1 deletions
|
@ -43,7 +43,8 @@
|
|||
/* ********************** typefinding in pull mode ************************ */
|
||||
|
||||
static void
|
||||
helper_find_suggest (gpointer data, guint probability, GstCaps * caps);
|
||||
helper_find_suggest (gpointer data, GstTypeFindProbability probability,
|
||||
GstCaps * caps);
|
||||
|
||||
typedef struct
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue