Index: media/base/sample_format.h |
diff --git a/media/base/sample_format.h b/media/base/sample_format.h |
index 7a488433ab8925726b3a6a15cad85b1cb788e6ee..12ebeb8a1ebe48e62d4a7d93738f79035f4363c3 100644 |
--- a/media/base/sample_format.h |
+++ b/media/base/sample_format.h |
@@ -22,9 +22,10 @@ enum SampleFormat { |
kSampleFormatPlanarS16, // Signed 16-bit planar. |
kSampleFormatPlanarF32, // Float 32-bit planar. |
kSampleFormatPlanarS32, // Signed 32-bit planar. |
+ kSampleFormatS24, // Signed 24-bit. |
// Must always be equal to largest value ever logged. |
- kSampleFormatMax = kSampleFormatPlanarS32, |
+ kSampleFormatMax = kSampleFormatS24, |
}; |
// Returns the number of bytes used per channel for the specified |