mirror of
https://github.com/aler9/rtsp-simple-server
synced 2025-10-18 05:30:49 +08:00

Some checks reported warnings
lint / code (push) Has been cancelled
lint / mod-tidy (push) Has been cancelled
lint / apidocs (push) Has been cancelled
test / test64 (push) Has been cancelled
test / test32 (push) Has been cancelled
test / test_highlevel (push) Has been cancelled
needed by #2244
13 lines
157 B
Go
13 lines
157 B
Go
package unit
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// MPEG4AudioGeneric is a MPEG-4 Audio data unit.
|
|
type MPEG4AudioGeneric struct {
|
|
Base
|
|
PTS time.Duration
|
|
AUs [][]byte
|
|
}
|