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

Unified Diff: media/base/sample_format.h

Issue 881603002: Adding an ALAC enum to AudioDecoderConfig (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compilation error Created 5 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.cc ('k') | media/base/sample_format.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/sample_format.h
diff --git a/media/base/sample_format.h b/media/base/sample_format.h
index 7c3df702157dc0f0f43e5422e5f9fde94e007c68..7a488433ab8925726b3a6a15cad85b1cb788e6ee 100644
--- a/media/base/sample_format.h
+++ b/media/base/sample_format.h
@@ -21,9 +21,10 @@ enum SampleFormat {
kSampleFormatF32, // Float 32-bit.
kSampleFormatPlanarS16, // Signed 16-bit planar.
kSampleFormatPlanarF32, // Float 32-bit planar.
+ kSampleFormatPlanarS32, // Signed 32-bit planar.
// Must always be equal to largest value ever logged.
- kSampleFormatMax = kSampleFormatPlanarF32,
+ kSampleFormatMax = kSampleFormatPlanarS32,
};
// Returns the number of bytes used per channel for the specified
« no previous file with comments | « media/base/audio_decoder_config.cc ('k') | media/base/sample_format.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698