mirror of
https://github.com/langhuihui/monibuca.git
synced 2026-05-08 17:11:05 +08:00
9 lines
120 B
Go
9 lines
120 B
Go
package codec
|
|
|
|
type ICodecCtx interface {
|
|
FourCC() FourCC
|
|
GetInfo() string
|
|
GetBase() ICodecCtx
|
|
GetRecord() []byte
|
|
}
|