Files
reisen/time.go
Ilya Bakulin b1ffeb627a Use pkg-config to determine correct CFLAGS and LDFLAGS for ffmpeg libraries
This fixes build on the recent Mac OS installations where HomeBrew doesn't
have libav anymore.
2022-10-31 10:02:31 +01:00

12 lines
209 B
Go

package reisen
// #cgo pkg-config: libavutil
// #include <libavutil/avutil.h>
import "C"
const (
// TimeBase is a global time base
// used for describing media containers.
TimeBase int = C.AV_TIME_BASE
)