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

Unified Diff: media/base/sample_format.h

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/sample_format.h
diff --git a/media/base/sample_format.h b/media/base/sample_format.h
index 24bbe4f59ed7cc41643021e6e7547ef0fd6cf9f2..e7faec8139559193bb3703e8979b79626cd7a999 100644
--- a/media/base/sample_format.h
+++ b/media/base/sample_format.h
@@ -23,9 +23,10 @@ enum SampleFormat {
kSampleFormatPlanarF32, // Float 32-bit planar.
kSampleFormatPlanarS32, // Signed 32-bit planar.
kSampleFormatS24, // Signed 24-bit.
+ kSampleFormatRaw, // Raw compressed bitstream.
// Must always be equal to largest value ever logged.
- kSampleFormatMax = kSampleFormatS24,
+ kSampleFormatMax = kSampleFormatRaw,
};
// Returns the number of bytes used per channel for the specified

Powered by Google App Engine
This is Rietveld 408576698