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

Unified Diff: media/webm/webm_parser.cc

Issue 23014009: media: Opus support for WebM in Media Source (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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
Index: media/webm/webm_parser.cc
diff --git a/media/webm/webm_parser.cc b/media/webm/webm_parser.cc
index 30e5c1b5e56dcf5b7b34d0c549fe11ecaeb16464..0feea82d4701e9d788e2ece570224766642e7e0e 100644
--- a/media/webm/webm_parser.cc
+++ b/media/webm/webm_parser.cc
@@ -119,6 +119,7 @@ static const ElementIdInfo kBlockGroupIds[] = {
{BINARY, kWebMIdReferenceBlock},
{BINARY, kWebMIdCodecState},
{LIST, kWebMIdSlices},
+ {UINT, kWebMIdDiscardPadding},
fgalligan1 2013/08/26 21:10:06 DiscardPadding should come after CodecState.
vignesh 2013/08/26 21:44:23 Done.
};
static const ElementIdInfo kBlockAdditionsIds[] = {
@@ -160,6 +161,8 @@ static const ElementIdInfo kTrackEntryIds[] = {
{STRING, kWebMIdCodecID},
{BINARY, kWebMIdCodecPrivate},
{STRING, kWebMIdCodecName},
+ {UINT, kWebMIdSeekPreRoll},
fgalligan1 2013/08/26 21:10:06 These should be switched according to the spec lay
vignesh 2013/08/26 21:44:23 Done.
+ {UINT, kWebMIdCodecDelay},
{UINT, kWebMIdAttachmentLink},
{UINT, kWebMIdCodecDecodeAll},
{UINT, kWebMIdTrackOverlay},

Powered by Google App Engine
This is Rietveld 408576698