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

Unified Diff: media/base/audio_decoder_config.cc

Issue 812643005: Re-add AC3/EAC3 audio demuxing support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: buildfix Created 4 years, 11 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 | « media/base/audio_decoder_config.h ('k') | media/base/mime_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/audio_decoder_config.cc
diff --git a/media/base/audio_decoder_config.cc b/media/base/audio_decoder_config.cc
index 17f039f499d39deb4cabcdcf6664aa94e0423b58..91dc9a65a1ee27de40c6e449f3507ef2937f5823 100644
--- a/media/base/audio_decoder_config.cc
+++ b/media/base/audio_decoder_config.cc
@@ -122,8 +122,12 @@ std::string AudioDecoderConfig::GetHumanReadableCodecName() const {
return "opus";
case kCodecPCM_ALAW:
return "pcm_alaw";
+ case kCodecEAC3:
+ return "eac3";
case kCodecALAC:
return "alac";
+ case kCodecAC3:
+ return "ac3";
}
NOTREACHED();
return "";
« no previous file with comments | « media/base/audio_decoder_config.h ('k') | media/base/mime_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698