Mike Reedell

Results 3 issues of Mike Reedell

See table 2 of [https://patents.google.com/patent/US20140075042](https://patents.google.com/patent/US20140075042)

There are two files that deal with AdaptationFields: - packet/adaptionfield.go: This one feels like the "right" one to use. - packet/adaptationfield/adaptationfield.go: This one uses the older functional style. I propose...

The function packet.PESHeader is supposed to return just the header for the PES, not the entire packet payload: Example code: ``` payload, _ := packet.Payload(pkt) fmt.Printf("payload start payload: \n%X\n", payload)...