From 96d1331679adc032ccfc2719c0c9954b9751b34b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 4 Jun 2015 13:31:56 +0100 Subject: [PATCH] ksvideosrc: fix logic and timestamp non-muxed streams again https://bugzilla.gnome.org/show_bug.cgi?id=750381 --- sys/winks/gstksvideosrc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/winks/gstksvideosrc.c b/sys/winks/gstksvideosrc.c index 79cbb7a..07cdf8b 100644 --- a/sys/winks/gstksvideosrc.c +++ b/sys/winks/gstksvideosrc.c @@ -815,8 +815,8 @@ gst_ks_video_src_timestamp_buffer (GstKsVideoSrc * self, GstBuffer * buf, GstClock *clock; GstClockTime timestamp; - /* Don't timestamp muxed strams */ - if (!gst_ks_video_device_stream_is_muxed (priv->device)) { + /* Don't timestamp muxed streams */ + if (gst_ks_video_device_stream_is_muxed (priv->device)) { duration = timestamp = GST_CLOCK_TIME_NONE; priv->offset++; goto timestamp; -- 2.7.4