summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2015-06-04 13:31:56 +0100
committerTim-Philipp Müller <tim@centricular.com>2015-06-04 13:31:56 +0100
commit96d1331679adc032ccfc2719c0c9954b9751b34b (patch)
treef0176e7b4e981802721c0975816a21c76b05c1fd /sys
parent4238f629751d16e887e9127c141bfc65737bdd27 (diff)
downloadgstreamer-plugins-bad-96d1331679adc032ccfc2719c0c9954b9751b34b.tar.gz
ksvideosrc: fix logic and timestamp non-muxed streams again
https://bugzilla.gnome.org/show_bug.cgi?id=750381
Diffstat (limited to 'sys')
-rw-r--r--sys/winks/gstksvideosrc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/winks/gstksvideosrc.c b/sys/winks/gstksvideosrc.c
index 79cbb7a2f..07cdf8b92 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;