remove 0xd3 from fix_service_type

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@866 e54a6e83-5905-42d5-8d5c-058d10e6a962


Origin commit data
------------------
Branch: ni/coolstream
Commit: f7f5ca3eb6
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2010-10-25 (Mon, 25 Oct 2010)



------------------
This commit was generated by Migit
This commit is contained in:
Jacek Jendrzej
2010-10-25 14:24:49 +00:00
parent 4bac02b3d2
commit 7339986561
5 changed files with 13 additions and 8 deletions

View File

@@ -253,6 +253,11 @@ void CChannelList::SortSat(void)
sort(chanlist.begin(), chanlist.end(), CmpChannelBySat());
}
void CChannelList::SortTP(void)
{
sort(chanlist.begin(), chanlist.end(), CmpChannelByFreq());
}
CZapitChannel* CChannelList::getChannel(int number)
{
for (uint32_t i=0; i< chanlist.size();i++) {
@@ -943,8 +948,9 @@ printf("CChannelList::adjustToChannelID me %x [%s] list size %d channel_id %llx\
if(!has_channel && old_mode == LIST_MODE_FAV)
new_mode = LIST_MODE_PROV;
has_channel = TVbouquetList->adjustToChannelID(channel_id);
if(!has_channel && old_mode == LIST_MODE_PROV)
if(!has_channel && old_mode == LIST_MODE_PROV){
new_mode = LIST_MODE_SAT;
}
has_channel = TVsatList->adjustToChannelID(channel_id);
if(!has_channel && old_mode == LIST_MODE_SAT)
new_mode = LIST_MODE_ALL;