mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-25 00:28:21 +00:00
sfdec: Fix typo in goto variable name
https://bugzilla.gnome.org/show_bug.cgi?id=754057
This commit is contained in:
parent
69f86e51b2
commit
89a04915fe
1 changed files with 2 additions and 2 deletions
|
@ -206,7 +206,7 @@ gst_sf_dec_do_seek (GstSFDec * self, GstEvent * event)
|
|||
|
||||
/* FIXME: we should be using GstSegment for all this */
|
||||
if (cur_type != GST_SEEK_TYPE_SET || stop_type != GST_SEEK_TYPE_NONE)
|
||||
goto unsuported_type;
|
||||
goto unsupported_type;
|
||||
|
||||
if (stop_type == GST_SEEK_TYPE_NONE)
|
||||
stop = GST_CLOCK_TIME_NONE;
|
||||
|
@ -270,7 +270,7 @@ unsupported_format:
|
|||
GST_DEBUG_OBJECT (self, "seeking is only supported in TIME format");
|
||||
return FALSE;
|
||||
}
|
||||
unsuported_type:
|
||||
unsupported_type:
|
||||
{
|
||||
GST_DEBUG_OBJECT (self, "unsupported seek type");
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in a new issue