From patchwork Sat Jul 23 11:06:06 2005 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "C.Y.M" X-Patchwork-Id: 11954 Received: from c-24-10-6-146.hsd1.ca.comcast.net ([24.10.6.146] helo=nofear.bounceme.net) by www.linuxtv.org with esmtp (Exim 4.34) id 1DwHpC-0007Y4-Uz for vdr@linuxtv.org; Sat, 23 Jul 2005 13:05:47 +0200 Received: from [10.1.1.66] (hades [10.1.1.66]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by nofear.bounceme.net (Postfix) with ESMTP id B3BC07356D for ; Sat, 23 Jul 2005 04:05:04 -0700 (PDT) Message-ID: <42E2249E.9060305@syphir.sytes.net> Date: Sat, 23 Jul 2005 04:06:06 -0700 From: "C.Y.M" Organization: CooLNeT User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Klaus Schmidinger's VDR Subject: Re: [vdr] 1.3.26 and streamdev-server References: <20050722214351.GA9085@seneca.muc.de> <42E203BD.5000007@cadsoft.de> <20050723100611.7EFC984C45@nathan.muc.de> In-Reply-To: <20050723100611.7EFC984C45@nathan.muc.de> X-Enigmail-Version: 0.92.0.0 X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: syphir@syphir.sytes.net, Klaus Schmidinger's VDR List-Id: Klaus Schmidinger's VDR List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jul 2005 11:05:47 -0000 Status: O X-Status: X-Keywords: X-UID: 3711 Harald Milz wrote: > Klaus Schmidinger wrote: > > >>- Removed the NPTL check at startup, since several users have reported that VDR >> now runs fine with NPTL. > > > Could anyone give some insight on which kernel/glibc/other libs combo they > are running? > > osdpip-0.0.8 w/ streamdev-cvs works fine with 1.3.26 ... > > You should consider testing the heavily patched streamdev-0.3.3-pre3-geni maintained by Peter Weber. http://mitglied.lycos.de/peterweber69/streamdev_for_VDR-1.3.23.tar.gz This version above, along with this change works perfectly with vdr-1.3.27: The last time I tested cvs of streamdev, the internal demuxer was broken (although it may be fixed by now). IIRC, streamdev (cvs) has moved away from the use of the internal demuxer and piped it to an external one which does not work as well. Regards, C. "If you give someone a program, you will frustrate them for a day; if you teach them how to program, you will frustrate them for a lifetime" --- streamdev/server/connectionVTP.c.orig 2005-05-29 12:20:40.000000000 -0700 +++ streamdev/server/connectionVTP.c 2005-05-29 12:25:30.000000000 -0700 @@ -369,8 +369,8 @@ if (isnumber(Option)) { cRecording *recording = Recordings.Get(strtol(Option, NULL, 10) - 1); if (recording) { - if (recording->Summary()) { - char *summary = strdup(recording->Summary()); + if (recording->Info()->Description()) { + char *summary = strdup(recording->Info()->Description()); Reply(250, "%s", strreplace(summary,'\n','|')); free(summary); }