gcc 4.7.2
c89
你好,
我正在测试以下不会修改 rtp 流的代码。
#define DO_MODIFY_RTP
#ifdef DO_NOT_MODIFY_RTP
if(modify_rtp_media_stream(channel->ipm) == FALSE) {
status = FALSE;
}
#endif
当我想测试修改 rtp 流时,我会将其设置#define
为:
#define DO_MODIFY_RTP
#ifdef DO_MODIFY_RTP
if(modify_rtp_media_stream(channel->ipm) == FALSE) {
status = FALSE;
}
#endif
最终,这将由配置文件中的属性控制。但在我这样做之前,我只是在测试这两种情况。
像这样使用是不是很奇怪#define
?
非常感谢您的任何建议,