if you change in dvbapi.c
void cPlayBuffer::Pause(void)
{
paused = ! paused;
--- bool empty = fastForw......
+++ bool empty = fastForward || fastRewind || !paused; +++
and
void cPlayBuffer::Play(void)
{
if (fastForward || fastRewind || paused) {
--- bool empty = !paused || fastRe....
+++ bool empty = !paused || fastRewind || (paused && fastForward ||
!fastRewind); +++
then the pause->pause and pause->play buttons are working together with
ac3dec.
But why ?? Why it's working if i clear the audio buffer ??
Andreas
--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as
subject.