From f53a8a85a7345678acfd24612aa8db777e905b5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= Date: Mon, 2 Jun 2014 22:07:52 -0400 Subject: [PATCH] filesrc: Ignore seek error on non-seekable files This make it works with FIFOs. https://bugzilla.gnome.org/show_bug.cgi?id=731176 --- plugins/elements/gstfilesrc.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/plugins/elements/gstfilesrc.c b/plugins/elements/gstfilesrc.c index dd4e811b02..3141883743 100644 --- a/plugins/elements/gstfilesrc.c +++ b/plugins/elements/gstfilesrc.c @@ -480,14 +480,16 @@ gst_file_src_start (GstBaseSrc * basesrc) g_strerror (errno)); src->seekable = FALSE; } else { + res = lseek (src->fd, 0, SEEK_SET); + + if (res < 0) { + /* We really don't like not being able to go back to 0 */ + src->seekable = FALSE; + goto lseek_wonky; + } + src->seekable = TRUE; } - res = lseek (src->fd, 0, SEEK_SET); - if (res < 0) { - /* We really don't like not being able to go back to 0 */ - src->seekable = FALSE; - goto lseek_wonky; - } } /* We can only really do seeking on regular files - for other file types, we