go-astiav/format_context_ctx_flag.go

14 lines
367 B
Go
Raw Normal View History

2022-02-05 17:27:03 +08:00
package astiav
//#cgo pkg-config: libavformat
//#include <libavformat/avformat.h>
import "C"
2024-03-29 16:34:57 +08:00
type FormatContextCtxFlag int64
2022-02-05 17:27:03 +08:00
// https://github.com/FFmpeg/FFmpeg/blob/n5.0/libavformat/avformat.h#L1153
const (
FormatContextCtxFlagNoHeader = FormatContextCtxFlag(C.AVFMTCTX_NOHEADER)
FormatContextCtxFlagUnseekable = FormatContextCtxFlag(C.AVFMTCTX_UNSEEKABLE)
)