diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-04 10:49:25 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-04 10:49:25 +0000 |
commit | 0b7b753a9fb15b5fb8d7ef9a4fae8bbe4822aa7b (patch) | |
tree | 1f0584dac0cb0ad8d7a5f04e2be16c3c538ac0c2 /src | |
parent | df533681c9cb6cd181693748e278f6a764cbacc4 (diff) | |
download | xine-lib-0b7b753a9fb15b5fb8d7ef9a4fae8bbe4822aa7b.tar.gz xine-lib-0b7b753a9fb15b5fb8d7ef9a4fae8bbe4822aa7b.tar.bz2 |
fix typo (thanks to Daniel for reveiling)
CVS patchset: 2602
CVS date: 2002/09/04 10:49:25
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/video_decoder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/video_decoder.c b/src/xine-engine/video_decoder.c index 8f5b71395..b031b0a8c 100644 --- a/src/xine-engine/video_decoder.c +++ b/src/xine-engine/video_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: video_decoder.c,v 1.94 2002/08/30 15:03:00 f1rmb Exp $ + * $Id: video_decoder.c,v 1.95 2002/09/04 10:49:25 mroi Exp $ * */ @@ -221,7 +221,7 @@ void *video_decoder_loop (void *this_gen) { this->video_in_discontinuity = 1; - if (buf->decoder_flags && BUF_FLAG_SEEK) { + if (buf->decoder_flags & BUF_FLAG_SEEK) { this->metronom->handle_video_discontinuity (this->metronom, DISC_STREAMSEEK, buf->disc_off); } else { this->metronom->handle_video_discontinuity (this->metronom, DISC_ABSOLUTE, buf->disc_off); |