summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_onyxc_int.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2015-09-25 21:34:29 -0400
committerRonald S. Bultje <rsbultje@gmail.com>2015-09-25 21:34:29 -0400
commit36ffe64498d784757b0dacf5f359ac4e403f14da (patch)
treeb5b3668c24f12373a4146be5361fc5593338a51b /vp9/common/vp9_onyxc_int.h
parent8979e9e387f0308c7cf23929e510f147db652a43 (diff)
downloadlibvpx-36ffe64498d784757b0dacf5f359ac4e403f14da.tar.gz
Rename display_{size,width,height} to render_*.
The name "display_*" (or "d_*") is used for non-compatible information (that is, the cropped frame dimensions in pixels, as opposed to the intended screen rendering surface size). Therefore, continuing to use display_* would be confusing to end users. Instead, rename the field to render_*, so that struct vpx_image can include it. Change-Id: Iab8d2eae96492b71c4ea60c4bce8121cb2a1fe2d
Diffstat (limited to 'vp9/common/vp9_onyxc_int.h')
-rw-r--r--vp9/common/vp9_onyxc_int.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp9/common/vp9_onyxc_int.h b/vp9/common/vp9_onyxc_int.h
index 61e731a1d..6fb8dca22 100644
--- a/vp9/common/vp9_onyxc_int.h
+++ b/vp9/common/vp9_onyxc_int.h
@@ -115,8 +115,8 @@ typedef struct VP9Common {
int color_range;
int width;
int height;
- int display_width;
- int display_height;
+ int render_width;
+ int render_height;
int last_width;
int last_height;