summaryrefslogtreecommitdiff
path: root/recording.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2011-08-13 11:16:41 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2011-08-13 11:16:41 +0200
commitef611229f39c1792f045002906443622f63987f1 (patch)
tree920f71e9c0b5a08cb023323539e1b0f661a3d1ec /recording.h
parent67e7f93d294ecd94114a2ae97232caf4452327f3 (diff)
downloadvdr-ef611229f39c1792f045002906443622f63987f1.tar.gz
vdr-ef611229f39c1792f045002906443622f63987f1.tar.bz2
Implemented static cIndexFile::IndexFileName()
Diffstat (limited to 'recording.h')
-rw-r--r--recording.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/recording.h b/recording.h
index 8ec7f49e..4498ae9b 100644
--- a/recording.h
+++ b/recording.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: recording.h 2.19 2011/04/17 13:18:04 kls Exp $
+ * $Id: recording.h 2.20 2011/08/13 09:52:25 kls Exp $
*/
#ifndef __RECORDING_H
@@ -236,13 +236,14 @@ class cIndexFileGenerator;
class cIndexFile {
private:
int f;
- char *fileName;
+ cString fileName;
int size, last;
tIndexTs *index;
bool isPesRecording;
cResumeFile resumeFile;
cIndexFileGenerator *indexFileGenerator;
cMutex mutex;
+ static cString IndexFileName(const char *FileName, bool IsPesRecording);
void ConvertFromPes(tIndexTs *IndexTs, int Count);
void ConvertToPes(tIndexTs *IndexTs, int Count);
bool CatchUp(int Index = -1);