From 04c7825063ce011e147f7020eea3b44ef57d0f87 Mon Sep 17 00:00:00 2001 From: Saxon Date: Sat, 11 May 2019 13:48:32 +0930 Subject: [PATCH] container/mts: PCRFreq->PCRFrequency and PTSFreq->PTSFrequency --- container/mts/encoder.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/container/mts/encoder.go b/container/mts/encoder.go index 83a7b403..a50c2615 100644 --- a/container/mts/encoder.go +++ b/container/mts/encoder.go @@ -121,10 +121,10 @@ const ( ptsOffset = 700 * time.Millisecond // PCRFreq is the base Program Clock Reference frequency. - PCRFreq = 90000 // Hz + PCRFrequency = 90000 // Hz // PTSFreq is the presentation timestamp frequency. - PTSFreq = 90000 + PTSFrequency = 90000 ) // Encoder encapsulates properties of an mpegts generator.