route original timestamps without converting to durations (#3839)

This improves timestamp precision.
This commit is contained in:
Alessandro Ros
2024-10-07 17:59:32 +02:00
committed by GitHub
parent 54c0737074
commit 23002d9f5f
43 changed files with 475 additions and 400 deletions

View File

@@ -19,7 +19,7 @@ type Processor interface {
ProcessRTPPacket(
pkt *rtp.Packet,
ntp time.Time,
pts time.Duration,
pts int64,
hasNonRTSPReaders bool,
) (unit.Unit, error)
}