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); ---------------------------------------------