mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:46:13 +00:00
avidemux: fix return type of index_entry_offset_search()
It's a compare function and may return a negative value, so should for correctness and consistency return a signed integer. https://bugzilla.gnome.org/show_bug.cgi?id=751780
This commit is contained in:
parent
2176f31174
commit
4f4605f481
1 changed files with 1 additions and 1 deletions
|
@ -666,7 +666,7 @@ gst_avi_demux_seek_streams (GstAviDemux * avi, guint64 offset, gboolean before)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static guint
|
static gint
|
||||||
gst_avi_demux_index_entry_offset_search (GstAviIndexEntry * entry,
|
gst_avi_demux_index_entry_offset_search (GstAviIndexEntry * entry,
|
||||||
guint64 * offset)
|
guint64 * offset)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue