raster pushed a commit to branch master. http://git.enlightenment.org/core/evas_generic_loaders.git/commit/?id=a0a6053e764a0a4adeebccdb12cd1e20808a3ff9
commit a0a6053e764a0a4adeebccdb12cd1e20808a3ff9 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Sun Aug 3 21:14:55 2014 +0900 actually fix gst generic loader --- src/bin/gst/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/gst/main.c b/src/bin/gst/main.c index 050b74f..77f3910 100644 --- a/src/bin/gst/main.c +++ b/src/bin/gst/main.c @@ -178,7 +178,7 @@ _gst_load_image(int size_w EINA_UNUSED, int size_h EINA_UNUSED, double pos) D("load image\n"); if (pos >= 0.0) gst_element_seek_simple(pipeline, GST_FORMAT_TIME, GST_SEEK_FLAG_FLUSH, - pos * 1000000000.0); + pos); else gst_element_seek_simple(pipeline, GST_FORMAT_TIME, GST_SEEK_FLAG_FLUSH, duration / 2); --
