Files
ipchub/av/format/packet.go
2021-01-08 13:18:30 +08:00

11 lines
254 B
Go

// Copyright (c) 2019,CAOHONGJU All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package format
// Packet 表示流媒体包
type Packet interface {
Size() int // 包长度
}