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

Unified Diff: media/base/audio_codecs.cc

Issue 2466463005: Support (E)AC3 passthrough
Patch Set: Improve CastMediaClient::IsSupportedPassthroughAudio() Created 4 years, 1 month 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/base/audio_codecs.cc
diff --git a/media/base/audio_codecs.cc b/media/base/audio_codecs.cc
index 8aaa24f0394af4f52b22baed786c9c1ba1881212..7507351c3f8f02e949062f157f917505c45da76c 100644
--- a/media/base/audio_codecs.cc
+++ b/media/base/audio_codecs.cc
@@ -44,6 +44,8 @@ std::string GetCodecName(AudioCodec codec) {
return "alac";
case kCodecAC3:
return "ac3";
+ case kCodecRaw:
+ return "raw";
}
NOTREACHED();
return "";

Powered by Google App Engine
This is Rietveld 408576698