github.com/cnotch/ipchub@v1.1.0/av/format/packet.go (about) 1 // Copyright (c) 2019,CAOHONGJU All rights reserved. 2 // Use of this source code is governed by a MIT-style 3 // license that can be found in the LICENSE file. 4 5 package format 6 7 // Packet 表示流媒体包 8 type Packet interface { 9 Size() int // 包长度 10 }