mirror of https://bitbucket.org/ausocean/av.git
Merged in kortschak/av/gardening/syntax (pull request #14)
mpegts: fix build
This commit is contained in:
commit
093291d214
|
@ -28,24 +28,24 @@ LICENSE
|
||||||
package psi
|
package psi
|
||||||
|
|
||||||
type PAT struct {
|
type PAT struct {
|
||||||
PF byte // POint field
|
PF byte // Point field
|
||||||
PFB []byte // pointer filler bytes
|
PFB []byte // pointer filler bytes
|
||||||
TableID byte // Table ID
|
TableID byte // Table ID
|
||||||
SSI bool // Sectiopn syntax indicator (1 for PAT, PMT, CAT)
|
SSI bool // Sectiopn syntax indicator (1 for PAT, PMT, CAT)
|
||||||
PB bool // Private bit (0 for PAT, PMT, CAT)
|
PB bool // Private bit (0 for PAT, PMT, CAT)
|
||||||
SL uint16 // Section length
|
SL uint16 // Section length
|
||||||
TIE uint16 // Table ID extension
|
TIE uint16 // Table ID extension
|
||||||
Version byte // Version number
|
Version byte // Version number
|
||||||
CNI bool // Current/next indicator
|
CNI bool // Current/next indicator
|
||||||
Section byte // Section number
|
Section byte // Section number
|
||||||
LSN byte // Last section number
|
LSN byte // Last section number
|
||||||
DT byte // Descriptor tag
|
DT byte // Descriptor tag
|
||||||
DL byte // Descriptor length
|
DL byte // Descriptor length
|
||||||
Program uint16 // Program number
|
Program uint16 // Program number
|
||||||
PMPID uint16 // Program map PID
|
PMPID uint16 // Program map PID
|
||||||
CRC32 uint32 // Checksum of table
|
CRC32 uint32 // Checksum of table
|
||||||
}
|
}
|
||||||
|
|
||||||
type (p *PAT)ToByteSlice()(output []byte){
|
func (p *PAT) ToByteSlice() (output []byte) {
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,7 @@ LICENSE
|
||||||
package psi
|
package psi
|
||||||
|
|
||||||
type PMT struct {
|
type PMT struct {
|
||||||
PF byte // POint field
|
PF byte // Point field
|
||||||
PFB []byte // pointer filler bytes
|
PFB []byte // pointer filler bytes
|
||||||
TableID byte // Table ID
|
TableID byte // Table ID
|
||||||
SSI bool // Sectiopn syntax indicator (1 for PAT, PMT, CAT)
|
SSI bool // Sectiopn syntax indicator (1 for PAT, PMT, CAT)
|
||||||
|
@ -43,5 +43,5 @@ type PMT struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *PMT) ToByteSlice() (output []byte) {
|
func (p *PMT) ToByteSlice() (output []byte) {
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue