diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-02-18 15:30:31 +0100 |
---|---|---|
committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-02-18 15:30:31 +0100 |
commit | 60f7d9a84f3e4143839691f3c3199517e42d9c39 (patch) | |
tree | 7684849a42581d992c442fb137ca31a4af765b4d /dxr3output-audio.c | |
parent | efaab0096a5fc27debeb58a014bc0d1919b9322c (diff) | |
download | vdr-plugin-dxr3-60f7d9a84f3e4143839691f3c3199517e42d9c39.tar.gz vdr-plugin-dxr3-60f7d9a84f3e4143839691f3c3199517e42d9c39.tar.bz2 |
fix compile warnings
Diffstat (limited to 'dxr3output-audio.c')
-rw-r--r-- | dxr3output-audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dxr3output-audio.c b/dxr3output-audio.c index 4798e8c..ca01ea3 100644 --- a/dxr3output-audio.c +++ b/dxr3output-audio.c @@ -51,7 +51,7 @@ void cDxr3AudioOutThread::Action() if (pNext) pts = pNext->GetPts(); - if (pts && abs((int)pts-(int)SCR) > 30000 || + if ((pts && abs((int)pts-(int)SCR) > 30000) || m_dxr3Device.IsExternalReleased()) { m_buffer.Clear(); |