Commit 85174a20 authored by Antoine Cellerier's avatar Antoine Cellerier

Implement DEMUX_GET_TIME in screen access.

parent 652cd67e
...@@ -307,6 +307,11 @@ static int Control( demux_t *p_demux, int i_query, va_list args ) ...@@ -307,6 +307,11 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
*pi64 = (int64_t)var_GetInteger( p_demux, "screen-caching" ) *1000; *pi64 = (int64_t)var_GetInteger( p_demux, "screen-caching" ) *1000;
return VLC_SUCCESS; return VLC_SUCCESS;
case DEMUX_GET_TIME:
pi64 = (int64_t*)va_arg( args, int64_t * );
*pi64 = mdate();
return VLC_SUCCESS;
/* TODO implement others */ /* TODO implement others */
default: default:
return VLC_EGENERIC; return VLC_EGENERIC;
......
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