Commit 8caa8ca8 authored by Laurent Aimar's avatar Laurent Aimar

* asf: no DEMUX_SET_TIME...

parent d9fa61b1
...@@ -425,6 +425,9 @@ static int Control( demux_t *p_demux, int i_query, va_list args ) ...@@ -425,6 +425,9 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
switch( i_query ) switch( i_query )
{ {
case DEMUX_SET_TIME:
return VLC_EGENERIC;
case DEMUX_GET_LENGTH: case DEMUX_GET_LENGTH:
pi64 = (int64_t*)va_arg( args, int64_t * ); pi64 = (int64_t*)va_arg( args, int64_t * );
*pi64 = p_sys->i_length; *pi64 = p_sys->i_length;
...@@ -436,7 +439,6 @@ static int Control( demux_t *p_demux, int i_query, va_list args ) ...@@ -436,7 +439,6 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
return VLC_SUCCESS; return VLC_SUCCESS;
case DEMUX_SET_POSITION: case DEMUX_SET_POSITION:
case DEMUX_SET_TIME:
p_sys->i_time = -1; p_sys->i_time = -1;
for( i = 0; i < 128 ; i++ ) for( i = 0; i < 128 ; i++ )
{ {
......
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