aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-11-23 13:58:06 +0100
committerghost <andreas.monzner@multimedia-labs.de>2010-11-23 13:58:06 +0100
commitd47f7407cb034d3237ca978f36c75bf8300c56c1 (patch)
treefc84710c9dfe29df2b5ffab1b2f24fbd30279baa
parentbf2fd661276ac59550e24154b7611e8cf8a9b47a (diff)
parent7199d3c37e7e7065bd6943702b5864fa5186b9a8 (diff)
downloadenigma2-d47f7407cb034d3237ca978f36c75bf8300c56c1.tar.gz
enigma2-d47f7407cb034d3237ca978f36c75bf8300c56c1.zip
Merge branch 'bug_615_replace_rawfile' into experimental
-rw-r--r--lib/dvb/pmt.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/dvb/pmt.cpp b/lib/dvb/pmt.cpp
index c6e03c22..5fdd69db 100644
--- a/lib/dvb/pmt.cpp
+++ b/lib/dvb/pmt.cpp
@@ -733,7 +733,9 @@ int eDVBServicePMTHandler::tuneExt(eServiceReferenceDVB &ref, int use_decode_dem
{
eWarning("no .meta file found, trying to find PMT pid");
eDVBTSTools tstools;
- if (tstools.openFile(ref.path.c_str()))
+ if (source)
+ tstools.setSource(source, streaminfo_file ? streaminfo_file : ref.path.c_str());
+ else if (tstools.openFile(ref.path.c_str()))
eWarning("failed to open file");
else
{