├── .github └── workflows │ └── cineform.yml ├── .gitignore ├── AUTHORS.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── Codec ├── DemoasicFrames.cpp ├── DemoasicFrames.h ├── InvertHorizontalStrip16s.c ├── RGB2YUV.c ├── RGB2YUV.h ├── allocator.c ├── allocator.h ├── bandfile.c ├── bandfile.h ├── bayer.c ├── bayer.h ├── bitstream.c ├── bitstream.h ├── buffer.c ├── buffer.h ├── codebooks.c ├── codebooks.h ├── codec.c ├── codec.h ├── color.h ├── config.h ├── convert.c ├── convert.h ├── counter.h ├── cpuid.c ├── cpuid.h ├── debug.c ├── debug.h ├── decoder.c ├── decoder.h ├── dither.c ├── dither.h ├── draw.c ├── draw.h ├── dump.c ├── dump.h ├── encoder.c ├── encoder.h ├── entropy_threading.c ├── error.h ├── exception.cpp ├── exception.h ├── filter.c ├── filter.h ├── frame.c ├── frame.h ├── image.c ├── image.h ├── keyframes.c ├── keyframes.h ├── lutpath.cpp ├── lutpath.h ├── metadata.c ├── metadata.h ├── quantize.c ├── quantize.h ├── recursive.c ├── recursive.h ├── scanner.c ├── scanner.h ├── spatial.c ├── spatial.h ├── stats.c ├── stats.h ├── stdafx.h ├── swap.c ├── swap.h ├── temporal.c ├── temporal.h ├── thread.c ├── thread.h ├── thumbnail.c ├── thumbnail.h ├── timing.c ├── timing.h ├── vlc.c ├── vlc.h ├── wavelet.c └── wavelet.h ├── Common ├── AVIExtendedHeader.h ├── CFHDAllocator.h ├── CFHDDecoder.h ├── CFHDEncoder.h ├── CFHDError.h ├── CFHDMetadata.h ├── CFHDMetadataTags.h ├── CFHDSampleHeader.h ├── CFHDTypes.h ├── Condition.h ├── IAllocator.h ├── Lock.h ├── MessageQueue.cpp ├── MessageQueue.h ├── SampleMetadata.h ├── StdAfx.h ├── ThreadMessage.cpp ├── ThreadMessage.h ├── ThreadPool.cpp ├── ThreadPool.h ├── fsm17.inc ├── fsm18.inc ├── fsm9.inc ├── macdefs.h ├── table17.inc ├── table18.inc ├── table9.inc └── ver.h ├── ConvertLib ├── Bilinear.cpp ├── Bilinear.h ├── ColorFlags.h ├── ColorMatrix.cpp ├── ColorMatrix.h ├── ConvertLib.h ├── ConvertYUV8.cpp ├── ConvertYUV8.h ├── DPXConverter.cpp ├── DPXConverter.h ├── ImageConverter.cpp ├── ImageConverter.h ├── ImageScaler.cpp ├── ImageScaler.h ├── MemAlloc.cpp ├── MemAlloc.h └── StdAfx.h ├── DecoderSDK ├── CFHDDecoder.cpp ├── CFHDMetadata.cpp ├── Conversion.cpp ├── Conversion.h ├── ISampleDecoder.cpp ├── ISampleDecoder.h ├── SampleDecoder.cpp ├── SampleDecoder.h ├── SampleMetadata.cpp ├── SampleMetadata.h ├── StdAfx.h ├── resource.h └── ver.h ├── EncoderSDK ├── Allocator.h ├── AsyncEncoder.cpp ├── AsyncEncoder.h ├── CFHDEncoder.cpp ├── CFHDEncoderMetadata.cpp ├── CFHDEncoderPool.cpp ├── EncoderPool.cpp ├── EncoderPool.h ├── EncoderQueue.cpp ├── EncoderQueue.h ├── Interface.h ├── MetadataWriter.cpp ├── MetadataWriter.h ├── SampleEncoder.cpp ├── SampleEncoder.h ├── StdAfx.h ├── VideoBuffers.cpp ├── VideoBuffers.h └── ver.h ├── Example ├── TestCFHD.cpp ├── WaveletDemo │ ├── makefile │ ├── utils.c │ ├── utils.h │ └── wavelets.c ├── avi.h ├── classicQBist.cpp ├── fileio.cpp ├── fileio.h ├── misc │ ├── CFHDDecoderStub.cpp │ └── CFHDEncoderStub.cpp ├── mp4reader.cpp ├── mp4reader.h ├── qbist.cpp ├── qbist.h ├── readavi.cpp ├── stdafx.h ├── targetver.h ├── utils.cpp ├── utils.h └── videos │ ├── CFHDsample422.AVI │ └── CFHDsample444.AVI ├── GPDeps ├── LICENSE-APACHE ├── LICENSE-MIT ├── LICENSE.txt ├── README.md ├── WarpLib ├── GeoMesh.c ├── GeoMesh.h ├── GeoMeshApply.c ├── GeoMeshApply.h ├── GeoMeshCache.c ├── GeoMeshGoPro.c ├── GeoMeshInterp.c ├── GeoMeshInterp.h ├── GeoMeshIpl.h ├── GeoMeshPrivate.h ├── GeoMeshTransform.c ├── GeoMeshYuy2.c ├── GeoMeshYuy2.h ├── WarpLib.h └── sse_types.h ├── data ├── readmegfx │ ├── level1-640.png │ ├── level1D-640.png │ ├── level2-640.png │ ├── level3-640.png │ └── source-640.png └── testpatt.pgm ├── docs ├── README.md ├── _config.yml ├── favicon.png └── readmegfx │ ├── CF-Logo-960.png │ ├── CF-Logo-OLDsm.png │ ├── CF-Logo-oldest.png │ ├── level1-640.png │ ├── level1D-640.png │ ├── level2-640.png │ ├── level3-640.png │ └── source-640.png ├── libcineformsdk.pc.cmake └── ucm.cmake /.github/workflows/cineform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/.github/workflows/cineform.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Codec/DemoasicFrames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/DemoasicFrames.cpp -------------------------------------------------------------------------------- /Codec/DemoasicFrames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/DemoasicFrames.h -------------------------------------------------------------------------------- /Codec/InvertHorizontalStrip16s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/InvertHorizontalStrip16s.c -------------------------------------------------------------------------------- /Codec/RGB2YUV.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/RGB2YUV.c -------------------------------------------------------------------------------- /Codec/RGB2YUV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/RGB2YUV.h -------------------------------------------------------------------------------- /Codec/allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/allocator.c -------------------------------------------------------------------------------- /Codec/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/allocator.h -------------------------------------------------------------------------------- /Codec/bandfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/bandfile.c -------------------------------------------------------------------------------- /Codec/bandfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/bandfile.h -------------------------------------------------------------------------------- /Codec/bayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/bayer.c -------------------------------------------------------------------------------- /Codec/bayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/bayer.h -------------------------------------------------------------------------------- /Codec/bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/bitstream.c -------------------------------------------------------------------------------- /Codec/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/bitstream.h -------------------------------------------------------------------------------- /Codec/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/buffer.c -------------------------------------------------------------------------------- /Codec/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/buffer.h -------------------------------------------------------------------------------- /Codec/codebooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/codebooks.c -------------------------------------------------------------------------------- /Codec/codebooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/codebooks.h -------------------------------------------------------------------------------- /Codec/codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/codec.c -------------------------------------------------------------------------------- /Codec/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/codec.h -------------------------------------------------------------------------------- /Codec/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/color.h -------------------------------------------------------------------------------- /Codec/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/config.h -------------------------------------------------------------------------------- /Codec/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/convert.c -------------------------------------------------------------------------------- /Codec/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/convert.h -------------------------------------------------------------------------------- /Codec/counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/counter.h -------------------------------------------------------------------------------- /Codec/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/cpuid.c -------------------------------------------------------------------------------- /Codec/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/cpuid.h -------------------------------------------------------------------------------- /Codec/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/debug.c -------------------------------------------------------------------------------- /Codec/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/debug.h -------------------------------------------------------------------------------- /Codec/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/decoder.c -------------------------------------------------------------------------------- /Codec/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/decoder.h -------------------------------------------------------------------------------- /Codec/dither.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/dither.c -------------------------------------------------------------------------------- /Codec/dither.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/dither.h -------------------------------------------------------------------------------- /Codec/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/draw.c -------------------------------------------------------------------------------- /Codec/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/draw.h -------------------------------------------------------------------------------- /Codec/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/dump.c -------------------------------------------------------------------------------- /Codec/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/dump.h -------------------------------------------------------------------------------- /Codec/encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/encoder.c -------------------------------------------------------------------------------- /Codec/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/encoder.h -------------------------------------------------------------------------------- /Codec/entropy_threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/entropy_threading.c -------------------------------------------------------------------------------- /Codec/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/error.h -------------------------------------------------------------------------------- /Codec/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/exception.cpp -------------------------------------------------------------------------------- /Codec/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/exception.h -------------------------------------------------------------------------------- /Codec/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/filter.c -------------------------------------------------------------------------------- /Codec/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/filter.h -------------------------------------------------------------------------------- /Codec/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/frame.c -------------------------------------------------------------------------------- /Codec/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/frame.h -------------------------------------------------------------------------------- /Codec/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/image.c -------------------------------------------------------------------------------- /Codec/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/image.h -------------------------------------------------------------------------------- /Codec/keyframes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/keyframes.c -------------------------------------------------------------------------------- /Codec/keyframes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/keyframes.h -------------------------------------------------------------------------------- /Codec/lutpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/lutpath.cpp -------------------------------------------------------------------------------- /Codec/lutpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/lutpath.h -------------------------------------------------------------------------------- /Codec/metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/metadata.c -------------------------------------------------------------------------------- /Codec/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/metadata.h -------------------------------------------------------------------------------- /Codec/quantize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/quantize.c -------------------------------------------------------------------------------- /Codec/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/quantize.h -------------------------------------------------------------------------------- /Codec/recursive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/recursive.c -------------------------------------------------------------------------------- /Codec/recursive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/recursive.h -------------------------------------------------------------------------------- /Codec/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/scanner.c -------------------------------------------------------------------------------- /Codec/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/scanner.h -------------------------------------------------------------------------------- /Codec/spatial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/spatial.c -------------------------------------------------------------------------------- /Codec/spatial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/spatial.h -------------------------------------------------------------------------------- /Codec/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/stats.c -------------------------------------------------------------------------------- /Codec/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/stats.h -------------------------------------------------------------------------------- /Codec/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/stdafx.h -------------------------------------------------------------------------------- /Codec/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/swap.c -------------------------------------------------------------------------------- /Codec/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/swap.h -------------------------------------------------------------------------------- /Codec/temporal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/temporal.c -------------------------------------------------------------------------------- /Codec/temporal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/temporal.h -------------------------------------------------------------------------------- /Codec/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/thread.c -------------------------------------------------------------------------------- /Codec/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/thread.h -------------------------------------------------------------------------------- /Codec/thumbnail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/thumbnail.c -------------------------------------------------------------------------------- /Codec/thumbnail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/thumbnail.h -------------------------------------------------------------------------------- /Codec/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/timing.c -------------------------------------------------------------------------------- /Codec/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/timing.h -------------------------------------------------------------------------------- /Codec/vlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/vlc.c -------------------------------------------------------------------------------- /Codec/vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/vlc.h -------------------------------------------------------------------------------- /Codec/wavelet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/wavelet.c -------------------------------------------------------------------------------- /Codec/wavelet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Codec/wavelet.h -------------------------------------------------------------------------------- /Common/AVIExtendedHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/AVIExtendedHeader.h -------------------------------------------------------------------------------- /Common/CFHDAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/CFHDAllocator.h -------------------------------------------------------------------------------- /Common/CFHDDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/CFHDDecoder.h -------------------------------------------------------------------------------- /Common/CFHDEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/CFHDEncoder.h -------------------------------------------------------------------------------- /Common/CFHDError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/CFHDError.h -------------------------------------------------------------------------------- /Common/CFHDMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/CFHDMetadata.h -------------------------------------------------------------------------------- /Common/CFHDMetadataTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/CFHDMetadataTags.h -------------------------------------------------------------------------------- /Common/CFHDSampleHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/CFHDSampleHeader.h -------------------------------------------------------------------------------- /Common/CFHDTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/CFHDTypes.h -------------------------------------------------------------------------------- /Common/Condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/Condition.h -------------------------------------------------------------------------------- /Common/IAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/IAllocator.h -------------------------------------------------------------------------------- /Common/Lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/Lock.h -------------------------------------------------------------------------------- /Common/MessageQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/MessageQueue.cpp -------------------------------------------------------------------------------- /Common/MessageQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/MessageQueue.h -------------------------------------------------------------------------------- /Common/SampleMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/SampleMetadata.h -------------------------------------------------------------------------------- /Common/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/StdAfx.h -------------------------------------------------------------------------------- /Common/ThreadMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/ThreadMessage.cpp -------------------------------------------------------------------------------- /Common/ThreadMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/ThreadMessage.h -------------------------------------------------------------------------------- /Common/ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/ThreadPool.cpp -------------------------------------------------------------------------------- /Common/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/ThreadPool.h -------------------------------------------------------------------------------- /Common/fsm17.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/fsm17.inc -------------------------------------------------------------------------------- /Common/fsm18.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/fsm18.inc -------------------------------------------------------------------------------- /Common/fsm9.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/fsm9.inc -------------------------------------------------------------------------------- /Common/macdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/macdefs.h -------------------------------------------------------------------------------- /Common/table17.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/table17.inc -------------------------------------------------------------------------------- /Common/table18.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/table18.inc -------------------------------------------------------------------------------- /Common/table9.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/table9.inc -------------------------------------------------------------------------------- /Common/ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Common/ver.h -------------------------------------------------------------------------------- /ConvertLib/Bilinear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ConvertLib/Bilinear.cpp -------------------------------------------------------------------------------- /ConvertLib/Bilinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ConvertLib/Bilinear.h -------------------------------------------------------------------------------- /ConvertLib/ColorFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ConvertLib/ColorFlags.h -------------------------------------------------------------------------------- /ConvertLib/ColorMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ConvertLib/ColorMatrix.cpp -------------------------------------------------------------------------------- /ConvertLib/ColorMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ConvertLib/ColorMatrix.h -------------------------------------------------------------------------------- /ConvertLib/ConvertLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ConvertLib/ConvertLib.h -------------------------------------------------------------------------------- /ConvertLib/ConvertYUV8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ConvertLib/ConvertYUV8.cpp -------------------------------------------------------------------------------- /ConvertLib/ConvertYUV8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ConvertLib/ConvertYUV8.h -------------------------------------------------------------------------------- /ConvertLib/DPXConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ConvertLib/DPXConverter.cpp -------------------------------------------------------------------------------- /ConvertLib/DPXConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ConvertLib/DPXConverter.h -------------------------------------------------------------------------------- /ConvertLib/ImageConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ConvertLib/ImageConverter.cpp -------------------------------------------------------------------------------- /ConvertLib/ImageConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ConvertLib/ImageConverter.h -------------------------------------------------------------------------------- /ConvertLib/ImageScaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ConvertLib/ImageScaler.cpp -------------------------------------------------------------------------------- /ConvertLib/ImageScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ConvertLib/ImageScaler.h -------------------------------------------------------------------------------- /ConvertLib/MemAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ConvertLib/MemAlloc.cpp -------------------------------------------------------------------------------- /ConvertLib/MemAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ConvertLib/MemAlloc.h -------------------------------------------------------------------------------- /ConvertLib/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ConvertLib/StdAfx.h -------------------------------------------------------------------------------- /DecoderSDK/CFHDDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/DecoderSDK/CFHDDecoder.cpp -------------------------------------------------------------------------------- /DecoderSDK/CFHDMetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/DecoderSDK/CFHDMetadata.cpp -------------------------------------------------------------------------------- /DecoderSDK/Conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/DecoderSDK/Conversion.cpp -------------------------------------------------------------------------------- /DecoderSDK/Conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/DecoderSDK/Conversion.h -------------------------------------------------------------------------------- /DecoderSDK/ISampleDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/DecoderSDK/ISampleDecoder.cpp -------------------------------------------------------------------------------- /DecoderSDK/ISampleDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/DecoderSDK/ISampleDecoder.h -------------------------------------------------------------------------------- /DecoderSDK/SampleDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/DecoderSDK/SampleDecoder.cpp -------------------------------------------------------------------------------- /DecoderSDK/SampleDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/DecoderSDK/SampleDecoder.h -------------------------------------------------------------------------------- /DecoderSDK/SampleMetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/DecoderSDK/SampleMetadata.cpp -------------------------------------------------------------------------------- /DecoderSDK/SampleMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/DecoderSDK/SampleMetadata.h -------------------------------------------------------------------------------- /DecoderSDK/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/DecoderSDK/StdAfx.h -------------------------------------------------------------------------------- /DecoderSDK/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/DecoderSDK/resource.h -------------------------------------------------------------------------------- /DecoderSDK/ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/DecoderSDK/ver.h -------------------------------------------------------------------------------- /EncoderSDK/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/Allocator.h -------------------------------------------------------------------------------- /EncoderSDK/AsyncEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/AsyncEncoder.cpp -------------------------------------------------------------------------------- /EncoderSDK/AsyncEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/AsyncEncoder.h -------------------------------------------------------------------------------- /EncoderSDK/CFHDEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/CFHDEncoder.cpp -------------------------------------------------------------------------------- /EncoderSDK/CFHDEncoderMetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/CFHDEncoderMetadata.cpp -------------------------------------------------------------------------------- /EncoderSDK/CFHDEncoderPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/CFHDEncoderPool.cpp -------------------------------------------------------------------------------- /EncoderSDK/EncoderPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/EncoderPool.cpp -------------------------------------------------------------------------------- /EncoderSDK/EncoderPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/EncoderPool.h -------------------------------------------------------------------------------- /EncoderSDK/EncoderQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/EncoderQueue.cpp -------------------------------------------------------------------------------- /EncoderSDK/EncoderQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/EncoderQueue.h -------------------------------------------------------------------------------- /EncoderSDK/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/Interface.h -------------------------------------------------------------------------------- /EncoderSDK/MetadataWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/MetadataWriter.cpp -------------------------------------------------------------------------------- /EncoderSDK/MetadataWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/MetadataWriter.h -------------------------------------------------------------------------------- /EncoderSDK/SampleEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/SampleEncoder.cpp -------------------------------------------------------------------------------- /EncoderSDK/SampleEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/SampleEncoder.h -------------------------------------------------------------------------------- /EncoderSDK/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/StdAfx.h -------------------------------------------------------------------------------- /EncoderSDK/VideoBuffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/VideoBuffers.cpp -------------------------------------------------------------------------------- /EncoderSDK/VideoBuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/VideoBuffers.h -------------------------------------------------------------------------------- /EncoderSDK/ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/EncoderSDK/ver.h -------------------------------------------------------------------------------- /Example/TestCFHD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/TestCFHD.cpp -------------------------------------------------------------------------------- /Example/WaveletDemo/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/WaveletDemo/makefile -------------------------------------------------------------------------------- /Example/WaveletDemo/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/WaveletDemo/utils.c -------------------------------------------------------------------------------- /Example/WaveletDemo/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/WaveletDemo/utils.h -------------------------------------------------------------------------------- /Example/WaveletDemo/wavelets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/WaveletDemo/wavelets.c -------------------------------------------------------------------------------- /Example/avi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/avi.h -------------------------------------------------------------------------------- /Example/classicQBist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/classicQBist.cpp -------------------------------------------------------------------------------- /Example/fileio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/fileio.cpp -------------------------------------------------------------------------------- /Example/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/fileio.h -------------------------------------------------------------------------------- /Example/misc/CFHDDecoderStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/misc/CFHDDecoderStub.cpp -------------------------------------------------------------------------------- /Example/misc/CFHDEncoderStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/misc/CFHDEncoderStub.cpp -------------------------------------------------------------------------------- /Example/mp4reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/mp4reader.cpp -------------------------------------------------------------------------------- /Example/mp4reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/mp4reader.h -------------------------------------------------------------------------------- /Example/qbist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/qbist.cpp -------------------------------------------------------------------------------- /Example/qbist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/qbist.h -------------------------------------------------------------------------------- /Example/readavi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/readavi.cpp -------------------------------------------------------------------------------- /Example/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/stdafx.h -------------------------------------------------------------------------------- /Example/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/targetver.h -------------------------------------------------------------------------------- /Example/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/utils.cpp -------------------------------------------------------------------------------- /Example/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/utils.h -------------------------------------------------------------------------------- /Example/videos/CFHDsample422.AVI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/videos/CFHDsample422.AVI -------------------------------------------------------------------------------- /Example/videos/CFHDsample444.AVI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/Example/videos/CFHDsample444.AVI -------------------------------------------------------------------------------- /GPDeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/GPDeps -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/README.md -------------------------------------------------------------------------------- /WarpLib/GeoMesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/WarpLib/GeoMesh.c -------------------------------------------------------------------------------- /WarpLib/GeoMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/WarpLib/GeoMesh.h -------------------------------------------------------------------------------- /WarpLib/GeoMeshApply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/WarpLib/GeoMeshApply.c -------------------------------------------------------------------------------- /WarpLib/GeoMeshApply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/WarpLib/GeoMeshApply.h -------------------------------------------------------------------------------- /WarpLib/GeoMeshCache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/WarpLib/GeoMeshCache.c -------------------------------------------------------------------------------- /WarpLib/GeoMeshGoPro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/WarpLib/GeoMeshGoPro.c -------------------------------------------------------------------------------- /WarpLib/GeoMeshInterp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/WarpLib/GeoMeshInterp.c -------------------------------------------------------------------------------- /WarpLib/GeoMeshInterp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/WarpLib/GeoMeshInterp.h -------------------------------------------------------------------------------- /WarpLib/GeoMeshIpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/WarpLib/GeoMeshIpl.h -------------------------------------------------------------------------------- /WarpLib/GeoMeshPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/WarpLib/GeoMeshPrivate.h -------------------------------------------------------------------------------- /WarpLib/GeoMeshTransform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/WarpLib/GeoMeshTransform.c -------------------------------------------------------------------------------- /WarpLib/GeoMeshYuy2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/WarpLib/GeoMeshYuy2.c -------------------------------------------------------------------------------- /WarpLib/GeoMeshYuy2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/WarpLib/GeoMeshYuy2.h -------------------------------------------------------------------------------- /WarpLib/WarpLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/WarpLib/WarpLib.h -------------------------------------------------------------------------------- /WarpLib/sse_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/WarpLib/sse_types.h -------------------------------------------------------------------------------- /data/readmegfx/level1-640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/data/readmegfx/level1-640.png -------------------------------------------------------------------------------- /data/readmegfx/level1D-640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/data/readmegfx/level1D-640.png -------------------------------------------------------------------------------- /data/readmegfx/level2-640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/data/readmegfx/level2-640.png -------------------------------------------------------------------------------- /data/readmegfx/level3-640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/data/readmegfx/level3-640.png -------------------------------------------------------------------------------- /data/readmegfx/source-640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/data/readmegfx/source-640.png -------------------------------------------------------------------------------- /data/testpatt.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/data/testpatt.pgm -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/readmegfx/CF-Logo-960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/docs/readmegfx/CF-Logo-960.png -------------------------------------------------------------------------------- /docs/readmegfx/CF-Logo-OLDsm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/docs/readmegfx/CF-Logo-OLDsm.png -------------------------------------------------------------------------------- /docs/readmegfx/CF-Logo-oldest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/docs/readmegfx/CF-Logo-oldest.png -------------------------------------------------------------------------------- /docs/readmegfx/level1-640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/docs/readmegfx/level1-640.png -------------------------------------------------------------------------------- /docs/readmegfx/level1D-640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/docs/readmegfx/level1D-640.png -------------------------------------------------------------------------------- /docs/readmegfx/level2-640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/docs/readmegfx/level2-640.png -------------------------------------------------------------------------------- /docs/readmegfx/level3-640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/docs/readmegfx/level3-640.png -------------------------------------------------------------------------------- /docs/readmegfx/source-640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/docs/readmegfx/source-640.png -------------------------------------------------------------------------------- /libcineformsdk.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/libcineformsdk.pc.cmake -------------------------------------------------------------------------------- /ucm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopro/cineform-sdk/HEAD/ucm.cmake --------------------------------------------------------------------------------