mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
ksvideosrc: fix logic and timestamp non-muxed streams again
https://bugzilla.gnome.org/show_bug.cgi?id=750381
This commit is contained in:
parent
4238f62975
commit
96d1331679
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue