Ticket #11815: ceton.patch

File ceton.patch, 592 bytes (added by matt@…, 11 years ago)

Patch to remove calls that tune Ceton devices to frequency 0.

  • ./mythtv/libs/libmythtv/cetonstreamhandler.cpp

    old new  
    416416
    417417bool CetonStreamHandler::TunerOff(void)
    418418{
    419     bool result = TuneFrequency(0, "qam_256");
    420     if (result && _using_cablecard)
     419    bool result;
     420    if (!_using_cablecard ) {
     421        result = TuneFrequency(0, "qam_256");
     422        if (result && _using_cablecard)
     423            result = TuneVChannel("0");
     424    } else {
    421425        result = TuneVChannel("0");
     426    }
    422427
    423428    return result;
    424429}