]> git.sesse.net Git - vlc/commitdiff
* Fixed a boolean_t/int mix.
authorChristophe Massiot <massiot@videolan.org>
Tue, 6 Mar 2001 15:16:42 +0000 (15:16 +0000)
committerChristophe Massiot <massiot@videolan.org>
Tue, 6 Mar 2001 15:16:42 +0000 (15:16 +0000)
* Increased FIFO_SIZE.

include/config.h.in
src/video_decoder/vpar_synchro.h

index 7292c8479d070354492ea6134f0dd8cca74f27bc..50da0e3663415b777e2868751fed0029ba4969c2 100644 (file)
  */
 
 /* Size of the FIFO. FIFO_SIZE+1 must be a power of 2 */
-#define FIFO_SIZE                       511
+#define FIFO_SIZE                       1023
 
 /*
  * Paths
index 245d84043ab5bba561ff948edf9ba88e44a02b5b..263b62a93b7104c472af322cfe70e0dbf269c168 100644 (file)
@@ -2,7 +2,7 @@
  * vpar_synchro.h : video parser blocks management
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: vpar_synchro.h,v 1.7 2001/01/16 13:27:14 massiot Exp $
+ * $Id: vpar_synchro.h,v 1.8 2001/03/06 15:16:42 massiot Exp $
  *
  * Author: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -99,4 +99,4 @@ void vpar_SynchroDecode         ( struct vpar_thread_s * p_vpar,
 void vpar_SynchroEnd            ( struct vpar_thread_s * p_vpar, int i_garbage );
 mtime_t vpar_SynchroDate        ( struct vpar_thread_s * p_vpar );
 void vpar_SynchroNewPicture( struct vpar_thread_s * p_vpar, int i_coding_type,
-                             boolean_t b_repeat_field );
+                             int i_repeat_field );