mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
adapter: Fix mix-up between DTS and PTS
https://bugzilla.gnome.org/show_bug.cgi?id=773319
This commit is contained in:
parent
cfdb97a135
commit
9ae7f465a5
1 changed files with 1 additions and 1 deletions
|
@ -1568,7 +1568,7 @@ gst_adapter_prev_pts_at_offset (GstAdapter * adapter, gsize offset,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (distance)
|
if (distance)
|
||||||
*distance = adapter->dts_distance + offset;
|
*distance = adapter->pts_distance + offset;
|
||||||
|
|
||||||
return pts;
|
return pts;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue