嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
开源的多媒体编解码硬件加速项目
.
├── jmcodec-master
│ ├── LICENSE
│ ├── README.md
│ ├── build
│ │ └── video_codec
│ │ ├── intel_dec
│ │ │ ├── intel_dec.vcxproj
│ │ │ ├── intel_dec.vcxproj.filters
│ │ │ └── intel_dec.vcxproj.user
│ │ ├── intel_enc
│ │ │ ├── intel_enc.vcxproj
│ │ │ └── intel_enc.vcxproj.filters
│ │ ├── nv_dec
│ │ │ ├── nv_dec.vcxproj
│ │ │ └── nv_dec.vcxproj.filters
│ │ ├── nv_enc
│ │ │ ├── nv_enc.vcxproj
│ │ │ └── nv_enc.vcxproj.filters
│ │ ├── test_intel_dec
│ │ │ ├── test_intel_dec.vcxproj
│ │ │ ├── test_intel_dec.vcxproj.filters
│ │ │ └── test_intel_dec.vcxproj.user
│ │ ├── test_intel_enc
│ │ │ ├── test_intel_enc.vcxproj
│ │ │ ├── test_intel_enc.vcxproj.filters
│ │ │ └── test_intel_enc.vcxproj.user
│ │ ├── test_nv_dec
│ │ │ ├── test_nv_dec.vcxproj
│ │ │ └── test_nv_dec.vcxproj.filters
│ │ ├── test_player
│ │ │ ├── test_player.vcxproj
│ │ │ └── test_player.vcxproj.filters
│ │ ├── video_codec
│ │ │ ├── video_codec.vcxproj
│ │ │ └── video_codec.vcxproj.filters
│ │ └── video_codec.sln
│ ├── intel_dec
│ │ ├── intel_dec.cpp
│ │ ├── intel_dec.h
│ │ └── jm_intel_dec.h
│ ├── intel_enc
│ │ ├── intel_enc.cpp
│ │ ├── intel_enc.h
│ │ └── jm_intel_enc.h
│ ├── intel_sdk
│ │ ├── include
│ │ │ ├── mfxastructures.h
│ │ │ ├── mfxaudio .h
│ │ │ ├── mfxaudio.h
│ │ │ ├── mfxcamera.h
│ │ │ ├── mfxcommon.h
│ │ │ ├── mfxdefs.h
│ │ │ ├── mfxenc.h
│ │ │ ├── mfxjpeg.h
│ │ │ ├── mfxla.h
│ │ │ ├── mfxmvc.h
│ │ │ ├── mfxpak.h
│ │ │ ├── mfxplugin .h
│ │ │ ├── mfxplugin.h
│ │ │ ├── mfxsc.h
│ │ │ ├── mfxsession.h
│ │ │ ├── mfxstructures.h
│ │ │ ├── mfxvideo .h
│ │ │ ├── mfxvideo.h
│ │ │ ├── mfxvp8.h
│ │ │ ├── mfxvp9.h
│ │ │ └── mfxvstructures.h
│ │ └── lib
│ │ ├── win32
│ │ │ ├── libmfx.lib
│ │ │ └── libmfx_vs2015.lib
│ │ └── x64
│ │ ├── libmfx.lib
│ │ └── libmfx_vs2015.lib
│ ├── nv_dec
│ │ ├── jm_nv_dec.h
│ │ ├── nv_dec.cpp
│ │ └── nv_dec.h
│ ├── nv_enc
│ │ ├── jmnv_enc.h
│ │ ├── nv_enc.cpp
│ │ └── nv_enc.h
│ ├── nv_sdk
│ │ ├── inc
│ │ │ ├── NvHWEncoder.h
│ │ │ ├── cudaModuleMgr.h
│ │ │ ├── drvapi_error_string.h
│ │ │ ├── dynlink_builtin_types.h
│ │ │ ├── dynlink_cuda.h
│ │ │ ├── dynlink_cuda_cuda.h
│ │ │ ├── dynlink_cuviddec.h
│ │ │ ├── dynlink_nvcuvid.h
│ │ │ ├── exception.h
│ │ │ ├── helper_cuda.h
│ │ │ ├── helper_cuda_drvapi.h
│ │ │ ├── helper_functions.h
│ │ │ ├── helper_string.h
│ │ │ ├── helper_timer.h
│ │ │ ├── nvCPUOPSys.h
│ │ │ ├── nvEncodeAPI.h
│ │ │ └── nvUtils.h
│ │ ├── lib
│ │ │ ├── Win32
│ │ │ │ ├── OpenCL.lib
│ │ │ │ ├── cuda.lib
│ │ │ │ ├── freeglut.lib
│ │ │ │ ├── freeglut_static.lib
│ │ │ │ ├── freeglut_staticd.lib
│ │ │ │ ├── freeglutd.lib
│ │ │ │ ├── glew32.lib
│ │ │ │ ├── glew32s.lib
│ │ │ │ └── nvcuvid.lib
│ │ │ └── x64
│ │ │ ├── cuda.lib
│ │ │ ├── freeglut.lib
│ │ │ ├── freeglut_static.lib
│ │ │ ├── freeglut_staticd.lib
│ │ │ ├── glew32.lib
│ │ │ ├── glew32s.lib
│ │ │ └── nvcuvid.lib
│ │ └── src
│ │ ├── cudaModuleMgr.cpp
│ │ ├── dynlink_cuda.cpp
│ │ └── dynlink_nvcuvid.cpp
│ ├── test_intel_dec
│ │ └── test_intel_dec.cpp
│ ├── test_intel_enc
│ │ └── test_intel_enc.cpp
│ ├── test_nv_dec
│ │ └── test_nv_dec.cpp
│ └── test_player
│ └── test_player.cpp
└── 开源的多媒体编解码硬件加速项目.zip
31 directories, 102 files