rtperrors.cpp:206: warning: deprecated conversion from stringconstant to 'char*'
rtperrors.cpp:206: warning: deprecated conversion from stringconstant to 'char*'
rtperrors.cpp: In function 'std::stringRTPGetErrorString(int)':
rtperrors.cpp:225: error: 'snprintf' was not declared in thisscope
make[1]: *** [rtperrors.lo] 错误 1
make[1]:正在离开目录 /usr/src/include/jrtplib3/
make: *** [all-recursive] 错误 1
接下来更改文件把,首先是rtpdefines.h
----------------------------------------------------------------------------
#if (defined(WIN32) || defined(_WIN32_WCE))
#if (!defined(_WIN32_WCE)) &&(defined(_MSC_VER) && _MSC_VER>= 1400 )
#define RTP_SNPRINTF printf
#else
#define RTP_SNPRINTF
#endif
#else
#define RTP_SNPRINTF
#endif // WIN32 || _WIN32_WCE
#endif // RTPDEFINES_H
添加头文件stdio.h
rtpdefines.h
rtppacket.h
rtcpcompoundpacketbuilde
转载自:http://blog.sina.com.cn/s/blog_647fc4c50100k9us.html
--------------------------------------------------------------------------------
本文解决了一个关于rtperrors.cpp文件中出现的编译警告和错误问题,主要涉及字符串常量转换为char*的过时操作及未声明的snprintf函数。通过修改rtpdefines.h文件并引入stdio.h和string.h头文件来修复。
1372

被折叠的 条评论
为什么被折叠?



