pili-engineering / PLMediaStreamingKit

PLMediaStreamingKit 是七牛推出的一款适用于 iOS 平台的推流 SDK,支持 RTMP 推流,h.264 和 AAC 编码,硬编、软编支持。具有丰富的数据和状态回调,方便用户根据自己的业务定制化开发。具有直播场景下的重要功能,如:美颜、背景音乐、水印等功能。
https://github.com/pili-engineering/PLMediaStreamingKit
Apache License 2.0
542 stars 243 forks source link

Xcode 9 Beta3编译不过 #69

Closed wujianbotju closed 6 years ago

wujianbotju commented 7 years ago

类QNNPing.m 第93行到103行,check_compile_time调用, error: expected parameter declarator check_compile_time(sizeof(IPHeader) == 20); .... .... 可能解决方法:check_compile_time中的参数全部添加括号,如 check_compile_time(sizeof(IPHeader) == 20); 改为 check_compile_time((sizeof(IPHeader) == 20));

KiritoBeater commented 7 years ago

修改check_compile_time为__Check_Compile_Time可行。

jabez1314 commented 7 years ago

是版本不更新了么?

jabez1314 commented 7 years ago

https://github.com/qiniu/iOS-netdiag/releases 这个已经更新了