实例介绍
自己将官方的nvdia解码工程进行大量的删减和重新封装,实现为一个可以重复使用的硬件解码类,并将ffmpeg整合到其中,实现rtsp拉流,在GPU中完成nv12到rgba的转换
【实例截图】
【核心代码】
75cc18a3-61e3-4a24-84a5-b55f6a5a66fa
└── HardDecode
├── 3rd
│ ├── 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
│ ├── ffmpeg
│ │ ├── bin
│ │ │ ├── avcodec-57.dll
│ │ │ ├── avdevice-57.dll
│ │ │ ├── avfilter-6.dll
│ │ │ ├── avformat-57.dll
│ │ │ ├── avutil-55.dll
│ │ │ ├── ffmpeg.exe
│ │ │ ├── ffplay.exe
│ │ │ ├── ffprobe.exe
│ │ │ ├── postproc-54.dll
│ │ │ ├── swresample-2.dll
│ │ │ └── swscale-4.dll
│ │ ├── doc
│ │ │ ├── bootstrap.min.css
│ │ │ ├── default.css
│ │ │ ├── developer.html
│ │ │ ├── faq.html
│ │ │ ├── fate.html
│ │ │ ├── ffmpeg-all.html
│ │ │ ├── ffmpeg-bitstream-filters.html
│ │ │ ├── ffmpeg-codecs.html
│ │ │ ├── ffmpeg-devices.html
│ │ │ ├── ffmpeg-filters.html
│ │ │ ├── ffmpeg-formats.html
│ │ │ ├── ffmpeg.html
│ │ │ ├── ffmpeg-protocols.html
│ │ │ ├── ffmpeg-resampler.html
│ │ │ ├── ffmpeg-scaler.html
│ │ │ ├── ffmpeg-utils.html
│ │ │ ├── ffplay-all.html
│ │ │ ├── ffplay.html
│ │ │ ├── ffprobe-all.html
│ │ │ ├── ffprobe.html
│ │ │ ├── general.html
│ │ │ ├── git-howto.html
│ │ │ ├── libavcodec.html
│ │ │ ├── libavdevice.html
│ │ │ ├── libavfilter.html
│ │ │ ├── libavformat.html
│ │ │ ├── libavutil.html
│ │ │ ├── libswresample.html
│ │ │ ├── libswscale.html
│ │ │ ├── mailing-list-faq.html
│ │ │ ├── nut.html
│ │ │ ├── platform.html
│ │ │ └── style.min.css
│ │ ├── examples
│ │ │ ├── avio_dir_cmd.c
│ │ │ ├── avio_reading.c
│ │ │ ├── decode_audio.c
│ │ │ ├── decode_video.c
│ │ │ ├── demuxing_decoding.c
│ │ │ ├── encode_audio.c
│ │ │ ├── encode_video.c
│ │ │ ├── extract_mvs.c
│ │ │ ├── filter_audio.c
│ │ │ ├── filtering_audio.c
│ │ │ ├── filtering_video.c
│ │ │ ├── http_multiclient.c
│ │ │ ├── hw_decode.c
│ │ │ ├── Makefile
│ │ │ ├── metadata.c
│ │ │ ├── muxing.c
│ │ │ ├── qsvdec.c
│ │ │ ├── README
│ │ │ ├── remuxing.c
│ │ │ ├── resampling_audio.c
│ │ │ ├── scaling_video.c
│ │ │ ├── transcode_aac.c
│ │ │ └── transcoding.c
│ │ ├── include
│ │ │ ├── libavcodec
│ │ │ │ ├── avcodec.h
│ │ │ │ ├── avdct.h
│ │ │ │ ├── avfft.h
│ │ │ │ ├── d3d11va.h
│ │ │ │ ├── dirac.h
│ │ │ │ ├── dv_profile.h
│ │ │ │ ├── dxva2.h
│ │ │ │ ├── jni.h
│ │ │ │ ├── mediacodec.h
│ │ │ │ ├── qsv.h
│ │ │ │ ├── vaapi.h
│ │ │ │ ├── vda.h
│ │ │ │ ├── vdpau.h
│ │ │ │ ├── version.h
│ │ │ │ ├── videotoolbox.h
│ │ │ │ ├── vorbis_parser.h
│ │ │ │ └── xvmc.h
│ │ │ ├── libavdevice
│ │ │ │ ├── avdevice.h
│ │ │ │ └── version.h
│ │ │ ├── libavfilter
│ │ │ │ ├── avfiltergraph.h
│ │ │ │ ├── avfilter.h
│ │ │ │ ├── buffersink.h
│ │ │ │ ├── buffersrc.h
│ │ │ │ └── version.h
│ │ │ ├── libavformat
│ │ │ │ ├── avformat.h
│ │ │ │ ├── avio.h
│ │ │ │ └── version.h
│ │ │ ├── libavutil
│ │ │ │ ├── adler32.h
│ │ │ │ ├── aes_ctr.h
│ │ │ │ ├── aes.h
│ │ │ │ ├── attributes.h
│ │ │ │ ├── audio_fifo.h
│ │ │ │ ├── avassert.h
│ │ │ │ ├── avconfig.h
│ │ │ │ ├── avstring.h
│ │ │ │ ├── avutil.h
│ │ │ │ ├── base64.h
│ │ │ │ ├── blowfish.h
│ │ │ │ ├── bprint.h
│ │ │ │ ├── bswap.h
│ │ │ │ ├── buffer.h
│ │ │ │ ├── camellia.h
│ │ │ │ ├── cast5.h
│ │ │ │ ├── channel_layout.h
│ │ │ │ ├── common.h
│ │ │ │ ├── cpu.h
│ │ │ │ ├── crc.h
│ │ │ │ ├── des.h
│ │ │ │ ├── dict.h
│ │ │ │ ├── display.h
│ │ │ │ ├── downmix_info.h
│ │ │ │ ├── error.h
│ │ │ │ ├── eval.h
│ │ │ │ ├── ffversion.h
│ │ │ │ ├── fifo.h
│ │ │ │ ├── file.h
│ │ │ │ ├── frame.h
│ │ │ │ ├── hash.h
│ │ │ │ ├── hmac.h
│ │ │ │ ├── hwcontext_cuda.h
│ │ │ │ ├── hwcontext_d3d11va.h
│ │ │ │ ├── hwcontext_drm.h
│ │ │ │ ├── hwcontext_dxva2.h
│ │ │ │ ├── hwcontext.h
│ │ │ │ ├── hwcontext_qsv.h
│ │ │ │ ├── hwcontext_vaapi.h
│ │ │ │ ├── hwcontext_vdpau.h
│ │ │ │ ├── hwcontext_videotoolbox.h
│ │ │ │ ├── imgutils.h
│ │ │ │ ├── intfloat.h
│ │ │ │ ├── intreadwrite.h
│ │ │ │ ├── lfg.h
│ │ │ │ ├── log.h
│ │ │ │ ├── lzo.h
│ │ │ │ ├── macros.h
│ │ │ │ ├── mastering_display_metadata.h
│ │ │ │ ├── mathematics.h
│ │ │ │ ├── md5.h
│ │ │ │ ├── mem.h
│ │ │ │ ├── motion_vector.h
│ │ │ │ ├── murmur3.h
│ │ │ │ ├── opt.h
│ │ │ │ ├── parseutils.h
│ │ │ │ ├── pixdesc.h
│ │ │ │ ├── pixelutils.h
│ │ │ │ ├── pixfmt.h
│ │ │ │ ├── random_seed.h
│ │ │ │ ├── rational.h
│ │ │ │ ├── rc4.h
│ │ │ │ ├── replaygain.h
│ │ │ │ ├── ripemd.h
│ │ │ │ ├── samplefmt.h
│ │ │ │ ├── sha512.h
│ │ │ │ ├── sha.h
│ │ │ │ ├── spherical.h
│ │ │ │ ├── stereo3d.h
│ │ │ │ ├── tea.h
│ │ │ │ ├── threadmessage.h
│ │ │ │ ├── timecode.h
│ │ │ │ ├── time.h
│ │ │ │ ├── timestamp.h
│ │ │ │ ├── tree.h
│ │ │ │ ├── twofish.h
│ │ │ │ ├── version.h
│ │ │ │ └── xtea.h
│ │ │ ├── libpostproc
│ │ │ │ ├── postprocess.h
│ │ │ │ └── version.h
│ │ │ ├── libswresample
│ │ │ │ ├── swresample.h
│ │ │ │ └── version.h
│ │ │ └── libswscale
│ │ │ ├── swscale.h
│ │ │ └── version.h
│ │ ├── lib
│ │ │ ├── avcodec-57.def
│ │ │ ├── avcodec.lib
│ │ │ ├── avdevice-57.def
│ │ │ ├── avdevice.lib
│ │ │ ├── avfilter-6.def
│ │ │ ├── avfilter.lib
│ │ │ ├── avformat-57.def
│ │ │ ├── avformat.lib
│ │ │ ├── avutil-55.def
│ │ │ ├── avutil.lib
│ │ │ ├── libavcodec.dll.a
│ │ │ ├── libavdevice.dll.a
│ │ │ ├── libavfilter.dll.a
│ │ │ ├── libavformat.dll.a
│ │ │ ├── libavutil.dll.a
│ │ │ ├── libpostproc.dll.a
│ │ │ ├── libswresample.dll.a
│ │ │ ├── libswscale.dll.a
│ │ │ ├── postproc-54.def
│ │ │ ├── postproc.lib
│ │ │ ├── swresample-2.def
│ │ │ ├── swresample.lib
│ │ │ ├── swscale-4.def
│ │ │ └── swscale.lib
│ │ ├── LICENSE.txt
│ │ ├── presets
│ │ │ ├── ffprobe.xsd
│ │ │ ├── libvpx-1080p50_60.ffpreset
│ │ │ ├── libvpx-1080p.ffpreset
│ │ │ ├── libvpx-360p.ffpreset
│ │ │ ├── libvpx-720p50_60.ffpreset
│ │ │ └── libvpx-720p.ffpreset
│ │ └── README.txt
│ └── opencv3.1.0
│ └── 3.1.0
│ ├── include
│ │ ├── opencv
│ │ │ ├── cvaux.h
│ │ │ ├── cvaux.hpp
│ │ │ ├── cv.h
│ │ │ ├── cv.hpp
│ │ │ ├── cvwimage.h
│ │ │ ├── cxcore.h
│ │ │ ├── cxcore.hpp
│ │ │ ├── cxeigen.hpp
│ │ │ ├── cxmisc.h
│ │ │ ├── highgui.h
│ │ │ └── ml.h
│ │ └── opencv2
│ │ ├── calib3d
│ │ │ ├── calib3d_c.h
│ │ │ └── calib3d.hpp
│ │ ├── calib3d.hpp
│ │ ├── core
│ │ │ ├── affine.hpp
│ │ │ ├── base.hpp
│ │ │ ├── bufferpool.hpp
│ │ │ ├── core_c.h
│ │ │ ├── core.hpp
│ │ │ ├── cuda
│ │ │ │ ├── block.hpp
│ │ │ │ ├── border_interpolate.hpp
│ │ │ │ ├── color.hpp
│ │ │ │ ├── common.hpp
│ │ │ │ ├── datamov_utils.hpp
│ │ │ │ ├── detail
│ │ │ │ │ ├── color_detail.hpp
│ │ │ │ │ ├── reduce.hpp
│ │ │ │ │ ├── reduce_key_val.hpp
│ │ │ │ │ ├── transform_detail.hpp
│ │ │ │ │ ├── type_traits_detail.hpp
│ │ │ │ │ └── vec_distance_detail.hpp
│ │ │ │ ├── dynamic_smem.hpp
│ │ │ │ ├── emulation.hpp
│ │ │ │ ├── filters.hpp
│ │ │ │ ├── funcattrib.hpp
│ │ │ │ ├── functional.hpp
│ │ │ │ ├── limits.hpp
│ │ │ │ ├── reduce.hpp
│ │ │ │ ├── saturate_cast.hpp
│ │ │ │ ├── scan.hpp
│ │ │ │ ├── simd_functions.hpp
│ │ │ │ ├── transform.hpp
│ │ │ │ ├── type_traits.hpp
│ │ │ │ ├── utility.hpp
│ │ │ │ ├── vec_distance.hpp
│ │ │ │ ├── vec_math.hpp
│ │ │ │ ├── vec_traits.hpp
│ │ │ │ ├── warp.hpp
│ │ │ │ ├── warp_reduce.hpp
│ │ │ │ └── warp_shuffle.hpp
│ │ │ ├── cuda.hpp
│ │ │ ├── cuda.inl.hpp
│ │ │ ├── cuda_stream_accessor.hpp
│ │ │ ├── cuda_types.hpp
│ │ │ ├── cvdef.h
│ │ │ ├── cvstd.hpp
│ │ │ ├── cvstd.inl.hpp
│ │ │ ├── directx.hpp
│ │ │ ├── eigen.hpp
│ │ │ ├── fast_math.hpp
│ │ │ ├── hal
│ │ │ │ ├── hal.hpp
│ │ │ │ ├── interface.h
│ │ │ │ ├── intrin_cpp.hpp
│ │ │ │ ├── intrin.hpp
│ │ │ │ ├── intrin_neon.hpp
│ │ │ │ └── intrin_sse.hpp
│ │ │ ├── ippasync.hpp
│ │ │ ├── mat.hpp
│ │ │ ├── mat.inl.hpp
│ │ │ ├── matx.hpp
│ │ │ ├── neon_utils.hpp
│ │ │ ├── ocl_genbase.hpp
│ │ │ ├── ocl.hpp
│ │ │ ├── opencl
│ │ │ │ ├── ocl_defs.hpp
│ │ │ │ ├── opencl_svm.hpp
│ │ │ │ └── runtime
│ │ │ │ ├── autogenerated
│ │ │ │ │ ├── opencl_clamdblas.hpp
│ │ │ │ │ ├── opencl_clamdfft.hpp
│ │ │ │ │ ├── opencl_core.hpp
│ │ │ │ │ ├── opencl_core_wrappers.hpp
│ │ │ │ │ ├── opencl_gl.hpp
│ │ │ │ │ └── opencl_gl_wrappers.hpp
│ │ │ │ ├── opencl_clamdblas.hpp
│ │ │ │ ├── opencl_clamdfft.hpp
│ │ │ │ ├── opencl_core.hpp
│ │ │ │ ├── opencl_core_wrappers.hpp
│ │ │ │ ├── opencl_gl.hpp
│ │ │ │ ├── opencl_gl_wrappers.hpp
│ │ │ │ ├── opencl_svm_20.hpp
│ │ │ │ ├── opencl_svm_definitions.hpp
│ │ │ │ └── opencl_svm_hsa_extension.hpp
│ │ │ ├── opengl.hpp
│ │ │ ├── operations.hpp
│ │ │ ├── optim.hpp
│ │ │ ├── persistence.hpp
│ │ │ ├── private.cuda.hpp
│ │ │ ├── private.hpp
│ │ │ ├── ptr.inl.hpp
│ │ │ ├── saturate.hpp
│ │ │ ├── sse_utils.hpp
│ │ │ ├── traits.hpp
│ │ │ ├── types_c.h
│ │ │ ├── types.hpp
│ │ │ ├── utility.hpp
│ │ │ ├── va_intel.hpp
│ │ │ ├── version.hpp
│ │ │ └── wimage.hpp
│ │ ├── core.hpp
│ │ ├── cudaarithm.hpp
│ │ ├── cudabgsegm.hpp
│ │ ├── cudacodec.hpp
│ │ ├── cudafeatures2d.hpp
│ │ ├── cudafilters.hpp
│ │ ├── cudaimgproc.hpp
│ │ ├── cudalegacy
│ │ │ ├── NCVBroxOpticalFlow.hpp
│ │ │ ├── NCVHaarObjectDetection.hpp
│ │ │ ├── NCV.hpp
│ │ │ ├── NCVPyramid.hpp
│ │ │ ├── NPP_staging.hpp
│ │ │ └── private.hpp
│ │ ├── cudalegacy.hpp
│ │ ├── cudaobjdetect.hpp
│ │ ├── cudaoptflow.hpp
│ │ ├── cudastereo.hpp
│ │ ├── features2d
│ │ │ └── features2d.hpp
│ │ ├── features2d.hpp
│ │ ├── flann
│ │ │ ├── all_indices.h
│ │ │ ├── allocator.h
│ │ │ ├── any.h
│ │ │ ├── autotuned_index.h
│ │ │ ├── composite_index.h
│ │ │ ├── config.h
│ │ │ ├── defines.h
│ │ │ ├── dist.h
│ │ │ ├── dummy.h
│ │ │ ├── dynamic_bitset.h
│ │ │ ├── flann_base.hpp
│ │ │ ├── flann.hpp
│ │ │ ├── general.h
│ │ │ ├── ground_truth.h
│ │ │ ├── hdf5.h
│ │ │ ├── heap.h
│ │ │ ├── hierarchical_clustering_index.h
│ │ │ ├── index_testing.h
│ │ │ ├── kdtree_index.h
│ │ │ ├── kdtree_single_index.h
│ │ │ ├── kmeans_index.h
│ │ │ ├── linear_index.h
│ │ │ ├── logger.h
│ │ │ ├── lsh_index.h
│ │ │ ├── lsh_table.h
│ │ │ ├── matrix.h
│ │ │ ├── miniflann.hpp
│ │ │ ├── nn_index.h
│ │ │ ├── object_factory.h
│ │ │ ├── params.h
│ │ │ ├── random.h
│ │ │ ├── result_set.h
│ │ │ ├── sampling.h
│ │ │ ├── saving.h
│ │ │ ├── simplex_downhill.h
│ │ │ └── timer.h
│ │ ├── flann.hpp
│ │ ├── highgui
│ │ │ ├── highgui_c.h
│ │ │ ├── highgui.hpp
│ │ │ └── highgui_winrt.hpp
│ │ ├── highgui.hpp
│ │ ├── imgcodecs
│ │ │ ├── imgcodecs_c.h
│ │ │ ├── imgcodecs.hpp
│ │ │ └── ios.h
│ │ ├── imgcodecs.hpp
│ │ ├── imgproc
│ │ │ ├── detail
│ │ │ │ └── distortion_model.hpp
│ │ │ ├── hal
│ │ │ │ └── hal.hpp
│ │ │ ├── imgproc_c.h
│ │ │ ├── imgproc.hpp
│ │ │ └── types_c.h
│ │ ├── imgproc.hpp
│ │ ├── ml
│ │ │ └── ml.hpp
│ │ ├── ml.hpp
│ │ ├── objdetect
│ │ │ ├── detection_based_tracker.hpp
│ │ │ ├── objdetect_c.h
│ │ │ └── objdetect.hpp
│ │ ├── objdetect.hpp
│ │ ├── opencv.hpp
│ │ ├── opencv_modules.hpp
│ │ ├── photo
│ │ │ ├── cuda.hpp
│ │ │ ├── photo_c.h
│ │ │ └── photo.hpp
│ │ ├── photo.hpp
│ │ ├── shape
│ │ │ ├── emdL1.hpp
│ │ │ ├── hist_cost.hpp
│ │ │ ├── shape_distance.hpp
│ │ │ ├── shape.hpp
│ │ │ └── shape_transformer.hpp
│ │ ├── shape.hpp
│ │ ├── superres
│ │ │ └── optical_flow.hpp
│ │ ├── superres.hpp
│ │ ├── video
│ │ │ ├── background_segm.hpp
│ │ │ ├── tracking_c.h
│ │ │ ├── tracking.hpp
│ │ │ └── video.hpp
│ │ ├── video.hpp
│ │ ├── videoio
│ │ │ ├── cap_ios.h
│ │ │ ├── cap_winrt.hpp
│ │ │ ├── videoio_c.h
│ │ │ └── videoio.hpp
│ │ ├── videoio.hpp
│ │ ├── videostab
│ │ │ ├── deblurring.hpp
│ │ │ ├── fast_marching.hpp
│ │ │ ├── fast_marching_inl.hpp
│ │ │ ├── frame_source.hpp
│ │ │ ├── global_motion.hpp
│ │ │ ├── inpainting.hpp
│ │ │ ├── log.hpp
│ │ │ ├── motion_core.hpp
│ │ │ ├── motion_stabilizing.hpp
│ │ │ ├── optical_flow.hpp
│ │ │ ├── outlier_rejection.hpp
│ │ │ ├── ring_buffer.hpp
│ │ │ ├── stabilizer.hpp
│ │ │ └── wobble_suppression.hpp
│ │ ├── videostab.hpp
│ │ ├── viz
│ │ │ ├── types.hpp
│ │ │ ├── viz3d.hpp
│ │ │ ├── vizcore.hpp
│ │ │ ├── widget_accessor.hpp
│ │ │ └── widgets.hpp
│ │ └── viz.hpp
│ ├── x64
│ │ ├── bin
│ │ │ ├── opencv_annotation.exe
│ │ │ ├── opencv_createsamples.exe
│ │ │ ├── opencv_ffmpeg310_64.dll
│ │ │ ├── opencv_traincascade.exe
│ │ │ ├── opencv_world310d.dll
│ │ │ └── opencv_world310.dll
│ │ └── lib
│ │ ├── OpenCVConfig.cmake
│ │ ├── OpenCVModules.cmake
│ │ ├── OpenCVModules-debug.cmake
│ │ ├── OpenCVModules-release.cmake
│ │ ├── opencv_world310d.lib
│ │ └── opencv_world310.lib
│ └── x86
│ ├── bin
│ │ ├── opencv_ffmpeg310.dll
│ │ ├── opencv_world310d.dll
│ │ └── opencv_world310.dll
│ └── lib
│ ├── opencv_ts310d.lib
│ ├── opencv_ts310.lib
│ ├── opencv_world310d.lib
│ └── opencv_world310.lib
├── Debug
│ ├── avcodec-57.dll
│ ├── avdevice-57.dll
│ ├── avfilter-6.dll
│ ├── avformat-57.dll
│ ├── avutil-55.dll
│ ├── HardDecode.exe
│ ├── HardDecode.ilk
│ ├── HardDecode.pdb
│ ├── opencv_ffmpeg310.dll
│ ├── opencv_world310d.dll
│ ├── opencv_world310.dll
│ ├── postproc-54.dll
│ ├── swresample-2.dll
│ └── swscale-4.dll
├── HardDecode
│ ├── Debug
│ │ ├── cudaModuleMgr.obj
│ │ ├── cudaProcessFrame.obj
│ │ ├── dynlink_cuda.obj
│ │ ├── dynlink_nvcuvid.obj
│ │ ├── FrameQueue.obj
│ │ ├── HardDecode.Build.CppClean.log
│ │ ├── HardDecode.log
│ │ ├── HardDecode.tlog
│ │ │ ├── CL.command.1.tlog
│ │ │ ├── CL.read.1.tlog
│ │ │ ├── CL.write.1.tlog
│ │ │ ├── HardDecode.lastbuildstate
│ │ │ ├── link.command.1.tlog
│ │ │ ├── link.read.1.tlog
│ │ │ └── link.write.1.tlog
│ │ ├── main.obj
│ │ ├── main.obj.enc
│ │ ├── NvDecode.obj
│ │ ├── nvdecode.obj.enc
│ │ ├── vc140.idb
│ │ └── vc140.pdb
│ ├── FrameQueue.cpp
│ ├── FrameQueue.h
│ ├── HardDecode.vcxproj
│ ├── HardDecode.vcxproj.filters
│ ├── HardDecode.vcxproj.user
│ ├── main.cpp
│ ├── NvDecode.cpp
│ ├── NvDecode.h
│ └── test.jpg
├── HardDecode.sln
└── HardDecode.VC.db
70 directories, 563 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论