Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(708)

Unified Diff: media/formats/mp4/box_definitions.h

Issue 1718773002: Parse ELNG box in MP4 container Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | media/formats/mp4/box_definitions.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/formats/mp4/box_definitions.h
diff --git a/media/formats/mp4/box_definitions.h b/media/formats/mp4/box_definitions.h
index b2566764aa9484289dbd86d8ab0aa1cd9747d719..d14864264664839eaf48e2b4defbf2fcd6347c2e 100644
--- a/media/formats/mp4/box_definitions.h
+++ b/media/formats/mp4/box_definitions.h
@@ -315,6 +315,11 @@ struct MEDIA_EXPORT MediaHeader : Box {
uint16_t language_code;
};
+struct MEDIA_EXPORT ExtendedLanguageTag : Box {
+ DECLARE_BOX_METHODS(ExtendedLanguageTag);
+ std::string language_tag;
+};
+
struct MEDIA_EXPORT MediaInformation : Box {
DECLARE_BOX_METHODS(MediaInformation);
@@ -326,6 +331,7 @@ struct MEDIA_EXPORT Media : Box {
MediaHeader header;
HandlerReference handler;
+ ExtendedLanguageTag extended_language_tag;
MediaInformation information;
};
« no previous file with comments | « no previous file | media/formats/mp4/box_definitions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698