summaryrefslogtreecommitdiff
path: root/src/input/input_stdin_fifo.c
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2002-02-17 17:32:49 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2002-02-17 17:32:49 +0000
commit31c216d7c3195e7975040ceb5445f200db384c84 (patch)
treebd34b07ef3db8ab9dab46229c6289321eb12f324 /src/input/input_stdin_fifo.c
parent5106a372ebd84fda2e004541efebd7c366201efd (diff)
downloadxine-lib-31c216d7c3195e7975040ceb5445f200db384c84.tar.gz
xine-lib-31c216d7c3195e7975040ceb5445f200db384c84.tar.bz2
big debug output cleanup. removed debug output from log window, logging
relevant information like stream type/size/bitrate instead. demuxer cleanup, removed no-longer-needed macros :-) switched off video_out/libmpeg2/... verbose log output messages. CVS patchset: 1503 CVS date: 2002/02/17 17:32:49
Diffstat (limited to 'src/input/input_stdin_fifo.c')
-rw-r--r--src/input/input_stdin_fifo.c10
1 files changed, 5 insertions, 5 deletions
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