diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-03-06 11:30:48 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-03-06 11:30:48 +0000 |
| commit | c5245596a287e0519d0684eb10ea111da75b9360 (patch) | |
| tree | c0b556e2e5233d4b241419a692c1ac0aa880b91c /lib/dvb/metaparser.cpp | |
| parent | b25ec1d66bcdd921e76d5e15b4ff4832eabd1b98 (diff) | |
| download | enigma2-c5245596a287e0519d0684eb10ea111da75b9360.tar.gz enigma2-c5245596a287e0519d0684eb10ea111da75b9360.zip | |
add possibility to playback ts files without entry in recordings.epl or without meta file
or with a incorrect servicereference (this just work when the TS file includes a PAT and a PMT)
Diffstat (limited to 'lib/dvb/metaparser.cpp')
| -rw-r--r-- | lib/dvb/metaparser.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/dvb/metaparser.cpp b/lib/dvb/metaparser.cpp index 6fbc56d1..aadc0bc8 100644 --- a/lib/dvb/metaparser.cpp +++ b/lib/dvb/metaparser.cpp @@ -75,14 +75,14 @@ int eDVBMetaParser::parseRecordings(const std::string &filename) FILE *f = fopen(recordings.c_str(), "r"); if (!f) { - eDebug("no recordings.epl found: %s: %m", recordings.c_str()); +// eDebug("no recordings.epl found: %s: %m", recordings.c_str()); return -1; } std::string description; eServiceReferenceDVB ref; - eDebug("parsing recordings.epl.."); +// eDebug("parsing recordings.epl.."); while (1) { @@ -103,7 +103,7 @@ int eDVBMetaParser::parseRecordings(const std::string &filename) if ((line[0] == '/') && (ref.path == filename)) { - eDebug("hit!"); +// eDebug("hit! ref %s descr %s", m_ref.toString().c_str(), m_name.c_str()); m_ref = ref; m_name = description; m_description = ""; |
