From: Jaroslav Kysela Date: Mon, 2 Apr 2018 19:28:24 +0000 (+0200) Subject: tsfix: increase possible audio to video drift to 3 seconds, fixes #5053 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d9418857f3f38880d7461ddcd04bb72db803dc80;p=thirdparty%2Ftvheadend.git tsfix: increase possible audio to video drift to 3 seconds, fixes #5053 --- diff --git a/src/plumbing/tsfix.c b/src/plumbing/tsfix.c index 58ed54eaf..c75df6362 100644 --- a/src/plumbing/tsfix.c +++ b/src/plumbing/tsfix.c @@ -344,7 +344,7 @@ tsfix_update_ref(tsfix_t *tf, tfstream_t *tfs, th_pkt_t *pkt) if (tfs->tfs_audio) { diff = tsfix_ts_diff(tf->tf_tsref, pkt->pkt_dts); - if (diff > 2 * 90000) { + if (diff > 3 * 90000) { tvhwarn(LS_TSFIX, "The timediff for %s is big (%"PRId64"), using current dts", streaming_component_type2txt(tfs->tfs_type), diff); tfs->tfs_local_ref = pkt->pkt_dts;