コード例 #1
0
ファイル: swresample.go プロジェクト: hyhy01/goav
//int swr_is_initialized (struct SwrContext *s)
//Check whether an swr context has been initialized or not.
func Swr_is_initialized(s *SwrContext) int {
	return int(C.swr_is_initialized((*C.struct_SwrContext)(s)))
}
コード例 #2
0
ファイル: context.go プロジェクト: gale320/goav
//Check whether an swr context has been initialized or not.
func (s *Context) SwrIsInitialized() int {
	return int(C.swr_is_initialized((*C.struct_SwrContext)(s)))
}