summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_encoder.c
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2015-01-09 10:36:43 -0800
committerYaowu Xu <yaowu@google.com>2015-01-09 10:36:43 -0800
commitecbca31a1db896e45024446a2d4e10385c17e44f (patch)
tree01bd8e352c19452d11cb92aeca51923efc15fd43 /vp9/encoder/vp9_encoder.c
parent4d6838627db5caf40396c31ef2ee36e89abfe8f6 (diff)
downloadlibvpx-ecbca31a1db896e45024446a2d4e10385c17e44f.tar
libvpx-ecbca31a1db896e45024446a2d4e10385c17e44f.tar.gz
libvpx-ecbca31a1db896e45024446a2d4e10385c17e44f.tar.bz2
libvpx-ecbca31a1db896e45024446a2d4e10385c17e44f.zip
Fix comments and color format
Replaced "color space" with "color format" in comments where color sampling format is concerned, so to differentiate from the concept defined in COLOR_SPACE. Change-Id: I8c935034c166b24307a99352dab1686531276bb8
Diffstat (limited to 'vp9/encoder/vp9_encoder.c')
-rw-r--r--vp9/encoder/vp9_encoder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp9/encoder/vp9_encoder.c b/vp9/encoder/vp9_encoder.c
index 49fe7def5..510be9649 100644
--- a/vp9/encoder/vp9_encoder.c
+++ b/vp9/encoder/vp9_encoder.c
@@ -3438,13 +3438,13 @@ int vp9_receive_raw_frame(VP9_COMP *cpi, unsigned int frame_flags,
if ((cm->profile == PROFILE_0 || cm->profile == PROFILE_2) &&
(subsampling_x != 1 || subsampling_y != 1)) {
vpx_internal_error(&cm->error, VPX_CODEC_INVALID_PARAM,
- "Non-4:2:0 color space requires profile 1 or 3");
+ "Non-4:2:0 color format requires profile 1 or 3");
res = -1;
}
if ((cm->profile == PROFILE_1 || cm->profile == PROFILE_3) &&
(subsampling_x == 1 && subsampling_y == 1)) {
vpx_internal_error(&cm->error, VPX_CODEC_INVALID_PARAM,
- "4:2:0 color space requires profile 0 or 2");
+ "4:2:0 color format requires profile 0 or 2");
res = -1;
}