summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2002-10-23 17:12:30 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2002-10-23 17:12:30 +0000
commitb40fb8592fe58ab4bfe7a7f1f36b7751410274e3 (patch)
treea777c194561c87f3a0ea9569269a1e495da935a8
parentc43b6812efee912659fd512e26ecab0dbba912cc (diff)
downloadxine-lib-b40fb8592fe58ab4bfe7a7f1f36b7751410274e3.tar.gz
xine-lib-b40fb8592fe58ab4bfe7a7f1f36b7751410274e3.tar.bz2
fix comments, c syntax
CVS patchset: 2967 CVS date: 2002/10/23 17:12:30
-rw-r--r--src/xine-engine/demux.c2
-rw-r--r--src/xine-engine/locale.c8
-rw-r--r--src/xine-engine/lrb.c6
-rw-r--r--src/xine-engine/lrb.h6
-rw-r--r--src/xine-engine/nvtvd.c10
-rw-r--r--src/xine-engine/nvtvd.h10
-rw-r--r--src/xine-engine/osd.h94
-rw-r--r--src/xine-engine/resample.c6
-rw-r--r--src/xine-engine/resample.h6
-rw-r--r--src/xine-engine/scratch.c6
-rw-r--r--src/xine-engine/scratch.h6
-rw-r--r--src/xine-engine/spu_decoder.h6
-rw-r--r--src/xine-engine/tvmode.c4
-rw-r--r--src/xine-engine/video_overlay.h6
-rw-r--r--src/xine-engine/xineintl.h6
15 files changed, 91 insertions, 91 deletions
diff --git a/src/xine-engine/demux.c b/src/xine-engine/demux.c
index 8453bf91f..59339f0e2 100644
--- a/src/xine-engine/demux.c
+++ b/src/xine-engine/demux.c
@@ -1,7 +1,7 @@
/*
* Copyright (C) 2000-2002 the xine project
*
- * This file is part of xine, a unix video player.
+ * This file is part of xine, a free video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/xine-engine/locale.c b/src/xine-engine/locale.c
index 7ff9db763..0c79b24d5 100644
--- a/src/xine-engine/locale.c
+++ b/src/xine-engine/locale.c
@@ -1,7 +1,7 @@
/*
- * Copyright (C) 2000-2001 the xine project
+ * Copyright (C) 2000-2002 the xine project
*
- * This file is part of xine, a unix video player.
+ * This file is part of xine, a free video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -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: locale.c,v 1.2 2002/01/20 23:21:52 f1rmb Exp $
+ * $Id: locale.c,v 1.3 2002/10/23 17:12:31 guenter Exp $
*
* intl init.
*
@@ -38,7 +38,7 @@ char *xine_set_locale(void) {
#ifdef XINE_LOCALE_LOG
printf("xine-lib: locale not supported by C library\n");
#endif
- // xine_log(this, XINE_LOG_INTERNAL, "xine-lib: locale not supported by C library");
+ /* xine_log(this, XINE_LOG_INTERNAL, "xine-lib: locale not supported by C library"); */
return NULL;
}
diff --git a/src/xine-engine/lrb.c b/src/xine-engine/lrb.c
index a87252c9b..c3be42039 100644
--- a/src/xine-engine/lrb.c
+++ b/src/xine-engine/lrb.c
@@ -1,7 +1,7 @@
/*
- * Copyright (C) 2000-2001 the xine project
+ * Copyright (C) 2000-2002 the xine project
*
- * This file is part of xine, a unix video player.
+ * This file is part of xine, a free video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -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: lrb.c,v 1.2 2001/11/17 14:26:39 f1rmb Exp $
+ * $Id: lrb.c,v 1.3 2002/10/23 17:12:31 guenter Exp $
*
*/
diff --git a/src/xine-engine/lrb.h b/src/xine-engine/lrb.h
index debe77a84..ead6a855d 100644
--- a/src/xine-engine/lrb.h
+++ b/src/xine-engine/lrb.h
@@ -1,7 +1,7 @@
/*
- * Copyright (C) 2001 the xine project
+ * Copyright (C) 2001-2002 the xine project
*
- * This file is part of xine, a unix video player.
+ * This file is part of xine, a free video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -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: lrb.h,v 1.1 2001/10/18 18:50:53 guenter Exp $
+ * $Id: lrb.h,v 1.2 2002/10/23 17:12:32 guenter Exp $
*
* lrb : limited ring buffer
* used for temporal buffer, limited to n elements
diff --git a/src/xine-engine/nvtvd.c b/src/xine-engine/nvtvd.c
index c2124dfef..5a9f2d84a 100644
--- a/src/xine-engine/nvtvd.c
+++ b/src/xine-engine/nvtvd.c
@@ -1,7 +1,7 @@
/*
* Copyright (C) 2000-2002 the xine project
*
- * This file is part of xine, a unix video player.
+ * This file is part of xine, a free video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -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: nvtvd.c,v 1.2 2002/06/26 15:57:47 jkeil Exp $
+ * $Id: nvtvd.c,v 1.3 2002/10/23 17:12:32 guenter Exp $
*
* nvtvd - Routines for communication with nvtvd.
*
@@ -52,7 +52,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: nvtvd.c,v 1.2 2002/06/26 15:57:47 jkeil Exp $
+ * $Id: nvtvd.c,v 1.3 2002/10/23 17:12:32 guenter Exp $
*
* Contents:
*
@@ -158,7 +158,7 @@ void pipeWriteList (FILE *pipe, int size, void *list);
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: nvtvd.c,v 1.2 2002/06/26 15:57:47 jkeil Exp $
+ * $Id: nvtvd.c,v 1.3 2002/10/23 17:12:32 guenter Exp $
*
* Contents:
*
@@ -583,7 +583,7 @@ CardPtr back_client_init (void)
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: nvtvd.c,v 1.2 2002/06/26 15:57:47 jkeil Exp $
+ * $Id: nvtvd.c,v 1.3 2002/10/23 17:12:32 guenter Exp $
*
* Contents:
*
diff --git a/src/xine-engine/nvtvd.h b/src/xine-engine/nvtvd.h
index 0e7303691..85abd95c9 100644
--- a/src/xine-engine/nvtvd.h
+++ b/src/xine-engine/nvtvd.h
@@ -1,7 +1,7 @@
/*
* Copyright (C) 2000-2002 the xine project
*
- * This file is part of xine, a unix video player.
+ * This file is part of xine, a free video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -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: nvtvd.h,v 1.3 2002/08/02 14:09:05 mshopf Exp $
+ * $Id: nvtvd.h,v 1.4 2002/10/23 17:12:33 guenter Exp $
*
* nvtvd - Routines for communication with nvtvd.
*
@@ -582,7 +582,7 @@ typedef struct _riva_hw_inst
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: nvtvd.h,v 1.3 2002/08/02 14:09:05 mshopf Exp $
+ * $Id: nvtvd.h,v 1.4 2002/10/23 17:12:33 guenter Exp $
*
* Contents:
*
@@ -1099,7 +1099,7 @@ typedef struct {
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: nvtvd.h,v 1.3 2002/08/02 14:09:05 mshopf Exp $
+ * $Id: nvtvd.h,v 1.4 2002/10/23 17:12:33 guenter Exp $
*
* Contents:
*
@@ -1215,7 +1215,7 @@ extern BackCardPtr back_card;
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: nvtvd.h,v 1.3 2002/08/02 14:09:05 mshopf Exp $
+ * $Id: nvtvd.h,v 1.4 2002/10/23 17:12:33 guenter Exp $
*
* Contents:
*
diff --git a/src/xine-engine/osd.h b/src/xine-engine/osd.h
index 486b176b8..c3e61106f 100644
--- a/src/xine-engine/osd.h
+++ b/src/xine-engine/osd.h
@@ -1,7 +1,7 @@
/*
- * Copyright (C) 2000-2001 the xine project
+ * Copyright (C) 2000-2002 the xine project
*
- * This file is part of xine, a unix video player.
+ * This file is part of xine, a free video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,7 +18,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
* OSD stuff (text and graphic primitives)
- * $Id: osd.h,v 1.9 2002/03/14 13:57:15 miguelfreitas Exp $
+ * $Id: osd.h,v 1.10 2002/10/23 17:12:33 guenter Exp $
*/
#ifndef HAVE_OSD_H
@@ -228,59 +228,59 @@ static char *textpalettes_str[NUMBER_OF_TEXT_PALETTES+1] = {
static clut_t textpalettes_color[NUMBER_OF_TEXT_PALETTES][TEXT_PALETTE_SIZE] = {
/* white, black border, transparent */
{
- CLUT_Y_CR_CB_INIT(0x00, 0x00, 0x00), //0
- CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), //1
- CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), //2
- CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), //3
- CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), //4
- CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), //5
- CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), //6
- CLUT_Y_CR_CB_INIT(0x40, 0x80, 0x80), //7
- CLUT_Y_CR_CB_INIT(0x80, 0x80, 0x80), //8
- CLUT_Y_CR_CB_INIT(0xc0, 0x80, 0x80), //9
- CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), //10
+ CLUT_Y_CR_CB_INIT(0x00, 0x00, 0x00), /*0*/
+ CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), /*1*/
+ CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), /*2*/
+ CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), /*3*/
+ CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), /*4*/
+ CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), /*5*/
+ CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), /*6*/
+ CLUT_Y_CR_CB_INIT(0x40, 0x80, 0x80), /*7*/
+ CLUT_Y_CR_CB_INIT(0x80, 0x80, 0x80), /*8*/
+ CLUT_Y_CR_CB_INIT(0xc0, 0x80, 0x80), /*9*/
+ CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), /*10*/
},
/* white, no border, transparent */
{
- CLUT_Y_CR_CB_INIT(0x00, 0x00, 0x00), //0
- CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), //1
- CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), //2
- CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), //3
- CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), //4
- CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), //5
- CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), //6
- CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), //7
- CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), //8
- CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), //9
- CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), //10
+ CLUT_Y_CR_CB_INIT(0x00, 0x00, 0x00), /*0*/
+ CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), /*1*/
+ CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), /*2*/
+ CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), /*3*/
+ CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), /*4*/
+ CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), /*5*/
+ CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), /*6*/
+ CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), /*7*/
+ CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), /*8*/
+ CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), /*9*/
+ CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), /*10*/
},
/* white, no border, translucid */
{
- CLUT_Y_CR_CB_INIT(0x00, 0x00, 0x00), //0
- CLUT_Y_CR_CB_INIT(0x80, 0x80, 0x80), //1
- CLUT_Y_CR_CB_INIT(0x80, 0x80, 0x80), //2
- CLUT_Y_CR_CB_INIT(0x80, 0x80, 0x80), //3
- CLUT_Y_CR_CB_INIT(0x80, 0x80, 0x80), //4
- CLUT_Y_CR_CB_INIT(0x80, 0x80, 0x80), //5
- CLUT_Y_CR_CB_INIT(0x80, 0x80, 0x80), //6
- CLUT_Y_CR_CB_INIT(0xa0, 0x80, 0x80), //7
- CLUT_Y_CR_CB_INIT(0xc0, 0x80, 0x80), //8
- CLUT_Y_CR_CB_INIT(0xe0, 0x80, 0x80), //9
- CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), //10
+ CLUT_Y_CR_CB_INIT(0x00, 0x00, 0x00), /*0*/
+ CLUT_Y_CR_CB_INIT(0x80, 0x80, 0x80), /*1*/
+ CLUT_Y_CR_CB_INIT(0x80, 0x80, 0x80), /*2*/
+ CLUT_Y_CR_CB_INIT(0x80, 0x80, 0x80), /*3*/
+ CLUT_Y_CR_CB_INIT(0x80, 0x80, 0x80), /*4*/
+ CLUT_Y_CR_CB_INIT(0x80, 0x80, 0x80), /*5*/
+ CLUT_Y_CR_CB_INIT(0x80, 0x80, 0x80), /*6*/
+ CLUT_Y_CR_CB_INIT(0xa0, 0x80, 0x80), /*7*/
+ CLUT_Y_CR_CB_INIT(0xc0, 0x80, 0x80), /*8*/
+ CLUT_Y_CR_CB_INIT(0xe0, 0x80, 0x80), /*9*/
+ CLUT_Y_CR_CB_INIT(0xff, 0x80, 0x80), /*10*/
},
/* yellow, black border, transparent */
{
- CLUT_Y_CR_CB_INIT(0x00, 0x00, 0x00), //0
- CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), //1
- CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), //2
- CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), //3
- CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), //4
- CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), //5
- CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), //6
- CLUT_Y_CR_CB_INIT(0x40, 0x84, 0x60), //7
- CLUT_Y_CR_CB_INIT(0xd0, 0x88, 0x40), //8
- CLUT_Y_CR_CB_INIT(0xe0, 0x8a, 0x00), //9
- CLUT_Y_CR_CB_INIT(0xff, 0x90, 0x00), //10
+ CLUT_Y_CR_CB_INIT(0x00, 0x00, 0x00), /*0*/
+ CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), /*1*/
+ CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), /*2*/
+ CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), /*3*/
+ CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), /*4*/
+ CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), /*5*/
+ CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), /*6*/
+ CLUT_Y_CR_CB_INIT(0x40, 0x84, 0x60), /*7*/
+ CLUT_Y_CR_CB_INIT(0xd0, 0x88, 0x40), /*8*/
+ CLUT_Y_CR_CB_INIT(0xe0, 0x8a, 0x00), /*9*/
+ CLUT_Y_CR_CB_INIT(0xff, 0x90, 0x00), /*10*/
},
};
diff --git a/src/xine-engine/resample.c b/src/xine-engine/resample.c
index 6f7863e6e..6ae8d7b25 100644
--- a/src/xine-engine/resample.c
+++ b/src/xine-engine/resample.c
@@ -1,7 +1,7 @@
/*
- * Copyright (C) 2000 the xine project
+ * Copyright (C) 2000-2002 the xine project
*
- * This file is part of xine, a unix video player.
+ * This file is part of xine, a free video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -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: resample.c,v 1.3 2002/07/01 13:51:28 miguelfreitas Exp $
+ * $Id: resample.c,v 1.4 2002/10/23 17:12:34 guenter Exp $
*/
#ifdef HAVE_CONFIG_H
diff --git a/src/xine-engine/resample.h b/src/xine-engine/resample.h
index e56ec45d6..0706df8a3 100644
--- a/src/xine-engine/resample.h
+++ b/src/xine-engine/resample.h
@@ -1,7 +1,7 @@
/*
- * Copyright (C) 2000 the xine project
+ * Copyright (C) 2000-2002 the xine project
*
- * This file is part of xine, a unix video player.
+ * This file is part of xine, a free video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -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: resample.h,v 1.2 2002/07/01 13:51:28 miguelfreitas Exp $
+ * $Id: resample.h,v 1.3 2002/10/23 17:12:34 guenter Exp $
*
* utilitiy functions for audio drivers
*
diff --git a/src/xine-engine/scratch.c b/src/xine-engine/scratch.c
index eb097ed75..f607ae7ef 100644
--- a/src/xine-engine/scratch.c
+++ b/src/xine-engine/scratch.c
@@ -1,7 +1,7 @@
/*
- * Copyright (C) 2000-2001 the xine project
+ * Copyright (C) 2000-2002 the xine project
*
- * This file is part of xine, a unix video player.
+ * This file is part of xine, a free video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -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: scratch.c,v 1.8 2002/09/06 18:13:12 mroi Exp $
+ * $Id: scratch.c,v 1.9 2002/10/23 17:12:34 guenter Exp $
*
* top-level xine functions
*
diff --git a/src/xine-engine/scratch.h b/src/xine-engine/scratch.h
index 34f60067b..cd24f7432 100644
--- a/src/xine-engine/scratch.h
+++ b/src/xine-engine/scratch.h
@@ -1,7 +1,7 @@
/*
- * Copyright (C) 2000-2001 the xine project
+ * Copyright (C) 2000-2002 the xine project
*
- * This file is part of xine, a unix video player.
+ * This file is part of xine, a free video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -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: scratch.h,v 1.4 2002/09/06 18:13:12 mroi Exp $
+ * $Id: scratch.h,v 1.5 2002/10/23 17:12:34 guenter Exp $
*
* scratch buffer for log output
*
diff --git a/src/xine-engine/spu_decoder.h b/src/xine-engine/spu_decoder.h
index 8a9c887be..09cd9008c 100644
--- a/src/xine-engine/spu_decoder.h
+++ b/src/xine-engine/spu_decoder.h
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2000-2001 the xine project
+ * Copyright (C) 2000-2002 the xine project
*
* Copyright (C) James Courtier-Dutton James@superbug.demon.co.uk - July 2001
*
- * This file is part of xine, a unix video player.
+ * This file is part of xine, a free video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -19,7 +19,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: spu_decoder.h,v 1.5 2002/03/31 20:38:43 jcdutton Exp $
+ * $Id: spu_decoder.h,v 1.6 2002/10/23 17:12:34 guenter Exp $
*/
#ifndef HAVE_SPU_OUT_H
#define HAVE_SPU_OUT_H
diff --git a/src/xine-engine/tvmode.c b/src/xine-engine/tvmode.c
index 700e6d774..7648ac468 100644
--- a/src/xine-engine/tvmode.c
+++ b/src/xine-engine/tvmode.c
@@ -1,7 +1,7 @@
/*
* Copyright (C) 2000-2002 the xine project
*
- * This file is part of xine, a unix video player.
+ * This file is part of xine, a free video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -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: tvmode.c,v 1.8 2002/09/04 23:31:13 guenter Exp $
+ * $Id: tvmode.c,v 1.9 2002/10/23 17:12:35 guenter Exp $
*
* tvmode - TV output selection
*
diff --git a/src/xine-engine/video_overlay.h b/src/xine-engine/video_overlay.h
index 9e3857d39..79088d62a 100644
--- a/src/xine-engine/video_overlay.h
+++ b/src/xine-engine/video_overlay.h
@@ -1,7 +1,7 @@
/*
- * Copyright (C) 2000-2001 the xine project
+ * Copyright (C) 2000-2002 the xine project
*
- * This file is part of xine, a unix video player.
+ * This file is part of xine, a free video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -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_overlay.h,v 1.10 2002/10/17 17:44:01 mroi Exp $
+ * $Id: video_overlay.h,v 1.11 2002/10/23 17:12:35 guenter Exp $
*
*/
diff --git a/src/xine-engine/xineintl.h b/src/xine-engine/xineintl.h
index 1d15f82de..0572a3fb4 100644
--- a/src/xine-engine/xineintl.h
+++ b/src/xine-engine/xineintl.h
@@ -1,7 +1,7 @@
/*
- * Copyright (C) 2000-2001 the xine project
+ * Copyright (C) 2000-2002 the xine project
*
- * This file is part of xine, a unix video player.
+ * This file is part of xine, a free video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -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: xineintl.h,v 1.5 2002/09/04 15:25:26 jkeil Exp $
+ * $Id: xineintl.h,v 1.6 2002/10/23 17:12:35 guenter Exp $
*
*/