From patchwork Thu Jan 6 14:15:00 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michal X-Patchwork-Id: 12855 Received: from mail.tu-berlin.de ([130.149.7.33]) by www.linuxtv.org with esmtp (Exim 4.69) (envelope-from ) id 1PaqcK-0000UR-Jl for vdr@linuxtv.org; Thu, 06 Jan 2011 15:15:06 +0100 X-tubIT-Incoming-IP: 77.78.100.69 Received: from alfons.lightcomp.cz ([77.78.100.69] helo=alfons.lightcomp.com) by mail.tu-berlin.de (exim-4.73/mailfrontend-c) with esmtp for id 1PaqcK-0005hz-3s; Thu, 06 Jan 2011 15:15:04 +0100 Received: from aurora.local (fsg3.local [10.22.0.9]) by alfons.lightcomp.com (Postfix) with ESMTP id 5B775FA0120 for ; Thu, 6 Jan 2011 15:15:00 +0100 (CET) Message-ID: <4D25CE64.20700@lightcomp.cz> Date: Thu, 06 Jan 2011 15:15:00 +0100 From: Michal User-Agent: Mozilla/5.0 (X11; Linux i686 on x86_64; rv:2.0b9pre) Gecko/20101220 Thunderbird/3.3a2pre MIME-Version: 1.0 To: vdr@linuxtv.org References: <4D08FAD2.4090902@ventoso.org> <4D0CA194.408@ventoso.org> <4D1F5FE3.9050108@ventoso.org> <000001cbaacd$f5429470$dfc7bd50$@sk> <000001cbad2b$1bc69830$5353c890$@sk> In-Reply-To: <000001cbad2b$1bc69830$5353c890$@sk> X-PMX-Version: 5.5.4.371499, Antispam-Engine: 2.7.1.369594, Antispam-Data: 2011.1.6.140314 X-PMX-Spam: Gauge=IIIIIIII, Probability=8%, Report=' FROM_NAME_ONE_WORD 0.05, MIME_TEXT_ONLY_MP_MIXED 0.05, BODYTEXTP_SIZE_3000_LESS 0, BODY_SIZE_2000_2999 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_7000_LESS 0, RATWARE_LC_DIGITS_HELO 0, __BAT_BOUNDARY 0, __BOUNCE_CHALLENGE_SUBJ 0, __BOUNCE_NDR_SUBJ_EXEMPT 0, __CP_URI_IN_BODY 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __CTYPE_MULTIPART_MIXED 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __MOZILLA_MSGID 0, __SANE_MSGID 0, __TO_MALFORMED_2 0, __TO_NO_NAME 0, __USER_AGENT 0' X-LSpam-Score: -3.6 (---) X-LSpam-Report: No, score=-3.6 required=5.0 tests=BAYES_00=-2.599, RCVD_IN_DNSWL_LOW=-1 autolearn=ham Subject: Re: [vdr] Problem with osdteletext plugin 0.9.0 X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: VDR Mailing List List-Id: VDR Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Jan 2011 14:15:06 -0000 Status: O X-Status: X-Keywords: X-UID: 24131 I'm successfully using osdteletext-0.8.2.cz from http://www.cssf.cz/showthread.php?35867-vdr-1.7.10-a-eHD with attached patch. Regards Michal On 01/05/2011 11:51 PM, Marek Hajduk wrote: > > I just get this error: > > sock_send: socket write error > Segmentation fault > > It seems, there is a problem with wrong choosing of character set on Czech > or Slovak teletext pages. > > How can I debug it? > > Regards > > Marky > > > -----Original Message----- > From: vdr-bounces@linuxtv.org [mailto:vdr-bounces@linuxtv.org] On Behalf Of > Marek Hajduk > Sent: Sunday, January 02, 2011 11:40 PM > To: 'VDR Mailing List' > Subject: [vdr] Problem with osdteletext plugin 0.9.0 > > Hi all, > > VDR-1.7.16 with plugin osdteletext-0.9.0 crashes on channels with slovak or > czech teletext. > > You can try on this fta channel: > > CT 24;CS > Link:12525:VC34M2O0S0:S23.5E:27500:165=2:100=cze@4:52:0:8006:3:3014:0 > > Any help appreciated > > Marek Hajduk > > > _______________________________________________ > vdr mailing list > vdr@linuxtv.org > http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr > > > _______________________________________________ > vdr mailing list > vdr@linuxtv.org > http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr --- txtrender.c.orig 2009-05-26 19:00:30.000000000 +0200 +++ txtrender.c 2011-01-06 14:36:19.000000000 +0100 @@ -536,16 +536,19 @@ c.SetCharset(FirstG0); c.SetChar(' '); if (Flags&0x60) { c.SetBoxedOut(true); } SetChar(x,24,c); } //enhanced code + + return; + int next_des = *(int *)(PageCode+TELEPAGE_SIZE); int *eh = (int *)(PageCode+TELEPAGE_SIZE+4); int row = 0; int *p, *e; if (next_des < 1) return;