diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-08-05 00:16:04 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-08-05 00:16:04 +0100 |
commit | 84f1fc14930eaa05f55c557138545d6ff832e270 (patch) | |
tree | d44d43c848c6d81242e78dcdb18c206bae1e1e3d /p2pvr/devices | |
parent | Move the frontend file descriptor ownership into the parent tuner as an AdHoc... (diff) | |
download | p2pvr-84f1fc14930eaa05f55c557138545d6ff832e270.tar.bz2 p2pvr-84f1fc14930eaa05f55c557138545d6ff832e270.tar.xz p2pvr-84f1fc14930eaa05f55c557138545d6ff832e270.zip |
Drop out local file hanlde for AdHoc's
Diffstat (limited to 'p2pvr/devices')
-rw-r--r-- | p2pvr/devices/tuner.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/p2pvr/devices/tuner.cpp b/p2pvr/devices/tuner.cpp index b13e5c1..73dcd67 100644 --- a/p2pvr/devices/tuner.cpp +++ b/p2pvr/devices/tuner.cpp @@ -7,7 +7,6 @@ #include <linux/dvb/frontend.h> #include <linux/dvb/dmx.h> #include <boost/tuple/tuple.hpp> -#include "fileHandle.h" #include <cxxabi.h> #include "tunerSendSi.h" #include "tunerSendTs.h" @@ -143,7 +142,7 @@ Tuner::SendPID(int pid, const RawDataClientPrx & client, const Ice::Current & ic if (ice.con) { ice.con->createProxy(client->ice_getIdentity()); } - FileHandle demux(OpenDemux()); + AdHoc::FileUtils::FileHandle demux(OpenDemux()); RequestPID(pid, demux); return ReadDemuxAndSend(demux, client); } |