Ticket #10631: saorview_master_fix.patch

File saorview_master_fix.patch, 912 bytes (added by Mossy <nosepam-mythtv@…>, 13 years ago)

Fix for previous patch

  • mythtv/libs/libmythfreemheg/Engine.cpp

    diff --git a/mythtv/libs/libmythfreemheg/Engine.cpp b/mythtv/libs/libmythfreemheg/Engine.cpp
    index 8991e96..41a305e 100644
    a b bool MHEngine::GetEngineSupport(const MHOctetString &feature)  
    13061306        {
    13071307            return true;
    13081308        }
    1309         else if (strings[1] == "1285")
    1310         {
    1311             return true;
    1312         }
    13131309        else
    13141310        {
    13151311            return false;
    bool MHEngine::GetEngineSupport(const MHOctetString &feature)  
    13771373        // 'The Space' on Freeview checks this...
    13781374        if (strings[1] == "PANT11001")
    13791375            return true;
     1376        // Irish DTT expects "1285". From ETSI ES 202 184: UEP(1285) means the receiver has been verified as fully conformant.
     1377        if (strings[1] == "1285")
     1378            return true;
     1379       
    13801380        return false;
    13811381    }
    13821382