2023-10-27 06:28:27 CST W43D5

This commit is contained in:
aggresss
2023-10-27 06:28:28 +08:00
parent babffde433
commit 7a0773ebf2
57 changed files with 4729 additions and 2853 deletions

View File

@@ -8,12 +8,12 @@ import "C"
// AVRational
type AVRational C.struct_AVRational
// Custom: GetNum gets `AVRational.num` value.
// GetNum gets `AVRational.num` value.
func (q *AVRational) GetNum() int32 {
return (int32)(q.num)
}
// Custom: GetDen gets `AVRational.den` value.
// GetDen gets `AVRational.den` value.
func (q *AVRational) GetDen() int32 {
return (int32)(q.den)
}