mirror of https://bitbucket.org/ausocean/av.git
mts: fixed some commenting
This commit is contained in:
parent
cda6999639
commit
c76c4aafb9
|
@ -39,7 +39,7 @@ import (
|
||||||
|
|
||||||
// Some common manifestations of PSI
|
// Some common manifestations of PSI
|
||||||
var (
|
var (
|
||||||
// PSI struct to represent basic PAT.
|
// PSI struct to represent a bare minimum PAT.
|
||||||
standardPat = psi.PSI{
|
standardPat = psi.PSI{
|
||||||
Pf: 0x00,
|
Pf: 0x00,
|
||||||
Tid: 0x00,
|
Tid: 0x00,
|
||||||
|
@ -59,7 +59,7 @@ var (
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
// PSI struct to represent basic PMT without descriptors for time and location.
|
// PSI struct to represent a bare minimum PMT without descriptors for time and location.
|
||||||
standardPmt = psi.PSI{
|
standardPmt = psi.PSI{
|
||||||
Pf: 0x00,
|
Pf: 0x00,
|
||||||
Tid: 0x02,
|
Tid: 0x02,
|
||||||
|
@ -125,8 +125,7 @@ const (
|
||||||
psiSendCount = 7
|
psiSendCount = 7
|
||||||
)
|
)
|
||||||
|
|
||||||
// TimeLocation can hold time and location data for the insertion into mpegts
|
// timeLocation holds time and location data
|
||||||
// packets.
|
|
||||||
type timeLocation struct {
|
type timeLocation struct {
|
||||||
sync.RWMutex
|
sync.RWMutex
|
||||||
time uint64
|
time uint64
|
||||||
|
|
Loading…
Reference in New Issue