Add 'name' field to Element protobuf message

Change-Id: I527433d6cee2c4e0deb2f243f623f40e29ba8c21
This commit is contained in:
Rintaro Kuroiwa 2014-01-14 14:56:06 -08:00
parent a84d6a7d09
commit f4c7807554
1 changed files with 6 additions and 2 deletions

View File

@ -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;