From 1ab6ab116abd13d7528b945156f876737c01c70b Mon Sep 17 00:00:00 2001 From: Saxon Date: Sat, 11 May 2019 16:33:09 +0930 Subject: [PATCH] container/mts/encoder.go: fixed comment for PTSFrequency const. --- container/mts/encoder.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/container/mts/encoder.go b/container/mts/encoder.go index 7a9aeddd..155ea03b 100644 --- a/container/mts/encoder.go +++ b/container/mts/encoder.go @@ -120,10 +120,10 @@ const ( // the current presentation timestamp. ptsOffset = 700 * time.Millisecond - // PCRFrequency is the base Program Clock Reference frequency. - PCRFrequency = 90000 // Hz + // PCRFrequency is the base Program Clock Reference frequency in Hz. + PCRFrequency = 90000 - // PTSFrequency is the presentation timestamp frequency. + // PTSFrequency is the presentation timestamp frequency in Hz. PTSFrequency = 90000 )