Ticket #7486: mythtv_fix_broken_providers_with_gui1.diff

File mythtv_fix_broken_providers_with_gui1.diff, 6.3 KB (added by Dibblah, 2 years ago)

Just the above patch with the now-committed to trunk schema change removed.

  • libs/libmythtv/channelscan/channelscan_sm.cpp

     
    174174    { 
    175175        VERBOSE(VB_CHANSCAN, LOC + "Connecting up DTVSignalMonitor"); 
    176176        ScanStreamData *data = new ScanStreamData(); 
     177         
     178        MSqlQuery query(MSqlQuery::InitCon()); 
     179        query.prepare( 
     180                "SELECT dvb_nit_id " 
     181                "FROM videosource " 
     182                "WHERE videosource.sourceid = :SOURCEID"); 
     183        query.bindValue(":SOURCEID", _sourceID); 
     184        if (!query.exec() || !query.isActive()) 
     185        { 
     186            MythDB::DBError("ChannelScanSM", query); 
     187        } 
     188        else if (query.next()) 
     189        { 
     190            uint nitid = query.value(0).toInt();  
     191            data->SetRealNetworkID(nitid); 
     192            VERBOSE(VB_CHANSCAN, LOC + QString("Setting NIT-ID to %1").arg(nitid));  
     193        } 
    177194 
    178195        dtvSigMon->SetStreamData(data); 
    179196        dtvSigMon->AddFlags(SignalMonitor::kDTVSigMon_WaitForMGT | 
  • libs/libmythtv/mpeg/dvbtables.cpp

     
    7878    return _cached_network_name; 
    7979} 
    8080 
     81bool NetworkInformationTable::Mutate(void) 
     82{ 
     83    if (VerifyCRC()) 
     84    { 
     85        SetTableID((TableID() == TableID::NITo) ? TableID::NIT : TableID::NITo); 
     86        SetCRC(CalcCRC()); 
     87        return true; 
     88    } 
     89    else 
     90        return false; 
     91} 
    8192 
    8293void ServiceDescriptionTable::Parse(void) const 
    8394{ 
  • libs/libmythtv/mpeg/dvbstreamdata.cpp

     
    234234    { 
    235235        case TableID::NIT: 
    236236        { 
     237            if (_dvb_real_network_id >= 0 && psip.TableIDExtension() != (uint)_dvb_real_network_id) 
     238            { 
     239                NetworkInformationTable *nit = new NetworkInformationTable(psip); 
     240                if (!nit->Mutate()) 
     241                { 
     242                    delete nit; 
     243                    return true; 
     244                } 
     245                bool retval = HandleTables(pid, *nit); 
     246                delete nit; 
     247                return retval; 
     248            } 
     249 
    237250            SetVersionNIT(psip.Version(), psip.LastSection()); 
    238251            SetNITSectionSeen(psip.Section()); 
    239252 
     
    291304        } 
    292305        case TableID::NITo: 
    293306        { 
     307            if (_dvb_real_network_id >= 0 && psip.TableIDExtension() == (uint)_dvb_real_network_id) 
     308            { 
     309                NetworkInformationTable *nit = new NetworkInformationTable(psip); 
     310                if (!nit->Mutate()) 
     311                { 
     312                    delete nit; 
     313                    return true; 
     314                } 
     315                bool retval = HandleTables(pid, *nit); 
     316                delete nit; 
     317                return retval; 
     318            } 
     319 
    294320            SetVersionNITo(psip.Version(), psip.LastSection()); 
    295321            SetNIToSectionSeen(psip.Section()); 
    296322            NetworkInformationTable nit(psip); 
  • libs/libmythtv/mpeg/dvbtables.h

     
    7979        { return _ptrs[i]+6; } 
    8080    // } 
    8181 
     82    /// mutates a NITo into a NITa (vice versa) and recalculates the CRC 
     83    bool Mutate(void); 
     84 
    8285    void Parse(void) const; 
    8386    QString toString(void) const; 
    8487    QString NetworkName(void) const; 
     
    154157    // } 
    155158    ServiceDescriptor *GetServiceDescriptor(uint i) const; 
    156159 
    157     /// mutates a SDTo into a SDTa and recalculates the CRC 
     160    /// mutates a SDTo into a SDTa (vice versa) and recalculates the CRC 
    158161    bool Mutate(void); 
    159162 
    160163    void Parse(void) const; 
  • libs/libmythtv/mpeg/dvbstreamdata.h

     
    4040    bool IsRedundant(uint pid, const PSIPTable&) const; 
    4141    void ProcessSDT(uint tsid, const ServiceDescriptionTable*); 
    4242 
     43    // NIT for broken providers 
     44    inline void SetRealNetworkID(int); 
     45 
    4346    // EIT info/processing 
    4447    inline void SetDishNetEIT(bool); 
    4548    inline bool HasAnyEIT(void) const; 
     
    212215    uint                      _desired_netid; 
    213216    uint                      _desired_tsid; 
    214217     
     218    // Real network ID for broken providers 
     219    int               _dvb_real_network_id; 
     220     
    215221    /// Decode DishNet's long-term DVB EIT 
    216222    bool                      _dvb_eit_dishnet_long; 
    217223    /// Tell us if the DVB service has EIT 
     
    251257    _dvb_eit_dishnet_long = use_dishnet_eit; 
    252258} 
    253259 
     260inline void DVBStreamData::SetRealNetworkID(int real_network_id) 
     261{ 
     262    QMutexLocker locker(&_listener_lock); 
     263    _dvb_real_network_id = real_network_id; 
     264} 
     265 
    254266inline bool DVBStreamData::HasAnyEIT(void) const 
    255267{ 
    256268    QMutexLocker locker(&_listener_lock); 
  • libs/libmythtv/videosource.cpp

     
    197197    }; 
    198198}; 
    199199 
     200class DVBNetID : public SpinBoxSetting, public VideoSourceDBStorage 
     201{ 
     202  public: 
     203    DVBNetID(const VideoSource &parent, uint value, signed int min_val) : 
     204        SpinBoxSetting(this, min_val, 100000, 1), 
     205        VideoSourceDBStorage(this, parent, "dvb_nit_id") 
     206    { 
     207        setLabel(QObject::tr("Network ID")); 
     208        setHelpText(QObject::tr("Set this to the actual network ID at your " 
     209                 "location, if you have a provider that broadcasts a broken " 
     210                 "NIT. Leave at -1 if everything works out of the box.")); 
     211    }; 
     212}; 
     213 
    200214FreqTableSelector::FreqTableSelector(const VideoSource &parent) : 
    201215    ComboBoxSetting(this), VideoSourceDBStorage(this, parent, "freqtable") 
    202216{ 
     
    749763    group->addChild(name = new Name(*this)); 
    750764    group->addChild(xmltv = new XMLTVConfig(*this)); 
    751765    group->addChild(new FreqTableSelector(*this)); 
     766    group->addChild(new DVBNetID(*this, -1, -1)); 
    752767    addChild(group); 
    753768} 
    754769