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 |