Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[linux-dvb] VDR and DVD with pause -> noise corrupt



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 listar@linuxtv.org with "unsubscribe linux-dvb" as subject.


Home | Main Index | Thread Index