diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-19 18:51:22 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-19 18:51:22 +0000 |
commit | e1d13adbaceab9f2fbada4c54873a3b4c6cf7c55 (patch) | |
tree | bc5fa34c66879db3d9871b299a0439279dd75de1 /src | |
parent | 45397cd1635a825156311a3f0b5302885d210bea (diff) | |
download | xine-lib-e1d13adbaceab9f2fbada4c54873a3b4c6cf7c55.tar.gz xine-lib-e1d13adbaceab9f2fbada4c54873a3b4c6cf7c55.tar.bz2 |
call it LOG for consistency
CVS patchset: 2861
CVS date: 2002/10/19 18:51:22
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/video_decoder.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xine-engine/video_decoder.c b/src/xine-engine/video_decoder.c index 7a65d26b1..dc461f6f0 100644 --- a/src/xine-engine/video_decoder.c +++ b/src/xine-engine/video_decoder.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: video_decoder.c,v 1.101 2002/10/18 04:04:10 miguelfreitas Exp $ + * $Id: video_decoder.c,v 1.102 2002/10/19 18:51:22 guenter Exp $ * */ @@ -34,7 +34,7 @@ #include <sched.h> /* -#define VIDEO_DECODER_LOG +#define LOG */ static spu_decoder_t* update_spu_decoder (xine_stream_t *this, int type) { @@ -77,7 +77,7 @@ void *video_decoder_loop (void *stream_gen) { while (running) { -#ifdef VIDEO_DECODER_LOG +#ifdef LOG printf ("video_decoder: getting buffer...\n"); #endif @@ -91,7 +91,7 @@ void *video_decoder_loop (void *stream_gen) { stream->input_time = buf->input_time; } -#ifdef VIDEO_DECODER_LOG +#ifdef LOG printf ("video_decoder: got buffer 0x%08x\n", buf->type); #endif |