Commit 3c218321 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

DASH: provide PTS delay

parent 5ccba1ab
......@@ -281,6 +281,11 @@ static int Control (stream_t *p_stream, int i_query, va_list args)
}
break;
}
case STREAM_GET_PTS_DELAY:
*va_arg (args, int64_t *) =
var_InheritInteger(p_stream, "network-caching");
break;
default:
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