Пример #1
0
//If f is NULL, returns the first registered output format, if f is non-NULL, returns the next registered output format after f or NULL if f is the last one.
func (f *OutputFormat) AvOformatNext() *OutputFormat {
	return (*OutputFormat)(C.av_oformat_next((*C.struct_AVOutputFormat)(f)))
}
Пример #2
0
//AVOutputFormat * av_oformat_next (const AVOutputFormat *f)
//If f is NULL, returns the first registered output format, if f is non-NULL, returns the next registered output format after f or NULL if f is the last one.
func Av_oformat_next(f *AVOutputFormat) *AVOutputFormat {
	return (*AVOutputFormat)(C.av_oformat_next((*C.struct_AVOutputFormat)(f)))
}