├── .devcontainer ├── Dockerfile ├── devcontainer.json └── repo_cfg ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── config.yml ├── SUPPORT.md ├── fiware │ └── config.json ├── pull_request_template.md └── workflows │ ├── 000-template.yaml │ ├── 001-playground.yaml │ ├── README.md │ ├── clients-java.child.yaml │ ├── clients-java.parent.yaml │ ├── clients-javascript.child.yaml │ ├── clients-javascript.parent.yaml │ ├── disabled │ └── new-issue.yml │ ├── doc-kurento.yaml │ ├── docker-kurento-buildpackage.yaml │ ├── docker-kurento-ci-buildtools.yaml │ ├── docker-rust-buildpackage.yaml │ ├── server-buildpackage-rust.child.yaml │ ├── server-buildpackage.child.yaml │ ├── server-deploy-aws.child.yaml │ ├── server-deploy-debian.child.yaml │ ├── server-deploy-docker.child.yaml │ └── server.parent.yaml ├── .gitmodules ├── CHANGELOG ├── LICENSE ├── NOTICE ├── README.md ├── browser └── kurento-utils-js │ ├── .gitignore │ ├── .jsdoc.conf.js │ ├── Gruntfile.js │ ├── README.md │ ├── README_bower.md │ ├── bin │ └── set-versions.sh │ ├── lib │ ├── WebRtcPeer.js │ ├── browser.js │ └── index.js │ ├── package.json │ ├── scripts │ ├── coveralls │ └── test │ └── test │ ├── .gitignore │ ├── WebRtcPeer.js │ ├── _common.js │ ├── bower.json │ └── index.html ├── ci-scripts ├── AWS │ ├── KMS-Coturn-cfn.yaml.template │ └── cfn-setup.sh ├── README.d │ ├── scripts-dependencies.dot │ └── scripts-dependencies.svg ├── README.md ├── bash.conf.sh ├── check_version.sh ├── ci_aptly_repo_publish.sh ├── ci_github_runner_cleanup.sh ├── ci_github_runner_setup.sh ├── ci_job_deploy_aws_cf.sh ├── ci_job_deploy_debian.sh ├── ci_job_deploy_debian_test.sh ├── ci_job_deploy_doc.sh ├── ci_job_deploy_docker.sh ├── ci_job_deploy_docker_asan.sh ├── ci_job_deploy_java.sh ├── ci_job_deploy_js.sh ├── ci_job_generate_module.sh ├── ci_job_package_debian.sh ├── ci_job_package_gst_rust_debian.sh ├── clone_repo.sh ├── container_build.sh ├── deploy_js.sh ├── deploy_js_bower.sh ├── deploy_js_http.sh ├── deploy_js_npm.sh ├── doc_deploy.sh ├── generate_java_module.sh ├── generate_js_module.sh ├── get_name.sh ├── get_version.sh ├── git_checkout_name.sh ├── git_default_branch.sh ├── install_build_deps.sh ├── install_server.sh ├── kurento-buildpackage.sh ├── maven_deploy.sh ├── maven_deploy_github.sh ├── mavenize_js_project.sh ├── parse_yaml.sh ├── rust-buildpackage.sh └── update_test_files.sh ├── clients ├── java │ ├── .gitignore │ ├── README.md │ ├── bin │ │ └── set-versions.sh │ ├── client │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── kurento │ │ │ │ │ └── client │ │ │ │ │ ├── AbstractBuilder.java │ │ │ │ │ ├── Continuation.java │ │ │ │ │ ├── Event.java │ │ │ │ │ ├── EventListener.java │ │ │ │ │ ├── GenericMediaElement.java │ │ │ │ │ ├── GenericMediaEvent.java │ │ │ │ │ ├── Handler.java │ │ │ │ │ ├── JsonRpcConnectionListenerKurento.java │ │ │ │ │ ├── KurentoClient.java │ │ │ │ │ ├── KurentoClientBuilder.java │ │ │ │ │ ├── KurentoConnectionListener.java │ │ │ │ │ ├── KurentoObject.java │ │ │ │ │ ├── ListenerSubscription.java │ │ │ │ │ ├── Properties.java │ │ │ │ │ ├── ReconnectedHandler.java │ │ │ │ │ ├── TFuture.java │ │ │ │ │ ├── Transaction.java │ │ │ │ │ ├── TransactionException.java │ │ │ │ │ ├── TransactionExecutionException.java │ │ │ │ │ ├── TransactionNotCommitedException.java │ │ │ │ │ ├── TransactionNotExecutedException.java │ │ │ │ │ ├── TransactionRollbackException.java │ │ │ │ │ └── internal │ │ │ │ │ ├── KmsProvider.java │ │ │ │ │ ├── KmsUrlLoader.java │ │ │ │ │ ├── ModuleName.java │ │ │ │ │ ├── NotEnoughResourcesException.java │ │ │ │ │ ├── ParamAnnotationUtils.java │ │ │ │ │ ├── RemoteClass.java │ │ │ │ │ ├── TFutureImpl.java │ │ │ │ │ ├── TransactionImpl.java │ │ │ │ │ ├── client │ │ │ │ │ ├── DefaultContinuation.java │ │ │ │ │ ├── DefaultInvocationHandler.java │ │ │ │ │ ├── ErrorLogContinuation.java │ │ │ │ │ ├── ListenerSubscriptionImpl.java │ │ │ │ │ ├── RemoteObject.java │ │ │ │ │ ├── RemoteObjectEventListener.java │ │ │ │ │ ├── RemoteObjectFactory.java │ │ │ │ │ ├── RemoteObjectInvocationHandler.java │ │ │ │ │ ├── RomClient.java │ │ │ │ │ ├── RomClientObjectManager.java │ │ │ │ │ ├── RomEventHandler.java │ │ │ │ │ ├── RomManager.java │ │ │ │ │ └── operation │ │ │ │ │ │ ├── InvokeOperation.java │ │ │ │ │ │ ├── MediaObjectCreationOperation.java │ │ │ │ │ │ ├── Operation.java │ │ │ │ │ │ ├── ReleaseOperation.java │ │ │ │ │ │ ├── SubscriptionOperation.java │ │ │ │ │ │ └── UnsubscriptionOperation.java │ │ │ │ │ ├── server │ │ │ │ │ ├── EventSubscription.java │ │ │ │ │ ├── KurentoServerException.java │ │ │ │ │ ├── KurentoServerTransportException.java │ │ │ │ │ ├── Param.java │ │ │ │ │ ├── ProtocolException.java │ │ │ │ │ ├── RemoteObjectManager.java │ │ │ │ │ └── RomServer.java │ │ │ │ │ └── transport │ │ │ │ │ ├── jsonrpc │ │ │ │ │ ├── JsonResponseUtils.java │ │ │ │ │ ├── RomClientJsonRpcClient.java │ │ │ │ │ ├── RomJsonRpcConstants.java │ │ │ │ │ └── RomServerJsonRpcHandler.java │ │ │ │ │ └── serialization │ │ │ │ │ ├── ModuleClassesManager.java │ │ │ │ │ ├── ObjectRefsManager.java │ │ │ │ │ └── ParamsFlattener.java │ │ │ ├── kmd │ │ │ │ └── .keep │ │ │ └── resources │ │ │ │ └── templates │ │ │ │ ├── complexType_class_java.ftl │ │ │ │ ├── config.json │ │ │ │ ├── event_impl_java.ftl │ │ │ │ ├── macros.ftm │ │ │ │ ├── model_moduleInfo_class_java.ftl │ │ │ │ └── remoteClass_interface_java.ftl │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── kurento │ │ │ │ ├── client │ │ │ │ └── internal │ │ │ │ │ └── test │ │ │ │ │ ├── AbstractRomTest.java │ │ │ │ │ ├── ConstructionTest.java │ │ │ │ │ ├── KmsUrlServiceLoaderTest.java │ │ │ │ │ ├── LocalRomTest.java │ │ │ │ │ ├── ReturnReferencesTest.java │ │ │ │ │ ├── RomClientWeakRemoteObjects.java │ │ │ │ │ ├── RomInterfaceImplTest.java │ │ │ │ │ ├── RomJsonConverterTest.java │ │ │ │ │ ├── SyncConstMethodsTest.java │ │ │ │ │ ├── WebSocketRomTest.java │ │ │ │ │ └── model │ │ │ │ │ ├── Sample2.java │ │ │ │ │ ├── Sample2Impl.java │ │ │ │ │ ├── SampleRemoteClass.java │ │ │ │ │ ├── SampleRemoteClassImpl.java │ │ │ │ │ ├── client │ │ │ │ │ ├── ComplexParam.java │ │ │ │ │ ├── MediaServerFactory.java │ │ │ │ │ ├── SampleClass.java │ │ │ │ │ ├── SampleEnum.java │ │ │ │ │ └── events │ │ │ │ │ │ ├── BaseEvent.java │ │ │ │ │ │ └── SampleEvent.java │ │ │ │ │ └── server │ │ │ │ │ └── SampleClassImpl.java │ │ │ │ └── module │ │ │ │ └── ComplexParamModuleInfo.java │ │ │ └── resources │ │ │ ├── config-test.properties │ │ │ ├── config.json │ │ │ ├── invalid-config.properties │ │ │ ├── provider-config.properties │ │ │ └── test_model.json │ ├── commons │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── kurento │ │ │ │ │ └── commons │ │ │ │ │ ├── Address.java │ │ │ │ │ ├── BasicJsonUtils.java │ │ │ │ │ ├── ClassPath.java │ │ │ │ │ ├── ConfigFileFinder.java │ │ │ │ │ ├── ConfigFileManager.java │ │ │ │ │ ├── ConfigFileObject.java │ │ │ │ │ ├── ConfigFilePropertyHolder.java │ │ │ │ │ ├── PropertiesManager.java │ │ │ │ │ ├── SecretGenerator.java │ │ │ │ │ ├── ThreadFactoryCreator.java │ │ │ │ │ ├── TimeoutReentrantLock.java │ │ │ │ │ ├── TimeoutRuntimeException.java │ │ │ │ │ ├── UrlServiceLoader.java │ │ │ │ │ ├── exception │ │ │ │ │ ├── Assert.java │ │ │ │ │ └── KurentoException.java │ │ │ │ │ ├── net │ │ │ │ │ └── RemoteService.java │ │ │ │ │ └── testing │ │ │ │ │ ├── IntegrationTests.java │ │ │ │ │ ├── JsonRpcConnectorTests.java │ │ │ │ │ ├── KurentoClientTests.java │ │ │ │ │ ├── KurentoControlServerTests.java │ │ │ │ │ ├── KurentoTreeTests.java │ │ │ │ │ ├── RepositoryApiTests.java │ │ │ │ │ ├── SanityTests.java │ │ │ │ │ ├── SystemCompatibilityTests.java │ │ │ │ │ ├── SystemFunctionalTests.java │ │ │ │ │ ├── SystemPerformanceTests.java │ │ │ │ │ ├── SystemQualityTests.java │ │ │ │ │ ├── SystemScalabilityTests.java │ │ │ │ │ ├── SystemStabilityTests.java │ │ │ │ │ └── SystemTests.java │ │ │ └── resources │ │ │ │ └── kurento-error-codes.properties │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── kurento │ │ │ │ └── commons │ │ │ │ └── test │ │ │ │ └── ConfigFileTest.java │ │ │ └── resources │ │ │ └── test.conf.json │ ├── jsonrpc │ │ ├── README.md │ │ ├── jsonrpc-client-jetty │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── kurento │ │ │ │ └── jsonrpc │ │ │ │ └── client │ │ │ │ └── JsonRpcClientWebSocket.java │ │ ├── jsonrpc-client │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── kurento │ │ │ │ │ └── jsonrpc │ │ │ │ │ ├── DefaultJsonRpcHandler.java │ │ │ │ │ ├── JsonRpcAndJavaMethodManager.java │ │ │ │ │ ├── JsonRpcClientClosedException.java │ │ │ │ │ ├── JsonRpcErrorException.java │ │ │ │ │ ├── JsonRpcException.java │ │ │ │ │ ├── JsonRpcHandler.java │ │ │ │ │ ├── JsonRpcMethod.java │ │ │ │ │ ├── JsonUtils.java │ │ │ │ │ ├── Prop.java │ │ │ │ │ ├── PropImpl.java │ │ │ │ │ ├── Props.java │ │ │ │ │ ├── Session.java │ │ │ │ │ ├── Transaction.java │ │ │ │ │ ├── TransportException.java │ │ │ │ │ ├── TypeDefaultJsonRpcHandler.java │ │ │ │ │ ├── client │ │ │ │ │ ├── AbstractJsonRpcClientWebSocket.java │ │ │ │ │ ├── AbstractJsonRpcWebSocketClientHandler.java │ │ │ │ │ ├── Continuation.java │ │ │ │ │ ├── Handler.java │ │ │ │ │ ├── JsonRcpServiceAdapter.java │ │ │ │ │ ├── JsonRpcClient.java │ │ │ │ │ ├── JsonRpcClientHttp.java │ │ │ │ │ ├── JsonRpcClientLocal.java │ │ │ │ │ ├── JsonRpcClientNettyWebSocket.java │ │ │ │ │ ├── JsonRpcWSConnectionAdapter.java │ │ │ │ │ ├── JsonRpcWSConnectionListener.java │ │ │ │ │ ├── ReconnectedHandler.java │ │ │ │ │ ├── RequestAlreadyRespondedException.java │ │ │ │ │ └── WebSocketClient.java │ │ │ │ │ ├── internal │ │ │ │ │ ├── HttpResponseSender.java │ │ │ │ │ ├── JsonRpcConstants.java │ │ │ │ │ ├── JsonRpcHandlerManager.java │ │ │ │ │ ├── JsonRpcRequestSender.java │ │ │ │ │ ├── JsonRpcRequestSenderHelper.java │ │ │ │ │ ├── ProtocolUtils.java │ │ │ │ │ ├── client │ │ │ │ │ │ ├── AbstractSession.java │ │ │ │ │ │ ├── AbstractTransaction.java │ │ │ │ │ │ ├── ClientSession.java │ │ │ │ │ │ └── TransactionImpl.java │ │ │ │ │ └── ws │ │ │ │ │ │ └── PendingRequests.java │ │ │ │ │ └── message │ │ │ │ │ ├── Message.java │ │ │ │ │ ├── MessageUtils.java │ │ │ │ │ ├── Request.java │ │ │ │ │ ├── Response.java │ │ │ │ │ └── ResponseError.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── kurento │ │ │ │ └── jsonrpc │ │ │ │ └── test │ │ │ │ ├── GenericMessageTest.java │ │ │ │ ├── JsonRpcClientLocalTest.java │ │ │ │ ├── JsonRpcHandlerTypesTest.java │ │ │ │ └── SessionIdMessageTest.java │ │ ├── jsonrpc-demo-server │ │ │ ├── README.md │ │ │ ├── package │ │ │ │ ├── bin │ │ │ │ │ ├── install.sh │ │ │ │ │ └── start.sh │ │ │ │ ├── config │ │ │ │ │ ├── kjrserver-log4j.properties │ │ │ │ │ └── kjrserver.conf.json │ │ │ │ └── support-files │ │ │ │ │ ├── kjrserver.service │ │ │ │ │ └── kjrserver.sh │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── assembly │ │ │ │ └── bin.xml │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── kurento │ │ │ │ │ └── jsonrpc │ │ │ │ │ ├── TestServerApplication.java │ │ │ │ │ └── handler │ │ │ │ │ └── EchoJsonRpcHandler.java │ │ │ │ └── resources │ │ │ │ ├── banner.txt │ │ │ │ ├── kjrserver.conf.json │ │ │ │ └── log4j.properties │ │ ├── jsonrpc-server │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── kurento │ │ │ │ │ └── jsonrpc │ │ │ │ │ ├── internal │ │ │ │ │ ├── http │ │ │ │ │ │ └── JsonRpcHttpRequestHandler.java │ │ │ │ │ ├── server │ │ │ │ │ │ ├── BeanCreatingHelper.java │ │ │ │ │ │ ├── NativeSessionHandler.java │ │ │ │ │ │ ├── PerSessionJsonRpcHandler.java │ │ │ │ │ │ ├── PingWatchdogManager.java │ │ │ │ │ │ ├── ProtocolManager.java │ │ │ │ │ │ ├── ServerSession.java │ │ │ │ │ │ ├── SessionsManager.java │ │ │ │ │ │ └── config │ │ │ │ │ │ │ ├── DefaultJsonRpcHandlerRegistration.java │ │ │ │ │ │ │ ├── DefaultJsonRpcHandlerRegistry.java │ │ │ │ │ │ │ ├── JsonRpcConfiguration.java │ │ │ │ │ │ │ └── JsonRpcProperties.java │ │ │ │ │ └── ws │ │ │ │ │ │ ├── CloseStatusHelper.java │ │ │ │ │ │ ├── JsonRpcWebSocketHandler.java │ │ │ │ │ │ └── WebSocketServerSession.java │ │ │ │ │ └── server │ │ │ │ │ ├── JsonRpcConfigurer.java │ │ │ │ │ ├── JsonRpcHandlerRegistration.java │ │ │ │ │ └── JsonRpcHandlerRegistry.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── kurento │ │ │ │ └── jsonrpc │ │ │ │ └── test │ │ │ │ └── PingWatchdogManagerTest.java │ │ └── pom.xml │ ├── maven-plugin │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ ├── resources │ │ │ └── META-INF │ │ │ │ └── m2e │ │ │ │ └── lifecycle-mapping-metadata.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── kurento │ │ │ └── maven │ │ │ ├── GenerateKurentoJavaClientMojo.java │ │ │ ├── KurentoDependencyManager.java │ │ │ └── ModuleMavenArtifact.java │ ├── maven-settings │ │ ├── README.md │ │ └── settings.xml │ ├── parent-pom │ │ ├── README.md │ │ └── pom.xml │ ├── pom.xml │ └── qa-pom │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bin │ │ └── set-versions.sh │ │ ├── pom.xml │ │ └── qa-config │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── qa-config │ │ ├── eclipse │ │ ├── formatter.xml │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ │ ├── headerFile │ │ └── kurento_checks.xml └── javascript │ ├── bin │ └── set-versions.sh │ ├── client │ ├── .gitignore │ ├── .jsdoc.conf.js │ ├── .npmignore │ ├── Gruntfile.js │ ├── README.md │ ├── README_bower.md │ ├── doc │ │ ├── .gitignore │ │ ├── JsonRPC messages.md │ │ ├── endpoints.dia │ │ ├── filters.dia │ │ ├── hubs.dia │ │ └── runtime.dia │ ├── lib │ │ ├── KurentoClient.js │ │ ├── MediaObjectCreator.js │ │ ├── TransactionsManager.js │ │ ├── browser.js │ │ ├── checkType.js │ │ ├── createPromise.js │ │ ├── disguise.js │ │ ├── errorToJson.js │ │ ├── index.js │ │ └── register.js │ ├── package.json │ ├── scripts │ │ ├── coveralls │ │ ├── install-kurento.js │ │ ├── test │ │ ├── testBrowser │ │ ├── testReconnect │ │ └── testWithoutTransactions │ ├── test │ │ ├── MediaObjectCreator.js │ │ ├── ServerManager.js │ │ ├── _common.js │ │ ├── _proxy.js │ │ ├── core │ │ │ ├── MediaElement.js │ │ │ ├── MediaObject.js │ │ │ └── MediaPipeline.js │ │ ├── elements │ │ │ ├── Composite.js │ │ │ ├── HttpPostEndpoint.js │ │ │ ├── PlayerEndpoint.js │ │ │ ├── RecorderEndpoint.js │ │ │ ├── RtpEndpoint.js │ │ │ └── WebRtcEndpoint.js │ │ ├── filters │ │ │ ├── FaceOverlayFilter.js │ │ │ ├── GStreamerFilter.js │ │ │ └── ZBarFilter.js │ │ ├── index.html │ │ ├── readme.md │ │ ├── reconnect.js │ │ ├── transactions │ │ │ └── Transaction.js │ │ └── waiting.js │ └── test_reconnect │ │ ├── index.js │ │ └── kurento.conf.json │ └── jsonrpc │ ├── .gitignore │ ├── .project │ ├── Gruntfile.js │ ├── README.md │ ├── README_bower.md │ ├── lib │ ├── Mapper.js │ ├── clients │ │ ├── index.js │ │ ├── jsonrpcclient.js │ │ └── transports │ │ │ ├── index.js │ │ │ └── webSocketWithReconnection.js │ ├── index.js │ └── packers │ │ ├── JsonRPC.js │ │ ├── XmlRPC.js │ │ └── index.js │ ├── package.json │ ├── test │ └── index.js │ └── testBrowser │ ├── index.html │ └── index.js ├── doc-kurento ├── .gitignore ├── .readthedocs.yaml ├── Makefile ├── README.md ├── VERSIONS.env ├── configure.sh ├── requirements.txt └── source │ ├── .gitignore │ ├── _extra │ └── robots.txt │ ├── _static │ ├── README.txt │ ├── footer-european-union-400-optimized.png │ ├── footer-ministerio-economia-400-optimized.png │ └── project │ │ └── relnotes │ │ └── v6_18_0 │ │ └── connection.mp4 │ ├── _templates │ ├── breadcrumbs.html │ ├── footer.html │ └── layout.html │ ├── conf.py │ ├── dev │ ├── architecture.rst │ ├── changelog.rst │ ├── ci.rst │ ├── dev_guide.rst │ ├── hardening.rst │ ├── release.rst │ ├── testing.rst │ └── writing_documentation.rst │ ├── extensions │ └── README.txt │ ├── features │ ├── events.rst │ ├── kurento_client.rst │ ├── kurento_modules.rst │ ├── kurento_protocol.rst │ ├── kurento_utils_js.rst │ ├── logging.rst │ ├── nat_traversal.rst │ ├── security.rst │ └── statistics.rst │ ├── glossary.rst │ ├── images │ ├── AgnosticMediaAdaptor.png │ ├── Applications_Layered_Architecture.png │ ├── Architecture.png │ ├── Consuming_the_APIs.png │ ├── Generic_interactions.png │ ├── Kurento_nat_deployment.png │ ├── Onion_like_APIs.png │ ├── Player_session.png │ ├── Player_session_pipeline.png │ ├── RTC_session.png │ ├── RTC_session_pipeline.png │ ├── Recorder_session.png │ ├── Stream-oriented_GE.png │ ├── digraphs │ │ ├── HelloWorld.png │ │ ├── MagicMirror.png │ │ ├── One2Many.png │ │ ├── One2OneCall.png │ │ └── One2OneCallAdvApp.png │ ├── example-pipeline-browser-recorder.png │ ├── example-pipeline-event.png │ ├── faq-stun-1.png │ ├── faq-stun-2.png │ ├── favicon.ico │ ├── graphs │ │ ├── dependencies-all.dot │ │ ├── dependencies-forks.dot │ │ ├── dependencies-java.dot │ │ ├── dependencies-media-server.dot │ │ ├── endpoints.dot │ │ ├── events-libnice-states.dot │ │ ├── filters.dot │ │ ├── hubs.dot │ │ ├── mediaobjects.dot │ │ └── tutorial-kurento-rtp-receiver.dot │ ├── ktf-class-diagram.png │ ├── kurento-clients-connection.png │ ├── kurento-java-tutorial-1-helloworld-pipeline.png │ ├── kurento-java-tutorial-1-helloworld-screenshot.png │ ├── kurento-java-tutorial-1-helloworld-signaling.png │ ├── kurento-java-tutorial-2-magicmirror-pipeline.png │ ├── kurento-java-tutorial-2-magicmirror-screenshot.png │ ├── kurento-java-tutorial-2-magicmirror-signaling.png │ ├── kurento-java-tutorial-3-one2many-pipeline.png │ ├── kurento-java-tutorial-3-one2many-screenshot.png │ ├── kurento-java-tutorial-3-one2many-signaling.png │ ├── kurento-java-tutorial-4-one2one-pipeline.png │ ├── kurento-java-tutorial-4-one2one-screenshot.png │ ├── kurento-java-tutorial-4-one2one-signaling.png │ ├── kurento-java-tutorial-5-one2one-adv-pipeline_1.png │ ├── kurento-java-tutorial-5-one2one-adv-pipeline_2.png │ ├── kurento-java-tutorial-5-one2one-adv-screenshot.png │ ├── kurento-java-tutorial-5-one2one-adv-signaling.png │ ├── kurento-js-tutorial-1-helloworld-signaling.png │ ├── kurento-js-tutorial-4-one2one-signaling.png │ ├── kurento-media-server-intro.png │ ├── kurento-module-opencv-example.png │ ├── kurento-module-tutorial-chroma-pipeline.png │ ├── kurento-module-tutorial-chroma-screenshot-01.png │ ├── kurento-module-tutorial-chroma-screenshot-02.png │ ├── kurento-module-tutorial-chromafilter-pipeline.png │ ├── kurento-module-tutorial-crowd-screenshot-01.png │ ├── kurento-module-tutorial-crowddetector-pipeline.png │ ├── kurento-module-tutorial-plate-screenshot-01.png │ ├── kurento-module-tutorial-platedetector-pipeline.png │ ├── kurento-module-tutorial-pointerdetector-pipeline.png │ ├── kurento-module-tutorial-pointerdetector-screenshot-01.png │ ├── kurento-module-tutorial-pointerdetector-screenshot-02.png │ ├── kurento-modules.png │ ├── kurento-rect-logo.png │ ├── kurento-rect-logo2.png │ ├── kurento-rect-logo3.png │ ├── kurento-stats.png │ ├── kurento-test-report.png │ ├── kurento-toolbox-basic.png │ ├── kurento-toolbox-extra.png │ ├── kurento-tutorial-stats-gui.png │ ├── kurento-white.png │ ├── media-server-capabilities.png │ ├── media-server-intro.png │ ├── packet-loss-green.jpg │ ├── packet-loss-macroblocks.jpg │ └── toolbox │ │ ├── Composite.png │ │ ├── Dispatcher.png │ │ ├── DispatcherOneToMany.png │ │ ├── FaceOverlayFilter.png │ │ ├── GStreamerFilter.png │ │ ├── HttpGetEndpoint.png │ │ ├── HttpPostEndpoint.png │ │ ├── PlayerEndpoint.png │ │ ├── RecorderEndpoint.png │ │ ├── RtpEndpoint.png │ │ ├── WebRtcEndpoint.png │ │ └── ZBarFilter.png │ ├── index.rst │ ├── knowledge │ ├── browser.rst │ ├── congestion_rmcat.rst │ ├── h264.rst │ ├── memory_fragmentation.rst │ ├── mp4.rst │ ├── nat.rst │ ├── rtp_streaming.rst │ ├── safari.rst │ └── selfsigned_certs.rst │ ├── project │ ├── conduct.rst │ ├── contributing.rst │ ├── opensource.rst │ ├── relnotes │ │ ├── 0.0_TEMPLATE.rst │ │ ├── 7.0.rst │ │ ├── 7.1.rst │ │ ├── 7.2.rst │ │ ├── 7.3.rst │ │ ├── 7.4.rst │ │ ├── index.rst │ │ ├── v6_10_0.rst │ │ ├── v6_11_0.rst │ │ ├── v6_12_0.rst │ │ ├── v6_13_0.rst │ │ ├── v6_13_2.rst │ │ ├── v6_14_0.rst │ │ ├── v6_15_0.rst │ │ ├── v6_16_0.rst │ │ ├── v6_17_0.rst │ │ ├── v6_18_0.rst │ │ ├── v6_7_2.rst │ │ ├── v6_8_1.rst │ │ ├── v6_9_0.rst │ │ └── v6_9_0 │ │ │ ├── libnice_lock.png │ │ │ ├── test_load_cpu.png │ │ │ └── test_load_ram.png │ ├── sponsors.rst │ ├── story.rst │ └── team.rst │ ├── tutorials │ ├── java │ │ ├── module-chromafilter.rst │ │ ├── module-crowddetector.rst │ │ ├── module-platedetector.rst │ │ ├── module-pointerdetector.rst │ │ ├── tutorial-datachannel-send-qr.rst │ │ ├── tutorial-datachannel-show-text.rst │ │ ├── tutorial-facedetector.rst │ │ ├── tutorial-groupcall.rst │ │ ├── tutorial-helloworld.rst │ │ ├── tutorial-magicmirror.rst │ │ ├── tutorial-one2many.rst │ │ ├── tutorial-one2one-adv.rst │ │ ├── tutorial-one2one.rst │ │ ├── tutorial-player.rst │ │ ├── tutorial-recorder.rst │ │ └── tutorial-rtp-receiver.rst │ ├── js │ │ ├── module-chromafilter.rst │ │ ├── module-crowddetector.rst │ │ ├── module-platedetector.rst │ │ ├── module-pointerdetector.rst │ │ ├── tutorial-helloworld-datachannels.rst │ │ ├── tutorial-helloworld.rst │ │ ├── tutorial-loopback-stats.rst │ │ ├── tutorial-magicmirror.rst │ │ └── tutorial-recorder.rst │ └── node │ │ ├── module-chromafilter.rst │ │ ├── module-crowddetector.rst │ │ ├── module-platedetector.rst │ │ ├── module-pointerdetector.rst │ │ ├── tutorial-helloworld.rst │ │ ├── tutorial-magicmirror.rst │ │ ├── tutorial-one2many.rst │ │ └── tutorial-one2one.rst │ └── user │ ├── configuration.rst │ ├── faq.rst │ ├── installation.rst │ ├── installation_dev.rst │ ├── intro.rst │ ├── openvidu.rst │ ├── quickstart.rst │ ├── support.rst │ ├── troubleshooting.rst │ ├── tutorials.rst │ ├── writing_applications.rst │ └── writing_modules.rst ├── docker ├── README.md ├── coturn │ ├── Dockerfile │ ├── turnserver.sh │ └── version.yml ├── dev-documentation │ ├── jdk-7 │ │ ├── Dockerfile │ │ └── version.yml │ └── jdk-8 │ │ ├── Dockerfile │ │ └── version.yml ├── dev-integration-browser │ ├── Dockerfile │ └── version.yml ├── dev-integration │ ├── jdk-25 │ │ ├── Changelog │ │ ├── Dockerfile │ │ └── version.yml │ ├── jdk-7 │ │ ├── Dockerfile │ │ └── version.yml │ └── jdk-8 │ │ ├── Changelog │ │ ├── Dockerfile │ │ └── version.yml ├── kurento-buildpackage │ ├── Changelog │ ├── Dockerfile │ ├── README.md │ ├── entrypoint.sh │ └── version.yml ├── kurento-ci-buildtools │ ├── Changelog │ ├── Dockerfile │ ├── README.md │ └── version.yml ├── kurento-media-server-asan │ ├── Dockerfile │ ├── README.md │ ├── build.sh │ ├── entrypoint.sh │ ├── getmyip.sh │ └── version.yml ├── kurento-media-server-extras │ ├── Dockerfile │ ├── README.md │ └── version.yml ├── kurento-media-server │ ├── Dockerfile │ ├── README.md │ ├── entrypoint.sh │ ├── getmyip.sh │ ├── healthchecker.sh │ └── version.yml ├── kurento-media-server_local_image │ ├── Dockerfile │ ├── README.md │ ├── create_image.sh │ ├── entrypoint.sh │ ├── extended_entrypoint.sh │ ├── getmyip.sh │ ├── healthchecker.sh │ ├── tracedump_eu.sh │ ├── tracedump_gdb.sh │ └── version.yml ├── rust-buildpackage │ ├── Changelog │ ├── Dockerfile │ ├── README.md │ ├── entrypoint.sh │ └── version.yml └── svn-client │ ├── Dockerfile │ └── version.yml ├── server ├── .clang-format ├── .gitignore ├── CMakeLists.txt ├── bin │ ├── build-run.sh │ ├── make-dev-container.sh │ ├── sanitizers │ │ ├── asan.supp │ │ ├── blacklist.txt │ │ └── tsan.supp │ ├── set-versions.sh │ ├── valgrind.conf.sh │ └── valgrind │ │ └── README.txt ├── cmake-utils │ ├── CMakeLists.txt │ ├── FindKurentoUtils.cmake.in │ ├── README.md │ ├── cmake │ │ ├── Kurento │ │ │ ├── CommonBuildFlags.cmake │ │ │ ├── DpkgBuildFlags.cmake │ │ │ ├── FindGLIB-GENMARSHAL.cmake │ │ │ ├── FindGLIB-MKENUMS.cmake │ │ │ ├── GLibHelpers.cmake │ │ │ ├── GenericFind.cmake │ │ │ ├── KurentoGitHelpers.cmake │ │ │ ├── TestHelpers.cmake │ │ │ └── VersionHelpers.cmake │ │ └── KurentoUtils │ │ │ └── KurentoUtilsConfig.cmake │ ├── debian │ │ ├── changelog │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── rules │ │ └── source │ │ │ └── format │ └── test │ │ ├── CMakeLists.txt │ │ └── version │ │ └── CMakeLists.txt ├── gst-plugins-rs │ ├── compile.sh │ └── debian.diff ├── jsonrpc │ ├── CMakeLists.txt │ ├── FindKmsJsonRpc.cmake.in │ ├── README.md │ ├── debian │ │ ├── changelog │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── kurento-jsonrpc-dev.install │ │ ├── kurento-jsonrpc.install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── hooks │ │ └── pre-commit.hook │ ├── libjsonrpc.pc.in │ ├── src │ │ ├── CMakeLists.txt │ │ ├── JsonRpcClient.cpp │ │ ├── JsonRpcHandler.cpp │ │ ├── JsonRpcUtils.cpp │ │ └── jsonrpc │ │ │ ├── JsonRpcClient.hpp │ │ │ ├── JsonRpcConstants.hpp │ │ │ ├── JsonRpcException.hpp │ │ │ ├── JsonRpcHandler.hpp │ │ │ ├── JsonRpcUtils.hpp │ │ │ └── JsonSerializer.hpp │ └── tests │ │ ├── CMakeLists.txt │ │ ├── TestRpc.cpp │ │ └── TestSerialize.cpp ├── media-server │ ├── CMakeLists.txt │ ├── README.md │ ├── config.h.cmake │ ├── debian │ │ ├── changelog │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── kurento-media-server-dev.install │ │ ├── kurento-media-server.default │ │ ├── kurento-media-server.init │ │ ├── kurento-media-server.install │ │ ├── kurento-media-server.postinst │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── hooks │ │ └── pre-commit.hook │ ├── kurento.conf.info │ ├── kurento.conf.ini │ ├── kurento.conf.json │ ├── scaffold │ │ ├── CMakeLists.txt │ │ ├── CMakeLists_gstplugin.txt.template │ │ ├── CMakeLists_root.txt.gstreamer.template │ │ ├── CMakeLists_root.txt.opencv.template │ │ ├── CMakeLists_server.txt.template │ │ ├── CMakeLists_server_plugin.txt.template │ │ ├── CMakeLists_src.txt.template │ │ ├── config.h.cmake.template │ │ ├── debian-changelog.template │ │ ├── debian-control.gstreamer.template │ │ ├── debian-control.opencv.template │ │ ├── debian-copyright.template │ │ ├── debian-name-dev.install.template │ │ ├── debian-name.install.gstreamer.template │ │ ├── debian-name.install.opencv.template │ │ ├── debian-rules.template │ │ ├── filter.Filter.kmd.json.template │ │ ├── filter.kmd.json.template │ │ ├── gstplugin.c.template │ │ ├── gstplugin.cpp.template │ │ ├── gstplugin.h.template │ │ └── kurento-module-scaffold │ ├── sdp_pattern.txt │ ├── server │ │ ├── CMakeLists.txt │ │ ├── CacheEntry.cpp │ │ ├── CacheEntry.hpp │ │ ├── RequestCache.cpp │ │ ├── RequestCache.hpp │ │ ├── ResourceManager.cpp │ │ ├── ResourceManager.hpp │ │ ├── ServerMethods.cpp │ │ ├── ServerMethods.hpp │ │ ├── loadConfig.cpp │ │ ├── loadConfig.hpp │ │ ├── logging.cpp │ │ ├── logging.hpp │ │ ├── main.cpp │ │ ├── modules.cpp │ │ ├── modules.hpp │ │ ├── transport │ │ │ ├── CMakeLists.txt │ │ │ ├── Processor.hpp │ │ │ ├── Transport.hpp │ │ │ ├── TransportFactory.cpp │ │ │ ├── TransportFactory.hpp │ │ │ └── websocket │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── WebSocketEventHandler.cpp │ │ │ │ ├── WebSocketEventHandler.hpp │ │ │ │ ├── WebSocketRegistrar.cpp │ │ │ │ ├── WebSocketRegistrar.hpp │ │ │ │ ├── WebSocketTransport.cpp │ │ │ │ ├── WebSocketTransport.hpp │ │ │ │ ├── WebSocketTransportFactory.cpp │ │ │ │ └── WebSocketTransportFactory.hpp │ │ ├── version.cpp │ │ └── version.hpp │ ├── test │ │ ├── BaseTest.cpp │ │ ├── BaseTest.hpp │ │ ├── CMakeLists.txt │ │ ├── config_read_test.cpp │ │ ├── registrar_test.cpp │ │ ├── resources_limit_test.cpp │ │ ├── server_duplicate_requests.cpp │ │ ├── server_events_test.cpp │ │ ├── server_json_session.cpp │ │ ├── server_json_test.cpp │ │ └── testCertificate.pem │ └── valgrind.supp ├── module-core │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── NEWS │ ├── README.md │ ├── cmake │ │ └── Kurento │ │ │ ├── CodeGenerator.cmake │ │ │ ├── FindLibVpx.cmake │ │ │ ├── FindMaven.cmake │ │ │ └── FindNpm.cmake │ ├── config.h.cmake │ ├── debian │ │ ├── changelog │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── kurento-module-core-dev.install │ │ ├── kurento-module-core.install │ │ ├── kurento-module-core.postinst │ │ ├── not-installed │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── upstream │ │ │ └── metadata │ ├── hooks │ │ └── pre-commit.hook │ ├── src │ │ ├── CMakeLists.txt │ │ ├── gst-plugins │ │ │ ├── CMakeLists.txt │ │ │ ├── commons │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FindKmsGstCommons.cmake.in │ │ │ │ ├── constants.h │ │ │ │ ├── gstsdpdirection.h │ │ │ │ ├── kms-core-marshal.list │ │ │ │ ├── kmsagnosticcaps.h │ │ │ │ ├── kmsbasehub.c │ │ │ │ ├── kmsbasehub.h │ │ │ │ ├── kmsbasertpendpoint.c │ │ │ │ ├── kmsbasertpendpoint.h │ │ │ │ ├── kmsbasertpsession.c │ │ │ │ ├── kmsbasertpsession.h │ │ │ │ ├── kmsbasesdpendpoint.c │ │ │ │ ├── kmsbasesdpendpoint.h │ │ │ │ ├── kmsbufferlacentymeta.c │ │ │ │ ├── kmsbufferlacentymeta.h │ │ │ │ ├── kmsconnectionstate.h │ │ │ │ ├── kmsdectreebin.c │ │ │ │ ├── kmsdectreebin.h │ │ │ │ ├── kmselement.c │ │ │ │ ├── kmselement.h │ │ │ │ ├── kmselementpadtype.h │ │ │ │ ├── kmsenctreebin.c │ │ │ │ ├── kmsenctreebin.h │ │ │ │ ├── kmsfiltertype.h │ │ │ │ ├── kmsgstcommons.pc.in │ │ │ │ ├── kmshubport.c │ │ │ │ ├── kmshubport.h │ │ │ │ ├── kmsirtpconnection.c │ │ │ │ ├── kmsirtpconnection.h │ │ │ │ ├── kmsirtpsessionmanager.c │ │ │ │ ├── kmsirtpsessionmanager.h │ │ │ │ ├── kmslist.c │ │ │ │ ├── kmslist.h │ │ │ │ ├── kmsloop.c │ │ │ │ ├── kmsloop.h │ │ │ │ ├── kmsmediastate.h │ │ │ │ ├── kmsmediatype.h │ │ │ │ ├── kmsparsetreebin.c │ │ │ │ ├── kmsparsetreebin.h │ │ │ │ ├── kmsrecordingprofile.c │ │ │ │ ├── kmsrecordingprofile.h │ │ │ │ ├── kmsrefstruct.c │ │ │ │ ├── kmsrefstruct.h │ │ │ │ ├── kmsremb.c │ │ │ │ ├── kmsremb.h │ │ │ │ ├── kmsrtcp.c │ │ │ │ ├── kmsrtcp.h │ │ │ │ ├── kmsrtppaytreebin.c │ │ │ │ ├── kmsrtppaytreebin.h │ │ │ │ ├── kmssdpsession.c │ │ │ │ ├── kmssdpsession.h │ │ │ │ ├── kmsserializablemeta.c │ │ │ │ ├── kmsserializablemeta.h │ │ │ │ ├── kmsstats.c │ │ │ │ ├── kmsstats.h │ │ │ │ ├── kmstreebin.c │ │ │ │ ├── kmstreebin.h │ │ │ │ ├── kmsuriendpoint.c │ │ │ │ ├── kmsuriendpoint.h │ │ │ │ ├── kmsuriendpointstate.h │ │ │ │ ├── kmsutils.c │ │ │ │ ├── kmsutils.h │ │ │ │ ├── sdp_utils.c │ │ │ │ ├── sdp_utils.h │ │ │ │ └── sdpagent │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── kms-sdp-agent-marshal.list │ │ │ │ │ ├── kmsisdpmediaextension.c │ │ │ │ │ ├── kmsisdpmediaextension.h │ │ │ │ │ ├── kmsisdppayloadmanager.c │ │ │ │ │ ├── kmsisdppayloadmanager.h │ │ │ │ │ ├── kmsisdpsessionextension.c │ │ │ │ │ ├── kmsisdpsessionextension.h │ │ │ │ │ ├── kmssdpagent.c │ │ │ │ │ ├── kmssdpagent.h │ │ │ │ │ ├── kmssdpagentcommon.c │ │ │ │ │ ├── kmssdpagentcommon.h │ │ │ │ │ ├── kmssdpagentstate.h │ │ │ │ │ ├── kmssdpbasegroup.c │ │ │ │ │ ├── kmssdpbasegroup.h │ │ │ │ │ ├── kmssdpbundlegroup.c │ │ │ │ │ ├── kmssdpbundlegroup.h │ │ │ │ │ ├── kmssdpconnectionext.c │ │ │ │ │ ├── kmssdpconnectionext.h │ │ │ │ │ ├── kmssdpgroupmanager.c │ │ │ │ │ ├── kmssdpgroupmanager.h │ │ │ │ │ ├── kmssdpmediadirext.c │ │ │ │ │ ├── kmssdpmediadirext.h │ │ │ │ │ ├── kmssdpmediahandler.c │ │ │ │ │ ├── kmssdpmediahandler.h │ │ │ │ │ ├── kmssdpmidext.c │ │ │ │ │ ├── kmssdpmidext.h │ │ │ │ │ ├── kmssdppayloadmanager.c │ │ │ │ │ ├── kmssdppayloadmanager.h │ │ │ │ │ ├── kmssdpredundantext.c │ │ │ │ │ ├── kmssdpredundantext.h │ │ │ │ │ ├── kmssdprejectmediahandler.c │ │ │ │ │ ├── kmssdprejectmediahandler.h │ │ │ │ │ ├── kmssdprtpavpfmediahandler.c │ │ │ │ │ ├── kmssdprtpavpfmediahandler.h │ │ │ │ │ ├── kmssdprtpavpmediahandler.c │ │ │ │ │ ├── kmssdprtpavpmediahandler.h │ │ │ │ │ ├── kmssdprtpmediahandler.c │ │ │ │ │ ├── kmssdprtpmediahandler.h │ │ │ │ │ ├── kmssdprtpsavpfmediahandler.c │ │ │ │ │ ├── kmssdprtpsavpfmediahandler.h │ │ │ │ │ ├── kmssdprtpsavpmediahandler.c │ │ │ │ │ ├── kmssdprtpsavpmediahandler.h │ │ │ │ │ ├── kmssdpsctpmediahandler.c │ │ │ │ │ ├── kmssdpsctpmediahandler.h │ │ │ │ │ ├── kmssdpsdesext.c │ │ │ │ │ ├── kmssdpsdesext.h │ │ │ │ │ ├── kmssdpulpfecext.c │ │ │ │ │ └── kmssdpulpfecext.h │ │ │ ├── kmsagnosticbin.c │ │ │ ├── kmsagnosticbin.h │ │ │ ├── kmsagnosticbin3.c │ │ │ ├── kmsagnosticbin3.h │ │ │ ├── kmsaudiomixer.c │ │ │ ├── kmsaudiomixer.h │ │ │ ├── kmsaudiomixerbin.c │ │ │ ├── kmsaudiomixerbin.h │ │ │ ├── kmsbitratefilter.c │ │ │ ├── kmsbitratefilter.h │ │ │ ├── kmsbufferinjector.c │ │ │ ├── kmsbufferinjector.h │ │ │ ├── kmscore.c │ │ │ ├── kmsdummyduplex.c │ │ │ ├── kmsdummyduplex.h │ │ │ ├── kmsdummyrtp.c │ │ │ ├── kmsdummyrtp.h │ │ │ ├── kmsdummysdp.c │ │ │ ├── kmsdummysdp.h │ │ │ ├── kmsdummysink.c │ │ │ ├── kmsdummysink.h │ │ │ ├── kmsdummysrc.c │ │ │ ├── kmsdummysrc.h │ │ │ ├── kmsdummyuri.c │ │ │ ├── kmsdummyuri.h │ │ │ ├── kmsfilterelement.c │ │ │ ├── kmsfilterelement.h │ │ │ ├── kmspassthrough.c │ │ │ ├── kmspassthrough.h │ │ │ └── vp8parse │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── kmsvp8parse.c │ │ │ │ ├── kmsvp8parse.h │ │ │ │ └── vp8parse.c │ │ └── server │ │ │ ├── CMakeLists.txt │ │ │ ├── config │ │ │ ├── BaseRtpEndpoint.conf.ini │ │ │ ├── MediaElement.conf.ini │ │ │ ├── SdpEndpoint.conf.json │ │ │ └── UriEndpoint.conf.ini │ │ │ ├── implementation │ │ │ ├── DotGraph.cpp │ │ │ ├── DotGraph.hpp │ │ │ ├── EventHandler.cpp │ │ │ ├── EventHandler.hpp │ │ │ ├── Factory.cpp │ │ │ ├── Factory.hpp │ │ │ ├── FactoryRegistrar.hpp │ │ │ ├── MediaSet.cpp │ │ │ ├── MediaSet.hpp │ │ │ ├── ModuleManager.cpp │ │ │ ├── ModuleManager.hpp │ │ │ ├── RegisterParent.cpp │ │ │ ├── RegisterParent.hpp │ │ │ ├── SignalHandler.hpp │ │ │ ├── UUIDGenerator.cpp │ │ │ ├── UUIDGenerator.hpp │ │ │ ├── WorkerPool.cpp │ │ │ ├── WorkerPool.hpp │ │ │ ├── objects │ │ │ │ ├── BaseRtpEndpointImpl.cpp │ │ │ │ ├── BaseRtpEndpointImpl.hpp │ │ │ │ ├── EndpointImpl.cpp │ │ │ │ ├── EndpointImpl.hpp │ │ │ │ ├── FilterImpl.cpp │ │ │ │ ├── FilterImpl.hpp │ │ │ │ ├── HubImpl.cpp │ │ │ │ ├── HubImpl.hpp │ │ │ │ ├── HubPortImpl.cpp │ │ │ │ ├── HubPortImpl.hpp │ │ │ │ ├── MediaElementImpl.cpp │ │ │ │ ├── MediaElementImpl.hpp │ │ │ │ ├── MediaObjectImpl.cpp │ │ │ │ ├── MediaObjectImpl.hpp │ │ │ │ ├── MediaPadImpl.cpp │ │ │ │ ├── MediaPadImpl.hpp │ │ │ │ ├── MediaPipelineImpl.cpp │ │ │ │ ├── MediaPipelineImpl.hpp │ │ │ │ ├── PassThroughImpl.cpp │ │ │ │ ├── PassThroughImpl.hpp │ │ │ │ ├── SdpEndpointImpl.cpp │ │ │ │ ├── SdpEndpointImpl.hpp │ │ │ │ ├── ServerManagerImpl.cpp │ │ │ │ ├── ServerManagerImpl.hpp │ │ │ │ ├── SessionEndpointImpl.cpp │ │ │ │ ├── SessionEndpointImpl.hpp │ │ │ │ ├── UriEndpointImpl.cpp │ │ │ │ └── UriEndpointImpl.hpp │ │ │ └── process-tools │ │ │ │ ├── linux-process.cpp │ │ │ │ └── linux-process.hpp │ │ │ └── interface │ │ │ ├── KurentoException.hpp │ │ │ ├── core.kmd.json │ │ │ ├── package.json │ │ │ └── pom.xml │ └── tests │ │ ├── CMakeLists.txt │ │ ├── agnosticbintest.py │ │ ├── check │ │ ├── CMakeLists.txt │ │ ├── element │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── agnosticbin.c │ │ │ ├── agnosticbin3.c │ │ │ ├── agnosticbin_negotiation.c │ │ │ ├── audiomixer.c │ │ │ ├── audiomixerbin.c │ │ │ ├── bufferinjector.c │ │ │ ├── filterelement.c │ │ │ ├── hubport.c │ │ │ ├── lists.c │ │ │ ├── metadata.c │ │ │ ├── pad_connections.c │ │ │ ├── passthrough.c │ │ │ └── sdp_agent.c │ │ ├── general │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── basehub.c │ │ │ ├── refcounts.c │ │ │ ├── rembmanager.c │ │ │ └── utils.c │ │ ├── kmscheck.h │ │ ├── memory_leaks.sh │ │ ├── memory_leaks │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ └── agnosticbin.c │ │ └── valgrind.supp │ │ ├── screensize.py │ │ ├── sdp_pattern.txt │ │ └── server │ │ ├── CMakeLists.txt │ │ ├── complexType.cpp │ │ ├── mediaElement.cpp │ │ ├── mediaObject.cpp │ │ ├── mediaSet.cpp │ │ ├── moduleManager.cpp │ │ ├── rtpEndpoint.cpp │ │ ├── sdpEndpoint.cpp │ │ ├── uriEndpoint.cpp │ │ └── valgrind.supp ├── module-creator │ ├── README.md │ ├── debian │ │ ├── changelog │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── kurento-module-creator.poms │ │ ├── maven.rules │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── pom.xml │ ├── scripts │ │ ├── Manifest.txt │ │ └── kurento-module-creator │ └── src │ │ ├── main │ │ ├── cmake │ │ │ ├── Kurento │ │ │ │ └── FindKurentoModuleCreator.cmake │ │ │ └── KurentoModuleCreator │ │ │ │ └── KurentoModuleCreatorConfig.cmake │ │ ├── java │ │ │ ├── com │ │ │ │ └── github │ │ │ │ │ └── zafarkhaja │ │ │ │ │ └── semver │ │ │ │ │ ├── MetadataVersion.java │ │ │ │ │ ├── NormalVersion.java │ │ │ │ │ ├── ParseException.java │ │ │ │ │ ├── Parser.java │ │ │ │ │ ├── UnexpectedCharacterException.java │ │ │ │ │ ├── Version.java │ │ │ │ │ ├── VersionParser.java │ │ │ │ │ ├── expr │ │ │ │ │ ├── And.java │ │ │ │ │ ├── Equal.java │ │ │ │ │ ├── Expression.java │ │ │ │ │ ├── ExpressionParser.java │ │ │ │ │ ├── Greater.java │ │ │ │ │ ├── GreaterOrEqual.java │ │ │ │ │ ├── Less.java │ │ │ │ │ ├── LessOrEqual.java │ │ │ │ │ ├── Lexer.java │ │ │ │ │ ├── LexerException.java │ │ │ │ │ ├── Not.java │ │ │ │ │ ├── NotEqual.java │ │ │ │ │ ├── Or.java │ │ │ │ │ ├── UnexpectedTokenException.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── util │ │ │ │ │ ├── Stream.java │ │ │ │ │ ├── UnexpectedElementException.java │ │ │ │ │ └── package-info.java │ │ │ └── org │ │ │ │ └── kurento │ │ │ │ └── modulecreator │ │ │ │ ├── KurentoModuleCreator.java │ │ │ │ ├── KurentoModuleCreatorException.java │ │ │ │ ├── Main.java │ │ │ │ ├── ModuleManager.java │ │ │ │ ├── PathUtils.java │ │ │ │ ├── Result.java │ │ │ │ ├── VersionManager.java │ │ │ │ ├── codegen │ │ │ │ ├── CodeGen.java │ │ │ │ ├── Error.java │ │ │ │ ├── JsonFusioner.java │ │ │ │ ├── JsonObjectAsMap.java │ │ │ │ ├── PathTemplateLoader.java │ │ │ │ ├── XmlFusioner.java │ │ │ │ └── function │ │ │ │ │ ├── CamelToUnderscore.java │ │ │ │ │ ├── CppObjectType.java │ │ │ │ │ ├── EscapeString.java │ │ │ │ │ ├── GenerateKurentoClientJsVersion.java │ │ │ │ │ ├── InitializePropertiesValues.java │ │ │ │ │ ├── IsFirstConstructorParam.java │ │ │ │ │ ├── JavaObjectType.java │ │ │ │ │ ├── JsNamespace.java │ │ │ │ │ ├── JsonCppTypeData.java │ │ │ │ │ ├── OrganizeDependencies.java │ │ │ │ │ ├── PackageToFolder.java │ │ │ │ │ ├── SphinxLinks.java │ │ │ │ │ ├── TypeDependencies.java │ │ │ │ │ └── TypeHierarchy.java │ │ │ │ ├── definition │ │ │ │ ├── Code.java │ │ │ │ ├── ComplexType.java │ │ │ │ ├── DataItem.java │ │ │ │ ├── Event.java │ │ │ │ ├── Import.java │ │ │ │ ├── Method.java │ │ │ │ ├── ModelElement.java │ │ │ │ ├── ModuleDefinition.java │ │ │ │ ├── NamedElement.java │ │ │ │ ├── Param.java │ │ │ │ ├── PrimitiveType.java │ │ │ │ ├── Property.java │ │ │ │ ├── RemoteClass.java │ │ │ │ ├── Return.java │ │ │ │ ├── Type.java │ │ │ │ └── TypeRef.java │ │ │ │ ├── json │ │ │ │ ├── DataItemAdapter.java │ │ │ │ ├── JsonModuleSaverLoader.java │ │ │ │ ├── MethodAdapter.java │ │ │ │ ├── RemoteClassAdapter.java │ │ │ │ └── TypeRefAdapter.java │ │ │ │ └── print │ │ │ │ └── ModuleDefinitionPrinter.java │ │ └── templates │ │ │ ├── client-js │ │ │ └── templates │ │ │ │ ├── complexType_class.ftl │ │ │ │ ├── license.ftm │ │ │ │ ├── macros.ftm │ │ │ │ ├── model_abstracts_index.ftl │ │ │ │ ├── model_complexType.ftl │ │ │ │ ├── model_complexTypes_index.ftl │ │ │ │ ├── model_events.ftl │ │ │ │ ├── model_external.ftl │ │ │ │ ├── model_index.ftl │ │ │ │ ├── remoteClass_class.ftl │ │ │ │ ├── remoteClass_constructors.ftm │ │ │ │ ├── remoteClass_prototypes.ftm │ │ │ │ └── remoteClass_requires.ftm │ │ │ ├── cpp_cmake_dependencies │ │ │ └── model_dependencies_cmake.ftl │ │ │ ├── cpp_find_cmake │ │ │ └── model_find_cmake.ftl │ │ │ ├── cpp_interface │ │ │ ├── complexType_class_cpp.ftl │ │ │ ├── complexType_class_hpp.ftl │ │ │ ├── event_class_cpp.ftl │ │ │ ├── event_class_hpp.ftl │ │ │ ├── remoteClass_interface_cpp.ftl │ │ │ └── remoteClass_interface_hpp.ftl │ │ │ ├── cpp_interface_internal │ │ │ ├── remoteClass_internal_cpp.ftl │ │ │ └── remoteClass_internal_hpp.ftl │ │ │ ├── cpp_module │ │ │ └── model_Module_cpp.ftl │ │ │ ├── cpp_pkgconfig │ │ │ └── model_pc.in.ftl │ │ │ ├── cpp_server │ │ │ ├── remoteClass_OpenCvFilter_cpp.ftl │ │ │ ├── remoteClass_OpenCvFilter_hpp.ftl │ │ │ ├── remoteClass_impl_cpp.ftl │ │ │ └── remoteClass_impl_hpp.ftl │ │ │ ├── cpp_server_internal │ │ │ ├── model_SerializerExpander_cpp.ftl │ │ │ ├── remoteClass_factory_hpp.ftl │ │ │ └── remoteClass_internal_cpp.ftl │ │ │ ├── cpp_server_opencv │ │ │ ├── remoteClass_OpenCvFilter_cpp.ftl │ │ │ └── remoteClass_OpenCvFilter_hpp.ftl │ │ │ ├── doc │ │ │ ├── model_fiware_wiki.ftl │ │ │ └── model_kurento_doc.ftl │ │ │ ├── maven │ │ │ └── model_pom_xml.ftl │ │ │ └── npm │ │ │ ├── model_Gruntfile_js.ftl │ │ │ ├── model_browser_js.ftl │ │ │ ├── model_gitignore.ftl │ │ │ ├── model_npmignore.ftl │ │ │ ├── model_package_json.ftl │ │ │ ├── model_readme_bower_md.ftl │ │ │ └── model_readme_md.ftl │ │ └── test │ │ ├── java │ │ ├── org │ │ │ └── kurento │ │ │ │ └── modulecreator │ │ │ │ └── test │ │ │ │ ├── CodeGenerationTest.java │ │ │ │ ├── CustomMavenPomTest.java │ │ │ │ ├── CustomNpmPackTest.java │ │ │ │ ├── ImportModulesTest.java │ │ │ │ ├── ImportModulesWithRangesTest.java │ │ │ │ ├── KurentoCodeGeneration.java │ │ │ │ ├── NamespacesTest.java │ │ │ │ ├── NpmVersionTest.java │ │ │ │ ├── ReleaseModuleWithDevDependTest.java │ │ │ │ ├── SemVerTests.java │ │ │ │ └── VersionManagerTest.java │ │ └── simplelogger.properties │ │ └── resources │ │ ├── core.kmd.json │ │ ├── custommaven │ │ ├── customizer.xml │ │ ├── generated.xml │ │ ├── moduleA.kmd.json │ │ └── pom.xml │ │ ├── customnpm │ │ ├── customizer.json │ │ ├── generated.json │ │ ├── moduleA.kmd.json │ │ └── package.json │ │ ├── fakecore.kmd.json │ │ ├── fakeelements.kmd.json │ │ ├── fakefilters.kmd.json │ │ ├── importmodules │ │ ├── moduleA.kmd.json │ │ ├── moduleB.kmd.json │ │ └── moduleC.kmd.json │ │ ├── namespaces │ │ ├── moduleA.kmd.json │ │ ├── moduleB.kmd.json │ │ └── moduleC.kmd.json │ │ ├── npmversion │ │ ├── moduleA.kmd.json │ │ ├── moduleB.kmd.json │ │ └── moduleC.kmd.json │ │ ├── releaseversion │ │ ├── moduleA.kmd.json │ │ └── moduleB.kmd.json │ │ └── versionranges │ │ ├── moduleA.kmd.json │ │ ├── moduleB.kmd.json │ │ ├── moduleC.kmd.json │ │ └── moduleD.kmd.json ├── module-elements │ ├── 3rdparty │ │ └── valgrind │ │ │ └── include │ │ │ └── valgrind │ │ │ └── valgrind.h │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── README.md │ ├── config.h.cmake │ ├── debian │ │ ├── changelog │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── kurento-module-elements-dev.install │ │ ├── kurento-module-elements.install │ │ ├── not-installed │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── hooks │ │ └── pre-commit.hook │ ├── src │ │ ├── CMakeLists.txt │ │ ├── gst-plugins │ │ │ ├── CMakeLists.txt │ │ │ ├── kms-elements-marshal.list │ │ │ ├── kmsalphablending.c │ │ │ ├── kmsalphablending.h │ │ │ ├── kmscompositemixer.c │ │ │ ├── kmscompositemixer.h │ │ │ ├── kmsdispatcher.c │ │ │ ├── kmsdispatcher.h │ │ │ ├── kmsdispatcheronetomany.c │ │ │ ├── kmsdispatcheronetomany.h │ │ │ ├── kmselements.c │ │ │ ├── kmsencodingrules.h │ │ │ ├── kmshttpendpoint.c │ │ │ ├── kmshttpendpoint.h │ │ │ ├── kmshttpendpointmethod.h │ │ │ ├── kmshttppostendpoint.c │ │ │ ├── kmshttppostendpoint.h │ │ │ ├── kmsplayerendpoint.c │ │ │ ├── kmsplayerendpoint.h │ │ │ ├── kmsselectablemixer.c │ │ │ ├── kmsselectablemixer.h │ │ │ ├── recorderendpoint │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── kmsavmuxer.c │ │ │ │ ├── kmsavmuxer.h │ │ │ │ ├── kmsbasemediamuxer.c │ │ │ │ ├── kmsbasemediamuxer.h │ │ │ │ ├── kmsksrmuxer.c │ │ │ │ ├── kmsksrmuxer.h │ │ │ │ ├── kmsrecorderendpoint.c │ │ │ │ ├── kmsrecorderendpoint.h │ │ │ │ └── kmsrecordergapsfixmethod.h │ │ │ ├── rtcpdemux │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── kms-marshal.list │ │ │ │ ├── kmsrtcpdemux.c │ │ │ │ ├── kmsrtcpdemux.h │ │ │ │ └── rtcpdemux.c │ │ │ ├── rtpendpoint │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FindKmsRtpEndpointLib.cmake.in │ │ │ │ ├── kms-rtp-data-marshal.list │ │ │ │ ├── kms-rtp-marshal.list │ │ │ │ ├── kmsrandom.c │ │ │ │ ├── kmsrandom.h │ │ │ │ ├── kmsrtp.c │ │ │ │ ├── kmsrtpbaseconnection.c │ │ │ │ ├── kmsrtpbaseconnection.h │ │ │ │ ├── kmsrtpconnection.c │ │ │ │ ├── kmsrtpconnection.h │ │ │ │ ├── kmsrtpendpoint.c │ │ │ │ ├── kmsrtpendpoint.h │ │ │ │ ├── kmsrtpsdescryptosuite.h │ │ │ │ ├── kmsrtpsession.c │ │ │ │ ├── kmsrtpsession.h │ │ │ │ ├── kmssocketutils.c │ │ │ │ ├── kmssocketutils.h │ │ │ │ ├── kmssrtpconnection.c │ │ │ │ ├── kmssrtpconnection.h │ │ │ │ ├── kmssrtpsession.c │ │ │ │ └── kmssrtpsession.h │ │ │ └── webrtcendpoint │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FindKmsWebRtcEndpointLib.cmake.in │ │ │ │ ├── kms-webrtc-data-marshal.list │ │ │ │ ├── kms-webrtc-marshal.list │ │ │ │ ├── kmsicebaseagent.c │ │ │ │ ├── kmsicebaseagent.h │ │ │ │ ├── kmsicecandidate.c │ │ │ │ ├── kmsicecandidate.h │ │ │ │ ├── kmsiceniceagent.c │ │ │ │ ├── kmsiceniceagent.h │ │ │ │ ├── kmswebrtc.c │ │ │ │ ├── kmswebrtcbaseconnection.c │ │ │ │ ├── kmswebrtcbaseconnection.h │ │ │ │ ├── kmswebrtcbundleconnection.c │ │ │ │ ├── kmswebrtcbundleconnection.h │ │ │ │ ├── kmswebrtcconnection.c │ │ │ │ ├── kmswebrtcconnection.h │ │ │ │ ├── kmswebrtcdatachannel.c │ │ │ │ ├── kmswebrtcdatachannel.h │ │ │ │ ├── kmswebrtcdatachannelbin.c │ │ │ │ ├── kmswebrtcdatachannelbin.h │ │ │ │ ├── kmswebrtcdatachannelpriority.h │ │ │ │ ├── kmswebrtcdatachannelstate.h │ │ │ │ ├── kmswebrtcdatachannelutil.h │ │ │ │ ├── kmswebrtcdataproto.h │ │ │ │ ├── kmswebrtcdatasessionbin.c │ │ │ │ ├── kmswebrtcdatasessionbin.h │ │ │ │ ├── kmswebrtcdtlsconnectionstate.h │ │ │ │ ├── kmswebrtcendpoint.c │ │ │ │ ├── kmswebrtcendpoint.h │ │ │ │ ├── kmswebrtcrtcpmuxconnection.c │ │ │ │ ├── kmswebrtcrtcpmuxconnection.h │ │ │ │ ├── kmswebrtcsctpconnection.c │ │ │ │ ├── kmswebrtcsctpconnection.h │ │ │ │ ├── kmswebrtcsession.c │ │ │ │ ├── kmswebrtcsession.h │ │ │ │ ├── kmswebrtctransport.c │ │ │ │ ├── kmswebrtctransport.h │ │ │ │ ├── kmswebrtctransportsink.c │ │ │ │ ├── kmswebrtctransportsink.h │ │ │ │ ├── kmswebrtctransportsinknice.c │ │ │ │ ├── kmswebrtctransportsinknice.h │ │ │ │ ├── kmswebrtctransportsrc.c │ │ │ │ ├── kmswebrtctransportsrc.h │ │ │ │ ├── kmswebrtctransportsrcnice.c │ │ │ │ └── kmswebrtctransportsrcnice.h │ │ └── server │ │ │ ├── CMakeLists.txt │ │ │ ├── config │ │ │ ├── Composite.conf.ini │ │ │ ├── HttpEndpoint.conf.ini │ │ │ ├── PlayerEndpoint.conf.ini │ │ │ ├── RecorderEndpoint.conf.ini │ │ │ └── WebRtcEndpoint.conf.ini │ │ │ ├── implementation │ │ │ ├── CertificateManager.cpp │ │ │ ├── CertificateManager.hpp │ │ │ ├── HttpServer │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── HttpEndPointServer.cpp │ │ │ │ ├── HttpEndPointServer.hpp │ │ │ │ ├── KmsHttpEPServer.cpp │ │ │ │ ├── KmsHttpEPServer.h │ │ │ │ ├── KmsHttpPost.cpp │ │ │ │ ├── KmsHttpPost.h │ │ │ │ ├── http-marshal.list │ │ │ │ └── kmshttpendpointaction.h │ │ │ └── objects │ │ │ │ ├── AlphaBlendingImpl.cpp │ │ │ │ ├── AlphaBlendingImpl.hpp │ │ │ │ ├── CompositeImpl.cpp │ │ │ │ ├── CompositeImpl.hpp │ │ │ │ ├── DispatcherImpl.cpp │ │ │ │ ├── DispatcherImpl.hpp │ │ │ │ ├── DispatcherOneToManyImpl.cpp │ │ │ │ ├── DispatcherOneToManyImpl.hpp │ │ │ │ ├── HttpEndpointImpl.cpp │ │ │ │ ├── HttpEndpointImpl.hpp │ │ │ │ ├── HttpPostEndpointImpl.cpp │ │ │ │ ├── HttpPostEndpointImpl.hpp │ │ │ │ ├── MixerImpl.cpp │ │ │ │ ├── MixerImpl.hpp │ │ │ │ ├── PlayerEndpointImpl.cpp │ │ │ │ ├── PlayerEndpointImpl.hpp │ │ │ │ ├── RecorderEndpointImpl.cpp │ │ │ │ ├── RecorderEndpointImpl.hpp │ │ │ │ ├── RtpEndpointImpl.cpp │ │ │ │ ├── RtpEndpointImpl.hpp │ │ │ │ ├── WebRtcEndpointImpl.cpp │ │ │ │ └── WebRtcEndpointImpl.hpp │ │ │ └── interface │ │ │ ├── elements.AlphaBlending.kmd.json │ │ │ ├── elements.Composite.kmd.json │ │ │ ├── elements.Dispatcher.kmd.json │ │ │ ├── elements.DispatcherOneToMany.kmd.json │ │ │ ├── elements.EndOfStream.kmd.json │ │ │ ├── elements.HttpEndpoint.kmd.json │ │ │ ├── elements.MediaProfileSpecType.kmd.json │ │ │ ├── elements.Mixer.kmd.json │ │ │ ├── elements.PlayerEndpoint.kmd.json │ │ │ ├── elements.RecorderEndpoint.kmd.json │ │ │ ├── elements.RtpEndpoint.kmd.json │ │ │ ├── elements.WebRtcEndpoint.kmd.json │ │ │ ├── elements.kmd.json │ │ │ ├── package.json │ │ │ └── pom.xml │ └── tests │ │ ├── CMakeLists.txt │ │ ├── check │ │ ├── CMakeLists.txt │ │ ├── element │ │ │ ├── CMakeLists.txt │ │ │ ├── alphablending.c │ │ │ ├── compositemixer.c │ │ │ ├── dispatcher.c │ │ │ ├── dispatcheronetomany.c │ │ │ ├── dtls.c │ │ │ ├── dtlssrtp.c │ │ │ ├── httpendpoint.c │ │ │ ├── ice_candidates.c │ │ │ ├── playerendpoint.c │ │ │ ├── recorderendpoint.c │ │ │ ├── rtpendpoint.c │ │ │ ├── rtpendpoint_audio.c │ │ │ ├── rtpendpoint_video.c │ │ │ ├── srtp.c │ │ │ ├── webrtc_data_proto.c │ │ │ └── webrtcendpoint.c │ │ ├── integration │ │ │ ├── CMakeLists.txt │ │ │ └── playerendpoint.c │ │ ├── kmscheck.h │ │ ├── kmstestutils.c │ │ ├── kmstestutils.h │ │ ├── memory_leaks.sh │ │ ├── memory_leaks │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── playerendpoint.c │ │ │ ├── recorderendpoint.c │ │ │ └── webrtcendpoint.c │ │ └── valgrind.supp │ │ ├── sdp_pattern.txt │ │ └── server │ │ ├── CMakeLists.txt │ │ ├── composite.cpp │ │ ├── constructors.cpp │ │ ├── playerEndpoint.cpp │ │ ├── recorderEndpoint.cpp │ │ ├── rtpEndpoint.cpp │ │ ├── valgrind.supp │ │ └── webRtcEndpoint.cpp ├── module-examples │ ├── chroma │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── config.h.cmake │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── kurento-module-chroma-dev.install │ │ │ ├── kurento-module-chroma.install │ │ │ ├── not-installed │ │ │ ├── rules │ │ │ └── source │ │ │ │ └── format │ │ ├── hooks │ │ │ └── pre-commit.hook │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── gst-plugins │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── chroma │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── chroma.cpp │ │ │ │ │ ├── kmschroma.cpp │ │ │ │ │ └── kmschroma.hpp │ │ │ └── server │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── implementation │ │ │ │ └── objects │ │ │ │ │ ├── ChromaFilterImpl.cpp │ │ │ │ │ └── ChromaFilterImpl.hpp │ │ │ │ └── interface │ │ │ │ ├── chroma.ChromaFilter.kmd.json │ │ │ │ ├── chroma.kmd.json │ │ │ │ ├── package.json │ │ │ │ └── pom.xml │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── check │ │ │ ├── CMakeLists.txt │ │ │ ├── element │ │ │ ├── CMakeLists.txt │ │ │ └── chroma.c │ │ │ ├── kmscheck.h │ │ │ ├── kmstestutils.c │ │ │ ├── kmstestutils.h │ │ │ ├── memory_leaks.sh │ │ │ └── valgrind.supp │ ├── crowddetector │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── config.h.cmake │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── kurento-module-crowddetector-dev.install │ │ │ ├── kurento-module-crowddetector.install │ │ │ ├── rules │ │ │ └── source │ │ │ │ └── format │ │ ├── hooks │ │ │ └── pre-commit.hook │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── gst-plugins │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── crowddetector │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── crowddetector.c │ │ │ │ │ ├── kmscrowddetector.c │ │ │ │ │ └── kmscrowddetector.h │ │ │ └── server │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── implementation │ │ │ │ └── objects │ │ │ │ │ ├── CrowdDetectorFilterImpl.cpp │ │ │ │ │ └── CrowdDetectorFilterImpl.hpp │ │ │ │ └── interface │ │ │ │ ├── crowddetector.CrowdDetectorFilter.kmd.json │ │ │ │ ├── crowddetector.kmd.json │ │ │ │ ├── package.json │ │ │ │ └── pom.xml │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── check │ │ │ ├── CMakeLists.txt │ │ │ ├── element │ │ │ ├── CMakeLists.txt │ │ │ └── crowddetector.c │ │ │ ├── kmscheck.h │ │ │ ├── kmstestutils.c │ │ │ ├── kmstestutils.h │ │ │ ├── memory_leaks.sh │ │ │ └── valgrind.supp │ ├── datachannelexample │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── config.h.cmake │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── kurento-module-datachannelexample-dev.install │ │ │ ├── kurento-module-datachannelexample.install │ │ │ ├── not-installed │ │ │ ├── rules │ │ │ └── source │ │ │ │ └── format │ │ ├── hooks │ │ │ └── pre-commit.hook │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── gst-plugins │ │ │ ├── CMakeLists.txt │ │ │ ├── datachannelexample.cpp │ │ │ ├── kmsfacedetectormetadata.cpp │ │ │ ├── kmsfacedetectormetadata.hpp │ │ │ ├── kmsimageoverlaymetadata.cpp │ │ │ ├── kmsimageoverlaymetadata.hpp │ │ │ ├── kmssenddata.c │ │ │ ├── kmssenddata.h │ │ │ ├── kmsshowdata.c │ │ │ └── kmsshowdata.h │ │ │ └── server │ │ │ ├── CMakeLists.txt │ │ │ ├── implementation │ │ │ └── objects │ │ │ │ ├── KmsDetectFacesImpl.cpp │ │ │ │ ├── KmsDetectFacesImpl.hpp │ │ │ │ ├── KmsSendDataImpl.cpp │ │ │ │ ├── KmsSendDataImpl.hpp │ │ │ │ ├── KmsShowDataImpl.cpp │ │ │ │ ├── KmsShowDataImpl.hpp │ │ │ │ ├── KmsShowFacesImpl.cpp │ │ │ │ └── KmsShowFacesImpl.hpp │ │ │ └── interface │ │ │ ├── kmsdatachannelexample.KmsDataChannelExample.kmd.json │ │ │ ├── kmsdatachannelexample.kmd.json │ │ │ └── pom.xml │ ├── gstreamer-example │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── config.h.cmake │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── kurento-module-gstreamer-example-dev.install │ │ │ ├── kurento-module-gstreamer-example.install │ │ │ ├── rules │ │ │ └── source │ │ │ │ └── format │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── gst-plugins │ │ │ ├── CMakeLists.txt │ │ │ ├── gstgstreamerexample.cpp │ │ │ ├── gstgstreamerexample.h │ │ │ └── gstreamerexample.c │ │ │ └── server │ │ │ ├── CMakeLists.txt │ │ │ ├── implementation │ │ │ └── objects │ │ │ │ ├── GStreamerExampleImpl.cpp │ │ │ │ └── GStreamerExampleImpl.hpp │ │ │ └── interface │ │ │ ├── gstreamerexample.GStreamerExample.kmd.json │ │ │ └── gstreamerexample.kmd.json │ ├── markerdetector │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── alvar-2.0.0-src-opencv3 │ │ │ ├── 3rdparty │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── tinyxml │ │ │ │ │ ├── changes.txt │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── tinystr.cpp │ │ │ │ │ ├── tinystr.h │ │ │ │ │ ├── tinyxml.cpp │ │ │ │ │ ├── tinyxml.h │ │ │ │ │ ├── tinyxmlerror.cpp │ │ │ │ │ └── tinyxmlparser.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CTestConfig.cmake │ │ │ ├── README │ │ │ ├── data │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── axes.osg │ │ │ │ ├── grid.osg │ │ │ │ ├── markerless.png │ │ │ │ └── multimarker.xml │ │ │ ├── demo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Demo3DMarkerField.cpp │ │ │ │ ├── DemoMarkerField.cpp │ │ │ │ ├── DemoMarkerHide.cpp │ │ │ │ ├── DemoModel2Marker.cpp │ │ │ │ ├── DemoSfM.cpp │ │ │ │ └── Shared.h │ │ │ ├── doc │ │ │ │ ├── ALVAR.pdf │ │ │ │ ├── ALVAR.ppt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Compiling.txt │ │ │ │ ├── ReleaseNotes.txt │ │ │ │ ├── doxygen.config.cmake │ │ │ │ ├── header.bmp │ │ │ │ ├── logo.png │ │ │ │ ├── logo.svg │ │ │ │ └── splash.bmp │ │ │ ├── sample │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CvTestbed.cpp │ │ │ │ ├── CvTestbed.h │ │ │ │ ├── GlutViewer.cpp │ │ │ │ ├── GlutViewer.h │ │ │ │ ├── SampleCamCalib.cpp │ │ │ │ ├── SampleCvTestbed.cpp │ │ │ │ ├── SampleFilter.cpp │ │ │ │ ├── SampleIntegralImage.cpp │ │ │ │ ├── SampleLabeling.cpp │ │ │ │ ├── SampleMarkerCreator.cpp │ │ │ │ ├── SampleMarkerDetector.cpp │ │ │ │ ├── SampleMarkerHide.cpp │ │ │ │ ├── SampleMultiMarker.cpp │ │ │ │ ├── SampleMultiMarkerBundle.cpp │ │ │ │ ├── SampleOptimization.cpp │ │ │ │ ├── SamplePointcloud.cpp │ │ │ │ ├── SampleTrack.cpp │ │ │ │ └── Shared.h │ │ │ ├── src │ │ │ │ ├── Alvar.cpp │ │ │ │ ├── Alvar.h.cmake │ │ │ │ ├── AlvarException.h │ │ │ │ ├── Bitset.cpp │ │ │ │ ├── Bitset.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Camera.cpp │ │ │ │ ├── Camera.h │ │ │ │ ├── ConnectedComponents.cpp │ │ │ │ ├── ConnectedComponents.h │ │ │ │ ├── Container3d.h │ │ │ │ ├── Draw.cpp │ │ │ │ ├── Draw.h │ │ │ │ ├── EC.cpp │ │ │ │ ├── EC.h │ │ │ │ ├── FileFormat.h │ │ │ │ ├── FileFormatUtils.cpp │ │ │ │ ├── FileFormatUtils.h │ │ │ │ ├── Filter.cpp │ │ │ │ ├── Filter.h │ │ │ │ ├── IntegralImage.cpp │ │ │ │ ├── IntegralImage.h │ │ │ │ ├── Kalman.cpp │ │ │ │ ├── Kalman.h │ │ │ │ ├── Line.cpp │ │ │ │ ├── Line.h │ │ │ │ ├── Marker.cpp │ │ │ │ ├── Marker.h │ │ │ │ ├── MarkerDetector.cpp │ │ │ │ ├── MarkerDetector.h │ │ │ │ ├── MultiMarker.cpp │ │ │ │ ├── MultiMarker.h │ │ │ │ ├── MultiMarkerBundle.cpp │ │ │ │ ├── MultiMarkerBundle.h │ │ │ │ ├── MultiMarkerFiltered.cpp │ │ │ │ ├── MultiMarkerFiltered.h │ │ │ │ ├── MultiMarkerInitializer.cpp │ │ │ │ ├── MultiMarkerInitializer.h │ │ │ │ ├── Optimization.cpp │ │ │ │ ├── Optimization.h │ │ │ │ ├── Pose.cpp │ │ │ │ ├── Pose.h │ │ │ │ ├── Ransac.cpp │ │ │ │ ├── Ransac.h │ │ │ │ ├── Rotation.cpp │ │ │ │ ├── Rotation.h │ │ │ │ ├── SfM.cpp │ │ │ │ ├── SfM.h │ │ │ │ ├── Tracker.h │ │ │ │ ├── TrackerFeatures.cpp │ │ │ │ ├── TrackerFeatures.h │ │ │ │ ├── TrackerOrientation.cpp │ │ │ │ ├── TrackerOrientation.h │ │ │ │ ├── TrackerPsa.cpp │ │ │ │ ├── TrackerPsa.h │ │ │ │ ├── TrackerStat.cpp │ │ │ │ ├── TrackerStat.h │ │ │ │ ├── TrifocalTensor.cpp │ │ │ │ ├── TrifocalTensor.h │ │ │ │ ├── UnscentedKalman.cpp │ │ │ │ ├── UnscentedKalman.h │ │ │ │ ├── Util.cpp │ │ │ │ ├── Util.h │ │ │ │ └── platform │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Capture.h │ │ │ │ │ ├── CaptureDevice.cpp │ │ │ │ │ ├── CaptureDevice.h │ │ │ │ │ ├── CaptureFactory.cpp │ │ │ │ │ ├── CaptureFactory.h │ │ │ │ │ ├── CaptureFactory_private.h │ │ │ │ │ ├── CaptureFactory_unix.cpp │ │ │ │ │ ├── CapturePlugin.h │ │ │ │ │ ├── DirectoryIterator.cpp │ │ │ │ │ ├── DirectoryIterator.h │ │ │ │ │ ├── DirectoryIterator_private.h │ │ │ │ │ ├── DirectoryIterator_unix.cpp │ │ │ │ │ ├── DirectoryIterator_win.cpp │ │ │ │ │ ├── Lock.h │ │ │ │ │ ├── Mutex.cpp │ │ │ │ │ ├── Mutex.h │ │ │ │ │ ├── Mutex_private.h │ │ │ │ │ ├── Mutex_unix.cpp │ │ │ │ │ ├── Mutex_win.cpp │ │ │ │ │ ├── Platform.cpp │ │ │ │ │ ├── Platform.h │ │ │ │ │ ├── Plugin.cpp │ │ │ │ │ ├── Plugin.h │ │ │ │ │ ├── Plugin_private.h │ │ │ │ │ ├── Plugin_unix.cpp │ │ │ │ │ ├── Plugin_win.cpp │ │ │ │ │ ├── Threads.cpp │ │ │ │ │ ├── Threads.h │ │ │ │ │ ├── Threads_private.h │ │ │ │ │ ├── Threads_unix.cpp │ │ │ │ │ ├── Threads_win.cpp │ │ │ │ │ ├── Timer.cpp │ │ │ │ │ ├── Timer.h │ │ │ │ │ ├── Timer_private.h │ │ │ │ │ ├── Timer_unix.cpp │ │ │ │ │ ├── Timer_win.cpp │ │ │ │ │ ├── Uncopyable.h │ │ │ │ │ ├── capture_plugin_cmu │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CapturePluginCmu.cpp │ │ │ │ │ └── CapturePluginCmu.h │ │ │ │ │ ├── capture_plugin_dscapture │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CapturePluginDSCapture.cpp │ │ │ │ │ └── CapturePluginDSCapture.h │ │ │ │ │ ├── capture_plugin_file │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CapturePluginFile.cpp │ │ │ │ │ └── CapturePluginFile.h │ │ │ │ │ ├── capture_plugin_highgui │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CapturePluginHighgui.cpp │ │ │ │ │ └── CapturePluginHighgui.h │ │ │ │ │ └── capture_plugin_ptgrey │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CapturePluginPtgrey.cpp │ │ │ │ │ └── CapturePluginPtgrey.h │ │ │ ├── test │ │ │ │ ├── BenchmarkOverall.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── IMG_4617.jpg │ │ │ │ ├── TestContainer3d.cpp │ │ │ │ ├── TestFileFormats.cpp │ │ │ │ ├── TestMarkerDetector.cpp │ │ │ │ ├── TestRansac.cpp │ │ │ │ ├── TestTrack.cpp │ │ │ │ ├── TestTrifocalTensor.cpp │ │ │ │ ├── TestUnscentedKalman.cpp │ │ │ │ ├── benchmark.sh │ │ │ │ ├── benchmark_image1_large.jpg │ │ │ │ ├── benchmark_image1_medium.jpg │ │ │ │ ├── benchmark_image1_small.jpg │ │ │ │ ├── benchmark_image2_large.jpg │ │ │ │ ├── benchmark_image2_medium.jpg │ │ │ │ ├── benchmark_image2_small.jpg │ │ │ │ ├── test_calib.xml │ │ │ │ └── test_matrix.xml │ │ │ └── version.cmake │ │ ├── alvar-compat-opencv-2-3.patch │ │ ├── alvar-patch.sh │ │ ├── config.h.cmake │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── kurento-module-markerdetector-dev.install │ │ │ ├── kurento-module-markerdetector.install │ │ │ ├── rules │ │ │ └── source │ │ │ │ └── format │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ └── server │ │ │ ├── CMakeLists.txt │ │ │ ├── implementation │ │ │ └── objects │ │ │ │ ├── ArMarkerdetectorImpl.cpp │ │ │ │ ├── ArMarkerdetectorImpl.hpp │ │ │ │ ├── ArMarkerdetectorOpenCVImpl.cpp │ │ │ │ ├── ArMarkerdetectorOpenCVImpl.hpp │ │ │ │ ├── Process.cpp │ │ │ │ └── Process.h │ │ │ └── interface │ │ │ ├── armarkerdetector.ArMarkerdetector.kmd.json │ │ │ ├── armarkerdetector.kmd.json │ │ │ ├── package.json │ │ │ └── pom.xml │ ├── opencv-example │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── config.h.cmake │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── kurento-module-opencv-example-dev.install │ │ │ ├── kurento-module-opencv-example.install │ │ │ ├── rules │ │ │ └── source │ │ │ │ └── format │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ └── server │ │ │ ├── CMakeLists.txt │ │ │ ├── implementation │ │ │ └── objects │ │ │ │ ├── OpenCVExampleImpl.cpp │ │ │ │ ├── OpenCVExampleImpl.hpp │ │ │ │ ├── OpenCVExampleOpenCVImpl.cpp │ │ │ │ └── OpenCVExampleOpenCVImpl.hpp │ │ │ └── interface │ │ │ ├── opencvexample.OpenCVExample.kmd.json │ │ │ └── opencvexample.kmd.json │ ├── platedetector │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── cmake │ │ │ └── FindLibTesseract.cmake │ │ ├── config.h.cmake │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── kurento-module-platedetector-dev.install │ │ │ ├── kurento-module-platedetector.install │ │ │ ├── rules │ │ │ └── source │ │ │ │ └── format │ │ ├── hooks │ │ │ └── pre-commit.hook │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── gst-plugins │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── platedetector │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config_auto.h │ │ │ │ │ ├── kmsplatedetector.cpp │ │ │ │ │ ├── kmsplatedetector.h │ │ │ │ │ ├── platedetector.c │ │ │ │ │ └── tessdata │ │ │ │ │ └── plateLanguage.traineddata │ │ │ └── server │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── implementation │ │ │ │ └── objects │ │ │ │ │ ├── PlateDetectorFilterImpl.cpp │ │ │ │ │ └── PlateDetectorFilterImpl.hpp │ │ │ │ └── interface │ │ │ │ ├── package.json │ │ │ │ ├── platedetector.PlateDetectorFilter.kmd.json │ │ │ │ ├── platedetector.kmd.json │ │ │ │ └── pom.xml │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── check │ │ │ ├── CMakeLists.txt │ │ │ ├── element │ │ │ ├── CMakeLists.txt │ │ │ └── platedetector.c │ │ │ ├── kmscheck.h │ │ │ ├── kmstestutils.c │ │ │ ├── kmstestutils.h │ │ │ ├── memory_leaks.sh │ │ │ └── valgrind.supp │ └── pointerdetector │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── config.h.cmake │ │ ├── debian │ │ ├── changelog │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── kurento-module-pointerdetector-dev.install │ │ ├── kurento-module-pointerdetector.install │ │ ├── rules │ │ └── source │ │ │ └── format │ │ ├── hooks │ │ └── pre-commit.hook │ │ ├── src │ │ ├── CMakeLists.txt │ │ ├── gst-plugins │ │ │ ├── CMakeLists.txt │ │ │ └── pointerdetector │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── kmspointerdetector.cpp │ │ │ │ ├── kmspointerdetector.h │ │ │ │ └── pointerdetector.cpp │ │ └── server │ │ │ ├── CMakeLists.txt │ │ │ ├── implementation │ │ │ └── objects │ │ │ │ ├── PointerDetectorFilterImpl.cpp │ │ │ │ └── PointerDetectorFilterImpl.hpp │ │ │ └── interface │ │ │ ├── package.json │ │ │ ├── pointerdetector.PointerDetectorFilter.kmd.json │ │ │ ├── pointerdetector.kmd.json │ │ │ └── pom.xml │ │ └── tests │ │ ├── CMakeLists.txt │ │ └── check │ │ ├── CMakeLists.txt │ │ ├── element │ │ ├── CMakeLists.txt │ │ └── pointerdetector.c │ │ ├── kmscheck.h │ │ ├── kmstestutils.c │ │ ├── kmstestutils.h │ │ ├── memory_leaks.sh │ │ └── valgrind.supp ├── module-extras │ └── video-sampler │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── cmake │ │ └── FindGRPC.cmake │ │ ├── config.h.cmake │ │ ├── debian │ │ ├── changelog │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── kurento-module-videosampler-dev.install │ │ ├── kurento-module-videosampler.install │ │ └── rules │ │ ├── hooks │ │ └── pre-commit.hook │ │ ├── src │ │ ├── CMakeLists.txt │ │ ├── gst-plugins │ │ │ ├── CMakeLists.txt │ │ │ └── videosampler │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── kmsvideosampler.c │ │ │ │ ├── kmsvideosampler.h │ │ │ │ └── videosampler.c │ │ └── server │ │ │ ├── CMakeLists.txt │ │ │ ├── implementation │ │ │ └── objects │ │ │ │ ├── VideoSamplerImpl.cpp │ │ │ │ └── VideoSamplerImpl.hpp │ │ │ ├── interface │ │ │ ├── package.json │ │ │ ├── pom.xml │ │ │ ├── videosampler.VideoSampler.kmd.json │ │ │ └── videosampler.kmd.json │ │ │ └── proto │ │ │ ├── CMakeLists.txt │ │ │ └── videoSampler │ │ │ └── sampleImage.proto │ │ └── tests │ │ ├── CMakeLists.txt │ │ └── server │ │ ├── CMakeLists.txt │ │ └── videosampler.cpp └── module-filters │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── README.md │ ├── config.h.cmake │ ├── debian │ ├── changelog │ ├── control │ ├── copyright │ ├── docs │ ├── kurento-module-filters-dev.install │ ├── kurento-module-filters.install │ ├── not-installed │ ├── rules │ └── source │ │ └── format │ ├── hooks │ └── pre-commit.hook │ ├── src │ ├── CMakeLists.txt │ ├── gst-plugins │ │ ├── CMakeLists.txt │ │ ├── facedetector │ │ │ ├── CMakeLists.txt │ │ │ ├── facedetector.cpp │ │ │ ├── kmsfacedetector.cpp │ │ │ └── kmsfacedetector.hpp │ │ ├── faceoverlay │ │ │ ├── CMakeLists.txt │ │ │ ├── faceoverlay.cpp │ │ │ ├── kmsfaceoverlay.cpp │ │ │ └── kmsfaceoverlay.hpp │ │ ├── imageoverlay │ │ │ ├── CMakeLists.txt │ │ │ ├── imageoverlay.cpp │ │ │ ├── kmsimageoverlay.cpp │ │ │ └── kmsimageoverlay.hpp │ │ ├── logooverlay │ │ │ ├── CMakeLists.txt │ │ │ ├── kmslogooverlay.cpp │ │ │ ├── kmslogooverlay.hpp │ │ │ └── logooverlay.cpp │ │ ├── movementdetector │ │ │ ├── CMakeLists.txt │ │ │ ├── kmsmovementdetector.cpp │ │ │ ├── kmsmovementdetector.hpp │ │ │ └── movementdetector.cpp │ │ └── opencvfilter │ │ │ ├── CMakeLists.txt │ │ │ ├── kmsopencvfilter.cpp │ │ │ ├── kmsopencvfilter.hpp │ │ │ └── opencvfilter.cpp │ └── server │ │ ├── CMakeLists.txt │ │ ├── implementation │ │ └── objects │ │ │ ├── FaceOverlayFilterImpl.cpp │ │ │ ├── FaceOverlayFilterImpl.hpp │ │ │ ├── GStreamerFilterImpl.cpp │ │ │ ├── GStreamerFilterImpl.hpp │ │ │ ├── ImageOverlayFilterImpl.cpp │ │ │ ├── ImageOverlayFilterImpl.hpp │ │ │ ├── OpenCVFilterImpl.cpp │ │ │ ├── OpenCVFilterImpl.hpp │ │ │ ├── OpenCVProcess.hpp │ │ │ ├── ZBarFilterImpl.cpp │ │ │ └── ZBarFilterImpl.hpp │ │ └── interface │ │ ├── filters.FaceOverlayFilter.kmd.json │ │ ├── filters.GStreamerFilter.kmd.json │ │ ├── filters.ImageOverlayFilter.kmd.json │ │ ├── filters.OpenCVFilter.kmd.json │ │ ├── filters.ZBarFilter.kmd.json │ │ ├── filters.kmd.json │ │ ├── package.json │ │ └── pom.xml │ └── tests │ ├── CMakeLists.txt │ ├── check │ ├── CMakeLists.txt │ ├── element │ │ ├── CMakeLists.txt │ │ ├── faceoverlay.c │ │ ├── logooverlay.c │ │ └── movementdetector.c │ ├── kmscheck.h │ ├── kmstestutils.c │ ├── kmstestutils.h │ ├── memory_leaks.sh │ └── valgrind.supp │ └── server │ ├── CMakeLists.txt │ └── constructors.cpp ├── test ├── integration │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.md │ ├── benchmark │ │ ├── README.md │ │ ├── keystore.jks │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── App.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── kurento │ │ │ └── test │ │ │ └── benchmark │ │ │ └── AgnosticBenchmarkTest.java │ ├── bin │ │ └── set-versions.sh │ ├── client-test │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── App.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── kurento │ │ │ │ └── client │ │ │ │ └── test │ │ │ │ ├── ApiBase.java │ │ │ │ ├── BasicPipelineTest.java │ │ │ │ ├── ConnectionListenerTest.java │ │ │ │ ├── FaceOverlayFilterAsyncTest.java │ │ │ │ ├── FaceOverlayFilterTest.java │ │ │ │ ├── GStreamerFilterAsyncTest.java │ │ │ │ ├── GStreamerFilterTest.java │ │ │ │ ├── KurentoClientKmsConnectionTest.java │ │ │ │ ├── KurentoClientKmsProviderTest.java │ │ │ │ ├── MediaPipelineAsyncBaseTest.java │ │ │ │ ├── PlayerEndpointAsyncTest.java │ │ │ │ ├── PlayerEndpointTest.java │ │ │ │ ├── RecorderEndpointAsyncTest.java │ │ │ │ ├── RecorderEndpointTest.java │ │ │ │ ├── RtpEndpointAsync2Test.java │ │ │ │ ├── RtpEndpointAsyncTest.java │ │ │ │ ├── RtpEndpointTest.java │ │ │ │ ├── ServerManagerTest.java │ │ │ │ ├── TransactionTest.java │ │ │ │ ├── WebRtcEndpointAsyncTest.java │ │ │ │ ├── WebRtcEndpointTest.java │ │ │ │ ├── WebSocketClientToKmsConnectionTest.java │ │ │ │ ├── ZBarFilterTest.java │ │ │ │ └── util │ │ │ │ ├── AsyncEventManager.java │ │ │ │ ├── AsyncManager.java │ │ │ │ ├── AsyncResultManager.java │ │ │ │ ├── MediaPipelineBaseTest.java │ │ │ │ ├── SdpAsyncBaseTest.java │ │ │ │ └── SdpBaseTest.java │ │ │ └── resources │ │ │ ├── log4j.properties │ │ │ └── logback.xml │ ├── jsonrpc-test │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── App.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── kurento │ │ │ │ └── jsonrpc │ │ │ │ └── test │ │ │ │ ├── AsyncServerTest.java │ │ │ │ ├── BasicAsyncClientEchoTest.java │ │ │ │ ├── BasicEchoTest.java │ │ │ │ ├── BidirectionalMultiTest.java │ │ │ │ ├── BidirectionalTest.java │ │ │ │ ├── ClientEventsTest.java │ │ │ │ ├── CloseMessageTest.java │ │ │ │ ├── CloseSessionTest.java │ │ │ │ ├── ConnectionListenerTest.java │ │ │ │ ├── ErrorServerTest.java │ │ │ │ ├── JsonRpcClientConnectTest.java │ │ │ │ ├── LargePackageTest.java │ │ │ │ ├── MaxWsConnectionsTest.java │ │ │ │ ├── MultipleSessionsTest.java │ │ │ │ ├── NewSessionTest.java │ │ │ │ ├── NotificationTest.java │ │ │ │ ├── PingPongTest.java │ │ │ │ ├── ReconnectionFromServerTest.java │ │ │ │ ├── ReconnectionTest.java │ │ │ │ ├── ServerEventsTest.java │ │ │ │ ├── base │ │ │ │ ├── BootTestApplication.java │ │ │ │ ├── DemoBean.java │ │ │ │ └── JsonRpcConnectorBaseTest.java │ │ │ │ ├── handler │ │ │ │ └── EchoJsonRpcHandler.java │ │ │ │ └── util │ │ │ │ ├── EventWaiter.java │ │ │ │ └── ValueEventWaiter.java │ │ │ └── resources │ │ │ └── log4j.properties │ ├── kurento-test │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── kurento │ │ │ │ │ └── test │ │ │ │ │ ├── base │ │ │ │ │ ├── BaseTest.java │ │ │ │ │ ├── BrowserTest.java │ │ │ │ │ ├── CompatibilityTest.java │ │ │ │ │ ├── FunctionalTest.java │ │ │ │ │ ├── KurentoClientBrowserTest.java │ │ │ │ │ ├── KurentoClientTest.java │ │ │ │ │ ├── KurentoTest.java │ │ │ │ │ ├── PerformanceTest.java │ │ │ │ │ ├── PlayerTest.java │ │ │ │ │ ├── QualityTest.java │ │ │ │ │ ├── ScalabilityTest.java │ │ │ │ │ ├── StabilityTest.java │ │ │ │ │ └── repository │ │ │ │ │ │ ├── RepositoryFunctionalTest.java │ │ │ │ │ │ └── RepositoryMongoTest.java │ │ │ │ │ ├── browser │ │ │ │ │ ├── Browser.java │ │ │ │ │ ├── BrowserEventListener.java │ │ │ │ │ ├── BrowserRunner.java │ │ │ │ │ ├── BrowserType.java │ │ │ │ │ ├── ConsoleLogLevel.java │ │ │ │ │ ├── DockerBrowserManager.java │ │ │ │ │ ├── FakeCam.java │ │ │ │ │ ├── SdpOfferProcessor.java │ │ │ │ │ ├── WebPage.java │ │ │ │ │ ├── WebPageType.java │ │ │ │ │ ├── WebRtcCandidateType.java │ │ │ │ │ ├── WebRtcChannel.java │ │ │ │ │ ├── WebRtcIpvMode.java │ │ │ │ │ ├── WebRtcMode.java │ │ │ │ │ └── WebRtcTestPage.java │ │ │ │ │ ├── config │ │ │ │ │ ├── AudioChannel.java │ │ │ │ │ ├── BrowserConfig.java │ │ │ │ │ ├── BrowserInstance.java │ │ │ │ │ ├── BrowserScope.java │ │ │ │ │ ├── Protocol.java │ │ │ │ │ ├── Retry.java │ │ │ │ │ ├── TestConfiguration.java │ │ │ │ │ ├── TestReport.java │ │ │ │ │ ├── TestScenario.java │ │ │ │ │ └── VideoFormat.java │ │ │ │ │ ├── docker │ │ │ │ │ ├── Docker.java │ │ │ │ │ ├── FirstObjectResultCallback.java │ │ │ │ │ └── TransportMode.java │ │ │ │ │ ├── grid │ │ │ │ │ ├── GridHandler.java │ │ │ │ │ ├── GridHub.java │ │ │ │ │ ├── GridNode.java │ │ │ │ │ └── ParallelBrowsers.java │ │ │ │ │ ├── internal │ │ │ │ │ ├── AbortableCountDownLatch.java │ │ │ │ │ ├── CheckNodes.java │ │ │ │ │ ├── GetNodeList.java │ │ │ │ │ ├── KillActiveProcesses.java │ │ │ │ │ ├── KillAllProcesses.java │ │ │ │ │ ├── KillProcesses.java │ │ │ │ │ └── StartHub.java │ │ │ │ │ ├── latency │ │ │ │ │ ├── ChangeColorEvent.java │ │ │ │ │ ├── ChangeColorEventListener.java │ │ │ │ │ ├── ChangeColorObservable.java │ │ │ │ │ ├── ChartWriter.java │ │ │ │ │ ├── ColorTrigger.java │ │ │ │ │ ├── LatencyController.java │ │ │ │ │ ├── LatencyException.java │ │ │ │ │ ├── LatencyRegistry.java │ │ │ │ │ ├── VideoTag.java │ │ │ │ │ └── VideoTagType.java │ │ │ │ │ ├── lifecycle │ │ │ │ │ ├── FailedTest.java │ │ │ │ │ ├── FinishedTest.java │ │ │ │ │ ├── FinishedTestClass.java │ │ │ │ │ ├── KurentoBlockJUnit4ClassRunnerWithParameters.java │ │ │ │ │ ├── KurentoBlockJUnit4ClassRunnerWithParametersFactory.java │ │ │ │ │ ├── KurentoRunNotifier.java │ │ │ │ │ ├── KurentoTestListener.java │ │ │ │ │ ├── KurentoTestRunner.java │ │ │ │ │ ├── KurentoTestWatcher.java │ │ │ │ │ ├── StartedTest.java │ │ │ │ │ ├── StartedTestClass.java │ │ │ │ │ └── SucceededTest.java │ │ │ │ │ ├── mediainfo │ │ │ │ │ ├── AssertMedia.java │ │ │ │ │ ├── MediaInfo.java │ │ │ │ │ └── MediaInfoLibrary.java │ │ │ │ │ ├── monitor │ │ │ │ │ ├── KmsDockerMonitor.java │ │ │ │ │ ├── KmsLocalMonitor.java │ │ │ │ │ ├── KmsMonitor.java │ │ │ │ │ ├── KmsSystemInfo.java │ │ │ │ │ ├── MonitorSample.java │ │ │ │ │ ├── MonitorSampleRegistrer.java │ │ │ │ │ ├── MonitorStats.java │ │ │ │ │ ├── NetInfo.java │ │ │ │ │ ├── PeerConnectionStats.java │ │ │ │ │ ├── SystemMonitorManager.java │ │ │ │ │ ├── WebRtcClient.java │ │ │ │ │ ├── WebRtcEndpointStats.java │ │ │ │ │ └── WebRtcStats.java │ │ │ │ │ ├── sdp │ │ │ │ │ └── SdpUtils.java │ │ │ │ │ ├── services │ │ │ │ │ ├── FakeKmsService.java │ │ │ │ │ ├── KmsService.java │ │ │ │ │ ├── Service.java │ │ │ │ │ ├── TestService.java │ │ │ │ │ └── WebServerService.java │ │ │ │ │ └── utils │ │ │ │ │ ├── CheckAudioTimerTask.java │ │ │ │ │ ├── EventWaiter.java │ │ │ │ │ ├── Ffmpeg.java │ │ │ │ │ ├── JMeterClient.java │ │ │ │ │ ├── Randomizer.java │ │ │ │ │ ├── Shell.java │ │ │ │ │ ├── SshConnection.java │ │ │ │ │ ├── ValueEventWaiter.java │ │ │ │ │ └── WebRtcConnector.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── default.conf.json │ │ │ │ ├── keystore.jks │ │ │ │ ├── log4j.properties │ │ │ │ ├── logback.xml │ │ │ │ ├── node-list.txt │ │ │ │ ├── static │ │ │ │ ├── img │ │ │ │ │ ├── html5.png │ │ │ │ │ ├── spinner.gif │ │ │ │ │ ├── transparent-1px.png │ │ │ │ │ └── webrtc.png │ │ │ │ ├── lib │ │ │ │ │ ├── Console.js │ │ │ │ │ ├── kurento-test.js │ │ │ │ │ ├── kurento-test.min.js │ │ │ │ │ └── webrtc.js │ │ │ │ ├── player.html │ │ │ │ └── webrtc.html │ │ │ │ └── templates │ │ │ │ ├── kurento.conf.json.ftl │ │ │ │ ├── kurento.sh.ftl │ │ │ │ └── launch-node.sh.ftl │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── kurento │ │ │ │ └── test │ │ │ │ ├── BrowserLogTest.java │ │ │ │ ├── docker │ │ │ │ └── DockerTest.java │ │ │ │ ├── functional │ │ │ │ ├── agnostic │ │ │ │ │ └── AgnosticRtpEndpointToWebRtcWithFfmpegTest.java │ │ │ │ ├── alphablending │ │ │ │ │ ├── AlphaBlendingPlayerTest.java │ │ │ │ │ └── AlphaBlendingWebRtcTest.java │ │ │ │ ├── composite │ │ │ │ │ ├── CompositeAudioRecorderTest.java │ │ │ │ │ ├── CompositePlayerTest.java │ │ │ │ │ ├── CompositeRecorderTest.java │ │ │ │ │ ├── CompositeWebRtcRecorderTest.java │ │ │ │ │ ├── CompositeWebRtcTest.java │ │ │ │ │ └── CompositeWebRtcUsersTest.java │ │ │ │ ├── data │ │ │ │ │ └── EventTagTest.java │ │ │ │ ├── datachannels │ │ │ │ │ └── DatachannelsB2BTest.java │ │ │ │ ├── dispatcher │ │ │ │ │ ├── DispatcherPlayerTest.java │ │ │ │ │ └── DispatcherWebRtcTest.java │ │ │ │ ├── dispatcheronetomany │ │ │ │ │ ├── DispatcherOneToManyPlayerTest.java │ │ │ │ │ └── DispatcherOneToManyWebRtcTest.java │ │ │ │ ├── ice │ │ │ │ │ ├── IceIpv4BrowserRelayKmsDnatSeleniumDnatTest.java │ │ │ │ │ ├── IceIpv4HostKmsBridgeSeleniumBridgeTest.java │ │ │ │ │ ├── IceIpv4KmsRelayKmsDnatSeleniumDnatTest.java │ │ │ │ │ ├── IceIpv4ReflexiveKmsBridgeSeleniumDnatTest.java │ │ │ │ │ ├── IceIpv4ReflexiveKmsDnatSeleniumBridgeTest.java │ │ │ │ │ ├── IceIpv4ReflexiveKmsDnatSeleniumDnatTest.java │ │ │ │ │ ├── IceIpv6HostKmsBridgeSeleniumBridgeTest.java │ │ │ │ │ └── SimpleIceTest.java │ │ │ │ ├── player │ │ │ │ │ ├── FunctionalPlayerTest.java │ │ │ │ │ ├── PlayerAudioVideoTrackPauseTest.java │ │ │ │ │ ├── PlayerAudioVideoTrackSeekTest.java │ │ │ │ │ ├── PlayerEndTest.java │ │ │ │ │ ├── PlayerFaceOverlayTest.java │ │ │ │ │ ├── PlayerOnlyAudioTrackPauseTest.java │ │ │ │ │ ├── PlayerOnlyAudioTrackSeekTest.java │ │ │ │ │ ├── PlayerOnlyAudioTrackTest.java │ │ │ │ │ ├── PlayerOnlyVideoTrackPauseTest.java │ │ │ │ │ ├── PlayerOnlyVideoTrackSeekTest.java │ │ │ │ │ ├── PlayerOnlyVideoTrackTest.java │ │ │ │ │ ├── PlayerSwitchTest.java │ │ │ │ │ ├── PlayerWebRtcTest.java │ │ │ │ │ ├── PlayerZBarTest.java │ │ │ │ │ └── SimplePlayer.java │ │ │ │ ├── recorder │ │ │ │ │ ├── BaseRecorder.java │ │ │ │ │ ├── RecorderFaceOverlayTest.java │ │ │ │ │ ├── RecorderMultiSlashesDirectoryTest.java │ │ │ │ │ ├── RecorderNonExistingDirectoryTest.java │ │ │ │ │ ├── RecorderPipelineDestroyTest.java │ │ │ │ │ ├── RecorderPlayerDisconnectTest.java │ │ │ │ │ ├── RecorderPlayerTest.java │ │ │ │ │ ├── RecorderStopTest.java │ │ │ │ │ ├── RecorderSwitchPlayerTest.java │ │ │ │ │ ├── RecorderSwitchPlayerWebRtcTest.java │ │ │ │ │ ├── RecorderSwitchPlayerWithPassThroughTest.java │ │ │ │ │ ├── RecorderSwitchWebRtcWebRtcAndPlayerTest.java │ │ │ │ │ ├── RecorderSwitchWebRtcWebRtcPlayerWithPassThroughTest.java │ │ │ │ │ ├── RecorderSwitchWebrtcTest.java │ │ │ │ │ ├── RecorderWebRtcDisconnectTest.java │ │ │ │ │ └── RecorderWebRtcTest.java │ │ │ │ ├── repository │ │ │ │ │ └── RepositoryRecorderTest.java │ │ │ │ └── webrtc │ │ │ │ │ ├── WebRtcFakeMediaTest.java │ │ │ │ │ ├── WebRtcFourOneToManyTest.java │ │ │ │ │ ├── WebRtcOneFaceOverlayTest.java │ │ │ │ │ ├── WebRtcOneLoopbackTest.java │ │ │ │ │ ├── WebRtcOneToOneTest.java │ │ │ │ │ └── WebRtcThreeSwitchTest.java │ │ │ │ ├── longstability │ │ │ │ ├── LongStabilityCheckMemoryTest.java │ │ │ │ └── LongStabilityRecorderS3Test.java │ │ │ │ ├── metatest │ │ │ │ ├── BrowserCreationTest.java │ │ │ │ ├── MetaTest1Test.java │ │ │ │ ├── MetaTest2Test.java │ │ │ │ └── MetaTestMountedVolumeTest.java │ │ │ │ ├── performance │ │ │ │ ├── kms │ │ │ │ │ └── KmsPerformanceTest.java │ │ │ │ └── webrtc │ │ │ │ │ ├── WebRtcPerformanceLoopbackTest.java │ │ │ │ │ └── WebRtcPerformanceOneToManyTest.java │ │ │ │ ├── quality │ │ │ │ └── webrtc │ │ │ │ │ └── WebRtcQualityLoopbackTest.java │ │ │ │ ├── scalability │ │ │ │ └── webrtc │ │ │ │ │ └── WebRtcScalabilityLatencyTest.java │ │ │ │ └── stability │ │ │ │ ├── pipeline │ │ │ │ ├── BasePipeline.java │ │ │ │ ├── PipelineStabilityConnectDisconnectPassthroughChainedTest.java │ │ │ │ ├── PipelineStabilityConnectDisconnectPassthroughOneToManyTest.java │ │ │ │ ├── PipelineStabilityConnectDisconnectWebRtcAndPassthroughChainedLoopbackTest.java │ │ │ │ ├── PipelineStabilityConnectDisconnectWebRtcAndPassthroughChainedTest.java │ │ │ │ ├── PipelineStabilityConnectDisconnectWebRtcAndPassthroughOneToManyParallelTest.java │ │ │ │ ├── PipelineStabilityConnectDisconnectWebRtcAndPassthroughOneToManyTest.java │ │ │ │ ├── PipelineStabilityCreateDestroyPipelinesTest.java │ │ │ │ ├── PipelineStabilityCreateDestroyWebRtcAndEstablishConnectionTest.java │ │ │ │ ├── PipelineStabilityCreateDestroyWebRtcGenerateAndProcessOfferTest.java │ │ │ │ ├── PipelineStabilityCreateDestroyWebRtcGenerateOfferTest.java │ │ │ │ ├── PipelineStabilityCreateDestroyWebRtcGenerateProcessOfferAndAnswerTest.java │ │ │ │ └── PipelineStabilityCreateDestroyWebRtcTest.java │ │ │ │ ├── player │ │ │ │ ├── PlayerMultipleAudioVideoTrackSeekTest.java │ │ │ │ ├── PlayerMultipleOnlyAudioTrackSeekTest.java │ │ │ │ ├── PlayerMultipleOnlyVideoTrackSeekTest.java │ │ │ │ ├── PlayerMultiplePauseTest.java │ │ │ │ ├── PlayerMultiplePlayTest.java │ │ │ │ └── PlayerWithFilterAndWebRtcTest.java │ │ │ │ ├── recorder │ │ │ │ ├── RecorderPlayerOneToManyTest.java │ │ │ │ ├── RecorderPlayerSwitchSequentialTest.java │ │ │ │ ├── RecorderThreeWebRtcSimultaneous.java │ │ │ │ ├── RecorderWebRtcAudioVideoAndWebRtcOnlyAudioSimultaneous.java │ │ │ │ ├── RecorderWebRtcLongFileTest.java │ │ │ │ ├── RecorderWebRtcOneToManyTest.java │ │ │ │ ├── RecorderWebRtcShortFileTest.java │ │ │ │ └── RecorderWebRtcSwitchSequentialTest.java │ │ │ │ └── webrtc │ │ │ │ ├── WebRtcStabilityBack2BackTest.java │ │ │ │ ├── WebRtcStabilityLoopbackTest.java │ │ │ │ ├── WebRtcStabilityRtpH264Test.java │ │ │ │ ├── WebRtcStabilitySwitchRtpH264Test.java │ │ │ │ └── WebRtcStabilitySwitchTest.java │ │ │ └── resources │ │ │ └── jmeter │ │ │ ├── bin │ │ │ ├── jmeter-results-detail.xsl │ │ │ ├── jmeter.properties │ │ │ ├── saveservice.properties │ │ │ └── upgrade.properties │ │ │ └── player.jmx.ftl │ ├── pom.xml │ └── sanity-test │ │ ├── README.md │ │ ├── keystore.jks │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── resources │ │ │ ├── static │ │ │ └── index.html │ │ │ └── templates │ │ │ └── kurento-client.html.ftl │ │ └── test │ │ └── java │ │ └── org │ │ └── kurento │ │ └── test │ │ └── sanity │ │ ├── KurentoJsBase.java │ │ ├── KurentoJsBowerTest.java │ │ ├── KurentoJsReleaseTest.java │ │ └── PipelineTest.java └── tutorial │ ├── .gitignore │ ├── README.md │ ├── bin │ └── set-versions.sh │ ├── chroma-test │ ├── README.md │ ├── keystore.jks │ ├── pom.xml │ └── src │ │ └── test │ │ └── java │ │ └── org │ │ └── kurento │ │ └── tutorial │ │ └── chroma │ │ └── test │ │ └── ChromaIT.java │ ├── crowddetector-test │ ├── README.md │ ├── keystore.jks │ ├── pom.xml │ └── src │ │ └── test │ │ └── java │ │ └── org │ │ └── kurento │ │ └── tutorial │ │ └── crowddetector │ │ └── test │ │ └── CrowdDetectorIT.java │ ├── hello-world-test │ ├── README.md │ ├── keystore.jks │ ├── pom.xml │ └── src │ │ └── test │ │ └── java │ │ └── org │ │ └── kurento │ │ └── tutorial │ │ └── helloworld │ │ └── test │ │ └── HelloWorldIT.java │ ├── magic-mirror-test │ ├── README.md │ ├── keystore.jks │ ├── pom.xml │ └── src │ │ └── test │ │ └── java │ │ └── org │ │ └── kurento │ │ └── tutorial │ │ └── magicmirror │ │ └── test │ │ └── MagicMirrorIT.java │ ├── one2many-call-test │ ├── README.md │ ├── keystore.jks │ ├── pom.xml │ └── src │ │ └── test │ │ └── java │ │ └── org │ │ └── kurento │ │ └── tutorial │ │ └── one2manycall │ │ └── test │ │ └── One2ManyCallIT.java │ ├── one2one-call-advanced-test │ ├── README.md │ ├── keystore.jks │ ├── pom.xml │ └── src │ │ └── test │ │ └── java │ │ └── org │ │ └── kurento │ │ └── tutorial │ │ └── one2onecalladv │ │ └── test │ │ └── One2OneCallAdvIT.java │ ├── one2one-call-test │ ├── README.md │ ├── keystore.jks │ ├── pom.xml │ └── src │ │ └── test │ │ └── java │ │ └── org │ │ └── kurento │ │ └── tutorial │ │ └── one2onecall │ │ └── test │ │ └── One2OneCallIT.java │ ├── platedetector-test │ ├── README.md │ ├── keystore.jks │ ├── pom.xml │ └── src │ │ └── test │ │ └── java │ │ └── org │ │ └── kurento │ │ └── tutorial │ │ └── platedetector │ │ └── test │ │ └── PlateDetectorIT.java │ ├── pointerdetector-test │ ├── README.md │ ├── keystore.jks │ ├── pom.xml │ └── src │ │ └── test │ │ └── java │ │ └── org │ │ └── kurento │ │ └── tutorial │ │ └── pointerdetector │ │ └── test │ │ └── PointerDetectorIT.java │ └── pom.xml └── tutorials ├── java ├── .gitignore ├── README.md ├── bin │ └── set-versions.sh ├── chroma │ ├── .bowerrc │ ├── README.md │ ├── package │ │ ├── bin │ │ │ ├── install.sh │ │ │ └── start.sh │ │ └── support-files │ │ │ └── kurento-demo.sh │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── bin.xml │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── kurento │ │ │ └── tutorial │ │ │ └── chroma │ │ │ ├── ChromaApp.java │ │ │ ├── ChromaHandler.java │ │ │ └── UserSession.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── keystore.jks │ │ └── static │ │ ├── css │ │ └── kurento.css │ │ ├── img │ │ ├── kurento.png │ │ ├── mario.jpg │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ │ ├── index.html │ │ └── js │ │ ├── console.js │ │ └── index.js ├── crowddetector │ ├── .bowerrc │ ├── README.md │ ├── package │ │ └── support-files │ │ │ └── kurento-demo.sh │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── bin.xml │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── kurento │ │ │ ├── demo │ │ │ ├── ConfigurationReader.java │ │ │ ├── CrowdDetectorApp.java │ │ │ ├── CrowdDetectorHandler.java │ │ │ ├── CrowdDetectorOrionPublisher.java │ │ │ └── Pipeline.java │ │ │ └── orion │ │ │ ├── OrionConnector.java │ │ │ ├── OrionConnectorConfiguration.java │ │ │ ├── OrionConnectorException.java │ │ │ └── entities │ │ │ ├── AbstractOrionResponse.java │ │ │ ├── ContextUpdate.java │ │ │ ├── ContextUpdateResponse.java │ │ │ ├── OrionAttribute.java │ │ │ ├── OrionContextElement.java │ │ │ ├── OrionContextElementResponse.java │ │ │ ├── OrionResponse.java │ │ │ ├── QueryContext.java │ │ │ ├── QueryContextResponse.java │ │ │ └── StatusCode.java │ │ └── resources │ │ ├── application.properties │ │ ├── config │ │ └── configuration.conf.json │ │ ├── keystore.jks │ │ └── static │ │ ├── css │ │ └── kurento.css │ │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ │ ├── index.html │ │ └── js │ │ ├── console.js │ │ └── index.js ├── datachannel-send-qr │ ├── .bowerrc │ ├── README.md │ ├── package │ │ ├── bin │ │ │ ├── install.sh │ │ │ └── start.sh │ │ └── support-files │ │ │ └── kurento-demo.sh │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── bin.xml │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── kurento │ │ │ └── tutorial │ │ │ └── senddatachannel │ │ │ ├── SendDataChannelApp.java │ │ │ ├── SendDataChannelHandler.java │ │ │ └── UserSession.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── keystore.jks │ │ └── static │ │ ├── css │ │ └── kurento.css │ │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ │ ├── index.html │ │ └── js │ │ └── index.js ├── datachannel-show-text │ ├── .bowerrc │ ├── README.md │ ├── package │ │ ├── bin │ │ │ ├── install.sh │ │ │ └── start.sh │ │ └── support-files │ │ │ └── kurento-demo.sh │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── bin.xml │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── kurento │ │ │ └── tutorial │ │ │ └── showdatachannel │ │ │ ├── ShowDataChannelApp.java │ │ │ ├── ShowDataChannelHandler.java │ │ │ └── UserSession.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── keystore.jks │ │ └── static │ │ ├── css │ │ └── kurento.css │ │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ │ ├── index.html │ │ └── js │ │ └── index.js ├── facedetector │ ├── .bowerrc │ ├── README.md │ ├── package │ │ ├── bin │ │ │ ├── install.sh │ │ │ └── start.sh │ │ └── support-files │ │ │ └── kurento-demo.sh │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── bin.xml │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── kurento │ │ │ └── tutorial │ │ │ └── metadata │ │ │ ├── MetadataApp.java │ │ │ ├── MetadataHandler.java │ │ │ └── UserSession.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── keystore.jks │ │ └── static │ │ ├── css │ │ └── kurento.css │ │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ │ ├── index.html │ │ └── js │ │ └── index.js ├── group-call │ ├── .bowerrc │ ├── README.md │ ├── package │ │ ├── bin │ │ │ ├── install.sh │ │ │ └── start.sh │ │ └── support-files │ │ │ └── kurento-demo.sh │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── bin.xml │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── kurento │ │ │ └── tutorial │ │ │ └── groupcall │ │ │ ├── CallHandler.java │ │ │ ├── GroupCallApp.java │ │ │ ├── Room.java │ │ │ ├── RoomManager.java │ │ │ ├── UserRegistry.java │ │ │ └── UserSession.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── keystore.jks │ │ └── static │ │ ├── index.html │ │ ├── js │ │ ├── conferenceroom.js │ │ └── participant.js │ │ └── style.css ├── hello-world-recording │ ├── .bowerrc │ ├── README.md │ ├── package │ │ ├── bin │ │ │ ├── install.sh │ │ │ └── start.sh │ │ └── support-files │ │ │ └── kurento-demo.sh │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── bin.xml │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── kurento │ │ │ └── tutorial │ │ │ └── helloworld │ │ │ ├── HelloWorldRecApp.java │ │ │ ├── HelloWorldRecHandler.java │ │ │ ├── UserRegistry.java │ │ │ └── UserSession.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── keystore.jks │ │ └── static │ │ ├── css │ │ └── kurento.css │ │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipelines.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ │ ├── index.html │ │ └── js │ │ └── index.js ├── hello-world │ ├── .bowerrc │ ├── README.md │ ├── package │ │ ├── bin │ │ │ ├── install.sh │ │ │ └── start.sh │ │ └── support-files │ │ │ └── kurento-demo.sh │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── bin.xml │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── kurento │ │ │ └── tutorial │ │ │ └── helloworld │ │ │ ├── HelloWorldApp.java │ │ │ ├── HelloWorldHandler.java │ │ │ └── UserSession.java │ │ ├── resources-filtered │ │ ├── application.properties │ │ └── banner.txt │ │ └── resources │ │ ├── keystore.jks │ │ └── static │ │ ├── css │ │ └── kurento.css │ │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ │ ├── index.html │ │ └── js │ │ └── index.js ├── magic-mirror │ ├── .bowerrc │ ├── README.md │ ├── package │ │ ├── bin │ │ │ ├── install.sh │ │ │ └── start.sh │ │ └── support-files │ │ │ └── kurento-demo.sh │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── bin.xml │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── kurento │ │ │ └── tutorial │ │ │ └── magicmirror │ │ │ ├── MagicMirrorApp.java │ │ │ ├── MagicMirrorHandler.java │ │ │ └── UserSession.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── keystore.jks │ │ └── static │ │ ├── css │ │ └── kurento.css │ │ ├── img │ │ ├── kurento.png │ │ ├── mario-wings.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ │ ├── index.html │ │ └── js │ │ └── index.js ├── one2many-call │ ├── .bowerrc │ ├── README.md │ ├── package │ │ ├── bin │ │ │ ├── install.sh │ │ │ └── start.sh │ │ └── support-files │ │ │ └── kurento-demo.sh │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── bin.xml │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── kurento │ │ │ └── tutorial │ │ │ └── one2manycall │ │ │ ├── CallHandler.java │ │ │ ├── One2ManyCallApp.java │ │ │ └── UserSession.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── keystore.jks │ │ └── static │ │ ├── css │ │ └── kurento.css │ │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ │ ├── index.html │ │ └── js │ │ └── index.js ├── one2one-call-advanced │ ├── .bowerrc │ ├── README.md │ ├── package │ │ ├── bin │ │ │ ├── install.sh │ │ │ └── start.sh │ │ └── support-files │ │ │ └── kurento-demo.sh │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── bin.xml │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── kurento │ │ │ └── tutorial │ │ │ └── one2onecalladv │ │ │ ├── CallHandler.java │ │ │ ├── CallMediaPipeline.java │ │ │ ├── One2OneCallAdvApp.java │ │ │ ├── PlayMediaPipeline.java │ │ │ ├── UserRegistry.java │ │ │ └── UserSession.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── keystore.jks │ │ └── static │ │ ├── css │ │ └── kurento.css │ │ ├── img │ │ ├── Hat.png │ │ ├── kurento.png │ │ ├── mario-wings.png │ │ ├── naevatec.png │ │ ├── pipeline1.png │ │ ├── pipeline2.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ │ ├── index.html │ │ └── js │ │ └── index.js ├── one2one-call-recording │ ├── .bowerrc │ ├── README.md │ ├── package │ │ ├── bin │ │ │ ├── install.sh │ │ │ └── start.sh │ │ └── support-files │ │ │ └── kurento-demo.sh │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── bin.xml │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── kurento │ │ │ └── tutorial │ │ │ └── one2onecallrec │ │ │ ├── CallHandler.java │ │ │ ├── CallMediaPipeline.java │ │ │ ├── One2OneCallRecApp.java │ │ │ ├── PlayMediaPipeline.java │ │ │ ├── UserRegistry.java │ │ │ └── UserSession.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── keystore.jks │ │ └── static │ │ ├── css │ │ └── kurento.css │ │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline1.png │ │ ├── pipeline2.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ │ ├── index.html │ │ └── js │ │ └── index.js ├── one2one-call │ ├── .bowerrc │ ├── README.md │ ├── package │ │ ├── bin │ │ │ ├── install.sh │ │ │ └── start.sh │ │ └── support-files │ │ │ └── kurento-demo.sh │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── bin.xml │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── kurento │ │ │ └── tutorial │ │ │ └── one2onecall │ │ │ ├── CallHandler.java │ │ │ ├── CallMediaPipeline.java │ │ │ ├── One2OneCallApp.java │ │ │ ├── UserRegistry.java │ │ │ └── UserSession.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── keystore.jks │ │ └── static │ │ ├── css │ │ └── kurento.css │ │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ │ ├── index.html │ │ └── js │ │ └── index.js ├── platedetector │ ├── .bowerrc │ ├── README.md │ ├── package │ │ ├── bin │ │ │ ├── install.sh │ │ │ └── start.sh │ │ └── support-files │ │ │ └── kurento-demo.sh │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── bin.xml │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── kurento │ │ │ └── tutorial │ │ │ └── platedetector │ │ │ ├── PlateDetectorApp.java │ │ │ ├── PlateDetectorHandler.java │ │ │ └── UserSession.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── keystore.jks │ │ └── static │ │ ├── css │ │ └── kurento.css │ │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ │ ├── index.html │ │ └── js │ │ ├── console.js │ │ └── index.js ├── player │ ├── .bowerrc │ ├── README.md │ ├── package │ │ ├── bin │ │ │ ├── install.sh │ │ │ └── start.sh │ │ └── support-files │ │ │ └── kurento-demo.sh │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── bin.xml │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── kurento │ │ │ └── tutorial │ │ │ └── player │ │ │ ├── PlayerApp.java │ │ │ ├── PlayerHandler.java │ │ │ └── UserSession.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── keystore.jks │ │ └── static │ │ ├── css │ │ └── kurento.css │ │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ │ ├── index.html │ │ └── js │ │ └── index.js ├── pointerdetector │ ├── .bowerrc │ ├── README.md │ ├── package │ │ ├── bin │ │ │ ├── install.sh │ │ │ └── start.sh │ │ └── support-files │ │ │ └── kurento-demo.sh │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── bin.xml │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── kurento │ │ │ └── tutorial │ │ │ └── pointerdetector │ │ │ ├── PointerDetectorApp.java │ │ │ ├── PointerDetectorHandler.java │ │ │ └── UserSession.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── keystore.jks │ │ └── static │ │ ├── css │ │ └── kurento.css │ │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ │ ├── index.html │ │ └── js │ │ ├── console.js │ │ └── index.js ├── pom.xml └── rtp-receiver │ ├── .bowerrc │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ ├── assembly │ └── bin.xml │ ├── main │ ├── java │ │ └── org │ │ │ └── kurento │ │ │ └── tutorial │ │ │ └── rtpreceiver │ │ │ ├── Application.java │ │ │ ├── Handler.java │ │ │ └── UserSession.java │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── keystore.jks │ │ └── static │ │ ├── css │ │ └── kurento.css │ │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ │ ├── index.html │ │ └── js │ │ └── index.js │ └── package │ ├── bin │ ├── install.sh │ └── start.sh │ └── support-files │ └── kurento-demo.sh ├── javascript-browser ├── .gitignore ├── README.md ├── bin │ └── set-versions.sh ├── chroma │ ├── README.md │ ├── bower.json │ ├── css │ │ └── kurento.css │ ├── img │ │ ├── kurento.png │ │ ├── mario.jpg │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ ├── index.html │ ├── js │ │ └── index.js │ └── keys │ │ ├── README.md │ │ ├── server.crt │ │ ├── server.csr │ │ └── server.key ├── crowddetector │ ├── README.md │ ├── bower.json │ ├── css │ │ └── kurento.css │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ ├── index.html │ ├── js │ │ └── index.js │ └── keys │ │ ├── README.md │ │ ├── server.crt │ │ ├── server.csr │ │ └── server.key ├── hello-world-data-channel │ ├── README.md │ ├── bower.json │ ├── css │ │ └── kurento.css │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ ├── index.html │ ├── js │ │ ├── console.js │ │ └── index.js │ └── keys │ │ ├── README.md │ │ ├── server.crt │ │ ├── server.csr │ │ └── server.key ├── hello-world-recorder-generator │ ├── README.md │ ├── bower.json │ ├── css │ │ └── kurento.css │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ ├── index.html │ ├── js │ │ └── index.js │ └── keys │ │ ├── README.md │ │ ├── server.crt │ │ ├── server.csr │ │ └── server.key ├── hello-world │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── css │ │ └── kurento.css │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ ├── index.html │ ├── js │ │ └── index.js │ └── keys │ │ ├── README.md │ │ ├── server.crt │ │ ├── server.csr │ │ └── server.key ├── loopback-stats │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── css │ │ └── kurento.css │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ ├── index.html │ ├── js │ │ └── index.js │ └── keys │ │ ├── README.md │ │ ├── server.crt │ │ ├── server.csr │ │ └── server.key ├── magic-mirror │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── css │ │ └── kurento.css │ ├── img │ │ ├── kurento.png │ │ ├── mario-wings.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ ├── index.html │ ├── js │ │ └── index.js │ ├── keys │ │ ├── README.md │ │ ├── server.crt │ │ ├── server.csr │ │ └── server.key │ └── npm-debug.log ├── platedetector │ ├── README.md │ ├── bower.json │ ├── css │ │ └── kurento.css │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ ├── index.html │ ├── js │ │ └── index.js │ └── keys │ │ ├── README.md │ │ ├── server.crt │ │ ├── server.csr │ │ └── server.key ├── pointerdetector │ ├── README.md │ ├── bower.json │ ├── css │ │ └── kurento.css │ ├── img │ │ ├── kurento.png │ │ ├── naevatec.png │ │ ├── pipeline.png │ │ ├── spinner.gif │ │ ├── transparent-1px.png │ │ ├── urjc.gif │ │ └── webrtc.png │ ├── index.html │ ├── js │ │ └── index.js │ └── keys │ │ ├── README.md │ │ ├── server.crt │ │ ├── server.csr │ │ └── server.key └── recorder │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── css │ └── kurento.css │ ├── img │ ├── kurento.png │ ├── naevatec.png │ ├── pipeline.png │ ├── spinner.gif │ ├── transparent-1px.png │ ├── urjc.gif │ └── webrtc.png │ ├── index.html │ ├── js │ └── index.js │ └── keys │ ├── README.md │ ├── server.crt │ ├── server.csr │ └── server.key └── javascript-node ├── .gitignore ├── README.md ├── bin └── set-versions.sh ├── chroma ├── README.md ├── keys │ ├── README.md │ ├── server.crt │ ├── server.csr │ └── server.key ├── package.json ├── server.js └── static │ ├── bower.json │ ├── css │ └── kurento.css │ ├── img │ ├── kurento.png │ ├── mario.jpg │ ├── naevatec.png │ ├── pipeline.png │ ├── spinner.gif │ ├── transparent-1px.png │ ├── urjc.gif │ └── webrtc.png │ ├── index.html │ └── js │ └── index.js ├── crowddetector ├── README.md ├── keys │ ├── README.md │ ├── server.crt │ ├── server.csr │ └── server.key ├── package.json ├── server.js └── static │ ├── bower.json │ ├── css │ └── kurento.css │ ├── img │ ├── kurento.png │ ├── naevatec.png │ ├── pipeline.png │ ├── spinner.gif │ ├── transparent-1px.png │ ├── urjc.gif │ └── webrtc.png │ ├── index.html │ └── js │ └── index.js ├── hello-world ├── README.md ├── keys │ ├── README.md │ ├── server.crt │ ├── server.csr │ └── server.key ├── package.json ├── server.js └── static │ ├── bower.json │ ├── css │ └── kurento.css │ ├── img │ ├── kurento.png │ ├── naevatec.png │ ├── pipeline.png │ ├── spinner.gif │ ├── transparent-1px.png │ ├── urjc.gif │ └── webrtc.png │ ├── index.html │ └── js │ └── index.js ├── magic-mirror ├── README.md ├── keys │ ├── README.md │ ├── server.crt │ ├── server.csr │ └── server.key ├── package.json ├── server.js └── static │ ├── bower.json │ ├── css │ └── kurento.css │ ├── img │ ├── kurento.png │ ├── mario-wings.png │ ├── naevatec.png │ ├── pipeline.png │ ├── spinner.gif │ ├── transparent-1px.png │ ├── urjc.gif │ └── webrtc.png │ ├── index.html │ └── js │ └── index.js ├── module-tests-api ├── package.json ├── scripts │ └── test └── test │ ├── ChromaFilter.js │ ├── CrowdDetector.js │ ├── PlateDetector.js │ ├── PointerDetector.js │ ├── _common.js │ └── readme.md ├── one2many-call ├── README.md ├── keys │ ├── README.md │ ├── server.crt │ ├── server.csr │ └── server.key ├── package.json ├── server.js └── static │ ├── bower.json │ ├── css │ └── kurento.css │ ├── img │ ├── kurento.png │ ├── naevatec.png │ ├── pipeline.png │ ├── spinner.gif │ ├── transparent-1px.png │ ├── urjc.gif │ └── webrtc.png │ ├── index.html │ └── js │ └── index.js ├── one2one-call ├── README.md ├── keys │ ├── README.md │ ├── server.crt │ ├── server.csr │ └── server.key ├── package.json ├── server.js └── static │ ├── bower.json │ ├── css │ └── kurento.css │ ├── img │ ├── kurento.png │ ├── naevatec.png │ ├── pipeline.png │ ├── spinner.gif │ ├── transparent-1px.png │ ├── urjc.gif │ └── webrtc.png │ ├── index.html │ └── js │ └── index.js ├── platedetector ├── README.md ├── keys │ ├── README.md │ ├── server.crt │ ├── server.csr │ └── server.key ├── package.json ├── server.js └── static │ ├── bower.json │ ├── css │ └── kurento.css │ ├── img │ ├── kurento.png │ ├── naevatec.png │ ├── pipeline.png │ ├── spinner.gif │ ├── transparent-1px.png │ ├── urjc.gif │ └── webrtc.png │ ├── index.html │ └── js │ └── index.js └── pointerdetector ├── README.md ├── keys ├── README.md ├── server.crt ├── server.csr └── server.key ├── package.json ├── server.js └── static ├── bower.json ├── css └── kurento.css ├── img ├── kurento.png ├── naevatec.png ├── pipeline.png ├── spinner.gif ├── transparent-1px.png ├── urjc.gif └── webrtc.png ├── index.html └── js └── index.js /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/repo_cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.devcontainer/repo_cfg -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/fiware/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/fiware/config.json -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/000-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/workflows/000-template.yaml -------------------------------------------------------------------------------- /.github/workflows/001-playground.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/workflows/001-playground.yaml -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/clients-java.child.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/workflows/clients-java.child.yaml -------------------------------------------------------------------------------- /.github/workflows/clients-java.parent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/workflows/clients-java.parent.yaml -------------------------------------------------------------------------------- /.github/workflows/clients-javascript.child.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/workflows/clients-javascript.child.yaml -------------------------------------------------------------------------------- /.github/workflows/clients-javascript.parent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/workflows/clients-javascript.parent.yaml -------------------------------------------------------------------------------- /.github/workflows/disabled/new-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/workflows/disabled/new-issue.yml -------------------------------------------------------------------------------- /.github/workflows/doc-kurento.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/workflows/doc-kurento.yaml -------------------------------------------------------------------------------- /.github/workflows/docker-kurento-buildpackage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/workflows/docker-kurento-buildpackage.yaml -------------------------------------------------------------------------------- /.github/workflows/docker-kurento-ci-buildtools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/workflows/docker-kurento-ci-buildtools.yaml -------------------------------------------------------------------------------- /.github/workflows/docker-rust-buildpackage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/workflows/docker-rust-buildpackage.yaml -------------------------------------------------------------------------------- /.github/workflows/server-buildpackage.child.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/workflows/server-buildpackage.child.yaml -------------------------------------------------------------------------------- /.github/workflows/server-deploy-aws.child.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/workflows/server-deploy-aws.child.yaml -------------------------------------------------------------------------------- /.github/workflows/server-deploy-debian.child.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/workflows/server-deploy-debian.child.yaml -------------------------------------------------------------------------------- /.github/workflows/server-deploy-docker.child.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/workflows/server-deploy-docker.child.yaml -------------------------------------------------------------------------------- /.github/workflows/server.parent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.github/workflows/server.parent.yaml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/README.md -------------------------------------------------------------------------------- /browser/kurento-utils-js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/browser/kurento-utils-js/.gitignore -------------------------------------------------------------------------------- /browser/kurento-utils-js/.jsdoc.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/browser/kurento-utils-js/.jsdoc.conf.js -------------------------------------------------------------------------------- /browser/kurento-utils-js/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/browser/kurento-utils-js/Gruntfile.js -------------------------------------------------------------------------------- /browser/kurento-utils-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/browser/kurento-utils-js/README.md -------------------------------------------------------------------------------- /browser/kurento-utils-js/README_bower.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/browser/kurento-utils-js/README_bower.md -------------------------------------------------------------------------------- /browser/kurento-utils-js/bin/set-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/browser/kurento-utils-js/bin/set-versions.sh -------------------------------------------------------------------------------- /browser/kurento-utils-js/lib/WebRtcPeer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/browser/kurento-utils-js/lib/WebRtcPeer.js -------------------------------------------------------------------------------- /browser/kurento-utils-js/lib/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/browser/kurento-utils-js/lib/browser.js -------------------------------------------------------------------------------- /browser/kurento-utils-js/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/browser/kurento-utils-js/lib/index.js -------------------------------------------------------------------------------- /browser/kurento-utils-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/browser/kurento-utils-js/package.json -------------------------------------------------------------------------------- /browser/kurento-utils-js/scripts/coveralls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/browser/kurento-utils-js/scripts/coveralls -------------------------------------------------------------------------------- /browser/kurento-utils-js/scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/browser/kurento-utils-js/scripts/test -------------------------------------------------------------------------------- /browser/kurento-utils-js/test/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /browser/kurento-utils-js/test/WebRtcPeer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/browser/kurento-utils-js/test/WebRtcPeer.js -------------------------------------------------------------------------------- /browser/kurento-utils-js/test/_common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/browser/kurento-utils-js/test/_common.js -------------------------------------------------------------------------------- /browser/kurento-utils-js/test/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/browser/kurento-utils-js/test/bower.json -------------------------------------------------------------------------------- /browser/kurento-utils-js/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/browser/kurento-utils-js/test/index.html -------------------------------------------------------------------------------- /ci-scripts/AWS/KMS-Coturn-cfn.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/AWS/KMS-Coturn-cfn.yaml.template -------------------------------------------------------------------------------- /ci-scripts/AWS/cfn-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/AWS/cfn-setup.sh -------------------------------------------------------------------------------- /ci-scripts/README.d/scripts-dependencies.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/README.d/scripts-dependencies.dot -------------------------------------------------------------------------------- /ci-scripts/README.d/scripts-dependencies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/README.d/scripts-dependencies.svg -------------------------------------------------------------------------------- /ci-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/README.md -------------------------------------------------------------------------------- /ci-scripts/bash.conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/bash.conf.sh -------------------------------------------------------------------------------- /ci-scripts/check_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/check_version.sh -------------------------------------------------------------------------------- /ci-scripts/ci_aptly_repo_publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/ci_aptly_repo_publish.sh -------------------------------------------------------------------------------- /ci-scripts/ci_github_runner_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/ci_github_runner_cleanup.sh -------------------------------------------------------------------------------- /ci-scripts/ci_github_runner_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/ci_github_runner_setup.sh -------------------------------------------------------------------------------- /ci-scripts/ci_job_deploy_aws_cf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/ci_job_deploy_aws_cf.sh -------------------------------------------------------------------------------- /ci-scripts/ci_job_deploy_debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/ci_job_deploy_debian.sh -------------------------------------------------------------------------------- /ci-scripts/ci_job_deploy_debian_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/ci_job_deploy_debian_test.sh -------------------------------------------------------------------------------- /ci-scripts/ci_job_deploy_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/ci_job_deploy_doc.sh -------------------------------------------------------------------------------- /ci-scripts/ci_job_deploy_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/ci_job_deploy_docker.sh -------------------------------------------------------------------------------- /ci-scripts/ci_job_deploy_docker_asan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/ci_job_deploy_docker_asan.sh -------------------------------------------------------------------------------- /ci-scripts/ci_job_deploy_java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/ci_job_deploy_java.sh -------------------------------------------------------------------------------- /ci-scripts/ci_job_deploy_js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/ci_job_deploy_js.sh -------------------------------------------------------------------------------- /ci-scripts/ci_job_generate_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/ci_job_generate_module.sh -------------------------------------------------------------------------------- /ci-scripts/ci_job_package_debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/ci_job_package_debian.sh -------------------------------------------------------------------------------- /ci-scripts/ci_job_package_gst_rust_debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/ci_job_package_gst_rust_debian.sh -------------------------------------------------------------------------------- /ci-scripts/clone_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/clone_repo.sh -------------------------------------------------------------------------------- /ci-scripts/container_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/container_build.sh -------------------------------------------------------------------------------- /ci-scripts/deploy_js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/deploy_js.sh -------------------------------------------------------------------------------- /ci-scripts/deploy_js_bower.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/deploy_js_bower.sh -------------------------------------------------------------------------------- /ci-scripts/deploy_js_http.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/deploy_js_http.sh -------------------------------------------------------------------------------- /ci-scripts/deploy_js_npm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/deploy_js_npm.sh -------------------------------------------------------------------------------- /ci-scripts/doc_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/doc_deploy.sh -------------------------------------------------------------------------------- /ci-scripts/generate_java_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/generate_java_module.sh -------------------------------------------------------------------------------- /ci-scripts/generate_js_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/generate_js_module.sh -------------------------------------------------------------------------------- /ci-scripts/get_name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/get_name.sh -------------------------------------------------------------------------------- /ci-scripts/get_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/get_version.sh -------------------------------------------------------------------------------- /ci-scripts/git_checkout_name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/git_checkout_name.sh -------------------------------------------------------------------------------- /ci-scripts/git_default_branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/git_default_branch.sh -------------------------------------------------------------------------------- /ci-scripts/install_build_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/install_build_deps.sh -------------------------------------------------------------------------------- /ci-scripts/install_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/install_server.sh -------------------------------------------------------------------------------- /ci-scripts/kurento-buildpackage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/kurento-buildpackage.sh -------------------------------------------------------------------------------- /ci-scripts/maven_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/maven_deploy.sh -------------------------------------------------------------------------------- /ci-scripts/maven_deploy_github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/maven_deploy_github.sh -------------------------------------------------------------------------------- /ci-scripts/mavenize_js_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/mavenize_js_project.sh -------------------------------------------------------------------------------- /ci-scripts/parse_yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/parse_yaml.sh -------------------------------------------------------------------------------- /ci-scripts/rust-buildpackage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/rust-buildpackage.sh -------------------------------------------------------------------------------- /ci-scripts/update_test_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/ci-scripts/update_test_files.sh -------------------------------------------------------------------------------- /clients/java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/.gitignore -------------------------------------------------------------------------------- /clients/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/README.md -------------------------------------------------------------------------------- /clients/java/bin/set-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/bin/set-versions.sh -------------------------------------------------------------------------------- /clients/java/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/client/README.md -------------------------------------------------------------------------------- /clients/java/client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/client/pom.xml -------------------------------------------------------------------------------- /clients/java/client/src/main/kmd/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clients/java/client/src/test/resources/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/client/src/test/resources/config.json -------------------------------------------------------------------------------- /clients/java/client/src/test/resources/invalid-config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clients/java/commons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/commons/README.md -------------------------------------------------------------------------------- /clients/java/commons/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/commons/pom.xml -------------------------------------------------------------------------------- /clients/java/jsonrpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/jsonrpc/README.md -------------------------------------------------------------------------------- /clients/java/jsonrpc/jsonrpc-client-jetty/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/jsonrpc/jsonrpc-client-jetty/pom.xml -------------------------------------------------------------------------------- /clients/java/jsonrpc/jsonrpc-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/jsonrpc/jsonrpc-client/README.md -------------------------------------------------------------------------------- /clients/java/jsonrpc/jsonrpc-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/jsonrpc/jsonrpc-client/pom.xml -------------------------------------------------------------------------------- /clients/java/jsonrpc/jsonrpc-demo-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/jsonrpc/jsonrpc-demo-server/README.md -------------------------------------------------------------------------------- /clients/java/jsonrpc/jsonrpc-demo-server/package/config/kjrserver.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /clients/java/jsonrpc/jsonrpc-demo-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/jsonrpc/jsonrpc-demo-server/pom.xml -------------------------------------------------------------------------------- /clients/java/jsonrpc/jsonrpc-demo-server/src/main/resources/kjrserver.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /clients/java/jsonrpc/jsonrpc-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/jsonrpc/jsonrpc-server/README.md -------------------------------------------------------------------------------- /clients/java/jsonrpc/jsonrpc-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/jsonrpc/jsonrpc-server/pom.xml -------------------------------------------------------------------------------- /clients/java/jsonrpc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/jsonrpc/pom.xml -------------------------------------------------------------------------------- /clients/java/maven-plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/maven-plugin/.gitignore -------------------------------------------------------------------------------- /clients/java/maven-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/maven-plugin/README.md -------------------------------------------------------------------------------- /clients/java/maven-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/maven-plugin/pom.xml -------------------------------------------------------------------------------- /clients/java/maven-settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/maven-settings/README.md -------------------------------------------------------------------------------- /clients/java/maven-settings/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/maven-settings/settings.xml -------------------------------------------------------------------------------- /clients/java/parent-pom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/parent-pom/README.md -------------------------------------------------------------------------------- /clients/java/parent-pom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/parent-pom/pom.xml -------------------------------------------------------------------------------- /clients/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/pom.xml -------------------------------------------------------------------------------- /clients/java/qa-pom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/qa-pom/.gitignore -------------------------------------------------------------------------------- /clients/java/qa-pom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/qa-pom/README.md -------------------------------------------------------------------------------- /clients/java/qa-pom/bin/set-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/qa-pom/bin/set-versions.sh -------------------------------------------------------------------------------- /clients/java/qa-pom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/qa-pom/pom.xml -------------------------------------------------------------------------------- /clients/java/qa-pom/qa-config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/java/qa-pom/qa-config/pom.xml -------------------------------------------------------------------------------- /clients/javascript/bin/set-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/bin/set-versions.sh -------------------------------------------------------------------------------- /clients/javascript/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/.gitignore -------------------------------------------------------------------------------- /clients/javascript/client/.jsdoc.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/.jsdoc.conf.js -------------------------------------------------------------------------------- /clients/javascript/client/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/.npmignore -------------------------------------------------------------------------------- /clients/javascript/client/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/Gruntfile.js -------------------------------------------------------------------------------- /clients/javascript/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/README.md -------------------------------------------------------------------------------- /clients/javascript/client/README_bower.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/README_bower.md -------------------------------------------------------------------------------- /clients/javascript/client/doc/.gitignore: -------------------------------------------------------------------------------- 1 | /jsdoc 2 | -------------------------------------------------------------------------------- /clients/javascript/client/doc/JsonRPC messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/doc/JsonRPC messages.md -------------------------------------------------------------------------------- /clients/javascript/client/doc/endpoints.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/doc/endpoints.dia -------------------------------------------------------------------------------- /clients/javascript/client/doc/filters.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/doc/filters.dia -------------------------------------------------------------------------------- /clients/javascript/client/doc/hubs.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/doc/hubs.dia -------------------------------------------------------------------------------- /clients/javascript/client/doc/runtime.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/doc/runtime.dia -------------------------------------------------------------------------------- /clients/javascript/client/lib/KurentoClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/lib/KurentoClient.js -------------------------------------------------------------------------------- /clients/javascript/client/lib/MediaObjectCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/lib/MediaObjectCreator.js -------------------------------------------------------------------------------- /clients/javascript/client/lib/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/lib/browser.js -------------------------------------------------------------------------------- /clients/javascript/client/lib/checkType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/lib/checkType.js -------------------------------------------------------------------------------- /clients/javascript/client/lib/createPromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/lib/createPromise.js -------------------------------------------------------------------------------- /clients/javascript/client/lib/disguise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/lib/disguise.js -------------------------------------------------------------------------------- /clients/javascript/client/lib/errorToJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/lib/errorToJson.js -------------------------------------------------------------------------------- /clients/javascript/client/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/lib/index.js -------------------------------------------------------------------------------- /clients/javascript/client/lib/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/lib/register.js -------------------------------------------------------------------------------- /clients/javascript/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/package.json -------------------------------------------------------------------------------- /clients/javascript/client/scripts/coveralls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/scripts/coveralls -------------------------------------------------------------------------------- /clients/javascript/client/scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/scripts/test -------------------------------------------------------------------------------- /clients/javascript/client/scripts/testBrowser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/scripts/testBrowser -------------------------------------------------------------------------------- /clients/javascript/client/scripts/testReconnect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/scripts/testReconnect -------------------------------------------------------------------------------- /clients/javascript/client/test/ServerManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/test/ServerManager.js -------------------------------------------------------------------------------- /clients/javascript/client/test/_common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/test/_common.js -------------------------------------------------------------------------------- /clients/javascript/client/test/_proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/test/_proxy.js -------------------------------------------------------------------------------- /clients/javascript/client/test/core/MediaElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/test/core/MediaElement.js -------------------------------------------------------------------------------- /clients/javascript/client/test/core/MediaObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/test/core/MediaObject.js -------------------------------------------------------------------------------- /clients/javascript/client/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/test/index.html -------------------------------------------------------------------------------- /clients/javascript/client/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/test/readme.md -------------------------------------------------------------------------------- /clients/javascript/client/test/reconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/test/reconnect.js -------------------------------------------------------------------------------- /clients/javascript/client/test/waiting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/test/waiting.js -------------------------------------------------------------------------------- /clients/javascript/client/test_reconnect/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/client/test_reconnect/index.js -------------------------------------------------------------------------------- /clients/javascript/jsonrpc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/jsonrpc/.gitignore -------------------------------------------------------------------------------- /clients/javascript/jsonrpc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/jsonrpc/.project -------------------------------------------------------------------------------- /clients/javascript/jsonrpc/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/jsonrpc/Gruntfile.js -------------------------------------------------------------------------------- /clients/javascript/jsonrpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/jsonrpc/README.md -------------------------------------------------------------------------------- /clients/javascript/jsonrpc/README_bower.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/jsonrpc/README_bower.md -------------------------------------------------------------------------------- /clients/javascript/jsonrpc/lib/Mapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/jsonrpc/lib/Mapper.js -------------------------------------------------------------------------------- /clients/javascript/jsonrpc/lib/clients/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/jsonrpc/lib/clients/index.js -------------------------------------------------------------------------------- /clients/javascript/jsonrpc/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/jsonrpc/lib/index.js -------------------------------------------------------------------------------- /clients/javascript/jsonrpc/lib/packers/JsonRPC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/jsonrpc/lib/packers/JsonRPC.js -------------------------------------------------------------------------------- /clients/javascript/jsonrpc/lib/packers/XmlRPC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/jsonrpc/lib/packers/XmlRPC.js -------------------------------------------------------------------------------- /clients/javascript/jsonrpc/lib/packers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/jsonrpc/lib/packers/index.js -------------------------------------------------------------------------------- /clients/javascript/jsonrpc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/jsonrpc/package.json -------------------------------------------------------------------------------- /clients/javascript/jsonrpc/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/jsonrpc/test/index.js -------------------------------------------------------------------------------- /clients/javascript/jsonrpc/testBrowser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/jsonrpc/testBrowser/index.html -------------------------------------------------------------------------------- /clients/javascript/jsonrpc/testBrowser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/clients/javascript/jsonrpc/testBrowser/index.js -------------------------------------------------------------------------------- /doc-kurento/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/.gitignore -------------------------------------------------------------------------------- /doc-kurento/.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/.readthedocs.yaml -------------------------------------------------------------------------------- /doc-kurento/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/Makefile -------------------------------------------------------------------------------- /doc-kurento/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/README.md -------------------------------------------------------------------------------- /doc-kurento/VERSIONS.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/VERSIONS.env -------------------------------------------------------------------------------- /doc-kurento/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/configure.sh -------------------------------------------------------------------------------- /doc-kurento/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/requirements.txt -------------------------------------------------------------------------------- /doc-kurento/source/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/.gitignore -------------------------------------------------------------------------------- /doc-kurento/source/_extra/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/_extra/robots.txt -------------------------------------------------------------------------------- /doc-kurento/source/_static/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/_static/README.txt -------------------------------------------------------------------------------- /doc-kurento/source/_templates/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/_templates/breadcrumbs.html -------------------------------------------------------------------------------- /doc-kurento/source/_templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/_templates/footer.html -------------------------------------------------------------------------------- /doc-kurento/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/_templates/layout.html -------------------------------------------------------------------------------- /doc-kurento/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/conf.py -------------------------------------------------------------------------------- /doc-kurento/source/dev/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/dev/architecture.rst -------------------------------------------------------------------------------- /doc-kurento/source/dev/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/dev/changelog.rst -------------------------------------------------------------------------------- /doc-kurento/source/dev/ci.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/dev/ci.rst -------------------------------------------------------------------------------- /doc-kurento/source/dev/dev_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/dev/dev_guide.rst -------------------------------------------------------------------------------- /doc-kurento/source/dev/hardening.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/dev/hardening.rst -------------------------------------------------------------------------------- /doc-kurento/source/dev/release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/dev/release.rst -------------------------------------------------------------------------------- /doc-kurento/source/dev/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/dev/testing.rst -------------------------------------------------------------------------------- /doc-kurento/source/dev/writing_documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/dev/writing_documentation.rst -------------------------------------------------------------------------------- /doc-kurento/source/extensions/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/extensions/README.txt -------------------------------------------------------------------------------- /doc-kurento/source/features/events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/features/events.rst -------------------------------------------------------------------------------- /doc-kurento/source/features/kurento_client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/features/kurento_client.rst -------------------------------------------------------------------------------- /doc-kurento/source/features/kurento_modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/features/kurento_modules.rst -------------------------------------------------------------------------------- /doc-kurento/source/features/kurento_protocol.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/features/kurento_protocol.rst -------------------------------------------------------------------------------- /doc-kurento/source/features/kurento_utils_js.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/features/kurento_utils_js.rst -------------------------------------------------------------------------------- /doc-kurento/source/features/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/features/logging.rst -------------------------------------------------------------------------------- /doc-kurento/source/features/nat_traversal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/features/nat_traversal.rst -------------------------------------------------------------------------------- /doc-kurento/source/features/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/features/security.rst -------------------------------------------------------------------------------- /doc-kurento/source/features/statistics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/features/statistics.rst -------------------------------------------------------------------------------- /doc-kurento/source/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/glossary.rst -------------------------------------------------------------------------------- /doc-kurento/source/images/AgnosticMediaAdaptor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/AgnosticMediaAdaptor.png -------------------------------------------------------------------------------- /doc-kurento/source/images/Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/Architecture.png -------------------------------------------------------------------------------- /doc-kurento/source/images/Consuming_the_APIs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/Consuming_the_APIs.png -------------------------------------------------------------------------------- /doc-kurento/source/images/Generic_interactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/Generic_interactions.png -------------------------------------------------------------------------------- /doc-kurento/source/images/Onion_like_APIs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/Onion_like_APIs.png -------------------------------------------------------------------------------- /doc-kurento/source/images/Player_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/Player_session.png -------------------------------------------------------------------------------- /doc-kurento/source/images/RTC_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/RTC_session.png -------------------------------------------------------------------------------- /doc-kurento/source/images/RTC_session_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/RTC_session_pipeline.png -------------------------------------------------------------------------------- /doc-kurento/source/images/Recorder_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/Recorder_session.png -------------------------------------------------------------------------------- /doc-kurento/source/images/Stream-oriented_GE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/Stream-oriented_GE.png -------------------------------------------------------------------------------- /doc-kurento/source/images/digraphs/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/digraphs/HelloWorld.png -------------------------------------------------------------------------------- /doc-kurento/source/images/digraphs/MagicMirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/digraphs/MagicMirror.png -------------------------------------------------------------------------------- /doc-kurento/source/images/digraphs/One2Many.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/digraphs/One2Many.png -------------------------------------------------------------------------------- /doc-kurento/source/images/digraphs/One2OneCall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/digraphs/One2OneCall.png -------------------------------------------------------------------------------- /doc-kurento/source/images/faq-stun-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/faq-stun-1.png -------------------------------------------------------------------------------- /doc-kurento/source/images/faq-stun-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/faq-stun-2.png -------------------------------------------------------------------------------- /doc-kurento/source/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/favicon.ico -------------------------------------------------------------------------------- /doc-kurento/source/images/graphs/endpoints.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/graphs/endpoints.dot -------------------------------------------------------------------------------- /doc-kurento/source/images/graphs/filters.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/graphs/filters.dot -------------------------------------------------------------------------------- /doc-kurento/source/images/graphs/hubs.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/graphs/hubs.dot -------------------------------------------------------------------------------- /doc-kurento/source/images/graphs/mediaobjects.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/graphs/mediaobjects.dot -------------------------------------------------------------------------------- /doc-kurento/source/images/ktf-class-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/ktf-class-diagram.png -------------------------------------------------------------------------------- /doc-kurento/source/images/kurento-modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/kurento-modules.png -------------------------------------------------------------------------------- /doc-kurento/source/images/kurento-rect-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/kurento-rect-logo.png -------------------------------------------------------------------------------- /doc-kurento/source/images/kurento-rect-logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/kurento-rect-logo2.png -------------------------------------------------------------------------------- /doc-kurento/source/images/kurento-rect-logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/kurento-rect-logo3.png -------------------------------------------------------------------------------- /doc-kurento/source/images/kurento-stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/kurento-stats.png -------------------------------------------------------------------------------- /doc-kurento/source/images/kurento-test-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/kurento-test-report.png -------------------------------------------------------------------------------- /doc-kurento/source/images/kurento-toolbox-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/kurento-toolbox-basic.png -------------------------------------------------------------------------------- /doc-kurento/source/images/kurento-toolbox-extra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/kurento-toolbox-extra.png -------------------------------------------------------------------------------- /doc-kurento/source/images/kurento-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/kurento-white.png -------------------------------------------------------------------------------- /doc-kurento/source/images/media-server-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/media-server-intro.png -------------------------------------------------------------------------------- /doc-kurento/source/images/packet-loss-green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/packet-loss-green.jpg -------------------------------------------------------------------------------- /doc-kurento/source/images/toolbox/Composite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/toolbox/Composite.png -------------------------------------------------------------------------------- /doc-kurento/source/images/toolbox/Dispatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/toolbox/Dispatcher.png -------------------------------------------------------------------------------- /doc-kurento/source/images/toolbox/RtpEndpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/toolbox/RtpEndpoint.png -------------------------------------------------------------------------------- /doc-kurento/source/images/toolbox/ZBarFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/images/toolbox/ZBarFilter.png -------------------------------------------------------------------------------- /doc-kurento/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/index.rst -------------------------------------------------------------------------------- /doc-kurento/source/knowledge/browser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/knowledge/browser.rst -------------------------------------------------------------------------------- /doc-kurento/source/knowledge/congestion_rmcat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/knowledge/congestion_rmcat.rst -------------------------------------------------------------------------------- /doc-kurento/source/knowledge/h264.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/knowledge/h264.rst -------------------------------------------------------------------------------- /doc-kurento/source/knowledge/mp4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/knowledge/mp4.rst -------------------------------------------------------------------------------- /doc-kurento/source/knowledge/nat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/knowledge/nat.rst -------------------------------------------------------------------------------- /doc-kurento/source/knowledge/rtp_streaming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/knowledge/rtp_streaming.rst -------------------------------------------------------------------------------- /doc-kurento/source/knowledge/safari.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/knowledge/safari.rst -------------------------------------------------------------------------------- /doc-kurento/source/knowledge/selfsigned_certs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/knowledge/selfsigned_certs.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/conduct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/conduct.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/contributing.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/opensource.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/opensource.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/7.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/7.0.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/7.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/7.1.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/7.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/7.2.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/7.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/7.3.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/7.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/7.4.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/index.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/v6_10_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/v6_10_0.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/v6_11_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/v6_11_0.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/v6_12_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/v6_12_0.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/v6_13_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/v6_13_0.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/v6_13_2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/v6_13_2.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/v6_14_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/v6_14_0.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/v6_15_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/v6_15_0.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/v6_16_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/v6_16_0.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/v6_17_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/v6_17_0.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/v6_18_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/v6_18_0.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/v6_7_2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/v6_7_2.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/v6_8_1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/v6_8_1.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/relnotes/v6_9_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/relnotes/v6_9_0.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/sponsors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/sponsors.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/story.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/story.rst -------------------------------------------------------------------------------- /doc-kurento/source/project/team.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/project/team.rst -------------------------------------------------------------------------------- /doc-kurento/source/user/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/user/configuration.rst -------------------------------------------------------------------------------- /doc-kurento/source/user/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/user/faq.rst -------------------------------------------------------------------------------- /doc-kurento/source/user/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/user/installation.rst -------------------------------------------------------------------------------- /doc-kurento/source/user/installation_dev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/user/installation_dev.rst -------------------------------------------------------------------------------- /doc-kurento/source/user/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/user/intro.rst -------------------------------------------------------------------------------- /doc-kurento/source/user/openvidu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/user/openvidu.rst -------------------------------------------------------------------------------- /doc-kurento/source/user/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/user/quickstart.rst -------------------------------------------------------------------------------- /doc-kurento/source/user/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/user/support.rst -------------------------------------------------------------------------------- /doc-kurento/source/user/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/user/troubleshooting.rst -------------------------------------------------------------------------------- /doc-kurento/source/user/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/user/tutorials.rst -------------------------------------------------------------------------------- /doc-kurento/source/user/writing_applications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/user/writing_applications.rst -------------------------------------------------------------------------------- /doc-kurento/source/user/writing_modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/doc-kurento/source/user/writing_modules.rst -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/coturn/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/coturn/Dockerfile -------------------------------------------------------------------------------- /docker/coturn/turnserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/coturn/turnserver.sh -------------------------------------------------------------------------------- /docker/coturn/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/coturn/version.yml -------------------------------------------------------------------------------- /docker/dev-documentation/jdk-7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/dev-documentation/jdk-7/Dockerfile -------------------------------------------------------------------------------- /docker/dev-documentation/jdk-7/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/dev-documentation/jdk-7/version.yml -------------------------------------------------------------------------------- /docker/dev-documentation/jdk-8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/dev-documentation/jdk-8/Dockerfile -------------------------------------------------------------------------------- /docker/dev-documentation/jdk-8/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/dev-documentation/jdk-8/version.yml -------------------------------------------------------------------------------- /docker/dev-integration-browser/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/dev-integration-browser/Dockerfile -------------------------------------------------------------------------------- /docker/dev-integration-browser/version.yml: -------------------------------------------------------------------------------- 1 | image: 2 | name: kurento/dev-integration-browser 3 | version: 3.14.0-node-$NODE_VERSION 4 | -------------------------------------------------------------------------------- /docker/dev-integration/jdk-25/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/dev-integration/jdk-25/Changelog -------------------------------------------------------------------------------- /docker/dev-integration/jdk-25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/dev-integration/jdk-25/Dockerfile -------------------------------------------------------------------------------- /docker/dev-integration/jdk-25/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/dev-integration/jdk-25/version.yml -------------------------------------------------------------------------------- /docker/dev-integration/jdk-7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/dev-integration/jdk-7/Dockerfile -------------------------------------------------------------------------------- /docker/dev-integration/jdk-7/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/dev-integration/jdk-7/version.yml -------------------------------------------------------------------------------- /docker/dev-integration/jdk-8/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/dev-integration/jdk-8/Changelog -------------------------------------------------------------------------------- /docker/dev-integration/jdk-8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/dev-integration/jdk-8/Dockerfile -------------------------------------------------------------------------------- /docker/dev-integration/jdk-8/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/dev-integration/jdk-8/version.yml -------------------------------------------------------------------------------- /docker/kurento-buildpackage/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-buildpackage/Changelog -------------------------------------------------------------------------------- /docker/kurento-buildpackage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-buildpackage/Dockerfile -------------------------------------------------------------------------------- /docker/kurento-buildpackage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-buildpackage/README.md -------------------------------------------------------------------------------- /docker/kurento-buildpackage/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-buildpackage/entrypoint.sh -------------------------------------------------------------------------------- /docker/kurento-buildpackage/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-buildpackage/version.yml -------------------------------------------------------------------------------- /docker/kurento-ci-buildtools/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-ci-buildtools/Changelog -------------------------------------------------------------------------------- /docker/kurento-ci-buildtools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-ci-buildtools/Dockerfile -------------------------------------------------------------------------------- /docker/kurento-ci-buildtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-ci-buildtools/README.md -------------------------------------------------------------------------------- /docker/kurento-ci-buildtools/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-ci-buildtools/version.yml -------------------------------------------------------------------------------- /docker/kurento-media-server-asan/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server-asan/Dockerfile -------------------------------------------------------------------------------- /docker/kurento-media-server-asan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server-asan/README.md -------------------------------------------------------------------------------- /docker/kurento-media-server-asan/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server-asan/build.sh -------------------------------------------------------------------------------- /docker/kurento-media-server-asan/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server-asan/entrypoint.sh -------------------------------------------------------------------------------- /docker/kurento-media-server-asan/getmyip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server-asan/getmyip.sh -------------------------------------------------------------------------------- /docker/kurento-media-server-asan/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server-asan/version.yml -------------------------------------------------------------------------------- /docker/kurento-media-server-extras/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server-extras/Dockerfile -------------------------------------------------------------------------------- /docker/kurento-media-server-extras/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server-extras/README.md -------------------------------------------------------------------------------- /docker/kurento-media-server-extras/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server-extras/version.yml -------------------------------------------------------------------------------- /docker/kurento-media-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server/Dockerfile -------------------------------------------------------------------------------- /docker/kurento-media-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server/README.md -------------------------------------------------------------------------------- /docker/kurento-media-server/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server/entrypoint.sh -------------------------------------------------------------------------------- /docker/kurento-media-server/getmyip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server/getmyip.sh -------------------------------------------------------------------------------- /docker/kurento-media-server/healthchecker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server/healthchecker.sh -------------------------------------------------------------------------------- /docker/kurento-media-server/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server/version.yml -------------------------------------------------------------------------------- /docker/kurento-media-server_local_image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server_local_image/Dockerfile -------------------------------------------------------------------------------- /docker/kurento-media-server_local_image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server_local_image/README.md -------------------------------------------------------------------------------- /docker/kurento-media-server_local_image/getmyip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server_local_image/getmyip.sh -------------------------------------------------------------------------------- /docker/kurento-media-server_local_image/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/kurento-media-server_local_image/version.yml -------------------------------------------------------------------------------- /docker/rust-buildpackage/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/rust-buildpackage/Changelog -------------------------------------------------------------------------------- /docker/rust-buildpackage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/rust-buildpackage/Dockerfile -------------------------------------------------------------------------------- /docker/rust-buildpackage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/rust-buildpackage/README.md -------------------------------------------------------------------------------- /docker/rust-buildpackage/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/rust-buildpackage/entrypoint.sh -------------------------------------------------------------------------------- /docker/rust-buildpackage/version.yml: -------------------------------------------------------------------------------- 1 | image: 2 | name: kurento/rust-buildpackage 3 | version: 1.0.0 4 | -------------------------------------------------------------------------------- /docker/svn-client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/svn-client/Dockerfile -------------------------------------------------------------------------------- /docker/svn-client/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/docker/svn-client/version.yml -------------------------------------------------------------------------------- /server/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/.clang-format -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/CMakeLists.txt -------------------------------------------------------------------------------- /server/bin/build-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/bin/build-run.sh -------------------------------------------------------------------------------- /server/bin/make-dev-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/bin/make-dev-container.sh -------------------------------------------------------------------------------- /server/bin/sanitizers/asan.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/bin/sanitizers/asan.supp -------------------------------------------------------------------------------- /server/bin/sanitizers/blacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/bin/sanitizers/blacklist.txt -------------------------------------------------------------------------------- /server/bin/sanitizers/tsan.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/bin/sanitizers/tsan.supp -------------------------------------------------------------------------------- /server/bin/set-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/bin/set-versions.sh -------------------------------------------------------------------------------- /server/bin/valgrind.conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/bin/valgrind.conf.sh -------------------------------------------------------------------------------- /server/bin/valgrind/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/bin/valgrind/README.txt -------------------------------------------------------------------------------- /server/cmake-utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/cmake-utils/CMakeLists.txt -------------------------------------------------------------------------------- /server/cmake-utils/FindKurentoUtils.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/cmake-utils/FindKurentoUtils.cmake.in -------------------------------------------------------------------------------- /server/cmake-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/cmake-utils/README.md -------------------------------------------------------------------------------- /server/cmake-utils/cmake/Kurento/GLibHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/cmake-utils/cmake/Kurento/GLibHelpers.cmake -------------------------------------------------------------------------------- /server/cmake-utils/cmake/Kurento/GenericFind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/cmake-utils/cmake/Kurento/GenericFind.cmake -------------------------------------------------------------------------------- /server/cmake-utils/cmake/Kurento/TestHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/cmake-utils/cmake/Kurento/TestHelpers.cmake -------------------------------------------------------------------------------- /server/cmake-utils/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/cmake-utils/debian/changelog -------------------------------------------------------------------------------- /server/cmake-utils/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/cmake-utils/debian/control -------------------------------------------------------------------------------- /server/cmake-utils/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/cmake-utils/debian/copyright -------------------------------------------------------------------------------- /server/cmake-utils/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /server/cmake-utils/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | #export DH_VERBOSE=1 4 | 5 | %: 6 | dh $@ 7 | -------------------------------------------------------------------------------- /server/cmake-utils/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /server/cmake-utils/test/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(version) 2 | -------------------------------------------------------------------------------- /server/cmake-utils/test/version/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/cmake-utils/test/version/CMakeLists.txt -------------------------------------------------------------------------------- /server/gst-plugins-rs/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/gst-plugins-rs/compile.sh -------------------------------------------------------------------------------- /server/gst-plugins-rs/debian.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/gst-plugins-rs/debian.diff -------------------------------------------------------------------------------- /server/jsonrpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/CMakeLists.txt -------------------------------------------------------------------------------- /server/jsonrpc/FindKmsJsonRpc.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/FindKmsJsonRpc.cmake.in -------------------------------------------------------------------------------- /server/jsonrpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/README.md -------------------------------------------------------------------------------- /server/jsonrpc/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/debian/changelog -------------------------------------------------------------------------------- /server/jsonrpc/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/debian/control -------------------------------------------------------------------------------- /server/jsonrpc/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/debian/copyright -------------------------------------------------------------------------------- /server/jsonrpc/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /server/jsonrpc/debian/kurento-jsonrpc-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/debian/kurento-jsonrpc-dev.install -------------------------------------------------------------------------------- /server/jsonrpc/debian/kurento-jsonrpc.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/debian/kurento-jsonrpc.install -------------------------------------------------------------------------------- /server/jsonrpc/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/debian/rules -------------------------------------------------------------------------------- /server/jsonrpc/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /server/jsonrpc/hooks/pre-commit.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/hooks/pre-commit.hook -------------------------------------------------------------------------------- /server/jsonrpc/libjsonrpc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/libjsonrpc.pc.in -------------------------------------------------------------------------------- /server/jsonrpc/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/src/CMakeLists.txt -------------------------------------------------------------------------------- /server/jsonrpc/src/JsonRpcClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/src/JsonRpcClient.cpp -------------------------------------------------------------------------------- /server/jsonrpc/src/JsonRpcHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/src/JsonRpcHandler.cpp -------------------------------------------------------------------------------- /server/jsonrpc/src/JsonRpcUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/src/JsonRpcUtils.cpp -------------------------------------------------------------------------------- /server/jsonrpc/src/jsonrpc/JsonRpcClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/src/jsonrpc/JsonRpcClient.hpp -------------------------------------------------------------------------------- /server/jsonrpc/src/jsonrpc/JsonRpcConstants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/src/jsonrpc/JsonRpcConstants.hpp -------------------------------------------------------------------------------- /server/jsonrpc/src/jsonrpc/JsonRpcException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/src/jsonrpc/JsonRpcException.hpp -------------------------------------------------------------------------------- /server/jsonrpc/src/jsonrpc/JsonRpcHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/src/jsonrpc/JsonRpcHandler.hpp -------------------------------------------------------------------------------- /server/jsonrpc/src/jsonrpc/JsonRpcUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/src/jsonrpc/JsonRpcUtils.hpp -------------------------------------------------------------------------------- /server/jsonrpc/src/jsonrpc/JsonSerializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/src/jsonrpc/JsonSerializer.hpp -------------------------------------------------------------------------------- /server/jsonrpc/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/tests/CMakeLists.txt -------------------------------------------------------------------------------- /server/jsonrpc/tests/TestRpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/tests/TestRpc.cpp -------------------------------------------------------------------------------- /server/jsonrpc/tests/TestSerialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/jsonrpc/tests/TestSerialize.cpp -------------------------------------------------------------------------------- /server/media-server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/CMakeLists.txt -------------------------------------------------------------------------------- /server/media-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/README.md -------------------------------------------------------------------------------- /server/media-server/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/config.h.cmake -------------------------------------------------------------------------------- /server/media-server/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/debian/changelog -------------------------------------------------------------------------------- /server/media-server/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/debian/control -------------------------------------------------------------------------------- /server/media-server/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/debian/copyright -------------------------------------------------------------------------------- /server/media-server/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /server/media-server/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/debian/rules -------------------------------------------------------------------------------- /server/media-server/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /server/media-server/hooks/pre-commit.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/hooks/pre-commit.hook -------------------------------------------------------------------------------- /server/media-server/kurento.conf.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/kurento.conf.info -------------------------------------------------------------------------------- /server/media-server/kurento.conf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/kurento.conf.ini -------------------------------------------------------------------------------- /server/media-server/kurento.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/kurento.conf.json -------------------------------------------------------------------------------- /server/media-server/scaffold/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/scaffold/CMakeLists.txt -------------------------------------------------------------------------------- /server/media-server/scaffold/CMakeLists_server.txt.template: -------------------------------------------------------------------------------- 1 | add_subdirectory(server) 2 | -------------------------------------------------------------------------------- /server/media-server/scaffold/CMakeLists_server_plugin.txt.template: -------------------------------------------------------------------------------- 1 | add_subdirectory(gst-plugins) 2 | -------------------------------------------------------------------------------- /server/media-server/scaffold/debian-rules.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/scaffold/debian-rules.template -------------------------------------------------------------------------------- /server/media-server/scaffold/gstplugin.c.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/scaffold/gstplugin.c.template -------------------------------------------------------------------------------- /server/media-server/scaffold/gstplugin.cpp.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/scaffold/gstplugin.cpp.template -------------------------------------------------------------------------------- /server/media-server/scaffold/gstplugin.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/scaffold/gstplugin.h.template -------------------------------------------------------------------------------- /server/media-server/sdp_pattern.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/sdp_pattern.txt -------------------------------------------------------------------------------- /server/media-server/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/CMakeLists.txt -------------------------------------------------------------------------------- /server/media-server/server/CacheEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/CacheEntry.cpp -------------------------------------------------------------------------------- /server/media-server/server/CacheEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/CacheEntry.hpp -------------------------------------------------------------------------------- /server/media-server/server/RequestCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/RequestCache.cpp -------------------------------------------------------------------------------- /server/media-server/server/RequestCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/RequestCache.hpp -------------------------------------------------------------------------------- /server/media-server/server/ResourceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/ResourceManager.cpp -------------------------------------------------------------------------------- /server/media-server/server/ResourceManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/ResourceManager.hpp -------------------------------------------------------------------------------- /server/media-server/server/ServerMethods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/ServerMethods.cpp -------------------------------------------------------------------------------- /server/media-server/server/ServerMethods.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/ServerMethods.hpp -------------------------------------------------------------------------------- /server/media-server/server/loadConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/loadConfig.cpp -------------------------------------------------------------------------------- /server/media-server/server/loadConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/loadConfig.hpp -------------------------------------------------------------------------------- /server/media-server/server/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/logging.cpp -------------------------------------------------------------------------------- /server/media-server/server/logging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/logging.hpp -------------------------------------------------------------------------------- /server/media-server/server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/main.cpp -------------------------------------------------------------------------------- /server/media-server/server/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/modules.cpp -------------------------------------------------------------------------------- /server/media-server/server/modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/modules.hpp -------------------------------------------------------------------------------- /server/media-server/server/transport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/transport/CMakeLists.txt -------------------------------------------------------------------------------- /server/media-server/server/transport/Processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/transport/Processor.hpp -------------------------------------------------------------------------------- /server/media-server/server/transport/Transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/transport/Transport.hpp -------------------------------------------------------------------------------- /server/media-server/server/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/version.cpp -------------------------------------------------------------------------------- /server/media-server/server/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/server/version.hpp -------------------------------------------------------------------------------- /server/media-server/test/BaseTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/test/BaseTest.cpp -------------------------------------------------------------------------------- /server/media-server/test/BaseTest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/test/BaseTest.hpp -------------------------------------------------------------------------------- /server/media-server/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/test/CMakeLists.txt -------------------------------------------------------------------------------- /server/media-server/test/config_read_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/test/config_read_test.cpp -------------------------------------------------------------------------------- /server/media-server/test/registrar_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/test/registrar_test.cpp -------------------------------------------------------------------------------- /server/media-server/test/resources_limit_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/test/resources_limit_test.cpp -------------------------------------------------------------------------------- /server/media-server/test/server_events_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/test/server_events_test.cpp -------------------------------------------------------------------------------- /server/media-server/test/server_json_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/test/server_json_session.cpp -------------------------------------------------------------------------------- /server/media-server/test/server_json_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/test/server_json_test.cpp -------------------------------------------------------------------------------- /server/media-server/test/testCertificate.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/test/testCertificate.pem -------------------------------------------------------------------------------- /server/media-server/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/media-server/valgrind.supp -------------------------------------------------------------------------------- /server/module-core/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/AUTHORS -------------------------------------------------------------------------------- /server/module-core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-core/NEWS: -------------------------------------------------------------------------------- 1 | Nothing much yet. 2 | -------------------------------------------------------------------------------- /server/module-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/README.md -------------------------------------------------------------------------------- /server/module-core/cmake/Kurento/FindLibVpx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/cmake/Kurento/FindLibVpx.cmake -------------------------------------------------------------------------------- /server/module-core/cmake/Kurento/FindMaven.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/cmake/Kurento/FindMaven.cmake -------------------------------------------------------------------------------- /server/module-core/cmake/Kurento/FindNpm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/cmake/Kurento/FindNpm.cmake -------------------------------------------------------------------------------- /server/module-core/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/config.h.cmake -------------------------------------------------------------------------------- /server/module-core/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/debian/changelog -------------------------------------------------------------------------------- /server/module-core/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/debian/control -------------------------------------------------------------------------------- /server/module-core/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/debian/copyright -------------------------------------------------------------------------------- /server/module-core/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /server/module-core/debian/not-installed: -------------------------------------------------------------------------------- 1 | usr/lib/*/*.a 2 | -------------------------------------------------------------------------------- /server/module-core/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/debian/rules -------------------------------------------------------------------------------- /server/module-core/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /server/module-core/debian/upstream/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/debian/upstream/metadata -------------------------------------------------------------------------------- /server/module-core/hooks/pre-commit.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/hooks/pre-commit.hook -------------------------------------------------------------------------------- /server/module-core/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmsagnosticbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmsagnosticbin.c -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmsagnosticbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmsagnosticbin.h -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmsaudiomixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmsaudiomixer.c -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmsaudiomixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmsaudiomixer.h -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmscore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmscore.c -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmsdummyduplex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmsdummyduplex.c -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmsdummyduplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmsdummyduplex.h -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmsdummyrtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmsdummyrtp.c -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmsdummyrtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmsdummyrtp.h -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmsdummysdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmsdummysdp.c -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmsdummysdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmsdummysdp.h -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmsdummysink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmsdummysink.c -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmsdummysink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmsdummysink.h -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmsdummysrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmsdummysrc.c -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmsdummysrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmsdummysrc.h -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmsdummyuri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmsdummyuri.c -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmsdummyuri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmsdummyuri.h -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmspassthrough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmspassthrough.c -------------------------------------------------------------------------------- /server/module-core/src/gst-plugins/kmspassthrough.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/gst-plugins/kmspassthrough.h -------------------------------------------------------------------------------- /server/module-core/src/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/server/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-core/src/server/config/UriEndpoint.conf.ini: -------------------------------------------------------------------------------- 1 | defaultPath = file:///var/lib/kurento/ 2 | -------------------------------------------------------------------------------- /server/module-core/src/server/interface/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/src/server/interface/pom.xml -------------------------------------------------------------------------------- /server/module-core/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-core/tests/agnosticbintest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/agnosticbintest.py -------------------------------------------------------------------------------- /server/module-core/tests/check/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/check/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-core/tests/check/element/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/check/element/.gitignore -------------------------------------------------------------------------------- /server/module-core/tests/check/element/audiomixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/check/element/audiomixer.c -------------------------------------------------------------------------------- /server/module-core/tests/check/element/hubport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/check/element/hubport.c -------------------------------------------------------------------------------- /server/module-core/tests/check/element/lists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/check/element/lists.c -------------------------------------------------------------------------------- /server/module-core/tests/check/element/metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/check/element/metadata.c -------------------------------------------------------------------------------- /server/module-core/tests/check/element/sdp_agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/check/element/sdp_agent.c -------------------------------------------------------------------------------- /server/module-core/tests/check/general/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/check/general/.gitignore -------------------------------------------------------------------------------- /server/module-core/tests/check/general/basehub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/check/general/basehub.c -------------------------------------------------------------------------------- /server/module-core/tests/check/general/refcounts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/check/general/refcounts.c -------------------------------------------------------------------------------- /server/module-core/tests/check/general/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/check/general/utils.c -------------------------------------------------------------------------------- /server/module-core/tests/check/kmscheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/check/kmscheck.h -------------------------------------------------------------------------------- /server/module-core/tests/check/memory_leaks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/check/memory_leaks.sh -------------------------------------------------------------------------------- /server/module-core/tests/check/memory_leaks/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !*.c 3 | !.gitignore 4 | !*.txt 5 | -------------------------------------------------------------------------------- /server/module-core/tests/check/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/check/valgrind.supp -------------------------------------------------------------------------------- /server/module-core/tests/screensize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/screensize.py -------------------------------------------------------------------------------- /server/module-core/tests/sdp_pattern.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/sdp_pattern.txt -------------------------------------------------------------------------------- /server/module-core/tests/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/server/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-core/tests/server/complexType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/server/complexType.cpp -------------------------------------------------------------------------------- /server/module-core/tests/server/mediaElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/server/mediaElement.cpp -------------------------------------------------------------------------------- /server/module-core/tests/server/mediaObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/server/mediaObject.cpp -------------------------------------------------------------------------------- /server/module-core/tests/server/mediaSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/server/mediaSet.cpp -------------------------------------------------------------------------------- /server/module-core/tests/server/moduleManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/server/moduleManager.cpp -------------------------------------------------------------------------------- /server/module-core/tests/server/rtpEndpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/server/rtpEndpoint.cpp -------------------------------------------------------------------------------- /server/module-core/tests/server/sdpEndpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/server/sdpEndpoint.cpp -------------------------------------------------------------------------------- /server/module-core/tests/server/uriEndpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/server/uriEndpoint.cpp -------------------------------------------------------------------------------- /server/module-core/tests/server/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-core/tests/server/valgrind.supp -------------------------------------------------------------------------------- /server/module-creator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-creator/README.md -------------------------------------------------------------------------------- /server/module-creator/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-creator/debian/changelog -------------------------------------------------------------------------------- /server/module-creator/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-creator/debian/control -------------------------------------------------------------------------------- /server/module-creator/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-creator/debian/copyright -------------------------------------------------------------------------------- /server/module-creator/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-creator/debian/install -------------------------------------------------------------------------------- /server/module-creator/debian/maven.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-creator/debian/maven.rules -------------------------------------------------------------------------------- /server/module-creator/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-creator/debian/rules -------------------------------------------------------------------------------- /server/module-creator/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /server/module-creator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-creator/pom.xml -------------------------------------------------------------------------------- /server/module-creator/scripts/Manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-creator/scripts/Manifest.txt -------------------------------------------------------------------------------- /server/module-creator/src/test/java/simplelogger.properties: -------------------------------------------------------------------------------- 1 | org.slf4j.simpleLogger.defaultLogLevel=debug -------------------------------------------------------------------------------- /server/module-elements/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/AUTHORS -------------------------------------------------------------------------------- /server/module-elements/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-elements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/README.md -------------------------------------------------------------------------------- /server/module-elements/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/config.h.cmake -------------------------------------------------------------------------------- /server/module-elements/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/debian/changelog -------------------------------------------------------------------------------- /server/module-elements/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/debian/control -------------------------------------------------------------------------------- /server/module-elements/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/debian/copyright -------------------------------------------------------------------------------- /server/module-elements/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /server/module-elements/debian/not-installed: -------------------------------------------------------------------------------- 1 | usr/lib/*/*.a 2 | -------------------------------------------------------------------------------- /server/module-elements/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/debian/rules -------------------------------------------------------------------------------- /server/module-elements/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /server/module-elements/hooks/pre-commit.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/hooks/pre-commit.hook -------------------------------------------------------------------------------- /server/module-elements/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/src/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-elements/src/gst-plugins/rtcpdemux/kms-marshal.list: -------------------------------------------------------------------------------- 1 | UINT:UINT 2 | -------------------------------------------------------------------------------- /server/module-elements/src/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/src/server/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-elements/src/server/implementation/HttpServer/http-marshal.list: -------------------------------------------------------------------------------- 1 | # kms marshallers 2 | VOID:STRING,ENUM 3 | -------------------------------------------------------------------------------- /server/module-elements/src/server/interface/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/src/server/interface/pom.xml -------------------------------------------------------------------------------- /server/module-elements/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/tests/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-elements/tests/check/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/tests/check/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-elements/tests/check/element/dtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/tests/check/element/dtls.c -------------------------------------------------------------------------------- /server/module-elements/tests/check/element/srtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/tests/check/element/srtp.c -------------------------------------------------------------------------------- /server/module-elements/tests/check/kmscheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/tests/check/kmscheck.h -------------------------------------------------------------------------------- /server/module-elements/tests/check/kmstestutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/tests/check/kmstestutils.c -------------------------------------------------------------------------------- /server/module-elements/tests/check/kmstestutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/tests/check/kmstestutils.h -------------------------------------------------------------------------------- /server/module-elements/tests/check/memory_leaks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/tests/check/memory_leaks.sh -------------------------------------------------------------------------------- /server/module-elements/tests/check/memory_leaks/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !*.c 3 | !.gitignore 4 | !*.txt 5 | -------------------------------------------------------------------------------- /server/module-elements/tests/check/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/tests/check/valgrind.supp -------------------------------------------------------------------------------- /server/module-elements/tests/sdp_pattern.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/tests/sdp_pattern.txt -------------------------------------------------------------------------------- /server/module-elements/tests/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/tests/server/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-elements/tests/server/composite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/tests/server/composite.cpp -------------------------------------------------------------------------------- /server/module-elements/tests/server/rtpEndpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/tests/server/rtpEndpoint.cpp -------------------------------------------------------------------------------- /server/module-elements/tests/server/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-elements/tests/server/valgrind.supp -------------------------------------------------------------------------------- /server/module-examples/chroma/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/chroma/AUTHORS -------------------------------------------------------------------------------- /server/module-examples/chroma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/chroma/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-examples/chroma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/chroma/README.md -------------------------------------------------------------------------------- /server/module-examples/chroma/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/chroma/config.h.cmake -------------------------------------------------------------------------------- /server/module-examples/chroma/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/chroma/debian/changelog -------------------------------------------------------------------------------- /server/module-examples/chroma/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/chroma/debian/control -------------------------------------------------------------------------------- /server/module-examples/chroma/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/chroma/debian/copyright -------------------------------------------------------------------------------- /server/module-examples/chroma/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /server/module-examples/chroma/debian/not-installed: -------------------------------------------------------------------------------- 1 | usr/lib/*/*.a 2 | -------------------------------------------------------------------------------- /server/module-examples/chroma/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/chroma/debian/rules -------------------------------------------------------------------------------- /server/module-examples/chroma/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /server/module-examples/chroma/hooks/pre-commit.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/chroma/hooks/pre-commit.hook -------------------------------------------------------------------------------- /server/module-examples/chroma/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/chroma/src/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-examples/chroma/src/gst-plugins/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(chroma) 2 | -------------------------------------------------------------------------------- /server/module-examples/chroma/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/chroma/tests/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-examples/crowddetector/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/crowddetector/AUTHORS -------------------------------------------------------------------------------- /server/module-examples/crowddetector/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/crowddetector/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-examples/crowddetector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/crowddetector/README.md -------------------------------------------------------------------------------- /server/module-examples/crowddetector/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/crowddetector/config.h.cmake -------------------------------------------------------------------------------- /server/module-examples/crowddetector/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/crowddetector/debian/control -------------------------------------------------------------------------------- /server/module-examples/crowddetector/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /server/module-examples/crowddetector/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/crowddetector/debian/rules -------------------------------------------------------------------------------- /server/module-examples/crowddetector/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /server/module-examples/datachannelexample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/datachannelexample/README.md -------------------------------------------------------------------------------- /server/module-examples/datachannelexample/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /server/module-examples/datachannelexample/debian/not-installed: -------------------------------------------------------------------------------- 1 | usr/lib/*/*.a 2 | -------------------------------------------------------------------------------- /server/module-examples/datachannelexample/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /server/module-examples/gstreamer-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/gstreamer-example/README.md -------------------------------------------------------------------------------- /server/module-examples/gstreamer-example/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /server/module-examples/gstreamer-example/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /server/module-examples/markerdetector/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/markerdetector/README.txt -------------------------------------------------------------------------------- /server/module-examples/markerdetector/debian/docs: -------------------------------------------------------------------------------- 1 | README.txt 2 | -------------------------------------------------------------------------------- /server/module-examples/markerdetector/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/markerdetector/debian/rules -------------------------------------------------------------------------------- /server/module-examples/markerdetector/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /server/module-examples/markerdetector/src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(server) 2 | -------------------------------------------------------------------------------- /server/module-examples/opencv-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/opencv-example/README.md -------------------------------------------------------------------------------- /server/module-examples/opencv-example/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/opencv-example/debian/rules -------------------------------------------------------------------------------- /server/module-examples/opencv-example/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /server/module-examples/opencv-example/src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(server) 2 | -------------------------------------------------------------------------------- /server/module-examples/platedetector/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/platedetector/AUTHORS -------------------------------------------------------------------------------- /server/module-examples/platedetector/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/platedetector/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-examples/platedetector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/platedetector/README.md -------------------------------------------------------------------------------- /server/module-examples/platedetector/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/platedetector/config.h.cmake -------------------------------------------------------------------------------- /server/module-examples/platedetector/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/platedetector/debian/control -------------------------------------------------------------------------------- /server/module-examples/platedetector/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /server/module-examples/platedetector/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/platedetector/debian/rules -------------------------------------------------------------------------------- /server/module-examples/platedetector/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /server/module-examples/platedetector/src/gst-plugins/platedetector/config_auto.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/module-examples/pointerdetector/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/pointerdetector/AUTHORS -------------------------------------------------------------------------------- /server/module-examples/pointerdetector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/pointerdetector/README.md -------------------------------------------------------------------------------- /server/module-examples/pointerdetector/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /server/module-examples/pointerdetector/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-examples/pointerdetector/debian/rules -------------------------------------------------------------------------------- /server/module-examples/pointerdetector/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /server/module-extras/video-sampler/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-extras/video-sampler/AUTHORS -------------------------------------------------------------------------------- /server/module-extras/video-sampler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-extras/video-sampler/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-extras/video-sampler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-extras/video-sampler/README.md -------------------------------------------------------------------------------- /server/module-extras/video-sampler/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-extras/video-sampler/config.h.cmake -------------------------------------------------------------------------------- /server/module-extras/video-sampler/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-extras/video-sampler/debian/changelog -------------------------------------------------------------------------------- /server/module-extras/video-sampler/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-extras/video-sampler/debian/control -------------------------------------------------------------------------------- /server/module-extras/video-sampler/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-extras/video-sampler/debian/copyright -------------------------------------------------------------------------------- /server/module-extras/video-sampler/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /server/module-extras/video-sampler/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-extras/video-sampler/debian/rules -------------------------------------------------------------------------------- /server/module-extras/video-sampler/src/gst-plugins/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(videosampler) 2 | -------------------------------------------------------------------------------- /server/module-extras/video-sampler/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(server) 2 | -------------------------------------------------------------------------------- /server/module-filters/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/AUTHORS -------------------------------------------------------------------------------- /server/module-filters/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-filters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/README.md -------------------------------------------------------------------------------- /server/module-filters/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/config.h.cmake -------------------------------------------------------------------------------- /server/module-filters/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/debian/changelog -------------------------------------------------------------------------------- /server/module-filters/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/debian/control -------------------------------------------------------------------------------- /server/module-filters/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/debian/copyright -------------------------------------------------------------------------------- /server/module-filters/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /server/module-filters/debian/not-installed: -------------------------------------------------------------------------------- 1 | usr/lib/*/*.a 2 | -------------------------------------------------------------------------------- /server/module-filters/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/debian/rules -------------------------------------------------------------------------------- /server/module-filters/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /server/module-filters/hooks/pre-commit.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/hooks/pre-commit.hook -------------------------------------------------------------------------------- /server/module-filters/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/src/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-filters/src/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/src/server/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-filters/src/server/interface/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/src/server/interface/pom.xml -------------------------------------------------------------------------------- /server/module-filters/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/tests/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-filters/tests/check/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/tests/check/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-filters/tests/check/kmscheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/tests/check/kmscheck.h -------------------------------------------------------------------------------- /server/module-filters/tests/check/kmstestutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/tests/check/kmstestutils.c -------------------------------------------------------------------------------- /server/module-filters/tests/check/kmstestutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/tests/check/kmstestutils.h -------------------------------------------------------------------------------- /server/module-filters/tests/check/memory_leaks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/tests/check/memory_leaks.sh -------------------------------------------------------------------------------- /server/module-filters/tests/check/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/tests/check/valgrind.supp -------------------------------------------------------------------------------- /server/module-filters/tests/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/tests/server/CMakeLists.txt -------------------------------------------------------------------------------- /server/module-filters/tests/server/constructors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/server/module-filters/tests/server/constructors.cpp -------------------------------------------------------------------------------- /test/integration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/integration/.gitignore -------------------------------------------------------------------------------- /test/integration/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/integration/.project -------------------------------------------------------------------------------- /test/integration/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /test/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/integration/README.md -------------------------------------------------------------------------------- /test/integration/benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/integration/benchmark/README.md -------------------------------------------------------------------------------- /test/integration/benchmark/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/integration/benchmark/keystore.jks -------------------------------------------------------------------------------- /test/integration/benchmark/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/integration/benchmark/pom.xml -------------------------------------------------------------------------------- /test/integration/benchmark/src/main/java/App.java: -------------------------------------------------------------------------------- 1 | public class App {} -------------------------------------------------------------------------------- /test/integration/bin/set-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/integration/bin/set-versions.sh -------------------------------------------------------------------------------- /test/integration/client-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/integration/client-test/README.md -------------------------------------------------------------------------------- /test/integration/client-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/integration/client-test/pom.xml -------------------------------------------------------------------------------- /test/integration/client-test/src/main/java/App.java: -------------------------------------------------------------------------------- 1 | public class App {} -------------------------------------------------------------------------------- /test/integration/jsonrpc-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/integration/jsonrpc-test/README.md -------------------------------------------------------------------------------- /test/integration/jsonrpc-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/integration/jsonrpc-test/pom.xml -------------------------------------------------------------------------------- /test/integration/jsonrpc-test/src/main/java/App.java: -------------------------------------------------------------------------------- 1 | public class App {} -------------------------------------------------------------------------------- /test/integration/kurento-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/integration/kurento-test/README.md -------------------------------------------------------------------------------- /test/integration/kurento-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/integration/kurento-test/pom.xml -------------------------------------------------------------------------------- /test/integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/integration/pom.xml -------------------------------------------------------------------------------- /test/integration/sanity-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/integration/sanity-test/README.md -------------------------------------------------------------------------------- /test/integration/sanity-test/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/integration/sanity-test/keystore.jks -------------------------------------------------------------------------------- /test/integration/sanity-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/integration/sanity-test/pom.xml -------------------------------------------------------------------------------- /test/tutorial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/.gitignore -------------------------------------------------------------------------------- /test/tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/README.md -------------------------------------------------------------------------------- /test/tutorial/bin/set-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/bin/set-versions.sh -------------------------------------------------------------------------------- /test/tutorial/chroma-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/chroma-test/README.md -------------------------------------------------------------------------------- /test/tutorial/chroma-test/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/chroma-test/keystore.jks -------------------------------------------------------------------------------- /test/tutorial/chroma-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/chroma-test/pom.xml -------------------------------------------------------------------------------- /test/tutorial/crowddetector-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/crowddetector-test/README.md -------------------------------------------------------------------------------- /test/tutorial/crowddetector-test/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/crowddetector-test/keystore.jks -------------------------------------------------------------------------------- /test/tutorial/crowddetector-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/crowddetector-test/pom.xml -------------------------------------------------------------------------------- /test/tutorial/hello-world-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/hello-world-test/README.md -------------------------------------------------------------------------------- /test/tutorial/hello-world-test/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/hello-world-test/keystore.jks -------------------------------------------------------------------------------- /test/tutorial/hello-world-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/hello-world-test/pom.xml -------------------------------------------------------------------------------- /test/tutorial/magic-mirror-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/magic-mirror-test/README.md -------------------------------------------------------------------------------- /test/tutorial/magic-mirror-test/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/magic-mirror-test/keystore.jks -------------------------------------------------------------------------------- /test/tutorial/magic-mirror-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/magic-mirror-test/pom.xml -------------------------------------------------------------------------------- /test/tutorial/one2many-call-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/one2many-call-test/README.md -------------------------------------------------------------------------------- /test/tutorial/one2many-call-test/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/one2many-call-test/keystore.jks -------------------------------------------------------------------------------- /test/tutorial/one2many-call-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/one2many-call-test/pom.xml -------------------------------------------------------------------------------- /test/tutorial/one2one-call-advanced-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/one2one-call-advanced-test/README.md -------------------------------------------------------------------------------- /test/tutorial/one2one-call-advanced-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/one2one-call-advanced-test/pom.xml -------------------------------------------------------------------------------- /test/tutorial/one2one-call-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/one2one-call-test/README.md -------------------------------------------------------------------------------- /test/tutorial/one2one-call-test/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/one2one-call-test/keystore.jks -------------------------------------------------------------------------------- /test/tutorial/one2one-call-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/one2one-call-test/pom.xml -------------------------------------------------------------------------------- /test/tutorial/platedetector-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/platedetector-test/README.md -------------------------------------------------------------------------------- /test/tutorial/platedetector-test/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/platedetector-test/keystore.jks -------------------------------------------------------------------------------- /test/tutorial/platedetector-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/platedetector-test/pom.xml -------------------------------------------------------------------------------- /test/tutorial/pointerdetector-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/pointerdetector-test/README.md -------------------------------------------------------------------------------- /test/tutorial/pointerdetector-test/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/pointerdetector-test/keystore.jks -------------------------------------------------------------------------------- /test/tutorial/pointerdetector-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/pointerdetector-test/pom.xml -------------------------------------------------------------------------------- /test/tutorial/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/test/tutorial/pom.xml -------------------------------------------------------------------------------- /tutorials/java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/.gitignore -------------------------------------------------------------------------------- /tutorials/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/README.md -------------------------------------------------------------------------------- /tutorials/java/bin/set-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/bin/set-versions.sh -------------------------------------------------------------------------------- /tutorials/java/chroma/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "static/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/java/chroma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/chroma/README.md -------------------------------------------------------------------------------- /tutorials/java/chroma/package/bin/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/chroma/package/bin/install.sh -------------------------------------------------------------------------------- /tutorials/java/chroma/package/bin/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/chroma/package/bin/start.sh -------------------------------------------------------------------------------- /tutorials/java/chroma/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/chroma/pom.xml -------------------------------------------------------------------------------- /tutorials/java/chroma/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/chroma/src/assembly/bin.xml -------------------------------------------------------------------------------- /tutorials/java/chroma/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/chroma/src/main/resources/banner.txt -------------------------------------------------------------------------------- /tutorials/java/crowddetector/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "static/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/java/crowddetector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/crowddetector/README.md -------------------------------------------------------------------------------- /tutorials/java/crowddetector/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/crowddetector/pom.xml -------------------------------------------------------------------------------- /tutorials/java/crowddetector/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/crowddetector/src/assembly/bin.xml -------------------------------------------------------------------------------- /tutorials/java/datachannel-send-qr/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "static/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/java/datachannel-send-qr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/datachannel-send-qr/README.md -------------------------------------------------------------------------------- /tutorials/java/datachannel-send-qr/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/datachannel-send-qr/pom.xml -------------------------------------------------------------------------------- /tutorials/java/datachannel-show-text/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "static/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/java/datachannel-show-text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/datachannel-show-text/README.md -------------------------------------------------------------------------------- /tutorials/java/datachannel-show-text/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/datachannel-show-text/pom.xml -------------------------------------------------------------------------------- /tutorials/java/facedetector/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "static/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/java/facedetector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/facedetector/README.md -------------------------------------------------------------------------------- /tutorials/java/facedetector/package/bin/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/facedetector/package/bin/install.sh -------------------------------------------------------------------------------- /tutorials/java/facedetector/package/bin/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/facedetector/package/bin/start.sh -------------------------------------------------------------------------------- /tutorials/java/facedetector/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/facedetector/pom.xml -------------------------------------------------------------------------------- /tutorials/java/facedetector/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/facedetector/src/assembly/bin.xml -------------------------------------------------------------------------------- /tutorials/java/group-call/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "static/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/java/group-call/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/group-call/README.md -------------------------------------------------------------------------------- /tutorials/java/group-call/package/bin/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/group-call/package/bin/install.sh -------------------------------------------------------------------------------- /tutorials/java/group-call/package/bin/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/group-call/package/bin/start.sh -------------------------------------------------------------------------------- /tutorials/java/group-call/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/group-call/pom.xml -------------------------------------------------------------------------------- /tutorials/java/group-call/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/group-call/src/assembly/bin.xml -------------------------------------------------------------------------------- /tutorials/java/hello-world-recording/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "static/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/java/hello-world-recording/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/hello-world-recording/README.md -------------------------------------------------------------------------------- /tutorials/java/hello-world-recording/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/hello-world-recording/pom.xml -------------------------------------------------------------------------------- /tutorials/java/hello-world/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "static/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/java/hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/hello-world/README.md -------------------------------------------------------------------------------- /tutorials/java/hello-world/package/bin/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/hello-world/package/bin/install.sh -------------------------------------------------------------------------------- /tutorials/java/hello-world/package/bin/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/hello-world/package/bin/start.sh -------------------------------------------------------------------------------- /tutorials/java/hello-world/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/hello-world/pom.xml -------------------------------------------------------------------------------- /tutorials/java/hello-world/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/hello-world/src/assembly/bin.xml -------------------------------------------------------------------------------- /tutorials/java/magic-mirror/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "static/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/java/magic-mirror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/magic-mirror/README.md -------------------------------------------------------------------------------- /tutorials/java/magic-mirror/package/bin/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/magic-mirror/package/bin/install.sh -------------------------------------------------------------------------------- /tutorials/java/magic-mirror/package/bin/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/magic-mirror/package/bin/start.sh -------------------------------------------------------------------------------- /tutorials/java/magic-mirror/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/magic-mirror/pom.xml -------------------------------------------------------------------------------- /tutorials/java/magic-mirror/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/magic-mirror/src/assembly/bin.xml -------------------------------------------------------------------------------- /tutorials/java/one2many-call/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "static/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/java/one2many-call/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/one2many-call/README.md -------------------------------------------------------------------------------- /tutorials/java/one2many-call/package/bin/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/one2many-call/package/bin/install.sh -------------------------------------------------------------------------------- /tutorials/java/one2many-call/package/bin/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/one2many-call/package/bin/start.sh -------------------------------------------------------------------------------- /tutorials/java/one2many-call/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/one2many-call/pom.xml -------------------------------------------------------------------------------- /tutorials/java/one2many-call/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/one2many-call/src/assembly/bin.xml -------------------------------------------------------------------------------- /tutorials/java/one2one-call-advanced/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "static/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/java/one2one-call-advanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/one2one-call-advanced/README.md -------------------------------------------------------------------------------- /tutorials/java/one2one-call-advanced/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/one2one-call-advanced/pom.xml -------------------------------------------------------------------------------- /tutorials/java/one2one-call-recording/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "static/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/java/one2one-call-recording/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/one2one-call-recording/README.md -------------------------------------------------------------------------------- /tutorials/java/one2one-call-recording/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/one2one-call-recording/pom.xml -------------------------------------------------------------------------------- /tutorials/java/one2one-call/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "static/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/java/one2one-call/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/one2one-call/README.md -------------------------------------------------------------------------------- /tutorials/java/one2one-call/package/bin/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/one2one-call/package/bin/install.sh -------------------------------------------------------------------------------- /tutorials/java/one2one-call/package/bin/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/one2one-call/package/bin/start.sh -------------------------------------------------------------------------------- /tutorials/java/one2one-call/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/one2one-call/pom.xml -------------------------------------------------------------------------------- /tutorials/java/one2one-call/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/one2one-call/src/assembly/bin.xml -------------------------------------------------------------------------------- /tutorials/java/platedetector/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "static/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/java/platedetector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/platedetector/README.md -------------------------------------------------------------------------------- /tutorials/java/platedetector/package/bin/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/platedetector/package/bin/install.sh -------------------------------------------------------------------------------- /tutorials/java/platedetector/package/bin/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/platedetector/package/bin/start.sh -------------------------------------------------------------------------------- /tutorials/java/platedetector/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/platedetector/pom.xml -------------------------------------------------------------------------------- /tutorials/java/platedetector/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/platedetector/src/assembly/bin.xml -------------------------------------------------------------------------------- /tutorials/java/player/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "static/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/java/player/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/player/README.md -------------------------------------------------------------------------------- /tutorials/java/player/package/bin/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/player/package/bin/install.sh -------------------------------------------------------------------------------- /tutorials/java/player/package/bin/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/player/package/bin/start.sh -------------------------------------------------------------------------------- /tutorials/java/player/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/player/pom.xml -------------------------------------------------------------------------------- /tutorials/java/player/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/player/src/assembly/bin.xml -------------------------------------------------------------------------------- /tutorials/java/player/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/player/src/main/resources/banner.txt -------------------------------------------------------------------------------- /tutorials/java/pointerdetector/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "static/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/java/pointerdetector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/pointerdetector/README.md -------------------------------------------------------------------------------- /tutorials/java/pointerdetector/package/bin/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/pointerdetector/package/bin/start.sh -------------------------------------------------------------------------------- /tutorials/java/pointerdetector/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/pointerdetector/pom.xml -------------------------------------------------------------------------------- /tutorials/java/pointerdetector/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/pointerdetector/src/assembly/bin.xml -------------------------------------------------------------------------------- /tutorials/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/pom.xml -------------------------------------------------------------------------------- /tutorials/java/rtp-receiver/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "static/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/java/rtp-receiver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/rtp-receiver/.gitignore -------------------------------------------------------------------------------- /tutorials/java/rtp-receiver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/rtp-receiver/README.md -------------------------------------------------------------------------------- /tutorials/java/rtp-receiver/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/rtp-receiver/pom.xml -------------------------------------------------------------------------------- /tutorials/java/rtp-receiver/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/java/rtp-receiver/src/assembly/bin.xml -------------------------------------------------------------------------------- /tutorials/javascript-browser/.gitignore: -------------------------------------------------------------------------------- 1 | .classpath 2 | .project 3 | .settings/ 4 | *~ 5 | bower_components/ 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /tutorials/javascript-browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-browser/README.md -------------------------------------------------------------------------------- /tutorials/javascript-browser/bin/set-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-browser/bin/set-versions.sh -------------------------------------------------------------------------------- /tutorials/javascript-browser/chroma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-browser/chroma/README.md -------------------------------------------------------------------------------- /tutorials/javascript-browser/chroma/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-browser/chroma/bower.json -------------------------------------------------------------------------------- /tutorials/javascript-browser/chroma/css/kurento.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-browser/chroma/css/kurento.css -------------------------------------------------------------------------------- /tutorials/javascript-browser/chroma/img/kurento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-browser/chroma/img/kurento.png -------------------------------------------------------------------------------- /tutorials/javascript-browser/chroma/img/mario.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-browser/chroma/img/mario.jpg -------------------------------------------------------------------------------- /tutorials/javascript-browser/chroma/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-browser/chroma/img/spinner.gif -------------------------------------------------------------------------------- /tutorials/javascript-browser/chroma/img/urjc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-browser/chroma/img/urjc.gif -------------------------------------------------------------------------------- /tutorials/javascript-browser/chroma/img/webrtc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-browser/chroma/img/webrtc.png -------------------------------------------------------------------------------- /tutorials/javascript-browser/chroma/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-browser/chroma/index.html -------------------------------------------------------------------------------- /tutorials/javascript-browser/chroma/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-browser/chroma/js/index.js -------------------------------------------------------------------------------- /tutorials/javascript-browser/chroma/keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-browser/chroma/keys/README.md -------------------------------------------------------------------------------- /tutorials/javascript-browser/chroma/keys/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-browser/chroma/keys/server.crt -------------------------------------------------------------------------------- /tutorials/javascript-browser/hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /tutorials/javascript-browser/loopback-stats/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /tutorials/javascript-browser/magic-mirror/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /tutorials/javascript-browser/recorder/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /tutorials/javascript-browser/recorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-browser/recorder/README.md -------------------------------------------------------------------------------- /tutorials/javascript-browser/recorder/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-browser/recorder/bower.json -------------------------------------------------------------------------------- /tutorials/javascript-browser/recorder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-browser/recorder/index.html -------------------------------------------------------------------------------- /tutorials/javascript-node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-node/.gitignore -------------------------------------------------------------------------------- /tutorials/javascript-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-node/README.md -------------------------------------------------------------------------------- /tutorials/javascript-node/bin/set-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-node/bin/set-versions.sh -------------------------------------------------------------------------------- /tutorials/javascript-node/chroma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-node/chroma/README.md -------------------------------------------------------------------------------- /tutorials/javascript-node/chroma/keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-node/chroma/keys/README.md -------------------------------------------------------------------------------- /tutorials/javascript-node/chroma/keys/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-node/chroma/keys/server.crt -------------------------------------------------------------------------------- /tutorials/javascript-node/chroma/keys/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-node/chroma/keys/server.csr -------------------------------------------------------------------------------- /tutorials/javascript-node/chroma/keys/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-node/chroma/keys/server.key -------------------------------------------------------------------------------- /tutorials/javascript-node/chroma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-node/chroma/package.json -------------------------------------------------------------------------------- /tutorials/javascript-node/chroma/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-node/chroma/server.js -------------------------------------------------------------------------------- /tutorials/javascript-node/hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-node/hello-world/README.md -------------------------------------------------------------------------------- /tutorials/javascript-node/hello-world/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-node/hello-world/server.js -------------------------------------------------------------------------------- /tutorials/javascript-node/magic-mirror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-node/magic-mirror/README.md -------------------------------------------------------------------------------- /tutorials/javascript-node/magic-mirror/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-node/magic-mirror/server.js -------------------------------------------------------------------------------- /tutorials/javascript-node/one2one-call/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-node/one2one-call/README.md -------------------------------------------------------------------------------- /tutorials/javascript-node/one2one-call/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurento/kurento/HEAD/tutorials/javascript-node/one2one-call/server.js --------------------------------------------------------------------------------