summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-11-22 11:58:05 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-11-22 11:58:05 +0000
commit2723a74e2e207d25e2e6021b0feb6800427368d3 (patch)
treeb885c743b3b3ab2c31db6cd59cab91c242453ffa /src
parent89432394419cc5888f67cce1a64eabe50f9f2fdf (diff)
downloadxine-lib-2723a74e2e207d25e2e6021b0feb6800427368d3.tar.gz
xine-lib-2723a74e2e207d25e2e6021b0feb6800427368d3.tar.bz2
bug fix from Nate Lawson <nate@root.org>
CVS patchset: 5769 CVS date: 2003/11/22 11:58:05
Diffstat (limited to 'src')
-rw-r--r--src/xine-engine/audio_decoder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/audio_decoder.c b/src/xine-engine/audio_decoder.c
index 5f020fa00..58db274df 100644
--- a/src/xine-engine/audio_decoder.c
+++ b/src/xine-engine/audio_decoder.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: audio_decoder.c,v 1.113 2003/11/20 00:42:14 tmattern Exp $
+ * $Id: audio_decoder.c,v 1.114 2003/11/22 11:58:05 f1rmb Exp $
*
*
* functions that implement audio decoding
@@ -186,7 +186,7 @@ static void *audio_decoder_loop (void *stream_gen) {
case BUF_CONTROL_NEWPTS:
if (stream->audio_decoder_plugin)
stream->audio_decoder_plugin->discontinuity (stream->audio_decoder_plugin);
- if (buf->decoder_flags && BUF_FLAG_SEEK) {
+ if (buf->decoder_flags & BUF_FLAG_SEEK) {
stream->metronom->handle_audio_discontinuity (stream->metronom, DISC_STREAMSEEK, buf->disc_off);
} else {
stream->metronom->handle_audio_discontinuity (stream->metronom, DISC_ABSOLUTE, buf->disc_off);