1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
/*
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "webrtc/video_engine/vie_impl.h"
#include "webrtc/common.h"
#include "webrtc/system_wrappers/interface/logging.h"
#include "webrtc/system_wrappers/interface/trace.h"
namespace webrtc {
enum { kModuleId = 0 };
VideoEngine* VideoEngine::Create() {
return new VideoEngineImpl(new Config(), true /* owns_config */);
}
VideoEngine* VideoEngine::Create(const Config& config) {
return new VideoEngineImpl(&config, false /* owns_config */);
}
bool VideoEngine::Delete(VideoEngine*& video_engine) {
if (!video_engine)
return false;
LOG_F(LS_INFO);
VideoEngineImpl* vie_impl = static_cast<VideoEngineImpl*>(video_engine);
// Check all reference counters.
ViEBaseImpl* vie_base = vie_impl;
if (vie_base->GetCount() > 0) {
LOG(LS_ERROR) << "ViEBase ref count > 0: " << vie_base->GetCount();
return false;
}
#ifdef WEBRTC_VIDEO_ENGINE_CAPTURE_API
ViECaptureImpl* vie_capture = vie_impl;
if (vie_capture->GetCount() > 0) {
LOG(LS_ERROR) << "ViECapture ref count > 0: " << vie_capture->GetCount();
return false;
}
#endif
#ifdef WEBRTC_VIDEO_ENGINE_CODEC_API
ViECodecImpl* vie_codec = vie_impl;
if (vie_codec->GetCount() > 0) {
LOG(LS_ERROR) << "ViECodec ref count > 0: " << vie_codec->GetCount();
return false;
}
#endif
#ifdef WEBRTC_VIDEO_ENGINE_EXTERNAL_CODEC_API
ViEExternalCodecImpl* vie_external_codec = vie_impl;
if (vie_external_codec->GetCount() > 0) {
LOG(LS_ERROR) << "ViEExternalCodec ref count > 0: "
<< vie_external_codec->GetCount();
return false;
}
#endif
#ifdef WEBRTC_VIDEO_ENGINE_FILE_API
ViEFileImpl* vie_file = vie_impl;
if (vie_file->GetCount() > 0) {
LOG(LS_ERROR) << "ViEFile ref count > 0: " << vie_file->GetCount();
return false;
}
#endif
#ifdef WEBRTC_VIDEO_ENGINE_IMAGE_PROCESS_API
ViEImageProcessImpl* vie_image_process = vie_impl;
if (vie_image_process->GetCount() > 0) {
LOG(LS_ERROR) << "ViEImageProcess ref count > 0: "
<< vie_image_process->GetCount();
return false;
}
#endif
ViENetworkImpl* vie_network = vie_impl;
if (vie_network->GetCount() > 0) {
LOG(LS_ERROR) << "ViENetwork ref count > 0: " << vie_network->GetCount();
return false;
}
#ifdef WEBRTC_VIDEO_ENGINE_RENDER_API
ViERenderImpl* vie_render = vie_impl;
if (vie_render->GetCount() > 0) {
LOG(LS_ERROR) << "ViERender ref count > 0: " << vie_render->GetCount();
return false;
}
#endif
#ifdef WEBRTC_VIDEO_ENGINE_RTP_RTCP_API
ViERTP_RTCPImpl* vie_rtp_rtcp = vie_impl;
if (vie_rtp_rtcp->GetCount() > 0) {
LOG(LS_ERROR) << "ViERTP_RTCP ref count > 0: " << vie_rtp_rtcp->GetCount();
return false;
}
#endif
delete vie_impl;
vie_impl = NULL;
video_engine = NULL;
return true;
}
int VideoEngine::SetTraceFile(const char* file_nameUTF8,
const bool add_file_counter) {
if (!file_nameUTF8) {
return -1;
}
if (Trace::SetTraceFile(file_nameUTF8, add_file_counter) == -1) {
return -1;
}
LOG_F(LS_INFO) << "filename: " << file_nameUTF8
<< " add_file_counter: " << (add_file_counter ? "yes" : "no");
return 0;
}
int VideoEngine::SetTraceFilter(const unsigned int filter) {
uint32_t old_filter = Trace::level_filter();
if (filter == kTraceNone && old_filter != kTraceNone) {
// Do the logging before turning it off.
LOG_F(LS_INFO) << "filter: " << filter;
}
Trace::set_level_filter(filter);
LOG_F(LS_INFO) << "filter: " << filter;
return 0;
}
int VideoEngine::SetTraceCallback(TraceCallback* callback) {
LOG_F(LS_INFO);
return Trace::SetTraceCallback(callback);
}
} // namespace webrtc
|