After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 796184 - Minor bug in the BasicTutorial4.cs
Minor bug in the BasicTutorial4.cs
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-sharp
1.14.0
Other Windows
: Normal minor
: git master
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2018-05-16 21:18 UTC by tomislavtustonic
Modified: 2018-05-18 01:40 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
samples: Fix Tutorial4 by making it actually seek at some point. (1.42 KB, patch)
2018-05-18 01:38 UTC, Thibault Saunier
committed Details | Review

Description tomislavtustonic 2018-05-16 21:18:07 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
Comment 1 Thibault Saunier 2018-05-16 21:53:00 UTC
Thanks for the report, do you whish to provide a patch? :-)
Comment 2 tomislavtustonic 2018-05-16 22:22:27 UTC
Hm, patch is to put ! in front of the seekDone in line 71.
Comment 3 Thibault Saunier 2018-05-18 01:38:25 UTC
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.
Comment 4 Thibault Saunier 2018-05-18 01:39:53 UTC
Attachment 372164 [details] pushed as c40730f - samples: Fix Tutorial4 by making it actually seek at some point.