Skip to content

Commit

Permalink
Remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
winlinvip committed May 6, 2020
1 parent 38d6d5b commit 1b08fb6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
8 changes: 0 additions & 8 deletions trunk/src/app/srs_app_rtc_conn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ using namespace std;
#include <srs_app_statistic.hpp>
#include <srs_app_pithy_print.hpp>
#include <srs_service_st.hpp>
#include <srs_app_janus.hpp>

// The RTP payload max size, reserved some paddings for SRTP as such:
// kRtpPacketSize = kRtpMaxPayloadSize + paddings
Expand Down Expand Up @@ -3243,12 +3242,10 @@ srs_error_t SrsUdpMuxSender::on_reload_rtc_server()
SrsRtcServer::SrsRtcServer()
{
timer = new SrsHourGlass(this, 1 * SRS_UTIME_SECONDS);
janus = new SrsJanusServer(this);
}

SrsRtcServer::~SrsRtcServer()
{
srs_freep(janus);
srs_freep(timer);

if (true) {
Expand Down Expand Up @@ -3395,11 +3392,6 @@ srs_error_t SrsRtcServer::listen_api()
return srs_error_wrap(err, "handle nack");
}

// For Janus style API.
if ((err = janus->listen_api()) != srs_success) {
return srs_error_wrap(err, "janus listen api");
}

return err;
}

Expand Down
5 changes: 0 additions & 5 deletions trunk/src/app/srs_app_rtc_conn.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@
#include <openssl/ssl.h>
#include <srtp2/srtp.h>

// For Alibaba Tenfold.
class SrsJanusServer;

class SrsUdpMuxSocket;
class SrsConsumer;
class SrsStunPacket;
Expand Down Expand Up @@ -457,8 +454,6 @@ class SrsRtcServer : virtual public ISrsUdpMuxHandler, virtual public ISrsHourGl
private:
std::map<std::string, SrsRtcSession*> map_username_session; // key: username(local_ufrag + ":" + remote_ufrag)
std::map<std::string, SrsRtcSession*> map_id_session; // key: peerip(ip + ":" + port)
private:
SrsJanusServer* janus;
public:
SrsRtcServer();
virtual ~SrsRtcServer();
Expand Down

0 comments on commit 1b08fb6

Please sign in to comment.