summaryrefslogtreecommitdiff
path: root/recording.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-09-06 10:07:25 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2012-09-06 10:07:25 +0200
commit2ceb19e566c26a42b3d69244609772082f9a7997 (patch)
treee2fa74051472f18aaeb2ad65639fd72bc9e9f06d /recording.h
parentf7a1954fe3f64da98c0ee7a638be4e51d5b7b227 (diff)
downloadvdr-2ceb19e566c26a42b3d69244609772082f9a7997.tar.gz
vdr-2ceb19e566c26a42b3d69244609772082f9a7997.tar.bz2
Fixed getting the file size and number of frames of ongoing recordings
Diffstat (limited to 'recording.h')
-rw-r--r--recording.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/recording.h b/recording.h
index f08fd0b0..84a23b3b 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.35 2012/09/05 11:25:33 kls Exp $
+ * $Id: recording.h 2.36 2012/09/06 09:59:11 kls Exp $
*/
#ifndef __RECORDING_H
@@ -280,7 +280,6 @@ private:
static void AddToIndexList(const cIndexFile *IndexFile);
static void RemoveFromIndexList(const cIndexFile *IndexFile);
static bool IsInIndexList(const cIndexFile *IndexFile);
- 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);
@@ -300,6 +299,7 @@ public:
static int GetLength(const char *FileName, bool IsPesRecording = false);
///< Calculates the recording length (number of frames) without actually reading the index file.
///< Returns -1 in case of error.
+ static cString IndexFileName(const char *FileName, bool IsPesRecording);
};
class cFileName {