Commit 0a423efa authored by Ilkka Ollakka's avatar Ilkka Ollakka

httplive: turn STREAM_CAN_CONTROL_PACE on to restore playback

This is just quick fix and workaround for now.

Should Fix #8619 and #8713
parent df252eac
......@@ -2514,9 +2514,11 @@ static int Control(stream_t *s, int i_query, va_list args)
case STREAM_CAN_SEEK:
*(va_arg (args, bool *)) = hls_MaySeek(s);
break;
case STREAM_CAN_CONTROL_PACE:
*(va_arg (args, bool *)) = true;
break;
case STREAM_CAN_FASTSEEK:
case STREAM_CAN_PAUSE: /* TODO */
case STREAM_CAN_CONTROL_PACE:
*(va_arg (args, bool *)) = false;
break;
case STREAM_GET_POSITION:
......
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