mirror of
https://github.com/asticode/go-astiav.git
synced 2025-10-01 06:22:26 +08:00
12 lines
274 B
Go
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)
|
|
)
|