mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +00:00
GSearchFunc seems to be glib1.2 only so it was replaced with
Original commit message from CVS: GSearchFunc seems to be glib1.2 only so it was replaced with GCompareFunc again.
This commit is contained in:
parent
55515f8433
commit
eb2791d210
2 changed files with 2 additions and 2 deletions
|
@ -537,7 +537,7 @@ gst_filesrc_get (GstPad *pad)
|
|||
region.offset = src->curoffset;
|
||||
region.size = readsize;
|
||||
map = g_tree_search (src->map_regions,
|
||||
(GSearchFunc) gst_filesrc_search_region_match,
|
||||
(GCompareFunc) gst_filesrc_search_region_match,
|
||||
®ion);
|
||||
|
||||
// if we found an exact match, subbuffer it
|
||||
|
|
|
@ -537,7 +537,7 @@ gst_filesrc_get (GstPad *pad)
|
|||
region.offset = src->curoffset;
|
||||
region.size = readsize;
|
||||
map = g_tree_search (src->map_regions,
|
||||
(GSearchFunc) gst_filesrc_search_region_match,
|
||||
(GCompareFunc) gst_filesrc_search_region_match,
|
||||
®ion);
|
||||
|
||||
// if we found an exact match, subbuffer it
|
||||
|
|
Loading…
Reference in a new issue