container/mts/encoder.go: fixed comment for PTSFrequency const.

This commit is contained in:
Saxon 2019-05-11 16:33:09 +09:30
parent aa5a089c55
commit 1ab6ab116a
1 changed files with 3 additions and 3 deletions

View File

@ -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
)