├── .gitignore ├── CMakeLists.txt ├── FreeFrame ├── CMakeLists.txt ├── ff10 │ ├── Framework │ │ ├── FrameBuffer.cpp │ │ ├── FrameBuffer.h │ │ ├── FrameConvert.cpp │ │ ├── FrameConvert.h │ │ ├── Framework.vcproj │ │ ├── FreeFrame.h │ │ ├── FreeFrameInstance.cpp │ │ ├── FreeFrameInstance.h │ │ ├── FreeFramePlugin.cpp │ │ ├── FreeFramePlugin.h │ │ ├── Stream.cpp │ │ ├── Stream.h │ │ ├── StreamDecoder.cpp │ │ ├── StreamDecoder.h │ │ ├── StreamDecoderFactory.cpp │ │ ├── StreamDecoderFactory.h │ │ ├── StreamDecoderMemory.cpp │ │ ├── StreamDecoderMemory.h │ │ ├── StreamDecoderTCP.cpp │ │ ├── StreamDecoderTCP.h │ │ ├── StreamDecoderUDP.cpp │ │ ├── StreamDecoderUDP.h │ │ ├── StreamEncoder.cpp │ │ ├── StreamEncoder.h │ │ ├── StreamEncoderFactory.cpp │ │ ├── StreamEncoderFactory.h │ │ ├── StreamEncoderMemory.cpp │ │ ├── StreamEncoderMemory.h │ │ ├── StreamEncoderTCP.cpp │ │ ├── StreamEncoderTCP.h │ │ ├── StreamEncoderUDP.cpp │ │ ├── StreamEncoderUDP.h │ │ └── StreamMemory.h │ ├── fugBlender │ │ ├── Factory.cpp │ │ ├── FrameStore.cpp │ │ ├── FrameStore.h │ │ ├── FreeFrame.def │ │ ├── FreeFrameDll.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ ├── ReadMe.txt │ │ ├── fugBlender.vcproj │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── fugChromaParallax │ │ ├── Factory.cpp │ │ ├── FreeFrame.def │ │ ├── FreeFrameDll.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ └── fugChromaParallax.vcproj │ ├── fugHueKey │ │ ├── Factory.cpp │ │ ├── FreeFrame.def │ │ ├── FreeFrameDll.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ └── fugHueKey.vcproj │ ├── fugLuma3D │ │ ├── Factory.cpp │ │ ├── FreeFrame.def │ │ ├── FreeFrameDll.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Luma3D.vcproj │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── fugLumaBendMask │ │ ├── Factory.cpp │ │ ├── FreeFrame.def │ │ ├── FreeFrameDll.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ └── fugLumaBendMask.vcproj │ ├── fugLumaParallax │ │ ├── Factory.cpp │ │ ├── FreeFrame.def │ │ ├── FreeFrameDll.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ ├── ReadMe.txt │ │ ├── fugLumaParallax.vcproj │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── fugMidiOut │ │ ├── Factory.cpp │ │ ├── FreeFrame.def │ │ ├── FreeFrameDll.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ ├── fugMidiOut.vcproj │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── fugMotionMatte │ │ ├── Factory.cpp │ │ ├── FreeFrame.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ ├── fugMotionMatte.vcproj │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── fugRGBChannelKey │ │ ├── Factory.cpp │ │ ├── FreeFrame.def │ │ ├── FreeFrameDll.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ └── RGBChannelKey.vcproj │ ├── fugRGBKey │ │ ├── Factory.cpp │ │ ├── FreeFrame.def │ │ ├── FreeFrameDll.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ └── RGBKey.vcproj │ ├── fugRGBMixer │ │ ├── Factory.cpp │ │ ├── FreeFrame.def │ │ ├── FreeFrameDll.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ ├── RGBMixer.vcproj │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── fugScope │ │ ├── AudioCapture.cpp │ │ ├── AudioCapture.h │ │ ├── Factory.cpp │ │ ├── FreeFrame.def │ │ ├── FreeFrameDll.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ └── Scope.vcproj │ ├── fugSobel │ │ ├── Factory.cpp │ │ ├── FreeFrame.def │ │ ├── FreeFrameDll.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ ├── fugSobel.vcproj │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── fugStreamReceive │ │ ├── Factory.cpp │ │ ├── FreeFrame.def │ │ ├── FreeFrameDll.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ ├── fugStreamReceive.vcproj │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── fugStreamRecord │ │ ├── AVIGenerator.cpp │ │ ├── AVIGenerator.h │ │ ├── StreamRecordApp.cpp │ │ ├── StreamRecordApp.h │ │ ├── StreamRecordDialog.cpp │ │ ├── StreamRecordDialog.h │ │ ├── blank.cur │ │ ├── bullseye.cur │ │ ├── cdrom.ico │ │ ├── colours.bmp │ │ ├── computer.ico │ │ ├── cross.cur │ │ ├── csquery.bmp │ │ ├── drive.ico │ │ ├── file1.ico │ │ ├── floppy.ico │ │ ├── folder1.ico │ │ ├── folder2.ico │ │ ├── fugStreamRecord.vcproj │ │ ├── hand.cur │ │ ├── magnif1.cur │ │ ├── pbrush.cur │ │ ├── pencil.cur │ │ ├── pntleft.cur │ │ ├── pntright.cur │ │ ├── removble.ico │ │ ├── resource.h │ │ ├── rightarr.cur │ │ ├── roller.cur │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── fugStreamSend │ │ ├── Factory.cpp │ │ ├── FreeFrame.def │ │ ├── FreeFrameDll.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ ├── fugStreamSend.vcproj │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── fugThermal │ │ ├── Factory.cpp │ │ ├── FreeFrame.def │ │ ├── FreeFrameDll.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ ├── fugThermal.vcproj │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── fugThresholdKey │ │ ├── Factory.cpp │ │ ├── FreeFrame.def │ │ ├── FreeFrameDll.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ └── ThresholdKey.vcproj │ ├── fugVidRcv2 │ │ ├── Instance.cpp │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ ├── fugVidRcv2.pro │ │ └── instance.h │ ├── fugVidSnd2 │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ └── fugVidSnd2.pro │ └── fugVideoSampler │ │ ├── Factory.cpp │ │ ├── FreeFrame.def │ │ ├── FreeFrameDll.cpp │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ ├── VideoSampler.cpp │ │ ├── VideoSampler.h │ │ └── VideoSampler.vcproj ├── ffgl │ ├── CMakeLists.txt │ ├── fugCompilerGL │ │ ├── CMakeLists.txt │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ └── Plugin.h │ ├── fugFeedbackGL │ │ ├── CMakeLists.txt │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ ├── fugFeedback_FF16.frag │ │ ├── fugFeedback_FF16.vert │ │ ├── fugFeedback_FF20.frag │ │ └── fugFeedback_FF20.vert │ ├── fugGlitchGL │ │ ├── CMakeLists.txt │ │ ├── FindJPEGTURBO.cmake │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ └── fugGlitchGL.pro │ ├── fugPowerGL │ │ ├── CMakeLists.txt │ │ ├── FindPortAudio.cmake │ │ ├── fugPowerGL.pro │ │ ├── instance.cpp │ │ ├── instance.h │ │ ├── plugin.cpp │ │ └── plugin.h │ ├── fugScopeGL │ │ ├── CMakeLists.txt │ │ ├── FindPortAudio.cmake │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ └── fugScopeGL.pro │ ├── fugVidRcv2GL │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ └── fugVidRcv2GL.pro │ ├── fugVidSnd2GL │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ └── fugVidSnd2GL.pro │ └── fugWrapperGL │ │ ├── CMakeLists.txt │ │ ├── Instance.cpp │ │ ├── Instance.h │ │ ├── Plugin.cpp │ │ └── Plugin.h ├── freeframe.pro ├── include │ ├── ff15 │ │ ├── FFGL.h │ │ └── FreeFrame.h │ ├── ff16 │ │ ├── FFGL.h │ │ └── FreeFrame.h │ └── ff20 │ │ ├── FFGL.h │ │ └── FreeFrame.h └── shared │ ├── AudioWindow.cpp │ ├── AudioWindow.h │ ├── FFT.h │ ├── InstanceBase.cpp │ ├── InstanceBase.h │ ├── Library.cpp │ ├── Library.def │ ├── PluginBase.cpp │ ├── PluginBase.h │ ├── Shader.cpp │ ├── Shader.h │ ├── TexToBuf.cpp │ └── TexToBuf.h ├── LICENSE ├── Plugin ID List.txt ├── README.md ├── ff10 └── include │ └── FreeFrame.h ├── ff16 └── include │ ├── ffgl │ ├── FFGL.cpp │ ├── FFGL.h │ ├── FFGLExtensions.cpp │ ├── FFGLExtensions.h │ ├── FFGLFBO.cpp │ ├── FFGLFBO.h │ ├── FFGLLib.h │ ├── FFGLPluginInfo.cpp │ ├── FFGLPluginInfo.h │ ├── FFGLPluginInfoData.cpp │ ├── FFGLPluginManager.cpp │ ├── FFGLPluginManager.h │ ├── FFGLPluginManager_inl.h │ ├── FFGLPluginSDK.cpp │ ├── FFGLPluginSDK.h │ ├── FFGLShader.cpp │ ├── FFGLShader.h │ ├── FreeFrame.h │ └── utilities │ │ ├── utilities.cpp │ │ └── utilities.h │ └── glee │ ├── GLee.c │ └── GLee.h ├── fugVidStream ├── fugScreenCapture │ ├── fugScreenCapture.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── windowcapture.cpp │ ├── windowcapture.h │ ├── windowcapturebase.cpp │ ├── windowcapturebase.h │ ├── wingetclientrect.cpp │ ├── wingetclientrect.h │ ├── winprintwindow.cpp │ └── winprintwindow.h ├── fugSyphonReceive │ ├── fugSyphonReceive.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── syphonoutput.cpp │ ├── syphonoutput.h │ ├── syphonsend.h │ └── syphonsend.mm ├── fugSyphonSend │ ├── fugSyphonSend.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── fugVidStream.pro ├── fugVidStreamLib │ ├── ImageCompression.cpp │ ├── ImageCompression.h │ ├── ImageConvert.cpp │ ├── ImageConvert.h │ ├── Stream.cpp │ ├── Stream.h │ ├── StreamDecoder.cpp │ ├── StreamDecoder.h │ ├── StreamDecoderFactory.cpp │ ├── StreamDecoderFactory.h │ ├── StreamDecoderMemory.cpp │ ├── StreamDecoderMemory.h │ ├── StreamDecoderTCP.cpp │ ├── StreamDecoderTCP.h │ ├── StreamDecoderUDP.cpp │ ├── StreamDecoderUDP.h │ ├── StreamEncoder.cpp │ ├── StreamEncoder.h │ ├── StreamEncoderConfig.cpp │ ├── StreamEncoderConfig.h │ ├── StreamEncoderFactory.cpp │ ├── StreamEncoderFactory.h │ ├── StreamEncoderMemory.cpp │ ├── StreamEncoderMemory.h │ ├── StreamEncoderTCP.cpp │ ├── StreamEncoderTCP.h │ ├── StreamEncoderUDP.cpp │ ├── StreamEncoderUDP.h │ ├── StreamMemory.h │ ├── StreamThread.cpp │ ├── StreamThread.h │ ├── fugVidStream.cpp │ ├── fugVidStream.def │ ├── fugVidStream.h │ └── fugVidStreamLib.pro ├── fugVidStreamTests │ ├── IMAG0178.jpg │ ├── IMAG0180.jpg │ ├── fugVidStreamTests.cpp │ ├── fugVidStreamTests.pro │ ├── teststream.cpp │ └── teststream.h └── fugVidStreamTool │ ├── fugVidStreamTool.pro │ ├── fugstreamdecoder.cpp │ ├── fugstreamdecoder.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── glad ├── ff16 │ ├── include │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ └── glad.h │ └── src │ │ └── glad.c └── ff20 │ ├── include │ ├── KHR │ │ └── khrplatform.h │ └── glad │ │ └── glad.h │ └── src │ └── glad.c ├── readme ├── fugFeedbackGL.txt ├── fugGlitch.txt ├── fugGlitchGL.txt ├── fugPowerGL.txt ├── fugScopeGL.txt ├── fugSyphonReceive.txt ├── fugVidRcv2.txt ├── fugVidRcv2GL.txt ├── fugVidSnd2.txt ├── fugVidSnd2GL.txt ├── fugVidStreamLib.txt └── fugVidStreamTool.txt └── tester ├── CMakeLists.txt ├── freeframe_params_tester.cpp ├── freeframe_params_tester.h ├── freeframe_render_tester.cpp └── freeframe_render_tester.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /FreeFrame/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/CMakeLists.txt -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/FrameBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/FrameBuffer.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/FrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/FrameBuffer.h -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/FrameConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/FrameConvert.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/FrameConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/FrameConvert.h -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/Framework.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/Framework.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/FreeFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/FreeFrame.h -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/FreeFrameInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/FreeFrameInstance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/FreeFrameInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/FreeFrameInstance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/FreeFramePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/FreeFramePlugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/FreeFramePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/FreeFramePlugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/Stream.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/Stream.h -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamDecoder.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamDecoder.h -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamDecoderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamDecoderFactory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamDecoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamDecoderFactory.h -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamDecoderMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamDecoderMemory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamDecoderMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamDecoderMemory.h -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamDecoderTCP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamDecoderTCP.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamDecoderTCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamDecoderTCP.h -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamDecoderUDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamDecoderUDP.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamDecoderUDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamDecoderUDP.h -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamEncoder.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamEncoder.h -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamEncoderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamEncoderFactory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamEncoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamEncoderFactory.h -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamEncoderMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamEncoderMemory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamEncoderMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamEncoderMemory.h -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamEncoderTCP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamEncoderTCP.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamEncoderTCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamEncoderTCP.h -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamEncoderUDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamEncoderUDP.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamEncoderUDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamEncoderUDP.h -------------------------------------------------------------------------------- /FreeFrame/ff10/Framework/StreamMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/Framework/StreamMemory.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugBlender/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugBlender/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugBlender/FrameStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugBlender/FrameStore.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugBlender/FrameStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugBlender/FrameStore.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugBlender/FreeFrame.def: -------------------------------------------------------------------------------- 1 | EXPORTS plugMain 2 | -------------------------------------------------------------------------------- /FreeFrame/ff10/fugBlender/FreeFrameDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugBlender/FreeFrameDll.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugBlender/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugBlender/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugBlender/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugBlender/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugBlender/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugBlender/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugBlender/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugBlender/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugBlender/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugBlender/ReadMe.txt -------------------------------------------------------------------------------- /FreeFrame/ff10/fugBlender/fugBlender.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugBlender/fugBlender.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugBlender/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugBlender/stdafx.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugBlender/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugBlender/stdafx.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugChromaParallax/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugChromaParallax/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugChromaParallax/FreeFrame.def: -------------------------------------------------------------------------------- 1 | LIBRARY fugChromaParallax 2 | EXPORTS plugMain 3 | -------------------------------------------------------------------------------- /FreeFrame/ff10/fugChromaParallax/FreeFrameDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugChromaParallax/FreeFrameDll.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugChromaParallax/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugChromaParallax/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugChromaParallax/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugChromaParallax/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugChromaParallax/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugChromaParallax/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugChromaParallax/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugChromaParallax/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugChromaParallax/fugChromaParallax.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugChromaParallax/fugChromaParallax.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugHueKey/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugHueKey/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugHueKey/FreeFrame.def: -------------------------------------------------------------------------------- 1 | LIBRARY fugHueKey 2 | EXPORTS plugMain 3 | -------------------------------------------------------------------------------- /FreeFrame/ff10/fugHueKey/FreeFrameDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugHueKey/FreeFrameDll.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugHueKey/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugHueKey/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugHueKey/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugHueKey/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugHueKey/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugHueKey/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugHueKey/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugHueKey/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugHueKey/fugHueKey.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugHueKey/fugHueKey.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLuma3D/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLuma3D/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLuma3D/FreeFrame.def: -------------------------------------------------------------------------------- 1 | LIBRARY fugLuma3D 2 | EXPORTS plugMain 3 | -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLuma3D/FreeFrameDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLuma3D/FreeFrameDll.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLuma3D/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLuma3D/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLuma3D/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLuma3D/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLuma3D/Luma3D.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLuma3D/Luma3D.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLuma3D/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLuma3D/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLuma3D/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLuma3D/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLuma3D/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLuma3D/stdafx.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLuma3D/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLuma3D/stdafx.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaBendMask/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLumaBendMask/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaBendMask/FreeFrame.def: -------------------------------------------------------------------------------- 1 | LIBRARY fugLumaMaskBend 2 | EXPORTS plugMain 3 | -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaBendMask/FreeFrameDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLumaBendMask/FreeFrameDll.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaBendMask/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLumaBendMask/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaBendMask/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLumaBendMask/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaBendMask/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLumaBendMask/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaBendMask/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLumaBendMask/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaBendMask/fugLumaBendMask.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLumaBendMask/fugLumaBendMask.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaParallax/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLumaParallax/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaParallax/FreeFrame.def: -------------------------------------------------------------------------------- 1 | LIBRARY fugLumaParallax 2 | EXPORTS plugMain 3 | -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaParallax/FreeFrameDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLumaParallax/FreeFrameDll.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaParallax/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLumaParallax/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaParallax/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLumaParallax/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaParallax/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLumaParallax/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaParallax/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLumaParallax/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaParallax/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLumaParallax/ReadMe.txt -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaParallax/fugLumaParallax.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLumaParallax/fugLumaParallax.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaParallax/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLumaParallax/stdafx.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugLumaParallax/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugLumaParallax/stdafx.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMidiOut/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMidiOut/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMidiOut/FreeFrame.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMidiOut/FreeFrame.def -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMidiOut/FreeFrameDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMidiOut/FreeFrameDll.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMidiOut/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMidiOut/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMidiOut/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMidiOut/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMidiOut/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMidiOut/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMidiOut/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMidiOut/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMidiOut/fugMidiOut.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMidiOut/fugMidiOut.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMidiOut/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMidiOut/stdafx.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMidiOut/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMidiOut/stdafx.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMotionMatte/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMotionMatte/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMotionMatte/FreeFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMotionMatte/FreeFrame.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMotionMatte/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMotionMatte/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMotionMatte/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMotionMatte/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMotionMatte/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMotionMatte/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMotionMatte/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMotionMatte/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMotionMatte/fugMotionMatte.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMotionMatte/fugMotionMatte.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMotionMatte/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMotionMatte/stdafx.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugMotionMatte/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugMotionMatte/stdafx.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBChannelKey/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBChannelKey/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBChannelKey/FreeFrame.def: -------------------------------------------------------------------------------- 1 | LIBRARY fugRGBChannelKey 2 | EXPORTS plugMain 3 | -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBChannelKey/FreeFrameDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBChannelKey/FreeFrameDll.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBChannelKey/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBChannelKey/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBChannelKey/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBChannelKey/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBChannelKey/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBChannelKey/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBChannelKey/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBChannelKey/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBChannelKey/RGBChannelKey.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBChannelKey/RGBChannelKey.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBKey/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBKey/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBKey/FreeFrame.def: -------------------------------------------------------------------------------- 1 | LIBRARY fugRGBKey 2 | EXPORTS plugMain 3 | -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBKey/FreeFrameDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBKey/FreeFrameDll.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBKey/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBKey/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBKey/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBKey/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBKey/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBKey/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBKey/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBKey/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBKey/RGBKey.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBKey/RGBKey.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBMixer/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBMixer/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBMixer/FreeFrame.def: -------------------------------------------------------------------------------- 1 | LIBRARY fugRGBMixer 2 | EXPORTS plugMain 3 | -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBMixer/FreeFrameDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBMixer/FreeFrameDll.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBMixer/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBMixer/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBMixer/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBMixer/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBMixer/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBMixer/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBMixer/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBMixer/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBMixer/RGBMixer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBMixer/RGBMixer.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBMixer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBMixer/stdafx.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugRGBMixer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugRGBMixer/stdafx.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugScope/AudioCapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugScope/AudioCapture.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugScope/AudioCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugScope/AudioCapture.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugScope/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugScope/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugScope/FreeFrame.def: -------------------------------------------------------------------------------- 1 | LIBRARY fugScope 2 | EXPORTS plugMain 3 | -------------------------------------------------------------------------------- /FreeFrame/ff10/fugScope/FreeFrameDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugScope/FreeFrameDll.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugScope/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugScope/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugScope/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugScope/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugScope/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugScope/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugScope/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugScope/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugScope/Scope.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugScope/Scope.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugSobel/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugSobel/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugSobel/FreeFrame.def: -------------------------------------------------------------------------------- 1 | LIBRARY fugSobel 2 | EXPORTS plugMain 3 | -------------------------------------------------------------------------------- /FreeFrame/ff10/fugSobel/FreeFrameDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugSobel/FreeFrameDll.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugSobel/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugSobel/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugSobel/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugSobel/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugSobel/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugSobel/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugSobel/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugSobel/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugSobel/fugSobel.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugSobel/fugSobel.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugSobel/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugSobel/stdafx.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugSobel/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugSobel/stdafx.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamReceive/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamReceive/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamReceive/FreeFrame.def: -------------------------------------------------------------------------------- 1 | LIBRARY fugStreamReceive 2 | EXPORTS plugMain 3 | -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamReceive/FreeFrameDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamReceive/FreeFrameDll.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamReceive/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamReceive/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamReceive/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamReceive/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamReceive/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamReceive/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamReceive/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamReceive/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamReceive/fugStreamReceive.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamReceive/fugStreamReceive.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamReceive/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamReceive/stdafx.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamReceive/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamReceive/stdafx.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/AVIGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/AVIGenerator.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/AVIGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/AVIGenerator.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/StreamRecordApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/StreamRecordApp.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/StreamRecordApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/StreamRecordApp.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/StreamRecordDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/StreamRecordDialog.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/StreamRecordDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/StreamRecordDialog.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/blank.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/blank.cur -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/bullseye.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/bullseye.cur -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/cdrom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/cdrom.ico -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/colours.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/colours.bmp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/computer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/computer.ico -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/cross.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/cross.cur -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/csquery.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/csquery.bmp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/drive.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/drive.ico -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/file1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/file1.ico -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/floppy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/floppy.ico -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/folder1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/folder1.ico -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/folder2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/folder2.ico -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/fugStreamRecord.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/fugStreamRecord.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/hand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/hand.cur -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/magnif1.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/magnif1.cur -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/pbrush.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/pbrush.cur -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/pencil.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/pencil.cur -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/pntleft.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/pntleft.cur -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/pntright.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/pntright.cur -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/removble.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/removble.ico -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/resource.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/rightarr.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/rightarr.cur -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/roller.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/roller.cur -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/stdafx.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamRecord/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamRecord/stdafx.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamSend/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamSend/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamSend/FreeFrame.def: -------------------------------------------------------------------------------- 1 | LIBRARY fugStreamSend 2 | EXPORTS plugMain 3 | -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamSend/FreeFrameDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamSend/FreeFrameDll.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamSend/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamSend/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamSend/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamSend/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamSend/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamSend/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamSend/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamSend/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamSend/fugStreamSend.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamSend/fugStreamSend.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamSend/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamSend/stdafx.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugStreamSend/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugStreamSend/stdafx.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThermal/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugThermal/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThermal/FreeFrame.def: -------------------------------------------------------------------------------- 1 | LIBRARY fugThermal 2 | EXPORTS plugMain 3 | -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThermal/FreeFrameDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugThermal/FreeFrameDll.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThermal/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugThermal/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThermal/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugThermal/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThermal/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugThermal/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThermal/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugThermal/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThermal/fugThermal.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugThermal/fugThermal.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThermal/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugThermal/stdafx.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThermal/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugThermal/stdafx.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThresholdKey/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugThresholdKey/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThresholdKey/FreeFrame.def: -------------------------------------------------------------------------------- 1 | LIBRARY fugThresholdKey 2 | EXPORTS plugMain 3 | -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThresholdKey/FreeFrameDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugThresholdKey/FreeFrameDll.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThresholdKey/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugThresholdKey/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThresholdKey/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugThresholdKey/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThresholdKey/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugThresholdKey/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThresholdKey/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugThresholdKey/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugThresholdKey/ThresholdKey.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugThresholdKey/ThresholdKey.vcproj -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVidRcv2/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVidRcv2/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVidRcv2/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVidRcv2/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVidRcv2/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVidRcv2/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVidRcv2/fugVidRcv2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVidRcv2/fugVidRcv2.pro -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVidRcv2/instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVidRcv2/instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVidSnd2/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVidSnd2/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVidSnd2/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVidSnd2/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVidSnd2/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVidSnd2/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVidSnd2/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVidSnd2/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVidSnd2/fugVidSnd2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVidSnd2/fugVidSnd2.pro -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVideoSampler/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVideoSampler/Factory.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVideoSampler/FreeFrame.def: -------------------------------------------------------------------------------- 1 | LIBRARY fugVideoSampler 2 | EXPORTS plugMain 3 | -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVideoSampler/FreeFrameDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVideoSampler/FreeFrameDll.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVideoSampler/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVideoSampler/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVideoSampler/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVideoSampler/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVideoSampler/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVideoSampler/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVideoSampler/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVideoSampler/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVideoSampler/VideoSampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVideoSampler/VideoSampler.cpp -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVideoSampler/VideoSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVideoSampler/VideoSampler.h -------------------------------------------------------------------------------- /FreeFrame/ff10/fugVideoSampler/VideoSampler.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ff10/fugVideoSampler/VideoSampler.vcproj -------------------------------------------------------------------------------- /FreeFrame/ffgl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/CMakeLists.txt -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugCompilerGL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugCompilerGL/CMakeLists.txt -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugCompilerGL/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugCompilerGL/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugCompilerGL/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugCompilerGL/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugCompilerGL/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugCompilerGL/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugCompilerGL/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugCompilerGL/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugFeedbackGL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugFeedbackGL/CMakeLists.txt -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugFeedbackGL/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugFeedbackGL/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugFeedbackGL/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugFeedbackGL/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugFeedbackGL/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugFeedbackGL/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugFeedbackGL/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugFeedbackGL/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugFeedbackGL/fugFeedback_FF16.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugFeedbackGL/fugFeedback_FF16.frag -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugFeedbackGL/fugFeedback_FF16.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugFeedbackGL/fugFeedback_FF16.vert -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugFeedbackGL/fugFeedback_FF20.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugFeedbackGL/fugFeedback_FF20.frag -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugFeedbackGL/fugFeedback_FF20.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugFeedbackGL/fugFeedback_FF20.vert -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugGlitchGL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugGlitchGL/CMakeLists.txt -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugGlitchGL/FindJPEGTURBO.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugGlitchGL/FindJPEGTURBO.cmake -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugGlitchGL/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugGlitchGL/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugGlitchGL/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugGlitchGL/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugGlitchGL/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugGlitchGL/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugGlitchGL/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugGlitchGL/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugGlitchGL/fugGlitchGL.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugGlitchGL/fugGlitchGL.pro -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugPowerGL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugPowerGL/CMakeLists.txt -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugPowerGL/FindPortAudio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugPowerGL/FindPortAudio.cmake -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugPowerGL/fugPowerGL.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugPowerGL/fugPowerGL.pro -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugPowerGL/instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugPowerGL/instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugPowerGL/instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugPowerGL/instance.h -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugPowerGL/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugPowerGL/plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugPowerGL/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugPowerGL/plugin.h -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugScopeGL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugScopeGL/CMakeLists.txt -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugScopeGL/FindPortAudio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugScopeGL/FindPortAudio.cmake -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugScopeGL/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugScopeGL/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugScopeGL/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugScopeGL/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugScopeGL/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugScopeGL/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugScopeGL/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugScopeGL/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugScopeGL/fugScopeGL.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugScopeGL/fugScopeGL.pro -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugVidRcv2GL/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugVidRcv2GL/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugVidRcv2GL/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugVidRcv2GL/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugVidRcv2GL/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugVidRcv2GL/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugVidRcv2GL/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugVidRcv2GL/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugVidRcv2GL/fugVidRcv2GL.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugVidRcv2GL/fugVidRcv2GL.pro -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugVidSnd2GL/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugVidSnd2GL/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugVidSnd2GL/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugVidSnd2GL/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugVidSnd2GL/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugVidSnd2GL/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugVidSnd2GL/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugVidSnd2GL/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugVidSnd2GL/fugVidSnd2GL.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugVidSnd2GL/fugVidSnd2GL.pro -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugWrapperGL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugWrapperGL/CMakeLists.txt -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugWrapperGL/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugWrapperGL/Instance.cpp -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugWrapperGL/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugWrapperGL/Instance.h -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugWrapperGL/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugWrapperGL/Plugin.cpp -------------------------------------------------------------------------------- /FreeFrame/ffgl/fugWrapperGL/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/ffgl/fugWrapperGL/Plugin.h -------------------------------------------------------------------------------- /FreeFrame/freeframe.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/freeframe.pro -------------------------------------------------------------------------------- /FreeFrame/include/ff15/FFGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/include/ff15/FFGL.h -------------------------------------------------------------------------------- /FreeFrame/include/ff15/FreeFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/include/ff15/FreeFrame.h -------------------------------------------------------------------------------- /FreeFrame/include/ff16/FFGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/include/ff16/FFGL.h -------------------------------------------------------------------------------- /FreeFrame/include/ff16/FreeFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/include/ff16/FreeFrame.h -------------------------------------------------------------------------------- /FreeFrame/include/ff20/FFGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/include/ff20/FFGL.h -------------------------------------------------------------------------------- /FreeFrame/include/ff20/FreeFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/include/ff20/FreeFrame.h -------------------------------------------------------------------------------- /FreeFrame/shared/AudioWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/shared/AudioWindow.cpp -------------------------------------------------------------------------------- /FreeFrame/shared/AudioWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/shared/AudioWindow.h -------------------------------------------------------------------------------- /FreeFrame/shared/FFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/shared/FFT.h -------------------------------------------------------------------------------- /FreeFrame/shared/InstanceBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/shared/InstanceBase.cpp -------------------------------------------------------------------------------- /FreeFrame/shared/InstanceBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/shared/InstanceBase.h -------------------------------------------------------------------------------- /FreeFrame/shared/Library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/shared/Library.cpp -------------------------------------------------------------------------------- /FreeFrame/shared/Library.def: -------------------------------------------------------------------------------- 1 | 2 | EXPORTS plugMain 3 | -------------------------------------------------------------------------------- /FreeFrame/shared/PluginBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/shared/PluginBase.cpp -------------------------------------------------------------------------------- /FreeFrame/shared/PluginBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/shared/PluginBase.h -------------------------------------------------------------------------------- /FreeFrame/shared/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/shared/Shader.cpp -------------------------------------------------------------------------------- /FreeFrame/shared/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/shared/Shader.h -------------------------------------------------------------------------------- /FreeFrame/shared/TexToBuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/shared/TexToBuf.cpp -------------------------------------------------------------------------------- /FreeFrame/shared/TexToBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/FreeFrame/shared/TexToBuf.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugin ID List.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/Plugin ID List.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/README.md -------------------------------------------------------------------------------- /ff10/include/FreeFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff10/include/FreeFrame.h -------------------------------------------------------------------------------- /ff16/include/ffgl/FFGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FFGL.cpp -------------------------------------------------------------------------------- /ff16/include/ffgl/FFGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FFGL.h -------------------------------------------------------------------------------- /ff16/include/ffgl/FFGLExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FFGLExtensions.cpp -------------------------------------------------------------------------------- /ff16/include/ffgl/FFGLExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FFGLExtensions.h -------------------------------------------------------------------------------- /ff16/include/ffgl/FFGLFBO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FFGLFBO.cpp -------------------------------------------------------------------------------- /ff16/include/ffgl/FFGLFBO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FFGLFBO.h -------------------------------------------------------------------------------- /ff16/include/ffgl/FFGLLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FFGLLib.h -------------------------------------------------------------------------------- /ff16/include/ffgl/FFGLPluginInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FFGLPluginInfo.cpp -------------------------------------------------------------------------------- /ff16/include/ffgl/FFGLPluginInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FFGLPluginInfo.h -------------------------------------------------------------------------------- /ff16/include/ffgl/FFGLPluginInfoData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FFGLPluginInfoData.cpp -------------------------------------------------------------------------------- /ff16/include/ffgl/FFGLPluginManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FFGLPluginManager.cpp -------------------------------------------------------------------------------- /ff16/include/ffgl/FFGLPluginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FFGLPluginManager.h -------------------------------------------------------------------------------- /ff16/include/ffgl/FFGLPluginManager_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FFGLPluginManager_inl.h -------------------------------------------------------------------------------- /ff16/include/ffgl/FFGLPluginSDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FFGLPluginSDK.cpp -------------------------------------------------------------------------------- /ff16/include/ffgl/FFGLPluginSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FFGLPluginSDK.h -------------------------------------------------------------------------------- /ff16/include/ffgl/FFGLShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FFGLShader.cpp -------------------------------------------------------------------------------- /ff16/include/ffgl/FFGLShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FFGLShader.h -------------------------------------------------------------------------------- /ff16/include/ffgl/FreeFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/FreeFrame.h -------------------------------------------------------------------------------- /ff16/include/ffgl/utilities/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/utilities/utilities.cpp -------------------------------------------------------------------------------- /ff16/include/ffgl/utilities/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/ffgl/utilities/utilities.h -------------------------------------------------------------------------------- /ff16/include/glee/GLee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/glee/GLee.c -------------------------------------------------------------------------------- /ff16/include/glee/GLee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/ff16/include/glee/GLee.h -------------------------------------------------------------------------------- /fugVidStream/fugScreenCapture/fugScreenCapture.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugScreenCapture/fugScreenCapture.pro -------------------------------------------------------------------------------- /fugVidStream/fugScreenCapture/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugScreenCapture/main.cpp -------------------------------------------------------------------------------- /fugVidStream/fugScreenCapture/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugScreenCapture/mainwindow.cpp -------------------------------------------------------------------------------- /fugVidStream/fugScreenCapture/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugScreenCapture/mainwindow.h -------------------------------------------------------------------------------- /fugVidStream/fugScreenCapture/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugScreenCapture/mainwindow.ui -------------------------------------------------------------------------------- /fugVidStream/fugScreenCapture/windowcapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugScreenCapture/windowcapture.cpp -------------------------------------------------------------------------------- /fugVidStream/fugScreenCapture/windowcapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugScreenCapture/windowcapture.h -------------------------------------------------------------------------------- /fugVidStream/fugScreenCapture/windowcapturebase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugScreenCapture/windowcapturebase.cpp -------------------------------------------------------------------------------- /fugVidStream/fugScreenCapture/windowcapturebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugScreenCapture/windowcapturebase.h -------------------------------------------------------------------------------- /fugVidStream/fugScreenCapture/wingetclientrect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugScreenCapture/wingetclientrect.cpp -------------------------------------------------------------------------------- /fugVidStream/fugScreenCapture/wingetclientrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugScreenCapture/wingetclientrect.h -------------------------------------------------------------------------------- /fugVidStream/fugScreenCapture/winprintwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugScreenCapture/winprintwindow.cpp -------------------------------------------------------------------------------- /fugVidStream/fugScreenCapture/winprintwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugScreenCapture/winprintwindow.h -------------------------------------------------------------------------------- /fugVidStream/fugSyphonReceive/fugSyphonReceive.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugSyphonReceive/fugSyphonReceive.pro -------------------------------------------------------------------------------- /fugVidStream/fugSyphonReceive/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugSyphonReceive/main.cpp -------------------------------------------------------------------------------- /fugVidStream/fugSyphonReceive/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugSyphonReceive/mainwindow.cpp -------------------------------------------------------------------------------- /fugVidStream/fugSyphonReceive/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugSyphonReceive/mainwindow.h -------------------------------------------------------------------------------- /fugVidStream/fugSyphonReceive/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugSyphonReceive/mainwindow.ui -------------------------------------------------------------------------------- /fugVidStream/fugSyphonReceive/syphonoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugSyphonReceive/syphonoutput.cpp -------------------------------------------------------------------------------- /fugVidStream/fugSyphonReceive/syphonoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugSyphonReceive/syphonoutput.h -------------------------------------------------------------------------------- /fugVidStream/fugSyphonReceive/syphonsend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugSyphonReceive/syphonsend.h -------------------------------------------------------------------------------- /fugVidStream/fugSyphonReceive/syphonsend.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugSyphonReceive/syphonsend.mm -------------------------------------------------------------------------------- /fugVidStream/fugSyphonSend/fugSyphonSend.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugSyphonSend/fugSyphonSend.pro -------------------------------------------------------------------------------- /fugVidStream/fugSyphonSend/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugSyphonSend/main.cpp -------------------------------------------------------------------------------- /fugVidStream/fugSyphonSend/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugSyphonSend/mainwindow.cpp -------------------------------------------------------------------------------- /fugVidStream/fugSyphonSend/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugSyphonSend/mainwindow.h -------------------------------------------------------------------------------- /fugVidStream/fugSyphonSend/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugSyphonSend/mainwindow.ui -------------------------------------------------------------------------------- /fugVidStream/fugVidStream.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStream.pro -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/ImageCompression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/ImageCompression.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/ImageCompression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/ImageCompression.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/ImageConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/ImageConvert.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/ImageConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/ImageConvert.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/Stream.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/Stream.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamDecoder.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamDecoder.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamDecoderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamDecoderFactory.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamDecoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamDecoderFactory.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamDecoderMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamDecoderMemory.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamDecoderMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamDecoderMemory.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamDecoderTCP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamDecoderTCP.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamDecoderTCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamDecoderTCP.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamDecoderUDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamDecoderUDP.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamDecoderUDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamDecoderUDP.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamEncoder.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamEncoder.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamEncoderConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamEncoderConfig.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamEncoderConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamEncoderConfig.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamEncoderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamEncoderFactory.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamEncoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamEncoderFactory.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamEncoderMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamEncoderMemory.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamEncoderMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamEncoderMemory.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamEncoderTCP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamEncoderTCP.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamEncoderTCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamEncoderTCP.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamEncoderUDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamEncoderUDP.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamEncoderUDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamEncoderUDP.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamMemory.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamThread.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/StreamThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/StreamThread.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/fugVidStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/fugVidStream.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/fugVidStream.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/fugVidStream.def -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/fugVidStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/fugVidStream.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamLib/fugVidStreamLib.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamLib/fugVidStreamLib.pro -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamTests/IMAG0178.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamTests/IMAG0178.jpg -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamTests/IMAG0180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamTests/IMAG0180.jpg -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamTests/fugVidStreamTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamTests/fugVidStreamTests.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamTests/fugVidStreamTests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamTests/fugVidStreamTests.pro -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamTests/teststream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamTests/teststream.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamTests/teststream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamTests/teststream.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamTool/fugVidStreamTool.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamTool/fugVidStreamTool.pro -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamTool/fugstreamdecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamTool/fugstreamdecoder.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamTool/fugstreamdecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamTool/fugstreamdecoder.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamTool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamTool/main.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamTool/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamTool/mainwindow.cpp -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamTool/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamTool/mainwindow.h -------------------------------------------------------------------------------- /fugVidStream/fugVidStreamTool/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/fugVidStream/fugVidStreamTool/mainwindow.ui -------------------------------------------------------------------------------- /glad/ff16/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/glad/ff16/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /glad/ff16/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/glad/ff16/include/glad/glad.h -------------------------------------------------------------------------------- /glad/ff16/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/glad/ff16/src/glad.c -------------------------------------------------------------------------------- /glad/ff20/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/glad/ff20/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /glad/ff20/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/glad/ff20/include/glad/glad.h -------------------------------------------------------------------------------- /glad/ff20/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/glad/ff20/src/glad.c -------------------------------------------------------------------------------- /readme/fugFeedbackGL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/readme/fugFeedbackGL.txt -------------------------------------------------------------------------------- /readme/fugGlitch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/readme/fugGlitch.txt -------------------------------------------------------------------------------- /readme/fugGlitchGL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/readme/fugGlitchGL.txt -------------------------------------------------------------------------------- /readme/fugPowerGL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/readme/fugPowerGL.txt -------------------------------------------------------------------------------- /readme/fugScopeGL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/readme/fugScopeGL.txt -------------------------------------------------------------------------------- /readme/fugSyphonReceive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/readme/fugSyphonReceive.txt -------------------------------------------------------------------------------- /readme/fugVidRcv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/readme/fugVidRcv2.txt -------------------------------------------------------------------------------- /readme/fugVidRcv2GL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/readme/fugVidRcv2GL.txt -------------------------------------------------------------------------------- /readme/fugVidSnd2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/readme/fugVidSnd2.txt -------------------------------------------------------------------------------- /readme/fugVidSnd2GL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/readme/fugVidSnd2GL.txt -------------------------------------------------------------------------------- /readme/fugVidStreamLib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/readme/fugVidStreamLib.txt -------------------------------------------------------------------------------- /readme/fugVidStreamTool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/readme/fugVidStreamTool.txt -------------------------------------------------------------------------------- /tester/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/tester/CMakeLists.txt -------------------------------------------------------------------------------- /tester/freeframe_params_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/tester/freeframe_params_tester.cpp -------------------------------------------------------------------------------- /tester/freeframe_params_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/tester/freeframe_params_tester.h -------------------------------------------------------------------------------- /tester/freeframe_render_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/tester/freeframe_render_tester.cpp -------------------------------------------------------------------------------- /tester/freeframe_render_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigfug/Freeframe/HEAD/tester/freeframe_render_tester.h --------------------------------------------------------------------------------