summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-04-17 11:00:00 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-04-17 11:00:00 +0200
commit915af4efff6e27e9e764bbac01cbc68da2904cbe (patch)
tree95e7937c23a4bb6cc73490c290f889895b7ae6bc
parent7010c6794596df5c85c6ebfdf6f290e25cabb031 (diff)
downloadvdr-915af4efff6e27e9e764bbac01cbc68da2904cbe.tar.gz
vdr-915af4efff6e27e9e764bbac01cbc68da2904cbe.tar.bz2
Some comment cleanups
-rw-r--r--config.c4
-rw-r--r--dvbplayer.c4
-rw-r--r--dvbspu.c8
-rw-r--r--dvbspu.h10
-rw-r--r--recording.c4
-rw-r--r--remux.c4
-rw-r--r--spu.c4
-rw-r--r--spu.h4
8 files changed, 21 insertions, 21 deletions
diff --git a/config.c b/config.c
index 4c0158ec..d89072b3 100644
--- a/config.c
+++ b/config.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.c 1.144 2006/04/15 14:05:41 kls Exp $
+ * $Id: config.c 1.145 2006/04/17 11:00:00 kls Exp $
*/
#include "config.h"
@@ -20,7 +20,7 @@
// format characters in order to allow any number of blanks after a numeric
// value!
-// --- cCommand -------------------------------------------------------------
+// --- cCommand --------------------------------------------------------------
char *cCommand::result = NULL;
diff --git a/dvbplayer.c b/dvbplayer.c
index 2f23e310..2ba98b83 100644
--- a/dvbplayer.c
+++ b/dvbplayer.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbplayer.c 1.44 2006/04/09 13:47:11 kls Exp $
+ * $Id: dvbplayer.c 1.45 2006/04/17 11:00:00 kls Exp $
*/
#include "dvbplayer.h"
@@ -15,7 +15,7 @@
#include "thread.h"
#include "tools.h"
-// --- cBackTrace ----------------------------------------------------------
+// --- cBackTrace ------------------------------------------------------------
#define AVG_FRAME_SIZE 15000 // an assumption about the average frame size
#define DVB_BUF_SIZE (256 * 1024) // an assumption about the dvb firmware buffer size
diff --git a/dvbspu.c b/dvbspu.c
index 9dbe07a8..b2935f44 100644
--- a/dvbspu.c
+++ b/dvbspu.c
@@ -8,7 +8,7 @@
*
* parts of this file are derived from the OMS program.
*
- * $Id: dvbspu.c 1.20 2006/02/12 11:50:20 kls Exp $
+ * $Id: dvbspu.c 1.21 2006/04/17 11:00:00 kls Exp $
*/
#include "dvbspu.h"
@@ -42,7 +42,7 @@
#define DEBUG(format, args...)
#endif
-// --- cDvbSpuPalette----------------------------------
+// --- cDvbSpuPalette---------------------------------------------------------
void cDvbSpuPalette::setPalette(const uint32_t * pal)
{
@@ -50,7 +50,7 @@ void cDvbSpuPalette::setPalette(const uint32_t * pal)
palette[i] = yuv2rgb(pal[i]);
}
-// --- cDvbSpuBitmap --------------------------------------------
+// --- cDvbSpuBitmap ---------------------------------------------------------
#define setMin(a, b) if (a > b) a = b
#define setMax(a, b) if (a < b) a = b
@@ -208,7 +208,7 @@ void cDvbSpuBitmap::putFieldData(int field, uint8_t * data, uint8_t * endp)
}
}
-// --- cDvbSpuDecoder-----------------------------
+// --- cDvbSpuDecoder---------------------------------------------------------
#define CMD_SPU_MENU 0x00
#define CMD_SPU_SHOW 0x01
diff --git a/dvbspu.h b/dvbspu.h
index 487264a1..bc69b51c 100644
--- a/dvbspu.h
+++ b/dvbspu.h
@@ -8,7 +8,7 @@
*
* parts of this file are derived from the OMS program.
*
- * $Id: dvbspu.h 1.11 2006/01/05 10:18:31 kls Exp $
+ * $Id: dvbspu.h 1.12 2006/04/17 11:00:00 kls Exp $
*/
#ifndef __DVBSPU_H
@@ -46,7 +46,7 @@ typedef struct sDvbSpuRect {
sDvbSpuRect;
-// --- cDvbSpuPalette----------------------------------
+// --- cDvbSpuPalette---------------------------------------------------------
class cDvbSpuPalette {
private:
@@ -60,7 +60,7 @@ class cDvbSpuPalette {
uint32_t getColor(uint8_t idx, uint8_t trans) const;
};
-// --- cDvbSpuBitmap----------------------------------
+// --- cDvbSpuBitmap----------------------------------------------------------
class cDvbSpuBitmap {
@@ -87,7 +87,7 @@ class cDvbSpuBitmap {
sDvbSpuRect & size) const;
};
-// --- cDvbSpuDecoder------------------------------------
+// --- cDvbSpuDecoder---------------------------------------------------------
class cDvbSpuDecoder:public cSpuDecoder {
private:
@@ -151,7 +151,7 @@ class cDvbSpuDecoder:public cSpuDecoder {
void processSPU(uint32_t pts, uint8_t * buf, bool AllowedShow);
};
-// --- cDvbSpuPalette -------------------------------------------
+// --- cDvbSpuPalette --------------------------------------------------------
inline uint32_t cDvbSpuPalette::yuv2rgb(uint32_t yuv_color)
{
diff --git a/recording.c b/recording.c
index 41ace603..1f2f015b 100644
--- a/recording.c
+++ b/recording.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: recording.c 1.145 2006/04/16 12:43:58 kls Exp $
+ * $Id: recording.c 1.146 2006/04/17 11:00:00 kls Exp $
*/
#include "recording.h"
@@ -192,7 +192,7 @@ void AssertFreeDiskSpace(int Priority, bool Force)
}
}
-// --- cResumeFile ------------------------------------------------------------
+// --- cResumeFile -----------------------------------------------------------
cResumeFile::cResumeFile(const char *FileName)
{
diff --git a/remux.c b/remux.c
index ae4a17a6..7f2c79d4 100644
--- a/remux.c
+++ b/remux.c
@@ -11,7 +11,7 @@
* The cRepacker family's code was originally written by Reinhard Nissl <rnissl@gmx.de>,
* and adapted to the VDR coding style by Klaus.Schmidinger@cadsoft.de.
*
- * $Id: remux.c 1.55 2006/03/25 12:27:30 kls Exp $
+ * $Id: remux.c 1.56 2006/04/17 11:00:00 kls Exp $
*/
#include "remux.h"
@@ -148,7 +148,7 @@ int cRepacker::Put(cRingBufferLinear *ResultBuffer, const uchar *Data, int Count
return n;
}
-// --- cCommonRepacker --------------------------------------------------------
+// --- cCommonRepacker -------------------------------------------------------
class cCommonRepacker : public cRepacker {
protected:
diff --git a/spu.c b/spu.c
index 9ca25a15..b53a560a 100644
--- a/spu.c
+++ b/spu.c
@@ -6,13 +6,13 @@
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * $Id: spu.c 1.2 2006/03/26 14:07:59 kls Exp $
+ * $Id: spu.c 1.3 2006/04/17 11:00:00 kls Exp $
*/
#include "spu.h"
#include <inttypes.h>
-// -- cSpuDecoder ----------------
+// -- cSpuDecoder ------------------------------------------------------------
/*
cSpuDecoder::cSpuDecoder()
{};
diff --git a/spu.h b/spu.h
index 0437a322..a8cf7586 100644
--- a/spu.h
+++ b/spu.h
@@ -6,7 +6,7 @@
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * $Id: spu.h 1.4 2005/02/20 11:21:31 kls Exp $
+ * $Id: spu.h 1.5 2006/04/17 11:00:00 kls Exp $
*/
#ifndef __SPU_VDR_H
@@ -14,7 +14,7 @@
#include <inttypes.h>
-// --- cSpuDecoder -------------------------------------------
+// --- cSpuDecoder -----------------------------------------------------------
class cSpuDecoder {
public: