├── .gitignore ├── Bin32 └── TestAMFVFW.dll ├── Bin64 └── TestAMFVFW.dll ├── GPUOpen-AMF ├── LICENSE.txt └── include │ ├── .gitattributes │ ├── components │ ├── Ambisonic2SRenderer.h │ ├── AudioCapture.h │ ├── Component.h │ ├── ComponentCaps.h │ ├── DisplayCapture.h │ ├── FFMPEGAudioConverter.h │ ├── FFMPEGAudioDecoder.h │ ├── FFMPEGAudioEncoder.h │ ├── FFMPEGComponents.h │ ├── FFMPEGFileDemuxer.h │ ├── FFMPEGFileMuxer.h │ ├── MediaSource.h │ ├── VideoConverter.h │ ├── VideoDecoderUVD.h │ ├── VideoEncoderHEVC.h │ └── VideoEncoderVCE.h │ └── core │ ├── AudioBuffer.h │ ├── Buffer.h │ ├── Compute.h │ ├── ComputeFactory.h │ ├── Context.h │ ├── Data.h │ ├── Debug.h │ ├── Dump.h │ ├── Factory.h │ ├── Interface.h │ ├── Plane.h │ ├── Platform.h │ ├── PropertyStorage.h │ ├── PropertyStorageEx.h │ ├── Result.h │ ├── Surface.h │ ├── Trace.h │ ├── Variant.h │ └── Version.h ├── README.md ├── TestAMFVFW.inf ├── TestAMFVFW.sln ├── TestAMFVFW ├── BufferCopyManager.h ├── Colorspace.h ├── ComPtr.h ├── Compress.cpp ├── Configure.cpp ├── Conversion.cpp ├── Conversion.h ├── DeviceDX11.cpp ├── DeviceDX11.h ├── DeviceOCL.cpp ├── DeviceOCL.h ├── Log.cpp ├── Log.h ├── NV12_kernels.cl ├── Source.def ├── TestAMFVFW.cpp ├── TestAMFVFW.h ├── TestAMFVFW.rc ├── TestAMFVFW.vcxproj ├── TestAMFVFW.vcxproj.filters ├── drvproc.cpp ├── nv12_compute.hlsl ├── resource.h └── stdafx.h └── install.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/.gitignore -------------------------------------------------------------------------------- /Bin32/TestAMFVFW.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/Bin32/TestAMFVFW.dll -------------------------------------------------------------------------------- /Bin64/TestAMFVFW.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/Bin64/TestAMFVFW.dll -------------------------------------------------------------------------------- /GPUOpen-AMF/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/LICENSE.txt -------------------------------------------------------------------------------- /GPUOpen-AMF/include/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/.gitattributes -------------------------------------------------------------------------------- /GPUOpen-AMF/include/components/Ambisonic2SRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/components/Ambisonic2SRenderer.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/components/AudioCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/components/AudioCapture.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/components/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/components/Component.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/components/ComponentCaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/components/ComponentCaps.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/components/DisplayCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/components/DisplayCapture.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/components/FFMPEGAudioConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/components/FFMPEGAudioConverter.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/components/FFMPEGAudioDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/components/FFMPEGAudioDecoder.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/components/FFMPEGAudioEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/components/FFMPEGAudioEncoder.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/components/FFMPEGComponents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/components/FFMPEGComponents.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/components/FFMPEGFileDemuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/components/FFMPEGFileDemuxer.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/components/FFMPEGFileMuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/components/FFMPEGFileMuxer.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/components/MediaSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/components/MediaSource.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/components/VideoConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/components/VideoConverter.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/components/VideoDecoderUVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/components/VideoDecoderUVD.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/components/VideoEncoderHEVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/components/VideoEncoderHEVC.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/components/VideoEncoderVCE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/components/VideoEncoderVCE.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/AudioBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/AudioBuffer.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/Buffer.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/Compute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/Compute.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/ComputeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/ComputeFactory.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/Context.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/Data.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/Debug.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/Dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/Dump.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/Factory.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/Interface.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/Plane.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/Platform.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/PropertyStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/PropertyStorage.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/PropertyStorageEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/PropertyStorageEx.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/Result.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/Surface.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/Trace.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/Variant.h -------------------------------------------------------------------------------- /GPUOpen-AMF/include/core/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/GPUOpen-AMF/include/core/Version.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/README.md -------------------------------------------------------------------------------- /TestAMFVFW.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW.inf -------------------------------------------------------------------------------- /TestAMFVFW.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW.sln -------------------------------------------------------------------------------- /TestAMFVFW/BufferCopyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/BufferCopyManager.h -------------------------------------------------------------------------------- /TestAMFVFW/Colorspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/Colorspace.h -------------------------------------------------------------------------------- /TestAMFVFW/ComPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/ComPtr.h -------------------------------------------------------------------------------- /TestAMFVFW/Compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/Compress.cpp -------------------------------------------------------------------------------- /TestAMFVFW/Configure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/Configure.cpp -------------------------------------------------------------------------------- /TestAMFVFW/Conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/Conversion.cpp -------------------------------------------------------------------------------- /TestAMFVFW/Conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/Conversion.h -------------------------------------------------------------------------------- /TestAMFVFW/DeviceDX11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/DeviceDX11.cpp -------------------------------------------------------------------------------- /TestAMFVFW/DeviceDX11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/DeviceDX11.h -------------------------------------------------------------------------------- /TestAMFVFW/DeviceOCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/DeviceOCL.cpp -------------------------------------------------------------------------------- /TestAMFVFW/DeviceOCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/DeviceOCL.h -------------------------------------------------------------------------------- /TestAMFVFW/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/Log.cpp -------------------------------------------------------------------------------- /TestAMFVFW/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/Log.h -------------------------------------------------------------------------------- /TestAMFVFW/NV12_kernels.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/NV12_kernels.cl -------------------------------------------------------------------------------- /TestAMFVFW/Source.def: -------------------------------------------------------------------------------- 1 | LIBRARY "TestAMFVFW" 2 | 3 | EXPORTS 4 | DriverProc 5 | Configure 6 | -------------------------------------------------------------------------------- /TestAMFVFW/TestAMFVFW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/TestAMFVFW.cpp -------------------------------------------------------------------------------- /TestAMFVFW/TestAMFVFW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/TestAMFVFW.h -------------------------------------------------------------------------------- /TestAMFVFW/TestAMFVFW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/TestAMFVFW.rc -------------------------------------------------------------------------------- /TestAMFVFW/TestAMFVFW.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/TestAMFVFW.vcxproj -------------------------------------------------------------------------------- /TestAMFVFW/TestAMFVFW.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/TestAMFVFW.vcxproj.filters -------------------------------------------------------------------------------- /TestAMFVFW/drvproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/drvproc.cpp -------------------------------------------------------------------------------- /TestAMFVFW/nv12_compute.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/nv12_compute.hlsl -------------------------------------------------------------------------------- /TestAMFVFW/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/resource.h -------------------------------------------------------------------------------- /TestAMFVFW/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/TestAMFVFW/stdafx.h -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackun/TestAMFVFW/HEAD/install.bat --------------------------------------------------------------------------------