Add service flags and pid cache to recordings meta file. This adds possibility to...
[enigma2.git] / lib / dvb / metaparser.h
index 2ca94d6d97ebb1c3827d157fad336ecc4fd7b6bd..38534d8f17f1862e425bfe07d2c3c9072bad8845 100644 (file)
@@ -9,19 +9,14 @@ class eDVBMetaParser
 public:
        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);
-       
-       int m_data_ok;
-       
+
        eServiceReferenceDVB m_ref;
-       std::string m_name, m_description;
-       int m_time_create, m_length;
+       int m_data_ok, m_time_create, m_length;
+       std::string m_name, m_description, m_tags, m_service_data;
        long long m_filesize;
-       
-       std::string m_tags;
 };
 
 #endif