Commit 923292af authored by Francois Cartegnie's avatar Francois Cartegnie

demux: mp4: don't prompt to restart if user specifies range (fix #11556)

parent f7a8461b
......@@ -124,7 +124,10 @@ void InputManager::setInput( input_thread_t *_p_input )
/* Get Saved Time */
int i_time = RecentsMRL::getInstance( p_intf )->time( p_item->psz_uri );
if( i_time > 0 )
if( i_time > 0 &&
!var_GetFloat( p_input, "run-time" ) &&
!var_GetFloat( p_input, "start-time" ) &&
!var_GetFloat( p_input, "stop-time" ) )
{
THEMIM->togglePlayPause();
......
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