Added BasePMT which is a PMT without specific data, and removed StandardPMT.

This commit is contained in:
scruzin 2019-07-10 10:17:34 +09:30
parent 7414317429
commit 90efebdc91
1 changed files with 11 additions and 23 deletions

View File

@ -56,8 +56,8 @@ var (
},
}
// Standard PMT is a minimal PMT.
StandardPMT = psi.PSI{
// Base PMT is a minimal PMT without specific data.
BasePMT = psi.PSI{
Pf: 0x00,
Tid: 0x02,
Ssi: true,
@ -68,15 +68,6 @@ var (
Cni: true,
Sn: 0,
Lsn: 0,
Sd: &psi.PMT{
Pcrpid: 0x0100,
Pil: 0,
Essd: &psi.ESSD{
St: H264ID,
Epid: 0x0100,
Esil: 0x00,
},
},
},
}
)
@ -170,9 +161,7 @@ func NewEncoder(dst io.WriteCloser, rate float64, mediaType int) *Encoder {
sid = H264ID
}
// StandardPmt is a minimal PMT, without descriptors for metadata.
pmt := StandardPMT
if sid != H264ID {
pmt := BasePMT
pmt.Tss.Sd = &psi.PMT{
Pcrpid: 0x0100,
Pil: 0,
@ -182,7 +171,6 @@ func NewEncoder(dst io.WriteCloser, rate float64, mediaType int) *Encoder {
Esil: 0x00,
},
}
}
pmtTable = pmt.Bytes()
return &Encoder{