X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/0d8132d3512dbf77d817aa8fb6684384155b642e..dea2fe0418b7e3761ff8f7a1f59e4066b3ed2cc8:/lib/dvb_ci/dvbci.cpp diff --git a/lib/dvb_ci/dvbci.cpp b/lib/dvb_ci/dvbci.cpp index f6462620..b074342e 100644 --- a/lib/dvb_ci/dvbci.cpp +++ b/lib/dvb_ci/dvbci.cpp @@ -62,7 +62,7 @@ eDVBCISlot *eDVBCIInterfaces::getSlot(int slotid) if(i->getSlotID() == slotid) return i; - printf("FIXME: request for unknown slot\n"); + eDebug("FIXME: request for unknown slot"); return 0; } @@ -221,10 +221,9 @@ void eDVBCIInterfaces::ciRemoved(eDVBCISlot *slot) static bool canDescrambleMultipleServices(int slotid) { char configStr[255]; - snprintf(configStr, 255, "config.ci%d.canDescrambleMultipleServices", slotid); + snprintf(configStr, 255, "config.ci.%d.canDescrambleMultipleServices", slotid); std::string str; ePythonConfigQuery::getConfigValue(configStr, str); - eDebug("str is %s", str.empty()?"empty" : str.c_str()); if ( str == "auto" ) { std::string appname = eDVBCI_UI::getInstance()->getAppName(slotid); @@ -423,10 +422,10 @@ int eDVBCISlot::send(const unsigned char *data, size_t len) { int res=0; //int i; - //printf("< "); + //eDebugNoNewLine("< "); //for(i=0;i 0) { // int i; -// printf("> "); +// eDebugNoNewLine("> "); // for(i=0;istartMMI(); @@ -593,7 +592,7 @@ int eDVBCISlot::startMMI() int eDVBCISlot::stopMMI() { - printf("edvbcislot: stopMMI()\n"); + eDebug("edvbcislot: stopMMI()"); if(mmi_session) mmi_session->stopMMI(); @@ -603,7 +602,7 @@ int eDVBCISlot::stopMMI() int eDVBCISlot::answerText(int answer) { - printf("edvbcislot: answerText(%d)\n", answer); + eDebug("edvbcislot: answerText(%d)", answer); if(mmi_session) mmi_session->answerText(answer); @@ -621,7 +620,7 @@ int eDVBCISlot::getMMIState() int eDVBCISlot::answerEnq(char *value) { - printf("edvbcislot: answerENQ(%s)\n", value); + eDebug("edvbcislot: answerENQ(%s)", value); if(mmi_session) mmi_session->answerEnq(value); @@ -631,7 +630,7 @@ int eDVBCISlot::answerEnq(char *value) int eDVBCISlot::cancelEnq() { - printf("edvbcislot: cancelENQ\n"); + eDebug("edvbcislot: cancelENQ"); if(mmi_session) mmi_session->cancelEnq(); @@ -741,20 +740,20 @@ void eDVBCISlot::removeService(uint16_t program_number) int eDVBCISlot::enableTS(int enable, int tuner) { -// printf("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n"); -// printf("eDVBCISlot::enableTS(%d %d)\n", enable, tuner); +// eDebug("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); +// eDebug("eDVBCISlot::enableTS(%d %d)", enable, tuner); FILE *input0, *input1, *ci; if((input0 = fopen("/proc/stb/tsmux/input0", "wb")) == NULL) { - printf("cannot open /proc/stb/tsmux/input0\n"); + eDebug("cannot open /proc/stb/tsmux/input0"); return 0; } if((input1 = fopen("/proc/stb/tsmux/input1", "wb")) == NULL) { - printf("cannot open /proc/stb/tsmux/input1\n"); + eDebug("cannot open /proc/stb/tsmux/input1"); return 0; } if((ci = fopen("/proc/stb/tsmux/input2", "wb")) == NULL) { - printf("cannot open /proc/stb/tsmux/input2\n"); + eDebug("cannot open /proc/stb/tsmux/input2"); return 0; }