mts: improved some commenting

This commit is contained in:
saxon 2019-01-10 11:12:33 +10:30
parent 459b1895de
commit 304d5501ac
1 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ import (
// Some common manifestations of PSI // Some common manifestations of PSI
var ( var (
// PSI struct to represent a bare minimum PAT. // standardPat is a minimal PAT.
standardPat = psi.PSI{ standardPat = psi.PSI{
Pf: 0x00, Pf: 0x00,
Tid: 0x00, Tid: 0x00,
@ -59,7 +59,7 @@ var (
}, },
} }
// PSI struct to represent a bare minimum PMT without descriptors for time and location. // standardPmt is a minimal PMT without descriptors for time and location.
standardPmt = psi.PSI{ standardPmt = psi.PSI{
Pf: 0x00, Pf: 0x00,
Tid: 0x02, Tid: 0x02,
@ -83,7 +83,7 @@ var (
}, },
} }
// Standard PMT with time and location descriptors, time and location fields are zeroed out. // standardPmtTimeLocation is a minimal pmt with descriptors for time and location.
standardPmtTimeLocation = psi.PSI{ standardPmtTimeLocation = psi.PSI{
Pf: 0x00, Pf: 0x00,
Tid: 0x02, Tid: 0x02,