├── .gitmodules ├── COPYING ├── LICENSE ├── Makefile.am ├── README.md ├── TODO ├── autogen.sh ├── configure.ac ├── ext ├── Makefile.am └── sctp │ ├── Makefile.am │ ├── gstsctpdec.c │ ├── gstsctpdec.h │ ├── gstsctpenc.c │ ├── gstsctpenc.h │ ├── gstsctpplugin.c │ ├── sctpassociation.c │ └── sctpassociation.h ├── git.mk ├── gst-libs ├── Makefile.am └── gst │ ├── Makefile.am │ └── sctp │ ├── Makefile.am │ ├── sctpreceivemeta.c │ ├── sctpreceivemeta.h │ ├── sctpsendmeta.c │ └── sctpsendmeta.h ├── gst ├── Makefile.am ├── ercolorspace │ ├── Makefile.am │ ├── configure.ac │ └── src │ │ ├── gstercolorspace.c │ │ ├── gstercolorspace.h │ │ └── gstercolorspace_neon.h ├── scream │ ├── Makefile.am │ ├── gstscreamcontroller.c │ ├── gstscreamcontroller.h │ ├── gstscreamplugin.c │ ├── gstscreamqueue.c │ └── gstscreamqueue.h └── videorepair │ ├── Makefile.am │ ├── gstvideorepair.c │ └── gstvideorepair.h ├── gstreamer-sctp-1.0-uninstalled.pc.in ├── gstreamer-sctp-1.0.pc.in └── sys ├── Makefile.am └── androidvideo ├── Makefile.am └── video-source ├── Makefile.am ├── jni ├── Android.mk ├── android_video_capture_device.c ├── gst_android_video_source.c ├── include │ ├── android_video_capture_device.h │ ├── android_video_capture_device_android_definitions.h │ ├── android_video_capture_device_definitions.h │ ├── android_video_capture_device_errors.h │ ├── gst_android_video_source.h │ ├── gst_android_video_source_common.h │ ├── gst_android_video_source_config.h │ ├── gst_android_video_source_log.h │ └── jni_utils.h └── jni_utils.c └── src └── com └── ericsson └── gstreamer └── VideoCaptureDevicePreviewCallbackHandler.java /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/TODO -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/configure.ac -------------------------------------------------------------------------------- /ext/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/ext/Makefile.am -------------------------------------------------------------------------------- /ext/sctp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/ext/sctp/Makefile.am -------------------------------------------------------------------------------- /ext/sctp/gstsctpdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/ext/sctp/gstsctpdec.c -------------------------------------------------------------------------------- /ext/sctp/gstsctpdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/ext/sctp/gstsctpdec.h -------------------------------------------------------------------------------- /ext/sctp/gstsctpenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/ext/sctp/gstsctpenc.c -------------------------------------------------------------------------------- /ext/sctp/gstsctpenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/ext/sctp/gstsctpenc.h -------------------------------------------------------------------------------- /ext/sctp/gstsctpplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/ext/sctp/gstsctpplugin.c -------------------------------------------------------------------------------- /ext/sctp/sctpassociation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/ext/sctp/sctpassociation.c -------------------------------------------------------------------------------- /ext/sctp/sctpassociation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/ext/sctp/sctpassociation.h -------------------------------------------------------------------------------- /git.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/git.mk -------------------------------------------------------------------------------- /gst-libs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst-libs/Makefile.am -------------------------------------------------------------------------------- /gst-libs/gst/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst-libs/gst/Makefile.am -------------------------------------------------------------------------------- /gst-libs/gst/sctp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst-libs/gst/sctp/Makefile.am -------------------------------------------------------------------------------- /gst-libs/gst/sctp/sctpreceivemeta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst-libs/gst/sctp/sctpreceivemeta.c -------------------------------------------------------------------------------- /gst-libs/gst/sctp/sctpreceivemeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst-libs/gst/sctp/sctpreceivemeta.h -------------------------------------------------------------------------------- /gst-libs/gst/sctp/sctpsendmeta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst-libs/gst/sctp/sctpsendmeta.c -------------------------------------------------------------------------------- /gst-libs/gst/sctp/sctpsendmeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst-libs/gst/sctp/sctpsendmeta.h -------------------------------------------------------------------------------- /gst/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst/Makefile.am -------------------------------------------------------------------------------- /gst/ercolorspace/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst/ercolorspace/Makefile.am -------------------------------------------------------------------------------- /gst/ercolorspace/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst/ercolorspace/configure.ac -------------------------------------------------------------------------------- /gst/ercolorspace/src/gstercolorspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst/ercolorspace/src/gstercolorspace.c -------------------------------------------------------------------------------- /gst/ercolorspace/src/gstercolorspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst/ercolorspace/src/gstercolorspace.h -------------------------------------------------------------------------------- /gst/ercolorspace/src/gstercolorspace_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst/ercolorspace/src/gstercolorspace_neon.h -------------------------------------------------------------------------------- /gst/scream/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst/scream/Makefile.am -------------------------------------------------------------------------------- /gst/scream/gstscreamcontroller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst/scream/gstscreamcontroller.c -------------------------------------------------------------------------------- /gst/scream/gstscreamcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst/scream/gstscreamcontroller.h -------------------------------------------------------------------------------- /gst/scream/gstscreamplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst/scream/gstscreamplugin.c -------------------------------------------------------------------------------- /gst/scream/gstscreamqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst/scream/gstscreamqueue.c -------------------------------------------------------------------------------- /gst/scream/gstscreamqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst/scream/gstscreamqueue.h -------------------------------------------------------------------------------- /gst/videorepair/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst/videorepair/Makefile.am -------------------------------------------------------------------------------- /gst/videorepair/gstvideorepair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst/videorepair/gstvideorepair.c -------------------------------------------------------------------------------- /gst/videorepair/gstvideorepair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gst/videorepair/gstvideorepair.h -------------------------------------------------------------------------------- /gstreamer-sctp-1.0-uninstalled.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gstreamer-sctp-1.0-uninstalled.pc.in -------------------------------------------------------------------------------- /gstreamer-sctp-1.0.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/gstreamer-sctp-1.0.pc.in -------------------------------------------------------------------------------- /sys/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/sys/Makefile.am -------------------------------------------------------------------------------- /sys/androidvideo/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = video-source 2 | -include $(top_srcdir)/git.mk 3 | -------------------------------------------------------------------------------- /sys/androidvideo/video-source/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/sys/androidvideo/video-source/Makefile.am -------------------------------------------------------------------------------- /sys/androidvideo/video-source/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/sys/androidvideo/video-source/jni/Android.mk -------------------------------------------------------------------------------- /sys/androidvideo/video-source/jni/android_video_capture_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/sys/androidvideo/video-source/jni/android_video_capture_device.c -------------------------------------------------------------------------------- /sys/androidvideo/video-source/jni/gst_android_video_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/sys/androidvideo/video-source/jni/gst_android_video_source.c -------------------------------------------------------------------------------- /sys/androidvideo/video-source/jni/include/android_video_capture_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/sys/androidvideo/video-source/jni/include/android_video_capture_device.h -------------------------------------------------------------------------------- /sys/androidvideo/video-source/jni/include/android_video_capture_device_android_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/sys/androidvideo/video-source/jni/include/android_video_capture_device_android_definitions.h -------------------------------------------------------------------------------- /sys/androidvideo/video-source/jni/include/android_video_capture_device_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/sys/androidvideo/video-source/jni/include/android_video_capture_device_definitions.h -------------------------------------------------------------------------------- /sys/androidvideo/video-source/jni/include/android_video_capture_device_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/sys/androidvideo/video-source/jni/include/android_video_capture_device_errors.h -------------------------------------------------------------------------------- /sys/androidvideo/video-source/jni/include/gst_android_video_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/sys/androidvideo/video-source/jni/include/gst_android_video_source.h -------------------------------------------------------------------------------- /sys/androidvideo/video-source/jni/include/gst_android_video_source_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/sys/androidvideo/video-source/jni/include/gst_android_video_source_common.h -------------------------------------------------------------------------------- /sys/androidvideo/video-source/jni/include/gst_android_video_source_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/sys/androidvideo/video-source/jni/include/gst_android_video_source_config.h -------------------------------------------------------------------------------- /sys/androidvideo/video-source/jni/include/gst_android_video_source_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/sys/androidvideo/video-source/jni/include/gst_android_video_source_log.h -------------------------------------------------------------------------------- /sys/androidvideo/video-source/jni/include/jni_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/sys/androidvideo/video-source/jni/include/jni_utils.h -------------------------------------------------------------------------------- /sys/androidvideo/video-source/jni/jni_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/sys/androidvideo/video-source/jni/jni_utils.c -------------------------------------------------------------------------------- /sys/androidvideo/video-source/src/com/ericsson/gstreamer/VideoCaptureDevicePreviewCallbackHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/openwebrtc-gst-plugins/HEAD/sys/androidvideo/video-source/src/com/ericsson/gstreamer/VideoCaptureDevicePreviewCallbackHandler.java --------------------------------------------------------------------------------