Add 'name' field to Element protobuf message
Change-Id: I527433d6cee2c4e0deb2f243f623f40e29ba8c21
This commit is contained in:
parent
a84d6a7d09
commit
f4c7807554
|
@ -52,10 +52,14 @@ message MediaInfo {
|
||||||
}
|
}
|
||||||
|
|
||||||
message Element {
|
message Element {
|
||||||
repeated AttributeNameValuePair attributes = 1;
|
optional string name = 1;
|
||||||
repeated Element subelements = 2;
|
repeated AttributeNameValuePair attributes = 2;
|
||||||
|
repeated Element subelements = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// These two string fields are specified by the MPD spec. Just for
|
||||||
|
// clarification, the string set in |value| is the rhs of 'value' field in
|
||||||
|
// <ContentProtection>.
|
||||||
optional string scheme_id_uri = 1;
|
optional string scheme_id_uri = 1;
|
||||||
optional string value = 2;
|
optional string value = 2;
|
||||||
repeated AttributeNameValuePair attributes = 3;
|
repeated AttributeNameValuePair attributes = 3;
|
||||||
|
|
Loading…
Reference in New Issue