Commit 005039fa authored by Laurent Aimar's avatar Laurent Aimar

Added back pause (timeshift has to accept ACCESS_SET_PAUSE_STATE)

parent 9083952e
...@@ -539,10 +539,12 @@ static int Control( access_t *p_access, int i_query, va_list args ) ...@@ -539,10 +539,12 @@ static int Control( access_t *p_access, int i_query, va_list args )
*pi_int = 0; *pi_int = 0;
break; break;
case ACCESS_SET_PAUSE_STATE:
break;
/* Forward everything else to the source access */ /* Forward everything else to the source access */
default: default:
return access2_vaControl( p_access->p_source, i_query, args ); return access2_vaControl( p_access->p_source, i_query, args );
} }
return VLC_SUCCESS; return VLC_SUCCESS;
} }
......
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