mirror of
https://github.com/asticode/go-astiav.git
synced 2025-10-08 01:20:09 +08:00
15 lines
228 B
Go
15 lines
228 B
Go
package astiav
|
|
|
|
//#cgo pkg-config: libavutil
|
|
//#include <libavutil/avutil.h>
|
|
import "C"
|
|
|
|
const (
|
|
NoPtsValue = int64(C.AV_NOPTS_VALUE)
|
|
TimeBase = int(C.AV_TIME_BASE)
|
|
)
|
|
|
|
var (
|
|
TimeBaseQ = newRationalFromC(C.AV_TIME_BASE_Q)
|
|
)
|