mirror of
https://github.com/asticode/go-astiav.git
synced 2025-09-26 20:21:15 +08:00
12 lines
277 B
Go
12 lines
277 B
Go
package astiav
|
|
|
|
//#include <libavformat/avformat.h>
|
|
import "C"
|
|
|
|
// https://ffmpeg.org/doxygen/7.0/avformat_8h.html#ab3a5958310f614671f5030ed10753ba9
|
|
type StreamEventFlag int64
|
|
|
|
const (
|
|
StreamEventFlagMetadataUpdated = StreamEventFlag(C.AVSTREAM_EVENT_FLAG_METADATA_UPDATED)
|
|
)
|