GNOME Bugzilla – Bug 796184
Minor bug in the BasicTutorial4.cs
Last modified: 2018-05-18 01:40:00 UTC
There's a minor bug in the BasicTutorial4.cs sample (https://github.com/GStreamer/gstreamer-sharp/blob/master/samples/BasicTutorial4.cs) in line 71. Instead of seekEnabled && seekDone should be seekEnabled && !seekDone Cheers, Tom
Thanks for the report, do you whish to provide a patch? :-)
Hm, patch is to put ! in front of the seekDone in line 71.
Created attachment 372164 [details] [review] samples: Fix Tutorial4 by making it actually seek at some point. Thanks to "tomislavtustonic" for the bug report and patch. Also make the seek "Flushing" as the C tutorial.
Attachment 372164 [details] pushed as c40730f - samples: Fix Tutorial4 by making it actually seek at some point.