├── .gitattributes ├── .gitignore ├── FastVideoDS.sln ├── FastVideoDSEncoder ├── Adpcm.cs ├── FFMpegDecoder.cs ├── FastVideoDSEncoder.csproj ├── FvEncoder.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── SpanExtensions.cs └── x64 │ ├── avcodec-59.dll │ ├── avdevice-59.dll │ ├── avfilter-8.dll │ ├── avformat-59.dll │ ├── avutil-57.dll │ ├── postproc-56.dll │ ├── swresample-4.dll │ └── swscale-6.dll ├── FastVideoDSInfo ├── FastVideoDSInfo.csproj ├── Program.cs └── Properties │ └── launchSettings.json ├── Gericom.FastVideoDS ├── Bitstream │ ├── BitReader.cs │ └── BitWriter.cs ├── Dct.cs ├── FastVideoDSEncoder.cs ├── Frames │ ├── FramePool.cs │ ├── RefFrame.cs │ └── Rgb555Frame.cs ├── Gericom.FastVideoDS.csproj ├── MotionEstimation.cs ├── MotionVector.cs ├── Utils │ └── FrameUtil.cs ├── Vlc.cs └── VlcTables.cs └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/.gitignore -------------------------------------------------------------------------------- /FastVideoDS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDS.sln -------------------------------------------------------------------------------- /FastVideoDSEncoder/Adpcm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSEncoder/Adpcm.cs -------------------------------------------------------------------------------- /FastVideoDSEncoder/FFMpegDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSEncoder/FFMpegDecoder.cs -------------------------------------------------------------------------------- /FastVideoDSEncoder/FastVideoDSEncoder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSEncoder/FastVideoDSEncoder.csproj -------------------------------------------------------------------------------- /FastVideoDSEncoder/FvEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSEncoder/FvEncoder.cs -------------------------------------------------------------------------------- /FastVideoDSEncoder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSEncoder/Program.cs -------------------------------------------------------------------------------- /FastVideoDSEncoder/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSEncoder/Properties/launchSettings.json -------------------------------------------------------------------------------- /FastVideoDSEncoder/SpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSEncoder/SpanExtensions.cs -------------------------------------------------------------------------------- /FastVideoDSEncoder/x64/avcodec-59.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSEncoder/x64/avcodec-59.dll -------------------------------------------------------------------------------- /FastVideoDSEncoder/x64/avdevice-59.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSEncoder/x64/avdevice-59.dll -------------------------------------------------------------------------------- /FastVideoDSEncoder/x64/avfilter-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSEncoder/x64/avfilter-8.dll -------------------------------------------------------------------------------- /FastVideoDSEncoder/x64/avformat-59.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSEncoder/x64/avformat-59.dll -------------------------------------------------------------------------------- /FastVideoDSEncoder/x64/avutil-57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSEncoder/x64/avutil-57.dll -------------------------------------------------------------------------------- /FastVideoDSEncoder/x64/postproc-56.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSEncoder/x64/postproc-56.dll -------------------------------------------------------------------------------- /FastVideoDSEncoder/x64/swresample-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSEncoder/x64/swresample-4.dll -------------------------------------------------------------------------------- /FastVideoDSEncoder/x64/swscale-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSEncoder/x64/swscale-6.dll -------------------------------------------------------------------------------- /FastVideoDSInfo/FastVideoDSInfo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSInfo/FastVideoDSInfo.csproj -------------------------------------------------------------------------------- /FastVideoDSInfo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSInfo/Program.cs -------------------------------------------------------------------------------- /FastVideoDSInfo/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/FastVideoDSInfo/Properties/launchSettings.json -------------------------------------------------------------------------------- /Gericom.FastVideoDS/Bitstream/BitReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/Gericom.FastVideoDS/Bitstream/BitReader.cs -------------------------------------------------------------------------------- /Gericom.FastVideoDS/Bitstream/BitWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/Gericom.FastVideoDS/Bitstream/BitWriter.cs -------------------------------------------------------------------------------- /Gericom.FastVideoDS/Dct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/Gericom.FastVideoDS/Dct.cs -------------------------------------------------------------------------------- /Gericom.FastVideoDS/FastVideoDSEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/Gericom.FastVideoDS/FastVideoDSEncoder.cs -------------------------------------------------------------------------------- /Gericom.FastVideoDS/Frames/FramePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/Gericom.FastVideoDS/Frames/FramePool.cs -------------------------------------------------------------------------------- /Gericom.FastVideoDS/Frames/RefFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/Gericom.FastVideoDS/Frames/RefFrame.cs -------------------------------------------------------------------------------- /Gericom.FastVideoDS/Frames/Rgb555Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/Gericom.FastVideoDS/Frames/Rgb555Frame.cs -------------------------------------------------------------------------------- /Gericom.FastVideoDS/Gericom.FastVideoDS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/Gericom.FastVideoDS/Gericom.FastVideoDS.csproj -------------------------------------------------------------------------------- /Gericom.FastVideoDS/MotionEstimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/Gericom.FastVideoDS/MotionEstimation.cs -------------------------------------------------------------------------------- /Gericom.FastVideoDS/MotionVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/Gericom.FastVideoDS/MotionVector.cs -------------------------------------------------------------------------------- /Gericom.FastVideoDS/Utils/FrameUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/Gericom.FastVideoDS/Utils/FrameUtil.cs -------------------------------------------------------------------------------- /Gericom.FastVideoDS/Vlc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/Gericom.FastVideoDS/Vlc.cs -------------------------------------------------------------------------------- /Gericom.FastVideoDS/VlcTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/Gericom.FastVideoDS/VlcTables.cs -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gericom/FastVideoDSEncoder/HEAD/readme.md --------------------------------------------------------------------------------