mirror of https://bitbucket.org/ausocean/av.git
mts: improved some commenting
This commit is contained in:
parent
459b1895de
commit
304d5501ac
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue