Commit a3a7c277 authored by Gildas Bazin's avatar Gildas Bazin

* modules/codec/libmpeg2.c: small bugfix.
parent 495da295
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* libmpeg2.c: mpeg2 video decoder module making use of libmpeg2. * libmpeg2.c: mpeg2 video decoder module making use of libmpeg2.
***************************************************************************** *****************************************************************************
* Copyright (C) 1999-2001 VideoLAN * Copyright (C) 1999-2001 VideoLAN
* $Id: libmpeg2.c,v 1.9 2003/04/14 22:22:32 massiot Exp $ * $Id: libmpeg2.c,v 1.10 2003/04/15 15:53:42 gbazin Exp $
* *
* Authors: Gildas Bazin <gbazin@netcourrier.com> * Authors: Gildas Bazin <gbazin@netcourrier.com>
* *
...@@ -133,6 +133,7 @@ static int RunDecoder( decoder_fifo_t *p_fifo ) ...@@ -133,6 +133,7 @@ static int RunDecoder( decoder_fifo_t *p_fifo )
p_dec->p_pes = NULL; p_dec->p_pes = NULL;
p_dec->p_vout = NULL; p_dec->p_vout = NULL;
p_dec->p_mpeg2dec = NULL; p_dec->p_mpeg2dec = NULL;
p_dec->p_synchro = NULL;
p_dec->p_info = NULL; p_dec->p_info = NULL;
p_dec->i_pts = mdate() + DEFAULT_PTS_DELAY; p_dec->i_pts = mdate() + DEFAULT_PTS_DELAY;
p_dec->i_current_pts = 0; p_dec->i_current_pts = 0;
...@@ -170,7 +171,7 @@ static int RunDecoder( decoder_fifo_t *p_fifo ) ...@@ -170,7 +171,7 @@ static int RunDecoder( decoder_fifo_t *p_fifo )
break; break;
} }
if( p_dec->p_pes->b_discontinuity ) if( p_dec->p_pes->b_discontinuity && p_dec->p_synchro )
{ {
vout_SynchroReset( p_dec->p_synchro ); vout_SynchroReset( p_dec->p_synchro );
if ( p_dec->p_info->current_fbuf != NULL ) if ( p_dec->p_info->current_fbuf != NULL )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment