Commit 59faac26 authored by Laurent Aimar's avatar Laurent Aimar

Fixed typo in max pts_delay (60s not 601s)

parent 6d9c2bc2
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment