]> git.sesse.net Git - vlc/commitdiff
* ./README.MacOSX.rtf : updated README.
authorChristophe Massiot <massiot@videolan.org>
Thu, 25 Jul 2002 22:48:56 +0000 (22:48 +0000)
committerChristophe Massiot <massiot@videolan.org>
Thu, 25 Jul 2002 22:48:56 +0000 (22:48 +0000)
* ./plugins/macosx/vout_macosx.c : additional QuickTime fix, thanks to
  David Eldred <skipper@apple.com>.

plugins/macosx/vout_macosx.m

index 9b1ce92412a7a3c77f8c9d8a1aa77a9907d2e017..5fb32642b3937bcc7e1cda73e342cab1b92517a2 100644 (file)
@@ -2,7 +2,7 @@
  * vout_macosx.m: MacOS X video output plugin
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: vout_macosx.m,v 1.15 2002/07/25 21:51:12 massiot Exp $
+ * $Id: vout_macosx.m,v 1.16 2002/07/25 22:48:56 massiot Exp $
  *
  * Authors: Colin Delacroix <colin@zoy.org>
  *          Florian G. Pflug <fgp@phlo.org>
@@ -366,6 +366,10 @@ static void vout_Display( vout_thread_t *p_vout, picture_t *p_pic )
     {
         msg_Err( p_vout, "DecompressSequenceFrameS failed: %d", err );
     }
+    else
+    {
+        QDFlushPortBuffer( p_vout->p_sys->p_qdport, nil );
+    }
 }
 
 /*****************************************************************************