删除多余空行

This commit is contained in:
ziyue 2021-10-16 11:04:28 +08:00
parent 34365a2f8f
commit d2a9878557
2 changed files with 0 additions and 4 deletions

View File

@ -10,7 +10,6 @@
#include "WebRtcEchoTest.h"
WebRtcEchoTest::Ptr WebRtcEchoTest::create(const EventPoller::Ptr &poller) {
WebRtcEchoTest::Ptr ret(new WebRtcEchoTest(poller), [](WebRtcEchoTest *ptr) {
ptr->onDestory();
@ -35,4 +34,3 @@ void WebRtcEchoTest::onRtp(const char *buf, size_t len, uint64_t stamp_ms) {
void WebRtcEchoTest::onRtcp(const char *buf, size_t len) {
sendRtcpPacket(buf, len, true, nullptr);
}

View File

@ -31,8 +31,6 @@ protected:
private:
WebRtcEchoTest(const EventPoller::Ptr &poller);
};
#endif //ZLMEDIAKIT_WEBRTCECHOTEST_H