diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2010-11-23 13:58:06 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-11-23 13:58:06 +0100 |
| commit | d47f7407cb034d3237ca978f36c75bf8300c56c1 (patch) | |
| tree | fc84710c9dfe29df2b5ffab1b2f24fbd30279baa /lib/dvb/pmt.cpp | |
| parent | bf2fd661276ac59550e24154b7611e8cf8a9b47a (diff) | |
| parent | 7199d3c37e7e7065bd6943702b5864fa5186b9a8 (diff) | |
| download | enigma2-d47f7407cb034d3237ca978f36c75bf8300c56c1.tar.gz enigma2-d47f7407cb034d3237ca978f36c75bf8300c56c1.zip | |
Merge branch 'bug_615_replace_rawfile' into experimental
Diffstat (limited to 'lib/dvb/pmt.cpp')
| -rw-r--r-- | lib/dvb/pmt.cpp | 4 |
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 { |
