Commit 38750d0d authored by Francois Cartegnie's avatar Francois Cartegnie

stream_filter: smooth: server does control pace in live mode

parent 3dcc5292
...@@ -815,7 +815,7 @@ static int Control( stream_t *s, int i_query, va_list args ) ...@@ -815,7 +815,7 @@ static int Control( stream_t *s, int i_query, va_list args )
break; break;
case STREAM_CAN_PAUSE: /* TODO */ case STREAM_CAN_PAUSE: /* TODO */
case STREAM_CAN_CONTROL_PACE: case STREAM_CAN_CONTROL_PACE:
*(va_arg( args, bool * )) = !p_sys->b_live; *(va_arg( args, bool * )) = true;
break; break;
case STREAM_GET_POSITION: case STREAM_GET_POSITION:
*(va_arg( args, uint64_t * )) = p_sys->playback.boffset; *(va_arg( args, uint64_t * )) = p_sys->playback.boffset;
......
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