Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-03-23 12:51:13 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2015-03-23 12:51:13 +0300
commitb09ef67d1381b2c04ad4b2804bce7e1adfdd8575 (patch)
tree4690d59248123a46a96351d52ab782a68bb07310 /demuxer
parentb5296836358a0a5e942cd6c984c6179766dbf962 (diff)
Remove ENABLE_DEBUG_LOGFILE define from version.h
Diffstat (limited to 'demuxer')
-rw-r--r--demuxer/LAVSplitter/LAVSplitter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/demuxer/LAVSplitter/LAVSplitter.cpp b/demuxer/LAVSplitter/LAVSplitter.cpp
index c2713e39..5f03507e 100644
--- a/demuxer/LAVSplitter/LAVSplitter.cpp
+++ b/demuxer/LAVSplitter/LAVSplitter.cpp
@@ -66,7 +66,7 @@ CLAVSplitter::CLAVSplitter(LPUNKNOWN pUnk, HRESULT* phr)
DbgSetModuleLevel (LOG_TRACE, DWORD_MAX);
DbgSetModuleLevel (LOG_ERROR, DWORD_MAX);
-#if ENABLE_DEBUG_LOGFILE
+#ifdef LAV_DEBUG_RELEASE
DbgSetLogFileDesktop(LAVF_LOG_FILE);
#endif
#endif
@@ -86,7 +86,7 @@ CLAVSplitter::~CLAVSplitter()
SafeRelease(&m_pSite);
-#if defined(DEBUG) && ENABLE_DEBUG_LOGFILE
+#if defined(DEBUG) && defined(LAV_DEBUG_RELEASE)
DbgCloseLogFile();
#endif
}