blob: 3368294e0e5f061fa5dab26e44f71e58da6b23ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef __lib_dvb_metaparser_h
#define __lib_dvb_metaparser_h
#include <string>
#include <lib/dvb/idvb.h>
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);
long long fileSize(const std::string &basename);
eServiceReferenceDVB m_ref;
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
|