mirror of
https://github.com/asticode/go-astiav.git
synced 2025-09-26 20:21:15 +08:00
14 lines
281 B
Go
14 lines
281 B
Go
package astiav
|
|
|
|
//#include <libavutil/frame.h>
|
|
import "C"
|
|
|
|
// https://ffmpeg.org/doxygen/7.0/structAVRegionOfInterest.html
|
|
type RegionOfInterest struct {
|
|
Bottom int
|
|
Left int
|
|
QuantisationOffset Rational
|
|
Right int
|
|
Top int
|
|
}
|