diff --git a/webrtc/WebRtcEchoTest.cpp b/webrtc/WebRtcEchoTest.cpp index 9293d369..cb03c195 100644 --- a/webrtc/WebRtcEchoTest.cpp +++ b/webrtc/WebRtcEchoTest.cpp @@ -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); } - diff --git a/webrtc/WebRtcEchoTest.h b/webrtc/WebRtcEchoTest.h index 06ca2dee..b212ac41 100644 --- a/webrtc/WebRtcEchoTest.h +++ b/webrtc/WebRtcEchoTest.h @@ -31,8 +31,6 @@ protected: private: WebRtcEchoTest(const EventPoller::Ptr &poller); - }; - #endif //ZLMEDIAKIT_WEBRTCECHOTEST_H