Skip to content
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions src/libltntstools/tr101290.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ enum ltntstools_tr101290_event_e
E101290_P2_5__PTS_ERROR,
E101290_P2_6__CAT_ERROR,

/* Priority 4 */
E101290_P4_1__UDP_DROPS,

/* Third Priority: Application Dependant Monitoring */
/* Not supported. */

Expand Down
4 changes: 2 additions & 2 deletions src/pes-extractor.c
Original file line number Diff line number Diff line change
Expand Up @@ -250,13 +250,13 @@ void _flushOrderedOutput(struct pes_extractor_s *ctx)
ctx->cb(ctx->userContext, item->pes);
}

//ctx->lastDeliveredPTS = item->pes->PTS;

xorg_list_del(&item->list);
item->pes = NULL;
item->correctedPTS = 0;
free(item);

ctx->lastDeliveredPTS = item->pes->PTS;

item = _list_find_oldest(ctx);
}
}
Expand Down