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>2012-10-30 21:14:05 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2012-10-30 21:14:05 +0400
commit6543cf930f77a2b76f0ffe30975792f57c97f6da (patch)
tree16f848ab66a2c7ea49750a9c0bb27b792396e606
parent79ddd677545ca71a225a5f776f991a2459d578da (diff)
Fix repeated log message printing.
-rw-r--r--common/DSUtilLite/lavf_log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/DSUtilLite/lavf_log.h b/common/DSUtilLite/lavf_log.h
index 3323b77e..078857df 100644
--- a/common/DSUtilLite/lavf_log.h
+++ b/common/DSUtilLite/lavf_log.h
@@ -36,7 +36,7 @@ inline void lavf_log_callback(void* ptr, int level, const char* fmt, va_list vl)
return;
}
if(count>0){
- fprintf(stderr, " Last message repeated %d times\n", count);
+ DbgLog((LOG_CUSTOM1, level, L" Last message repeated %d times\n", count));
count=0;
}
if (line[strlen(line)-1] == '\n') {