diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-12-24 00:45:03 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-12-24 00:45:03 +0000 |
commit | 52ed4de50d48141bda8f2300749ffa703b55be4b (patch) | |
tree | 260c92e7f7f28b59f65707025d23c2e1b558a5e1 /src/libmpeg2/xine_decoder.c | |
parent | 2ff16582eef3e37548060b6863f4caa419bd4998 (diff) | |
download | xine-lib-52ed4de50d48141bda8f2300749ffa703b55be4b.tar.gz xine-lib-52ed4de50d48141bda8f2300749ffa703b55be4b.tar.bz2 |
automatic still image detection - based on miguel's work but with modifications to handle still images with audio, works pretty well on episode I, x-men and sleepy hollow and all other dvds I've tested
CVS patchset: 1294
CVS date: 2001/12/24 00:45:03
Diffstat (limited to 'src/libmpeg2/xine_decoder.c')
-rw-r--r-- | src/libmpeg2/xine_decoder.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libmpeg2/xine_decoder.c b/src/libmpeg2/xine_decoder.c index 930562d39..da55cab88 100644 --- a/src/libmpeg2/xine_decoder.c +++ b/src/libmpeg2/xine_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: xine_decoder.c,v 1.18 2001/12/11 15:30:06 miguelfreitas Exp $ + * $Id: xine_decoder.c,v 1.19 2001/12/24 00:45:03 guenter Exp $ * * stuff needed to turn libmpeg2 into a xine decoder plugin */ @@ -73,7 +73,8 @@ static void mpeg2dec_decode_data (video_decoder_t *this_gen, buf_element_t *buf) mpeg2_decode_data (&this->mpeg2, buf->content, buf->content + buf->size, buf->PTS, buf->SCR); - + + this->video_out->decoder_started(this->video_out); } } |