33 lines
479 B
Go
33 lines
479 B
Go
package rtsp
|
|
|
|
import (
|
|
"github.com/nareix/av"
|
|
"github.com/nareix/rtsp/sdp"
|
|
)
|
|
|
|
type Stream struct {
|
|
av.CodecData
|
|
Sdp sdp.Media
|
|
client *Client
|
|
|
|
// h264
|
|
fuBuffer []byte
|
|
sps []byte
|
|
pps []byte
|
|
spsChanged bool
|
|
ppsChanged bool
|
|
|
|
gotpkt bool
|
|
pkt av.Packet
|
|
timestamp uint32
|
|
firsttimestamp uint32
|
|
}
|
|
|
|
func (self Stream) IsAudio() bool {
|
|
return self.Sdp.AVType == "audio"
|
|
}
|
|
|
|
func (self Stream) IsVideo() bool {
|
|
return self.Sdp.AVType == "video"
|
|
}
|