]> git.sesse.net Git - vlc/commitdiff
* modules/codec/libmpeg2.c: make sure there are no more linked pictures
authorGildas Bazin <gbazin@videolan.org>
Tue, 22 Apr 2003 23:31:07 +0000 (23:31 +0000)
committerGildas Bazin <gbazin@videolan.org>
Tue, 22 Apr 2003 23:31:07 +0000 (23:31 +0000)
   left when closing the decoder.

modules/codec/libmpeg2.c

index de09f04c86b55133cd207afae62c705c27f58e65..abaddd9d6f117a2c2ecbe8188e0c12d7b5dea145 100755 (executable)
@@ -2,7 +2,7 @@
  * libmpeg2.c: mpeg2 video decoder module making use of libmpeg2.
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: libmpeg2.c,v 1.13 2003/04/22 12:54:49 gbazin Exp $
+ * $Id: libmpeg2.c,v 1.14 2003/04/22 23:31:07 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -391,6 +391,9 @@ static void CloseDecoder( dec_thread_t * p_dec )
                       RESERVED_PICTURE )
                     vout_DestroyPicture( p_dec->p_vout,
                                      p_dec->p_vout->render.pp_picture[i_pic] );
+                if( p_dec->p_vout->render.pp_picture[i_pic]->i_refcount > 0 )
+                    vout_UnlinkPicture( p_dec->p_vout,
+                                     p_dec->p_vout->render.pp_picture[i_pic] );
             }
 
             vout_Request( p_dec->p_fifo, p_dec->p_vout, 0, 0, 0, 0 );