summaryrefslogtreecommitdiff
path: root/recording.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2010-12-27 12:25:19 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2010-12-27 12:25:19 +0100
commit9f60bd2fc401c0d195e2a55f24e0e09ec17bb824 (patch)
treeae1097fa6360941ab9d23b7eebe493b1a49eaef1 /recording.h
parent6c0612546ee688d7b7a800bb236396d800c4e19d (diff)
downloadvdr-9f60bd2fc401c0d195e2a55f24e0e09ec17bb824.tar.gz
vdr-9f60bd2fc401c0d195e2a55f24e0e09ec17bb824.tar.bz2
Now updating the 'frames per second' data in the list of recordings when a new recording is started that has a frame rate other than the default
Diffstat (limited to 'recording.h')
-rw-r--r--recording.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/recording.h b/recording.h
index 939878f2..7510a6e1 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.14 2010/03/07 14:06:15 kls Exp $
+ * $Id: recording.h 2.15 2010/12/27 10:48:21 kls Exp $
*/
#ifndef __RECORDING_H
@@ -117,6 +117,7 @@ public:
bool IsNew(void) const { return GetResume() <= 0; }
bool IsEdited(void) const;
bool IsPesRecording(void) const { return isPesRecording; }
+ void ReadInfo(void);
bool WriteInfo(void);
bool Delete(void);
// Changes the file name so that it will no longer be visible in the "Recordings" menu
@@ -165,6 +166,7 @@ public:
cRecording *GetByName(const char *FileName);
void AddByName(const char *FileName, bool TriggerUpdate = true);
void DelByName(const char *FileName);
+ void UpdateByName(const char *FileName);
int TotalFileSizeMB(void); ///< Only for deleted recordings!
};