RESEARCH

Index of /ubuntu/pool/universe/w/webrtc-audio-processing

Name Last modified Size Description Parent Directory   –   libwebrtc-audio-processing-0_0.1-2ubuntu1_amd64.deb 2014-01-28 18:48 96K   libwebrtc-audio-processing-0_0.1-2ubuntu1_i386.deb 2014-01-28 18:48 91K   libwebrtc-audio-processing-dev_0.1-2ubuntu1_amd64.deb 2014-01-28 18:48 122K   libwebrtc-audio-processing-dev_0.1-2ubuntu1_i386.deb 2014-01-28 18:48 116K  …Read moreIndex of /ubuntu/pool/universe/w/webrtc-audio-processing

RESEARCH

Index of /kalilinux/kali/pool/main/w/webrtc-audio-processing/

../ libwebrtc-audio-processing-dev_0.3-1+b1_amd64.deb 29-Jul-2019 19:59 330512 libwebrtc-audio-processing-dev_0.3-1+b1_arm64.deb 29-Jul-2019 15:59 308816 libwebrtc-audio-processing-dev_0.3-1+b1_armel.deb 30-Jul-2019 00:59 307808 libwebrtc-audio-processing-dev_0.3-1+b1_armhf.deb 29-Jul-2019 22:12 303248 libwebrtc-audio-processing-dev_0.3-1+b1_i386.deb 29-Jul-2019 20:24 354200 libwebrtc-audio-processing1_0.3-1+b1_amd64.deb 29-Jul-2019 19:59 263912 libwebrtc-audio-processing1_0.3-1+b1_arm64.deb 29-Jul-2019 15:59 240916 …Read moreIndex of /kalilinux/kali/pool/main/w/webrtc-audio-processing/

RESEARCH

Where I could called set custom frame encryptor and custom frame decryptor for webRTC in Blink RTC_Peer_Connection?

rtc::scoped_refptr<PeerConnectionInterface> PeerConnectionInterface::SetFrameEncryptor(std::vector<uint8_t>& new_keys) { rtc::scoped_refptr<webrtc::OctonFrameEncryptor> encryptor_( new webrtc::OctonFrameEncryptor(new_keys)); auto senders = GetSenders(); for (auto sender : senders) { sender->SetFrameEncryptor(encryptor_); } return nullptr; } rtc::scoped_refptr<PeerConnectionInterface> PeerConnectionInterface::SetFrameDecryptor(std::vector<uint8_t>& new_keys) { rtc::scoped_refptr<webrtc::OctonFrameDecryptor> decryptor_( new…Read moreWhere I could called set custom frame encryptor and custom frame decryptor for webRTC in Blink RTC_Peer_Connection?