mirror of
https://github.com/qrtc/ffmpeg-dev-go.git
synced 2025-10-05 07:37:20 +08:00
2023-10-27 06:28:27 CST W43D5
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
Reference in New Issue
Block a user