summaryrefslogtreecommitdiff
path: root/src/input
diff options
context:
space:
mode:
Diffstat (limited to 'src/input')
-rw-r--r--src/input/input_cda.c10
-rw-r--r--src/input/input_dvd.c10
-rw-r--r--src/input/input_file.c10
-rw-r--r--src/input/input_http.c8
-rw-r--r--src/input/input_net.c4
-rw-r--r--src/input/input_rtp.c8
-rw-r--r--src/input/input_stdin_fifo.c10
-rw-r--r--src/input/input_vcd.c10
8 files changed, 35 insertions, 35 deletions
diff --git a/src/input/input_cda.c b/src/input/input_cda.c
index 150ca05a0..8f9ea52ba 100644
--- a/src/input/input_cda.c
+++ b/src/input/input_cda.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: input_cda.c,v 1.16 2002/01/15 13:20:59 jkeil Exp $
+ * $Id: input_cda.c,v 1.17 2002/02/17 17:32:50 guenter Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -93,20 +93,20 @@ extern int errno;
#ifdef __GNUC__
#define LOG_MSG_STDERR(xine, message, args...) { \
- xine_log(xine, XINE_LOG_INPUT, message, ##args); \
+ xine_log(xine, XINE_LOG_MSG, message, ##args); \
fprintf(stderr, message, ##args); \
}
#define LOG_MSG(xine, message, args...) { \
- xine_log(xine, XINE_LOG_INPUT, message, ##args); \
+ xine_log(xine, XINE_LOG_MSG, message, ##args); \
printf(message, ##args); \
}
#else
#define LOG_MSG_STDERR(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
+ xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \
fprintf(stderr, __VA_ARGS__); \
}
#define LOG_MSG(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
+ xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \
printf(__VA_ARGS__); \
}
#endif
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c
index 7f5b1cc63..9dfabe073 100644
--- a/src/input/input_dvd.c
+++ b/src/input/input_dvd.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: input_dvd.c,v 1.42 2002/01/02 18:16:07 jkeil Exp $
+ * $Id: input_dvd.c,v 1.43 2002/02/17 17:32:50 guenter Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -56,20 +56,20 @@ extern int errno;
#ifdef __GNUC__
#define LOG_MSG_STDERR(xine, message, args...) { \
- xine_log(xine, XINE_LOG_INPUT, message, ##args); \
+ xine_log(xine, XINE_LOG_MSG, message, ##args); \
fprintf(stderr, message, ##args); \
}
#define LOG_MSG(xine, message, args...) { \
- xine_log(xine, XINE_LOG_INPUT, message, ##args); \
+ xine_log(xine, XINE_LOG_MSG, message, ##args); \
printf(message, ##args); \
}
#else
#define LOG_MSG_STDERR(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
+ xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \
fprintf(stderr, __VA_ARGS__); \
}
#define LOG_MSG(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
+ xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \
printf(__VA_ARGS__); \
}
#endif
diff --git a/src/input/input_file.c b/src/input/input_file.c
index ac0b1f858..08d1e8839 100644
--- a/src/input/input_file.c
+++ b/src/input/input_file.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: input_file.c,v 1.38 2002/01/18 22:43:43 f1rmb Exp $
+ * $Id: input_file.c,v 1.39 2002/02/17 17:32:50 guenter Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -45,20 +45,20 @@ extern int errno;
#ifdef __GNUC__
#define LOG_MSG_STDERR(xine, message, args...) { \
- xine_log(xine, XINE_LOG_INPUT, message, ##args); \
+ xine_log(xine, XINE_LOG_MSG, message, ##args); \
fprintf(stderr, message, ##args); \
}
#define LOG_MSG(xine, message, args...) { \
- xine_log(xine, XINE_LOG_INPUT, message, ##args); \
+ xine_log(xine, XINE_LOG_MSG, message, ##args); \
printf(message, ##args); \
}
#else
#define LOG_MSG_STDERR(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
+ xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \
fprintf(stderr, __VA_ARGS__); \
}
#define LOG_MSG(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
+ xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \
printf(__VA_ARGS__); \
}
#endif
diff --git a/src/input/input_http.c b/src/input/input_http.c
index 9193bc5f6..8968dd77d 100644
--- a/src/input/input_http.c
+++ b/src/input/input_http.c
@@ -44,20 +44,20 @@ extern int errno;
#ifdef __GNUC__
#define LOG_MSG_STDERR(xine, message, args...) { \
- xine_log(xine, XINE_LOG_INPUT, message, ##args); \
+ xine_log(xine, XINE_LOG_MSG, message, ##args); \
fprintf(stderr, message, ##args); \
}
#define LOG_MSG(xine, message, args...) { \
- xine_log(xine, XINE_LOG_INPUT, message, ##args); \
+ xine_log(xine, XINE_LOG_MSG, message, ##args); \
printf(message, ##args); \
}
#else
#define LOG_MSG_STDERR(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
+ xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \
fprintf(stderr, __VA_ARGS__); \
}
#define LOG_MSG(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
+ xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \
printf(__VA_ARGS__); \
}
#endif
diff --git a/src/input/input_net.c b/src/input/input_net.c
index c89c25524..cdb0c383a 100644
--- a/src/input/input_net.c
+++ b/src/input/input_net.c
@@ -60,12 +60,12 @@ extern int errno;
#ifdef __GNUC__
#define LOG_MSG(xine, message, args...) { \
- xine_log(xine, XINE_LOG_INPUT, message, ##args); \
+ xine_log(xine, XINE_LOG_MSG, message, ##args); \
printf(message, ##args); \
}
#else
#define LOG_MSG(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
+ xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \
printf(__VA_ARGS__); \
}
#endif
diff --git a/src/input/input_rtp.c b/src/input/input_rtp.c
index 0e8c4bb5f..2d6097992 100644
--- a/src/input/input_rtp.c
+++ b/src/input/input_rtp.c
@@ -88,20 +88,20 @@ extern int errno;
#ifdef __GNUC__
#define LOG_MSG_STDERR(xine, message, args...) { \
- xine_log(xine, XINE_LOG_INPUT, message, ##args); \
+ xine_log(xine, XINE_LOG_MSG, message, ##args); \
fprintf(stderr, message, ##args); \
}
#define LOG_MSG(xine, message, args...) { \
- xine_log(xine, XINE_LOG_INPUT, message, ##args); \
+ xine_log(xine, XINE_LOG_MSG, message, ##args); \
printf(message, ##args); \
}
#else
#define LOG_MSG_STDERR(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
+ xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \
fprintf(stderr, __VA_ARGS__); \
}
#define LOG_MSG(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
+ xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \
printf(__VA_ARGS__); \
}
#endif
diff --git a/src/input/input_stdin_fifo.c b/src/input/input_stdin_fifo.c
index aa5e3627d..e64967274 100644
--- a/src/input/input_stdin_fifo.c
+++ b/src/input/input_stdin_fifo.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: input_stdin_fifo.c,v 1.19 2002/01/02 18:16:07 jkeil Exp $
+ * $Id: input_stdin_fifo.c,v 1.20 2002/02/17 17:32:50 guenter Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -44,20 +44,20 @@ extern int errno;
#ifdef __GNUC__
#define LOG_MSG_STDERR(xine, message, args...) { \
- xine_log(xine, XINE_LOG_INPUT, message, ##args); \
+ xine_log(xine, XINE_LOG_MSG, message, ##args); \
fprintf(stderr, message, ##args); \
}
#define LOG_MSG(xine, message, args...) { \
- xine_log(xine, XINE_LOG_INPUT, message, ##args); \
+ xine_log(xine, XINE_LOG_MSG, message, ##args); \
printf(message, ##args); \
}
#else
#define LOG_MSG_STDERR(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
+ xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \
fprintf(stderr, __VA_ARGS__); \
}
#define LOG_MSG(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
+ xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \
printf(__VA_ARGS__); \
}
#endif
diff --git a/src/input/input_vcd.c b/src/input/input_vcd.c
index b221cd86b..8d94a771d 100644
--- a/src/input/input_vcd.c
+++ b/src/input/input_vcd.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: input_vcd.c,v 1.36 2002/01/18 23:16:05 f1rmb Exp $
+ * $Id: input_vcd.c,v 1.37 2002/02/17 17:32:50 guenter Exp $
*
*/
@@ -55,20 +55,20 @@ extern int errno;
#ifdef __GNUC__
#define LOG_MSG_STDERR(xine, message, args...) { \
- xine_log(xine, XINE_LOG_INPUT, message, ##args); \
+ xine_log(xine, XINE_LOG_MSG, message, ##args); \
fprintf(stderr, message, ##args); \
}
#define LOG_MSG(xine, message, args...) { \
- xine_log(xine, XINE_LOG_INPUT, message, ##args); \
+ xine_log(xine, XINE_LOG_MSG, message, ##args); \
printf(message, ##args); \
}
#else
#define LOG_MSG_STDERR(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
+ xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \
fprintf(stderr, __VA_ARGS__); \
}
#define LOG_MSG(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
+ xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \
printf(__VA_ARGS__); \
}
#endif