常见错误解决

错误 C4996 ‘fopen’: This function or variable may be unsafe.
https://jingyan.baidu.com/article/ce436649fd61543773afd32e.html

问题详解:致命错误C1010,在寻找预编译指示头文件时,文件未预期结束。就是没有找到预编译指示信息的问文件。
顾名思义就是预编译由于缺少了预编译文件而失败。解决方法显然能够取消预编译,或者帮助编译器找到预编译文件。
解法:
1.右键单击项目project中的cpp文件,在菜单Project->Settings->C/C+±>Precompile Header,设置为第一项:Not using precompile headers。
2.在.cpp文件开头加入�包括文件stdafx.h。 #include"stdafx.h"

warning: Error opening file (…/…/modules/highgui/src/cap_ffmpeg_impl.hpp:545)
在link里debug模式下面使用opencv_highgui249d.lib代替opencv_highgui249.lib

挂载命令:
mkdir -p /mnt/nfs
mount -t nfs -o nolock 10.150.90.230:/home/npu_758 /mnt/nfs
挂载NFS文件提示: wrong fs type, bad option, bad super block
https://blog.csdn.net/Jerry_1126/article/details/52234690

你可能感兴趣的:(视频编解码)