Ticket #1485: frequency_list.patch

File frequency_list.patch, 894 bytes (added by stuart@…, 18 years ago)

Disables insertion of additional frequencies from the frequency_list_descriptor

  • libs/libmythtv/channelutil.cpp

     
    163163           Alpha()
    164164           OtherFrequencyInUse()
    165165        */
     166
     167        if (cd.OtherFrequencyInUse() == 1)
     168            VERBOSE(VB_SIPARSER,
     169                    "Alternative frequency available, not used at present");
    166170    }
    167171    else if (tag == DescriptorID::satellite_delivery_system)
    168172    {
     
    206210        if (mux >= 0)
    207211            muxes.push_back(mux);
    208212    }
     213#if 0
    209214    else if (tag == DescriptorID::frequency_list)
    210215    {
    211216        const FrequencyListDescriptor cd(desc);
     
    229234                muxes.push_back(mux);
    230235        }
    231236    }
     237#endif
    232238}
    233239
    234240/** \fn ChannelUtil::CreateMultiplexes(int, const NetworkInformationTable*)