]> git.sesse.net Git - vlc/blobdiff - include/vlc_config.h
Renamed BLOCK_TS_INVALID to VLC_TS_INVALID and put it in vlc_config.h
[vlc] / include / vlc_config.h
index d795cb2608148bac3e21eb987d712de60d87e5e2..77709e7306c78fddb46086a1396df733697b8acd 100644 (file)
  * General configuration
  *****************************************************************************/
 
-#define CLOCK_FREQ 1000000
+/* All timestamp below or equal to this define are invalid/unset
+ * XXX the numerical value is 0 because of historical reason and will change.*/
+#define VLC_TS_INVALID (0)
 
+#define CLOCK_FREQ 1000000
 
 /* When creating or destroying threads in blocking mode, delay to poll thread
  * status */
 
 /* Video heap size - remember that a decompressed picture is big
  * (~1 Mbyte) before using huge values */
-#define VOUT_MAX_PICTURES               8
-
-/* Minimum number of direct pictures the video output will accept without
- * creating additional pictures in system memory */
-#define VOUT_MIN_DIRECT_PICTURES        6
-
-/* Number of simultaneous subpictures */
-#define VOUT_MAX_SUBPICTURES            8
+#define VOUT_MAX_PICTURES              16
 
 /* Statistics are displayed every n loops (=~ pictures) */
 #define VOUT_STATS_NB_LOOPS             100