[mythtv] Re: [mythtv-commits] Re: Ticket #579: EIT
	doesnotinsertprogram descriptions
    Daniel Kristjansson 
    danielk at cuymedia.net
       
    Fri Nov  4 15:51:54 EST 2005
    
    
  
On Fri, 2005-11-04 at 21:42 +0100, Torbjörn Jansson wrote:
> mythtv-dev-bounces at mythtv.org <> wrote:
> Title, subtitle and description is still empty, but now backend says:
> (emptied program and credits table before testing to be sure)
> # cat mythbackend.log |grep Added\ preferred\ language
> 2005-11-04 21:38:48.397 SIParser: Added preferred language  with priority 1
> 2005-11-04 21:38:55.975 SIParser: Added preferred language swe with priority
> 2
Hmm, my suspicion is that the short_event language descriptor is being
parsed incorrectly as well. If so it was broken before, and I don't have
the DVB standard for this. (I've been told these can be downloaded for
free but I couldn't figure out how that website worked, and it seemed to
have huge problems with Firefox.)
Anyway, try changing this:
        case DescriptorID::short_event:
        {
            QString language = ParseDescLanguage(data+2,
descriptorLength);
to this:
        case DescriptorID::short_event:
        {
            QString language = ParseDescLanguage(data+2,
descriptorLength);
            VEBOSE(VB_IMPORTANT, QString("short lang: %
1").arg(language);
        }
It it looks off try adding 3 rather than 2, you might also want to try
0,1,4, and 5.
What you want is for "swe" to be the first language added.
-- Daniel
    
    
More information about the mythtv-dev
mailing list