├── .gitattributes ├── .gitignore ├── RTSPUnityPlugin.vcxproj ├── RTSPUnityPlugin.vcxproj.filters ├── RTSPUnityPlugin.vcxproj.user ├── Source.def ├── UnityScriptExample └── SetRTSPTexture.cs └── source ├── FFMpegRTSPStream.cpp ├── FFMpegRTSPStream.h ├── FFMpegStream.cpp ├── FFMpegStream.h ├── GLEW ├── glew.c ├── glew.h ├── glxew.h └── wglew.h ├── MediaSink.cpp ├── MediaSink.h ├── PlatformBase.h ├── RTSPUnityPlugin.cpp ├── RTSPUnityPluginSingleton.cpp ├── RTSPUnityPluginSingleton.h ├── RenderAPI.cpp ├── RenderAPI.h ├── RenderAPI_D3D11.cpp ├── RenderAPI_D3D12.cpp ├── RenderAPI_D3D9.cpp ├── RenderAPI_OpenGL2.cpp ├── RenderAPI_OpenGLCoreES.cpp ├── Unity ├── IUnityGraphics.h ├── IUnityGraphicsD3D11.h ├── IUnityGraphicsD3D12.h ├── IUnityGraphicsD3D9.h ├── IUnityGraphicsMetal.h └── IUnityInterface.h ├── UnityTextureSink.cpp ├── UnityTextureSink.h ├── ffmpegenv.h └── unityenv.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /RTSPUnityPlugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/RTSPUnityPlugin.vcxproj -------------------------------------------------------------------------------- /RTSPUnityPlugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/RTSPUnityPlugin.vcxproj.filters -------------------------------------------------------------------------------- /RTSPUnityPlugin.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/RTSPUnityPlugin.vcxproj.user -------------------------------------------------------------------------------- /Source.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/Source.def -------------------------------------------------------------------------------- /UnityScriptExample/SetRTSPTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/UnityScriptExample/SetRTSPTexture.cs -------------------------------------------------------------------------------- /source/FFMpegRTSPStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/FFMpegRTSPStream.cpp -------------------------------------------------------------------------------- /source/FFMpegRTSPStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/FFMpegRTSPStream.h -------------------------------------------------------------------------------- /source/FFMpegStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/FFMpegStream.cpp -------------------------------------------------------------------------------- /source/FFMpegStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/FFMpegStream.h -------------------------------------------------------------------------------- /source/GLEW/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/GLEW/glew.c -------------------------------------------------------------------------------- /source/GLEW/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/GLEW/glew.h -------------------------------------------------------------------------------- /source/GLEW/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/GLEW/glxew.h -------------------------------------------------------------------------------- /source/GLEW/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/GLEW/wglew.h -------------------------------------------------------------------------------- /source/MediaSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/MediaSink.cpp -------------------------------------------------------------------------------- /source/MediaSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/MediaSink.h -------------------------------------------------------------------------------- /source/PlatformBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/PlatformBase.h -------------------------------------------------------------------------------- /source/RTSPUnityPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/RTSPUnityPlugin.cpp -------------------------------------------------------------------------------- /source/RTSPUnityPluginSingleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/RTSPUnityPluginSingleton.cpp -------------------------------------------------------------------------------- /source/RTSPUnityPluginSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/RTSPUnityPluginSingleton.h -------------------------------------------------------------------------------- /source/RenderAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/RenderAPI.cpp -------------------------------------------------------------------------------- /source/RenderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/RenderAPI.h -------------------------------------------------------------------------------- /source/RenderAPI_D3D11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/RenderAPI_D3D11.cpp -------------------------------------------------------------------------------- /source/RenderAPI_D3D12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/RenderAPI_D3D12.cpp -------------------------------------------------------------------------------- /source/RenderAPI_D3D9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/RenderAPI_D3D9.cpp -------------------------------------------------------------------------------- /source/RenderAPI_OpenGL2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/RenderAPI_OpenGL2.cpp -------------------------------------------------------------------------------- /source/RenderAPI_OpenGLCoreES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/RenderAPI_OpenGLCoreES.cpp -------------------------------------------------------------------------------- /source/Unity/IUnityGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/Unity/IUnityGraphics.h -------------------------------------------------------------------------------- /source/Unity/IUnityGraphicsD3D11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/Unity/IUnityGraphicsD3D11.h -------------------------------------------------------------------------------- /source/Unity/IUnityGraphicsD3D12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/Unity/IUnityGraphicsD3D12.h -------------------------------------------------------------------------------- /source/Unity/IUnityGraphicsD3D9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/Unity/IUnityGraphicsD3D9.h -------------------------------------------------------------------------------- /source/Unity/IUnityGraphicsMetal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/Unity/IUnityGraphicsMetal.h -------------------------------------------------------------------------------- /source/Unity/IUnityInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/Unity/IUnityInterface.h -------------------------------------------------------------------------------- /source/UnityTextureSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/UnityTextureSink.cpp -------------------------------------------------------------------------------- /source/UnityTextureSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/UnityTextureSink.h -------------------------------------------------------------------------------- /source/ffmpegenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/ffmpegenv.h -------------------------------------------------------------------------------- /source/unityenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gujadot/RTSP_Unity_Plugin/HEAD/source/unityenv.h --------------------------------------------------------------------------------