Index: media/base/video_frame.h |
diff --git a/media/base/video_frame.h b/media/base/video_frame.h |
index 2588e46e99d96b6dd8156feee0da1450e241ca90..b97ee1b98d3c7a05db7966bf5fb1cc7933da17ef 100644 |
--- a/media/base/video_frame.h |
+++ b/media/base/video_frame.h |
@@ -62,14 +62,14 @@ class MEDIA_EXPORT VideoFrame : public base::RefCountedThreadSafe<VideoFrame> { |
FORMAT_MAX = XRGB, // Must always be equal to largest entry logged. |
}; |
- // Color space or color range used for the pixels, in general this is left |
- // unspecified, meaning Rec601 (SD) is assumed. |
+ // Color space or color range used for the pixels. |
// Logged to UMA, so never reuse values. Leave gaps if necessary. |
enum ColorSpace { |
COLOR_SPACE_UNSPECIFIED = 0, // In general this is Rec601. |
COLOR_SPACE_JPEG = 1, // JPEG color range. |
COLOR_SPACE_HD_REC709 = 2, // Rec709 "HD" color space. |
- COLOR_SPACE_MAX = COLOR_SPACE_HD_REC709, |
+ COLOR_SPACE_SD_REC601 = 3, // Rec601 "SD" color space. |
+ COLOR_SPACE_MAX = COLOR_SPACE_SD_REC601, |
}; |
// Defines the pixel storage type. Differentiates between directly accessible |