You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The dash_parser only searches the immediate children of the <AdaptationSet>:
var eventStream = XmlUtils.findChild(elem, 'InbandEventStream');
var containsInband = eventStream != null;
In the version of the DASH spec that I have(Second edition 2014-05-15) it says in 5.10.3.2 that:
An inband event stream that is present in a Representation shall be indicated by an InbandEventStream element on Adaptation Set or Representation level.
So I believe the test asset above is correct and Shaka should not be ignoring these.
The text was updated successfully, but these errors were encountered:
Reproducible on
master
It appears that
<InbandEventStream>
elements are being ignored if they are present at the Representation level.For example these are being ignored (http://demo.yospace.com/quickplay/dash/vod.mpd):
The
dash_parser
only searches the immediate children of the<AdaptationSet>
:In the version of the DASH spec that I have(Second edition 2014-05-15) it says in 5.10.3.2 that:
So I believe the test asset above is correct and Shaka should not be ignoring these.
The text was updated successfully, but these errors were encountered: