diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-02-23 14:15:58 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-02-23 14:15:58 +0000 |
commit | bec9198124f30be6877546e06d7afc5bed653160 (patch) | |
tree | 005e6fb2f458d2d81add6042b9e32602f4fe28e1 | |
parent | 8da9624c144a4085230bc8cfcc1973d411d4c4d3 (diff) | |
download | xine-lib-bec9198124f30be6877546e06d7afc5bed653160.tar.gz xine-lib-bec9198124f30be6877546e06d7afc5bed653160.tar.bz2 |
be more tolerant with missing end sequences (I had false positives)
CVS patchset: 4262
CVS date: 2003/02/23 14:15:58
-rw-r--r-- | src/dxr3/dxr3_decode_video.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dxr3/dxr3_decode_video.c b/src/dxr3/dxr3_decode_video.c index fc9fa95f1..d103275d5 100644 --- a/src/dxr3/dxr3_decode_video.c +++ b/src/dxr3/dxr3_decode_video.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: dxr3_decode_video.c,v 1.30 2003/02/18 13:15:46 mroi Exp $ + * $Id: dxr3_decode_video.c,v 1.31 2003/02/23 14:15:58 mroi Exp $ */ /* dxr3 video decoder plugin. @@ -559,7 +559,7 @@ static void dxr3_flush(video_decoder_t *this_gen) { dxr3_decoder_t *this = (dxr3_decoder_t *)this_gen; - if (this->sequence_open && + if (this->sequence_open && ++this->sequence_open > 5 && this->stream->stream_info[XINE_STREAM_INFO_VIDEO_HAS_STILL]) { /* The dxr3 needs a sequence end code for still menus to work correctly * (the highlights won't move without), but some dvds have stills |