mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-09-27 18:42:09 +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
|
|
}
|