-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consumption Reporting - Handling of access network change #56
Comments
It might make sense to detect the change of an access network directly in the MediaSessionHandler as the underlying access network is shared by all instances of the MediaStreamHandler being connected to a MediaSessionHandler. In this case there is no need to dispatch an event from the MediaStreamHandler to the MediaSessionHandler, see also 5G-MAG/rt-5gms-media-session-handler#42 |
As I understand, the ServiceAccessInfo will be updated(update clientConsumptionReportingConfiguration.accessReporting) when the access network changes on AF. And then, UE side will get the updated clientConsumptionReportingConfiguration.accessReporting while get ServiceAccessInfo, and determine whether need to report consumption report by clientConsumptionReportingConfiguration.accessReporting. So I don't quite understand why we need to detect the change of an access network in the MediaSessionHandler(or even detect in MediaStreamHandler and dispatch a access_network_changed event to the MediaSessionHandler), but not get from ServiceAccessInfo from AF directly. And if it's a must, I think I don't know how to know the change of an access network on UE side. |
The AF is located on the core side, the network change is happening on the UE side. The
However, I agree that we should define what should be considered an access network change. Maybe @rjb1000 can enhance/correct this list:
As a sidenote: 26501 5.6.3 defines a list of conditions under which a consumption report shall be sent. This list does not contain the access network change scenario that is listed in 26512 4.7.4. |
Got you, thanks. But I think in TS 26.512 Section 4.7.4 literally the "access network change" only include the switching between unicast and broadcast, not include the switching between Wifi and mobile. And for both Wifi and mobile, the URL are start with http://localhost. And if we detect the switching between unicast and broadcast by checking the URL of the segments(include http://localhost or not), I think may do it in MediaStreamHandler and then dispatch a access_network_changed event to the MediaSessionHandler is better. Because we only can get the URL of segments in MediaStreamHandler(unless pass the URLs to MediaSessionHandler, but I think it's a bad idea). So, why do you suggested to check in MediaSessionHandler? |
I think the original intent was to detect changes between unicast and broadcast consumption of content. Obviously, that only applies in hybrid reception cases where more than one mode of content delivery is operative. How the UE detects that depends on which hybrid architecture is used. Three different switching strategies are documented in clause 6.4.4 of ETSI TR 103 972. Regarding switching between cellular and Wi-Fi access networks: I am not sure if this is considered in scope or not. In fact, I can't find anything about this aspect of consumption reporting in TS 26.501. So this appears to be unmotivated at stage-2, unless I have missed it. Detecting a switch from the cellular network to Wi-Fi and vice versa is probably easy using the Android API. But it raises an interesting question for 5G Media Streaming: if the 5GMS AS is deployed inside the mobile operator's Trusted DN, is it even accessible via Wi-Fi? The answer is "probably not". In such cases, the MPD probably needs to be conditioned for this eventuality, e.g. by providing an alternative CDN endpoint (perhaps at a lower priority) that can be fallen back to when access to the 5GMS AS is lost. |
I would like to pick this up in the call tomorrow, here are the discussion points that I think are relevant What are Access Network changesDescription26.512 4.7.4 states Upon determining an access network change (e.g., unicast to eMBMS, or vice versa), if the clientConsumptionReportingConfiguration.accessReporting property is set to True. Questions
Detecting changes from broadcast to unicastDescriptionBased on ETSI TR 103972 Section 6.4.4: In general, how can we detect that a switch from broadcast to unicast and vice versa in the MediaSessionHandler/MediaStreamHandler? Option 1 (Single service instance with switching handled by 5G Broadcast Receiver)
Option 2 (Single service instance switched by DVB-DASH Client):
Option 3 (Two seamlessly switchable DVB-I service instances switched by DVB-DASH Client):
Evaluation of the Consumption ReportsDescriptionRelated to the previous discussion item, how does the application provider or the entity that consumes the consumption report know that a change of the access network has happened? Looking at the option 1 and 2 above, the Btw this would also explain why Others
|
Agreed to put this to the backlog as the desired behavior needs to be clarified. |
Feature description
TS 26.512 Section 4.7.4 defines procedures for consumption reporting. One requirement is the handling of access network changes:
To enable the MediaSessionHandler to request a new consumption report once the access network has changed the MediaStreamHandler needs to dispatch a
access_network_changed
event to the MediaSessionHandler.The text was updated successfully, but these errors were encountered: