Added GetPTS() function.

This commit is contained in:
scruzin 2019-07-12 14:01:49 +09:30
parent 4f0a5948ed
commit aa67134969
1 changed files with 55 additions and 34 deletions

View File

@ -33,7 +33,6 @@ import (
"fmt" "fmt"
"github.com/Comcast/gots/packet" "github.com/Comcast/gots/packet"
"github.com/Comcast/gots/pes"
"github.com/pkg/errors" "github.com/pkg/errors"
"bitbucket.org/ausocean/av/container/mts/meta" "bitbucket.org/ausocean/av/container/mts/meta"
@ -379,8 +378,8 @@ var errNoPTS = errors.New("could not find PTS")
// GetPTSRange retreives the first and last PTS of an MPEGTS clip. // GetPTSRange retreives the first and last PTS of an MPEGTS clip.
// If there is only one PTS, it is included twice in the pts return value. // If there is only one PTS, it is included twice in the pts return value.
func GetPTSRange(clip []byte, pid uint16) (pts [2]uint64, err error) { func GetPTSRange(clip []byte, pid uint16) (pts [2]uint64, err error) {
var _pkt packet.Packet var _pts int64
// Find the first packet with PID pidType and PUSI. // Get the first PTS for the given PID.
var i int var i int
for { for {
if i >= len(clip) { if i >= len(clip) {
@ -390,25 +389,14 @@ func GetPTSRange(clip []byte, pid uint16) (pts [2]uint64, err error) {
if err != nil { if err != nil {
return pts, errors.Wrap(err, fmt.Sprintf("could not find packet of PID: %d", pid)) return pts, errors.Wrap(err, fmt.Sprintf("could not find packet of PID: %d", pid))
} }
copy(_pkt[:], pkt) _pts, err = GetPTS(pkt)
if _pkt.PayloadUnitStartIndicator() { if err == nil {
break break
} }
i += _i + PacketSize i += _i + PacketSize
} }
// Get the payload of the packet, which will be the start of the PES packet. pts[0] = uint64(_pts)
payload, err := packet.Payload(&_pkt)
if err != nil {
return pts, err
}
// Get the the first PTS from the PES header.
_pes, err := pes.NewPESHeader(payload)
if err != nil {
return pts, err
}
pts[0] = _pes.PTS()
pts[1] = pts[0] // Until we have find a second PTS. pts[1] = pts[0] // Until we have find a second PTS.
// Get the last PTS searching in reverse from end of the clip. // Get the last PTS searching in reverse from end of the clip.
@ -419,29 +407,62 @@ func GetPTSRange(clip []byte, pid uint16) (pts [2]uint64, err error) {
if err != nil || i <= first { if err != nil || i <= first {
return pts, nil return pts, nil
} }
_pts, err = GetPTS(pkt)
copy(_pkt[:], pkt) if err == nil {
if packet.PayloadUnitStartIndicator(&_pkt) {
break break
} }
i = _i i = _i
} }
// Get the payload of the packet. pts[1] = uint64(_pts)
payload, err = packet.Payload(&_pkt)
if err != nil { return
}
var errNoPesPayload = errors.New("no PES payload")
var errNoPesPTS = errors.New("no PES PTS")
var errInvalidPesHeader = errors.New("invalid PES header")
var errInvalidPesPayload = errors.New("invalid PES payload")
// GetPTS returns a PTS from an MTS packet that has PES payload, or an error otherwise.
func GetPTS(pkt []byte) (pts int64, err error) {
// Bail if packet does not contain a PES.
if pkt[1]&0x040 == 0 {
err = errNoPesPayload
return return
} }
// Get the the last PTS from the PES header. // Compute start of PES payload and check its length.
_pes, err = pes.NewPESHeader(payload) start := HeadSize
if err != nil { if pkt[3]&0x20 != 0 {
// Take into account length of the adaptation field.
start += 1 + int(pkt[4])
}
pes := pkt[start:]
if len(pes) < 9 {
err = errInvalidPesHeader
return return
} }
pts[1] = _pes.PTS()
// Check that PES has a PTS.
if pes[7]&0xc0 == 0 {
err = errNoPesPTS
return return
}
// Extract the PTS.
if len(pes) < 14 {
err = errInvalidPesHeader
return
}
pts = extractPTS(pes[9:14])
return
}
// extractTime extracts a PTS from the given data.
func extractPTS(d []byte) int64 {
return (int64((d[0]>>1)&0x07) << 30) | (int64(d[1]) << 22) | (int64((d[2]>>1)&0x7f) << 15) | (int64(d[3]) << 7) | int64((d[4]>>1)&0x7f)
} }
var errNoMeta = errors.New("PMT does not contain meta") var errNoMeta = errors.New("PMT does not contain meta")
@ -460,7 +481,7 @@ func ExtractMeta(d []byte) (map[string]string, error) {
// metaFromPMT returns metadata, if any, from a PMT. // metaFromPMT returns metadata, if any, from a PMT.
func metaFromPMT(d []byte) (m map[string]string, err error) { func metaFromPMT(d []byte) (m map[string]string, err error) {
// Get as PSI type, skipping the MTS header. // Get as PSI type, skipping the MTS header.
pmt := psi.PSIBytes(d[4:]) pmt := psi.PSIBytes(d[HeadSize:])
// Get the metadata descriptor. // Get the metadata descriptor.
_, desc := pmt.HasDescriptor(psi.MetadataTag) _, desc := pmt.HasDescriptor(psi.MetadataTag)