Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lib/upipe-ts/upipe_ts_tstd.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/*
* Copyright (C) 2014-2015 OpenHeadend S.A.R.L.
* Copyright (C) 2026 EasyTools
*
* Authors: Christophe Massiot
*
Expand Down Expand Up @@ -186,6 +187,9 @@ static int upipe_ts_tstd_get_max_delay(struct upipe *upipe, uint64_t *delay_p)
static int upipe_ts_tstd_set_max_delay(struct upipe *upipe, uint64_t delay)
{
struct upipe_ts_tstd *upipe_ts_tstd = upipe_ts_tstd_from_upipe(upipe);
if (upipe_ts_tstd->max_delay == delay)
return UBASE_ERR_NONE;

upipe_ts_tstd->max_delay = delay;
if (upipe_ts_tstd->flow_def != NULL)
return upipe_ts_tstd_set_flow_def(upipe, upipe_ts_tstd->flow_def);
Expand Down
Loading