patch by Dr.Best - allow using filesize of movie in converter
[enigma2.git] / lib / dvb / metaparser.h
index 60329ace640379ca23942bf29528a9867842bee0..3368294e0e5f061fa5dab26e44f71e58da6b23ab 100644 (file)
@@ -7,11 +7,17 @@
 class eDVBMetaParser
 {
 public:
-       int parseFile(const std::string &filename);
+       eDVBMetaParser();
+       int parseFile(const std::string &basename);
+       int parseMeta(const std::string &filename);
+       int parseRecordings(const std::string &filename);
+       int updateMeta(const std::string &basename);
+       long long fileSize(const std::string &basename);
 
        eServiceReferenceDVB m_ref;
-       std::string m_name, m_description;
-       int m_time_create;
+       int m_data_ok, m_time_create, m_length;
+       std::string m_name, m_description, m_tags, m_service_data;
+       long long m_filesize;
 };
 
 #endif