mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
mpegtspacketizer: Convert PCR times to GStreamer times before comparing them against 500 * GST_MSECOND
Otherwise it will believe to detect PCR gaps already when there's a very small gap of a few milliseconds, breaking playback of some files.
This commit is contained in:
parent
3e5c56e5fb
commit
9f186c6ab3
1 changed files with 2 additions and 1 deletions
|
@ -1962,7 +1962,8 @@ record_pcr (MpegTSPacketizer2 * packetizer, MpegTSPCR * pcrtable,
|
|||
return;
|
||||
}
|
||||
/* If PCR diff is greater than 500ms, create new group */
|
||||
if (G_UNLIKELY (corpcr - current->pending[current->last].pcr >
|
||||
if (G_UNLIKELY (PCRTIME_TO_GSTTIME (corpcr) -
|
||||
PCRTIME_TO_GSTTIME (current->pending[current->last].pcr) >
|
||||
500 * PCR_MSECOND)) {
|
||||
GST_DEBUG ("New PCR more than 500ms away, handling discont");
|
||||
/* Take values from current and put them in the current group (closing it) */
|
||||
|
|
Loading…
Reference in a new issue