Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Re: [ANNOUNCE] vdr-xine-0.2.1 plugin



Hi,

Jouni Karvo wrote:

Actually, your previous fixes were for lines 236 and 348 in my
xineDevice.c... Is there a released patch somewhere already?  I did
not notice anyone announcing such...
I haven't released any patch so far, as I wanted to wait whether it works for you -- actually it doesn't. The change on those lines should be ok too, but would you mind changing the mask in those lines back to 0xf0?

If I didn't make a mistake in counting lines, your lines 357 and 358 (respectively 245 and 246) should look like

if (0x00 != (0x3f & buf[ 7 ]))
VERBOSE_RETURN(false);

Currently, there are no logging entries. Please change those lines as following:

if (0x00 != (0x3f & buf[ 7 ]))
{
fprintf(stderr, "buf[ 7 ]: 0x%02x\n", buf[ 7 ]);
VERBOSE_RETURN(false);
}

Then you can send me some logging info (appears on stderr).

I just had a look into xine's demuxer. It simply ignores those 6 bits that I expect to be zero. So just comment out the return statement and then it might work for you.

Please keep me informed.

Bye.
--
Dipl.-Inform. (FH) Reinhard Nissl
mailto:rnissl@gmx.de


--
Info:
To unsubscribe send a mail to ecartis@linuxtv.org with "unsubscribe vdr" as subject.



Home | Main Index | Thread Index