Home | History | Annotate | Download | only in webrtc

Lines Matching refs:WebRtcVideoEngine

29 #include "talk/media/webrtc/webrtcvideoengine.h"
647 const WebRtcVideoEngine::VideoCodecPref
648 WebRtcVideoEngine::kVideoCodecPrefs[] = {
656 const VideoFormatPod WebRtcVideoEngine::kVideoFormats[] = {
678 const VideoFormatPod WebRtcVideoEngine::kDefaultVideoFormat =
692 WebRtcVideoEngine::WebRtcVideoEngine() {
697 WebRtcVideoEngine::WebRtcVideoEngine(WebRtcVoiceEngine* voice_engine,
703 WebRtcVideoEngine::WebRtcVideoEngine(WebRtcVoiceEngine* voice_engine,
710 void WebRtcVideoEngine::Construct(ViEWrapper* vie_wrapper,
714 LOG(LS_INFO) << "WebRtcVideoEngine::WebRtcVideoEngine";
759 WebRtcVideoEngine::~WebRtcVideoEngine() {
760 LOG(LS_INFO) << "WebRtcVideoEngine::~WebRtcVideoEngine";
772 bool WebRtcVideoEngine::Init(talk_base::Thread* worker_thread) {
773 LOG(LS_INFO) << "WebRtcVideoEngine::Init";
793 bool WebRtcVideoEngine::InitVideoEngine() {
794 LOG(LS_INFO) << "WebRtcVideoEngine::InitVideoEngine";
835 void WebRtcVideoEngine::Terminate() {
836 LOG(LS_INFO) << "WebRtcVideoEngine::Terminate";
851 int WebRtcVideoEngine::GetCapabilities() {
855 bool WebRtcVideoEngine::SetOptions(int options) {
859 bool WebRtcVideoEngine::SetDefaultEncoderConfig(
868 bool WebRtcVideoEngine::SetDefaultCodec(const VideoCodec& codec) {
882 WebRtcVideoMediaChannel* WebRtcVideoEngine::CreateChannel(
893 bool WebRtcVideoEngine::SetLocalRenderer(VideoRenderer* renderer) {
899 const std::vector<VideoCodec>& WebRtcVideoEngine::codecs() const {
904 WebRtcVideoEngine::rtp_header_extensions() const {
908 void WebRtcVideoEngine::SetLogging(int min_sev, const char* filter) {
916 int WebRtcVideoEngine::GetLastEngineError() {
921 bool WebRtcVideoEngine::FindCodec(const VideoCodec& in) {
951 bool WebRtcVideoEngine::CanSendCodec(const VideoCodec& requested,
1043 bool WebRtcVideoEngine::ConvertFromCricketVideoCodec(
1117 void WebRtcVideoEngine::RegisterChannel(WebRtcVideoMediaChannel *channel) {
1122 void WebRtcVideoEngine::UnregisterChannel(WebRtcVideoMediaChannel *channel) {
1128 bool WebRtcVideoEngine::SetVoiceEngine(WebRtcVoiceEngine* voice_engine) {
1137 bool WebRtcVideoEngine::EnableTimedRender() {
1147 void WebRtcVideoEngine::SetTraceFilter(int filter) {
1154 void WebRtcVideoEngine::SetTraceOptions(const std::string& options) {
1179 bool WebRtcVideoEngine::RebuildCodecList(const VideoCodec& in_codec) {
1227 bool WebRtcVideoEngine::ShouldIgnoreTrace(const std::string& trace) {
1239 int WebRtcVideoEngine::GetNumOfChannels() {
1244 void WebRtcVideoEngine::Print(webrtc::TraceLevel level, const char* trace,
1270 webrtc::VideoDecoder* WebRtcVideoEngine::CreateExternalDecoder(
1278 void WebRtcVideoEngine::DestroyExternalDecoder(webrtc::VideoDecoder* decoder) {
1285 webrtc::VideoEncoder* WebRtcVideoEngine::CreateExternalEncoder(
1293 void WebRtcVideoEngine::DestroyExternalEncoder(webrtc::VideoEncoder* encoder) {
1300 bool WebRtcVideoEngine::IsExternalEncoderCodecType(
1314 void WebRtcVideoEngine::SetExternalDecoderFactory(
1319 void WebRtcVideoEngine::SetExternalEncoderFactory(
1338 void WebRtcVideoEngine::OnCodecsAvailable() {
1354 WebRtcVideoEngine* engine,