mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-09-27 09:52:06 +08:00
10 lines
137 B
Go
10 lines
137 B
Go
package codec
|
|
|
|
type ICodecCtx interface {
|
|
FourCC() FourCC
|
|
GetInfo() string
|
|
GetBase() ICodecCtx
|
|
GetRecord() []byte
|
|
String() string
|
|
}
|