]> git.sesse.net Git - vlc/commitdiff
Fixed typo in max pts_delay (60s not 601s)
authorLaurent Aimar <fenrir@videolan.org>
Thu, 30 Apr 2009 20:38:09 +0000 (22:38 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Thu, 30 Apr 2009 20:38:09 +0000 (22:38 +0200)
src/input/input.c

index 4ff910fd96f13e8179b9e509f446067e08d3f29b..c7afcfe9c289a654b2a6f648345a61677095bd81 100644 (file)
@@ -111,7 +111,7 @@ static void SubtitleAdd( input_thread_t *p_input, char *psz_subtitle, bool b_for
 static void input_ChangeState( input_thread_t *p_input, int i_state ); /* TODO fix name */
 
 /* Do not let a pts_delay from access/demux go beyong 60s */
-#define INPUT_PTS_DELAY_MAX INT64_C(601000000)
+#define INPUT_PTS_DELAY_MAX INT64_C(60000000)
 
 /*****************************************************************************
  * This function creates a new input, and returns a pointer