Files
go-astiav/strict_std_compliance.go
2024-11-14 09:01:26 +01:00

16 lines
593 B
Go

package astiav
//#include <libavcodec/avcodec.h>
import "C"
// https://ffmpeg.org/doxygen/7.0/defs_8h.html#a96808e3862c53c7edb4ace1b2f3e544f
type StrictStdCompliance int
const (
StrictStdComplianceVeryStrict = StrictStdCompliance(C.FF_COMPLIANCE_VERY_STRICT)
StrictStdComplianceStrict = StrictStdCompliance(C.FF_COMPLIANCE_STRICT)
StrictStdComplianceNormal = StrictStdCompliance(C.FF_COMPLIANCE_NORMAL)
StrictStdComplianceUnofficial = StrictStdCompliance(C.FF_COMPLIANCE_UNOFFICIAL)
StrictStdComplianceExperimental = StrictStdCompliance(C.FF_COMPLIANCE_EXPERIMENTAL)
)