Files
go-astiav/format_event_flag.go
2024-11-14 09:01:26 +01:00

12 lines
274 B
Go

package astiav
//#include <libavformat/avformat.h>
import "C"
// https://ffmpeg.org/doxygen/7.0/avformat_8h.html#a19485b8b52e579db560875e9a1e44e7a
type FormatEventFlag int64
const (
FormatEventFlagMetadataUpdated = FormatEventFlag(C.AVFMT_EVENT_FLAG_METADATA_UPDATED)
)