├── .gitignore ├── LICENSE ├── Org.Webrtc.Videoengine ├── Additions │ └── AboutAdditions.txt ├── Jars │ ├── AboutJars.txt │ ├── video_capture_module_java.jar │ └── video_render_module_java.jar ├── Org.Webrtc.Videoengine.csproj ├── Properties │ └── AssemblyInfo.cs └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── Org.Webrtc.Videoengineapp ├── Additions │ └── AboutAdditions.txt ├── Jars │ ├── AboutJars.txt │ └── ViEAndroidJavaAPI.jar ├── Org.Webrtc.Videoengineapp.csproj ├── Properties │ └── AssemblyInfo.cs └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── Org.Webrtc.Voiceengine ├── Additions │ └── AboutAdditions.txt ├── Jars │ ├── AboutJars.txt │ └── audio_device_module_java.jar ├── Org.Webrtc.Voiceengine.csproj ├── Properties │ └── AssemblyInfo.cs └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── README.md ├── WebRtc.Mono.Droid ├── Assets │ └── AboutAssets.txt ├── DateTimeHelperClass.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Resources │ ├── AboutResources.txt │ ├── Drawable │ │ └── logo.png │ ├── Layout │ │ ├── aconfig.xml │ │ ├── both.xml │ │ ├── main.xml │ │ ├── row.xml │ │ ├── send.xml │ │ ├── tabhost.xml │ │ └── vconfig.xml │ ├── Resource.Designer.cs │ └── Values │ │ └── strings.xml ├── WebRTCDemo.cs ├── WebRtc.Mono.Droid.csproj ├── lib │ ├── ViEAndroidJavaAPI.jar │ ├── armeabi-v7a │ │ └── libwebrtc-video-demo-jni.so │ ├── audio_device_module_java.jar │ ├── video_capture_module_java.jar │ └── video_render_module_java.jar └── src │ ├── modules │ ├── audio_device │ │ └── android │ │ │ └── java │ │ │ └── src │ │ │ └── org │ │ │ └── webrtc │ │ │ └── voiceengine │ │ │ ├── AudioManagerAndroid.java │ │ │ └── WebRTCAudioDevice.java │ ├── video_capture │ │ └── android │ │ │ └── java │ │ │ └── src │ │ │ └── org │ │ │ └── webrtc │ │ │ └── videoengine │ │ │ ├── VideoCaptureAndroid.java │ │ │ └── VideoCaptureDeviceInfoAndroid.java │ └── video_render │ │ └── android │ │ └── java │ │ └── src │ │ └── org │ │ └── webrtc │ │ └── videoengine │ │ ├── ViEAndroidGLES20.java │ │ ├── ViERenderer.java │ │ └── ViESurfaceRenderer.java │ └── video_engine │ └── test │ └── android │ ├── AndroidManifest.xml │ ├── build.xml │ ├── gen │ ├── R.java.d │ └── org │ │ └── webrtc │ │ └── videoengineapp │ │ ├── BuildConfig.java │ │ └── R.java │ ├── jni │ ├── org_webrtc_videoengineapp_vie_android_java_api.h │ └── vie_android_java_api.cc │ ├── libs │ ├── armeabi-v7a │ │ └── libwebrtc-video-demo-jni.so │ ├── audio_device_module_java.jar │ ├── video_capture_module_java.jar │ └── video_render_module_java.jar │ ├── project.properties │ ├── res │ ├── drawable │ │ └── logo.png │ ├── layout │ │ ├── aconfig.xml │ │ ├── both.xml │ │ ├── main.xml │ │ ├── row.xml │ │ ├── send.xml │ │ ├── tabhost.xml │ │ └── vconfig.xml │ └── values │ │ └── strings.xml │ └── src │ └── org │ └── webrtc │ ├── videoengine │ └── ViEMediaCodecDecoder.java │ └── videoengineapp │ ├── IViEAndroidCallback.java │ ├── ViEAndroidJavaAPI.java │ └── WebRTCDemo.java └── WebRtc.Mono.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/LICENSE -------------------------------------------------------------------------------- /Org.Webrtc.Videoengine/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Videoengine/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Org.Webrtc.Videoengine/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Videoengine/Jars/AboutJars.txt -------------------------------------------------------------------------------- /Org.Webrtc.Videoengine/Jars/video_capture_module_java.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Videoengine/Jars/video_capture_module_java.jar -------------------------------------------------------------------------------- /Org.Webrtc.Videoengine/Jars/video_render_module_java.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Videoengine/Jars/video_render_module_java.jar -------------------------------------------------------------------------------- /Org.Webrtc.Videoengine/Org.Webrtc.Videoengine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Videoengine/Org.Webrtc.Videoengine.csproj -------------------------------------------------------------------------------- /Org.Webrtc.Videoengine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Videoengine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Org.Webrtc.Videoengine/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Videoengine/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Org.Webrtc.Videoengine/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Videoengine/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Org.Webrtc.Videoengine/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Videoengine/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Org.Webrtc.Videoengineapp/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Videoengineapp/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Org.Webrtc.Videoengineapp/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Videoengineapp/Jars/AboutJars.txt -------------------------------------------------------------------------------- /Org.Webrtc.Videoengineapp/Jars/ViEAndroidJavaAPI.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Videoengineapp/Jars/ViEAndroidJavaAPI.jar -------------------------------------------------------------------------------- /Org.Webrtc.Videoengineapp/Org.Webrtc.Videoengineapp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Videoengineapp/Org.Webrtc.Videoengineapp.csproj -------------------------------------------------------------------------------- /Org.Webrtc.Videoengineapp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Videoengineapp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Org.Webrtc.Videoengineapp/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Videoengineapp/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Org.Webrtc.Videoengineapp/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Videoengineapp/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Org.Webrtc.Videoengineapp/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Videoengineapp/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Org.Webrtc.Voiceengine/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Voiceengine/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Org.Webrtc.Voiceengine/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Voiceengine/Jars/AboutJars.txt -------------------------------------------------------------------------------- /Org.Webrtc.Voiceengine/Jars/audio_device_module_java.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Voiceengine/Jars/audio_device_module_java.jar -------------------------------------------------------------------------------- /Org.Webrtc.Voiceengine/Org.Webrtc.Voiceengine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Voiceengine/Org.Webrtc.Voiceengine.csproj -------------------------------------------------------------------------------- /Org.Webrtc.Voiceengine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Voiceengine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Org.Webrtc.Voiceengine/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Voiceengine/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Org.Webrtc.Voiceengine/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Voiceengine/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Org.Webrtc.Voiceengine/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/Org.Webrtc.Voiceengine/Transforms/Metadata.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/README.md -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/DateTimeHelperClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/DateTimeHelperClass.cs -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/Resources/Drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/Resources/Drawable/logo.png -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/Resources/Layout/aconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/Resources/Layout/aconfig.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/Resources/Layout/both.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/Resources/Layout/both.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/Resources/Layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/Resources/Layout/main.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/Resources/Layout/row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/Resources/Layout/row.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/Resources/Layout/send.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/Resources/Layout/send.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/Resources/Layout/tabhost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/Resources/Layout/tabhost.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/Resources/Layout/vconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/Resources/Layout/vconfig.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/Resources/Values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/Resources/Values/strings.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/WebRTCDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/WebRTCDemo.cs -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/WebRtc.Mono.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/WebRtc.Mono.Droid.csproj -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/lib/ViEAndroidJavaAPI.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/lib/ViEAndroidJavaAPI.jar -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/lib/armeabi-v7a/libwebrtc-video-demo-jni.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/lib/armeabi-v7a/libwebrtc-video-demo-jni.so -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/lib/audio_device_module_java.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/lib/audio_device_module_java.jar -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/lib/video_capture_module_java.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/lib/video_capture_module_java.jar -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/lib/video_render_module_java.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/lib/video_render_module_java.jar -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/modules/audio_device/android/java/src/org/webrtc/voiceengine/AudioManagerAndroid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/modules/audio_device/android/java/src/org/webrtc/voiceengine/AudioManagerAndroid.java -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRTCAudioDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRTCAudioDevice.java -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/modules/video_capture/android/java/src/org/webrtc/videoengine/VideoCaptureAndroid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/modules/video_capture/android/java/src/org/webrtc/videoengine/VideoCaptureAndroid.java -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/modules/video_capture/android/java/src/org/webrtc/videoengine/VideoCaptureDeviceInfoAndroid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/modules/video_capture/android/java/src/org/webrtc/videoengine/VideoCaptureDeviceInfoAndroid.java -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/modules/video_render/android/java/src/org/webrtc/videoengine/ViEAndroidGLES20.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/modules/video_render/android/java/src/org/webrtc/videoengine/ViEAndroidGLES20.java -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/modules/video_render/android/java/src/org/webrtc/videoengine/ViERenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/modules/video_render/android/java/src/org/webrtc/videoengine/ViERenderer.java -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/modules/video_render/android/java/src/org/webrtc/videoengine/ViESurfaceRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/modules/video_render/android/java/src/org/webrtc/videoengine/ViESurfaceRenderer.java -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/AndroidManifest.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/build.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/gen/R.java.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/gen/R.java.d -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/gen/org/webrtc/videoengineapp/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/gen/org/webrtc/videoengineapp/BuildConfig.java -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/gen/org/webrtc/videoengineapp/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/gen/org/webrtc/videoengineapp/R.java -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/jni/org_webrtc_videoengineapp_vie_android_java_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/jni/org_webrtc_videoengineapp_vie_android_java_api.h -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/jni/vie_android_java_api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/jni/vie_android_java_api.cc -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/libs/armeabi-v7a/libwebrtc-video-demo-jni.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/libs/armeabi-v7a/libwebrtc-video-demo-jni.so -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/libs/audio_device_module_java.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/libs/audio_device_module_java.jar -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/libs/video_capture_module_java.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/libs/video_capture_module_java.jar -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/libs/video_render_module_java.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/libs/video_render_module_java.jar -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/project.properties -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/res/drawable/logo.png -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/res/layout/aconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/res/layout/aconfig.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/res/layout/both.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/res/layout/both.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/res/layout/main.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/res/layout/row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/res/layout/row.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/res/layout/send.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/res/layout/send.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/res/layout/tabhost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/res/layout/tabhost.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/res/layout/vconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/res/layout/vconfig.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/res/values/strings.xml -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/src/org/webrtc/videoengine/ViEMediaCodecDecoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/src/org/webrtc/videoengine/ViEMediaCodecDecoder.java -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/src/org/webrtc/videoengineapp/IViEAndroidCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/src/org/webrtc/videoengineapp/IViEAndroidCallback.java -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/src/org/webrtc/videoengineapp/ViEAndroidJavaAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/src/org/webrtc/videoengineapp/ViEAndroidJavaAPI.java -------------------------------------------------------------------------------- /WebRtc.Mono.Droid/src/video_engine/test/android/src/org/webrtc/videoengineapp/WebRTCDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.Droid/src/video_engine/test/android/src/org/webrtc/videoengineapp/WebRTCDemo.java -------------------------------------------------------------------------------- /WebRtc.Mono.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenneththorman/webrtc-app-mono/HEAD/WebRtc.Mono.sln --------------------------------------------------------------------------------