Files
go-astiav/format_event_flag.go
2024-09-05 10:26:52 +02:00

12 lines
264 B
Go

package astiav
//#include <libavformat/avformat.h>
import "C"
type FormatEventFlag int64
// https://github.com/FFmpeg/FFmpeg/blob/n5.0/libavformat/avformat.h#L1519
const (
FormatEventFlagMetadataUpdated = FormatEventFlag(C.AVFMT_EVENT_FLAG_METADATA_UPDATED)
)