mirror of
https://github.com/zergon321/reisen.git
synced 2025-09-26 20:01:14 +08:00

This fixes build on the recent Mac OS installations where HomeBrew doesn't have libav anymore.
12 lines
209 B
Go
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
|
|
)
|