summaryrefslogtreecommitdiff
path: root/cutter.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-10-18 12:29:08 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-10-18 12:29:08 +0200
commite53e43d2b85095ec24e89fb8721d9c92e13ed930 (patch)
treeed5b2d1614a146e986ad2fee4b8933b52cb160b5 /cutter.c
parent15816ee8e4a1be96bba1da9199739f1666a87703 (diff)
downloadvdr-e53e43d2b85095ec24e89fb8721d9c92e13ed930.tar.gz
vdr-e53e43d2b85095ec24e89fb8721d9c92e13ed930.tar.bz2
The cThread class now accepts a 'Description' parameter
Diffstat (limited to 'cutter.c')
-rw-r--r--cutter.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/cutter.c b/cutter.c
index dfad77e4..25169a2a 100644
--- a/cutter.c
+++ b/cutter.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: cutter.c 1.5 2003/08/17 09:04:04 kls Exp $
+ * $Id: cutter.c 1.6 2003/10/18 11:29:37 kls Exp $
*/
#include "cutter.h"
@@ -32,6 +32,7 @@ public:
};
cCuttingThread::cCuttingThread(const char *FromFileName, const char *ToFileName)
+:cThread("video cutting")
{
error = NULL;
active = false;
@@ -62,8 +63,6 @@ cCuttingThread::~cCuttingThread()
void cCuttingThread::Action(void)
{
- dsyslog("video cutting thread started (pid=%d)", getpid());
-
cMark *Mark = fromMarks.First();
if (Mark) {
fromFile = fromFileName->Open();
@@ -175,7 +174,6 @@ void cCuttingThread::Action(void)
}
else
esyslog("no editing marks found!");
- dsyslog("end video cutting thread");
}
// --- cCutter ---------------------------------------------------------------