WebRtc_Word32 Trace::SetTraceFile(const char* /*fileName*/, const bool /*addFileCounter*/) { return -1; }
--
---
You received this message because you are subscribed to the Google Groups "discuss-webrtc" group.
To unsubscribe from this group and stop receiving emails from it, send an email to discuss-webrt...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
---
You received this message because you are subscribed to a topic in the Google Groups "discuss-webrtc" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/discuss-webrtc/2LeAGGx71YA/unsubscribe?hl=en.
To unsubscribe from this group and all its topics, send an email to discuss-webrt...@googlegroups.com.
1. 1. Include following files to “system_wrappers” project
"trace_impl.cc"
"trace_impl_h""
"trace_win.cc"
"trace_win.h"
2. 2. Remove “trace_impl_no_op.cc”
3. 3. Change in “trace_impl.h” and “trace_win.h”
from
#include "webrtc/system_wrappers/interface/trace.h"
to
#include "webrtc/system_wrappers/source/trace_impl.h"
4. 4. Add log file name and trace filter criteria
webrtc\trunk\third_party\webrtc\video_engine\vie_impl.cc
VideoEngine* VideoEngine::Create() {
#if (defined(WIN32_) || defined(WIN64_))
// Load a debug dll, if there is one.
HMODULE hmod_ = LoadLibrary(TEXT("VideoEngineTestingDLL.dll"));
if (hmod_) {
typedef VideoEngine* (*PFNGetVideoEngineLib)(void);
PFNGetVideoEngineLib pfn =
(PFNGetVideoEngineLib)GetProcAddress(hmod_, "GetVideoEngine");
if (pfn) {
VideoEngine* self = pfn();
return self;
} else {
assert(false && "Failed to open test dll VideoEngineTestingDLL.dll");
return NULL;
}
}
#endif
//log
//VideoEngine::SetTraceFile("VideoEngine_Create.txt");
//VideoEngine::SetTraceFilter(kTraceDefault);
return GetVideoEngine();
}
--
---
You received this message because you are subscribed to a topic in the Google Groups "discuss-webrtc" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/discuss-webrtc/2LeAGGx71YA/unsubscribe?hl=en.