实例介绍
做编解码需要的 常用工具,Video_Codec_SDK_8.0.14.zip 最新的sdk
【实例截图】
【核心代码】
4744302542870910436.zip
└── Video_Codec_SDK_8.0.14
├── doc
│ ├── NVDEC_Application_Note.pdf
│ ├── NVDEC_VideoDecoder_API_ProgGuide.pdf
│ ├── NVENC_Application_Note.pdf
│ ├── NvEncodeAPI_v.8.0.chm
│ ├── NvEncodeAPI_v.8.0.pdf
│ ├── NVENC_VideoEncoder_API_ProgGuide.pdf
│ └── Using_FFmpeg_with_NVIDIA_GPU_Hardware_Acceleration.pdf
├── LicenseAgreement.pdf
├── ReadMe.txt
├── Release_notes.txt
└── Samples
├── common
│ ├── inc
│ │ ├── cudaModuleMgr.h
│ │ ├── drvapi_error_string.h
│ │ ├── dynlink_builtin_types.h
│ │ ├── dynlink_cuda_cuda.h
│ │ ├── dynlink_cudaD3D10.h
│ │ ├── dynlink_cudaD3D11.h
│ │ ├── dynlink_cudaD3D9.h
│ │ ├── dynlink_cuda_d3d.h
│ │ ├── dynlink_cuda_gl.h
│ │ ├── dynlink_cudaGL.h
│ │ ├── dynlink_cuda.h
│ │ ├── dynlink_cuviddec.h
│ │ ├── dynlink_nvcuvid.h
│ │ ├── exception.h
│ │ ├── GL
│ │ │ ├── freeglut_ext.h
│ │ │ ├── freeglut.h
│ │ │ ├── freeglut_std.h
│ │ │ ├── glew.h
│ │ │ ├── glext.h
│ │ │ ├── gl.h
│ │ │ ├── glu.h
│ │ │ ├── glut.h
│ │ │ ├── glxew.h
│ │ │ ├── glxext.h
│ │ │ ├── glx.h
│ │ │ ├── wglew.h
│ │ │ └── wglext.h
│ │ ├── helper_cuda_drvapi.h
│ │ ├── helper_cuda.h
│ │ ├── helper_functions.h
│ │ ├── helper_string.h
│ │ ├── helper_timer.h
│ │ ├── nvCPUOPSys.h
│ │ ├── nvEncodeAPI.h
│ │ ├── nvFileIO.h
│ │ ├── NvHWEncoder.h
│ │ └── nvUtils.h
│ ├── kernels
│ │ ├── NV12ToARGB_drvapi.cu
│ │ └── ptx
│ │ ├── NV12ToARGB_drvapi_Win32.ptx
│ │ └── NV12ToARGB_drvapi_x64.ptx
│ ├── lib
│ │ ├── linux
│ │ │ ├── i686
│ │ │ │ └── libGLEW.a
│ │ │ └── x86_64
│ │ │ └── libGLEW.a
│ │ ├── Win32
│ │ │ ├── freeglutd.lib
│ │ │ ├── freeglut.lib
│ │ │ ├── freeglut_staticd.lib
│ │ │ ├── freeglut_static.lib
│ │ │ ├── glew32.lib
│ │ │ ├── glew32sd.lib
│ │ │ └── glew32s.lib
│ │ └── x64
│ │ ├── freeglut.lib
│ │ ├── freeglut_staticd.lib
│ │ ├── freeglut_static.lib
│ │ ├── glew32.lib
│ │ ├── glew32sd.lib
│ │ └── glew32s.lib
│ ├── src
│ │ ├── cudaModuleMgr.cpp
│ │ ├── dynlink_cuda.cpp
│ │ ├── dynlink_cudaD3D10.cpp
│ │ ├── dynlink_cudaD3D11.cpp
│ │ ├── dynlink_cudaD3D9.cpp
│ │ ├── dynlink_nvcuvid.cpp
│ │ └── NvHWEncoder.cpp
│ └── video
│ └── plush1_720p_10s.m2v
├── Makefile
├── NvDecodeD3D11
│ ├── cudaProcessFrame.cpp
│ ├── cudaProcessFrame.h
│ ├── FrameQueue.cpp
│ ├── FrameQueue.h
│ ├── ImageDX.cpp
│ ├── ImageDX.h
│ ├── NvDecodeD3D11_2010.sln
│ ├── NvDecodeD3D11_2010.vcxproj
│ ├── NvDecodeD3D11_2013.sln
│ ├── NvDecodeD3D11_2013.vcxproj
│ ├── NvDecodeD3D11.cpp
│ ├── VideoDecoder.cpp
│ ├── VideoDecoder.h
│ ├── VideoParser.cpp
│ ├── VideoParser.h
│ ├── VideoSource.cpp
│ └── VideoSource.h
├── NvDecodeD3D9
│ ├── cudaProcessFrame.cpp
│ ├── cudaProcessFrame.h
│ ├── FrameQueue.cpp
│ ├── FrameQueue.h
│ ├── ImageDX.cpp
│ ├── ImageDX.h
│ ├── NvDecodeD3D9_2010.sln
│ ├── NvDecodeD3D9_2010.vcxproj
│ ├── NvDecodeD3D9_2013.sln
│ ├── NvDecodeD3D9_2013.vcxproj
│ ├── NvDecodeD3D9.cpp
│ ├── VideoDecoder.cpp
│ ├── VideoDecoder.h
│ ├── VideoParser.cpp
│ ├── VideoParser.h
│ ├── VideoSource.cpp
│ └── VideoSource.h
├── NvDecodeGL
│ ├── cudaProcessFrame.cpp
│ ├── cudaProcessFrame.h
│ ├── FrameQueue.cpp
│ ├── FrameQueue.h
│ ├── ImageGL.cpp
│ ├── ImageGL.h
│ ├── Makefile
│ ├── NvDecodeGL_2010.sln
│ ├── NvDecodeGL_2010.vcxproj
│ ├── NvDecodeGL_2013.sln
│ ├── NvDecodeGL_2013.vcxproj
│ ├── NvDecodeGL.cpp
│ ├── VideoDecoder.cpp
│ ├── VideoDecoder.h
│ ├── VideoParser.cpp
│ ├── VideoParser.h
│ ├── VideoSource.cpp
│ └── VideoSource.h
├── NvEncoder
│ ├── Makefile
│ ├── NvEncoder_2010.sln
│ ├── NvEncoder_2010.vcxproj
│ ├── NvEncoder_2013.sln
│ ├── NvEncoder_2013.vcxproj
│ ├── NvEncoder.cpp
│ ├── NvEncoder.h
│ └── sampleHintFile.txt
├── NvEncoderCudaInterop
│ ├── data
│ │ ├── preproc32_cuda.ptx
│ │ └── preproc64_cuda.ptx
│ ├── Makefile
│ ├── NvEncoderCudaInterop_2010.sln
│ ├── NvEncoderCudaInterop_2010.vcxproj
│ ├── NvEncoderCudaInterop_2013.sln
│ ├── NvEncoderCudaInterop_2013.vcxproj
│ ├── NvEncoderCudaInterop.cpp
│ ├── NvEncoderCudaInterop.h
│ └── preproc.cu
├── NvEncoderD3DInterop
│ ├── NvEncoderD3DInterop_2010.sln
│ ├── NvEncoderD3DInterop_2010.vcxproj
│ ├── NvEncoderD3DInterop_2013.sln
│ ├── NvEncoderD3DInterop_2013.vcxproj
│ ├── NvEncoderD3DInterop.cpp
│ └── NvEncoderD3DInterop.h
├── NvEncoderGLInterop
│ ├── Makefile
│ ├── NvEncoderGLInterop.cpp
│ └── NvEncoderGLInterop.h
├── NvEncoderLowLatency
│ ├── data
│ │ ├── preproc32_lowlat.ptx
│ │ └── preproc64_lowlat.ptx
│ ├── IntraRefresh.txt
│ ├── Makefile
│ ├── NvEncoderCommandParser.cpp
│ ├── NvEncoderLowLatency_2010.sln
│ ├── NvEncoderLowLatency_2010.vcxproj
│ ├── NvEncoderLowLatency_2013.sln
│ ├── NvEncoderLowLatency_2013.vcxproj
│ ├── NvEncoderLowLatency.cpp
│ ├── NvEncoderLowLatency.h
│ ├── NvEncoderPreProcessor.cpp
│ ├── preproc.cu
│ ├── Reconfigure.txt
│ └── RefpicInvalidate.txt
├── NvEncoderPerf
│ ├── Makefile
│ ├── NvEncoderPerf_2010.sln
│ ├── NvEncoderPerf_2010.vcxproj
│ ├── NvEncoderPerf_2013.sln
│ ├── NvEncoderPerf_2013.vcxproj
│ ├── NvEncoderPerf.cpp
│ └── NvEncoderPerf.h
├── NVIDIA_Video_Codec_SDK_Samples_Guide.pdf
├── NvTranscoder
│ ├── FrameQueue.cpp
│ ├── FrameQueue.h
│ ├── Makefile
│ ├── NvTranscoder_2010.sln
│ ├── NvTranscoder_2010.vcxproj
│ ├── NvTranscoder_2013.sln
│ ├── NvTranscoder_2013.vcxproj
│ ├── NvTranscoder.cpp
│ ├── VideoDecoder.cpp
│ ├── VideoDecoder.h
│ ├── VideoEncoder.cpp
│ └── VideoEncoder.h
├── Samples_vs2010.sln
└── Samples_vs2013.sln
28 directories, 190 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论