summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/h264.c8
-rw-r--r--tools/ts.c8
2 files changed, 12 insertions, 4 deletions
diff --git a/tools/h264.c b/tools/h264.c
index 8adcf7cc..a729a289 100644
--- a/tools/h264.c
+++ b/tools/h264.c
@@ -4,14 +4,18 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: h264.c,v 1.6 2009-02-16 16:03:18 phintuka Exp $
+ * $Id: h264.c,v 1.7 2009-03-31 11:33:05 phintuka Exp $
*
*/
#include <stdint.h>
#include <string.h>
-#include "../logdefs.h"
+#ifndef LOG_MODULENAME
+# define LOG_MODULENAME "[h264 ] "
+# define SysLogLevel iSysLogLevel
+# include "../logdefs.h"
+#endif
#define NOCACHE 1
#include "bitstream.h"
diff --git a/tools/ts.c b/tools/ts.c
index 2723cd9b..adc27c3d 100644
--- a/tools/ts.c
+++ b/tools/ts.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: ts.c,v 1.5 2009-02-16 16:03:18 phintuka Exp $
+ * $Id: ts.c,v 1.6 2009-03-31 11:33:05 phintuka Exp $
*
*/
@@ -12,7 +12,11 @@
#include <stdlib.h>
#include <string.h>
-#include "../logdefs.h"
+#ifndef LOG_MODULENAME
+# define LOG_MODULENAME "[mpeg-ts ] "
+# define SysLogLevel iSysLogLevel
+# include "../logdefs.h"
+#endif
#include "mpeg.h"
#include "ts.h"