mirror of
https://github.com/asticode/go-astiav.git
synced 2025-09-26 20:21:15 +08:00
13 lines
332 B
Go
13 lines
332 B
Go
package astiav
|
|
|
|
//#include <libavutil/opt.h>
|
|
import "C"
|
|
|
|
// https://ffmpeg.org/doxygen/7.0/group__opt__mng.html#ga25801ba4fc9b5313eb33ec84e082dd72
|
|
type OptionSearchFlag int64
|
|
|
|
const (
|
|
OptionSearchFlagChildren = CodecContextFlag(C.AV_OPT_SEARCH_CHILDREN)
|
|
OptionSearchFlagFakeObject = CodecContextFlag(C.AV_OPT_SEARCH_FAKE_OBJ)
|
|
)
|