mirror of
https://github.com/asticode/go-astiav.git
synced 2025-10-05 16:16:50 +08:00
12 lines
203 B
Go
12 lines
203 B
Go
package astiav
|
|
|
|
//#include <libavcodec/avcodec.h>
|
|
import "C"
|
|
|
|
type Level int
|
|
|
|
// https://github.com/FFmpeg/FFmpeg/blob/n5.0/libavcodec/avcodec.h#L1652
|
|
const (
|
|
LevelUnknown = Level(C.FF_LEVEL_UNKNOWN)
|
|
)
|