From patchwork Wed Jan 31 21:42:29 2007 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: thomas X-Patchwork-Id: 12433 Received: from mail-in-05.arcor-online.net ([151.189.21.45]) by www.linuxtv.org with esmtp (Exim 4.50) id 1HCNEg-0000He-Dc for vdr@linuxtv.org; Wed, 31 Jan 2007 22:43:22 +0100 Received: from mail-in-01-z2.arcor-online.net (mail-in-05-z2.arcor-online.net [151.189.8.17]) by mail-in-05.arcor-online.net (Postfix) with ESMTP id D26B41836D8 for ; Wed, 31 Jan 2007 22:42:29 +0100 (CET) Received: from mail-in-08.arcor-online.net (mail-in-08.arcor-online.net [151.189.21.48]) by mail-in-01-z2.arcor-online.net (Postfix) with ESMTP id C2EA02DAD8A for ; Wed, 31 Jan 2007 22:42:29 +0100 (CET) Received: from mail.toh.cx (dslb-084-056-042-021.pools.arcor-ip.net [84.56.42.21]) by mail-in-08.arcor-online.net (Postfix) with ESMTP id A877F226308 for ; Wed, 31 Jan 2007 22:42:29 +0100 (CET) Received: from roja.toh.cx (roja.toh.cx [192.168.144.196]) by mail.toh.cx (8.12.11.20060308/8.12.11) with ESMTP id l0VLgTJX014250 for ; Wed, 31 Jan 2007 22:42:29 +0100 Received: (from toh@localhost) by roja.toh.cx (8.11.6/8.11.6) id l0VLgT221148 for vdr@linuxtv.org; Wed, 31 Jan 2007 22:42:29 +0100 Date: Wed, 31 Jan 2007 22:42:29 +0100 From: thomas To: VDR Mailing List Subject: Re: [vdr] DVD plugin - sound jerky?? Message-ID: <20070131214229.GA20939@roja.toh.cx> References: <003001c6b0d0$d82c8400$0c00a8c0@InetX.com> Mime-Version: 1.0 Content-Disposition: inline In-Reply-To: <003001c6b0d0$d82c8400$0c00a8c0@InetX.com> User-Agent: Mutt/1.4.2i X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.5 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: Wed, 31 Jan 2007 21:43:22 -0000 Status: O X-Status: X-Keywords: X-UID: 11922 On Wed, Jul 26, 2006 at 09:30:44AM -0700, Simon Baxter wrote: > I've had this problem for ages and never found any resolution to it as it's > really only a problem with DVDs that have a lot of chapters. > > When it get towards the end of a chapter, the sound disappears. The video > is still fine, but the sound stops. > > Are there any debugs I can run to get more info out of dvd-plugin? I also had this problem until a applied the following workaround. It seems the call to 'm_xineLib.execFuncResetAudio();' causes a short audio dropout. But it appears the call is not neccessary anyway. At least I noticed no bad sideeffects yet after skipping the call. --------------------------------------------- --------------------------------------------- --- ../../vdr.org/VDR/PLUGINS/src/xine-0.7.9/xineDevice.c 2006-04-17 20:36:01.000000000 +0200 +++ xine-0.7.9/xineDevice.c 2006-08-26 07:27:39.000000000 +0200 @@ -2969,7 +2969,11 @@ // np = true; } +#if 0 m_xineLib.execFuncResetAudio(); +#else + xfprintf(stderr, "skipping execFuncResetAudio()\n"); +#endif if (f) m_xineLib.execFuncSetSpeed(0.0);