cosmetics

Change-Id: I39c3bc671ab427dcb3e23aedee7fe8d81f4cb860
This commit is contained in:
Pascal Massimino
2011-05-04 22:59:51 -07:00
parent 8dfc4c6f17
commit 38369c03e0
2 changed files with 14 additions and 7 deletions

View File

@ -28,7 +28,8 @@ int WebPPictureAlloc(WebPPicture* const picture) {
const int width = picture->width;
const int height = picture->height;
const int y_stride = width;
const int uv_width = (width + 1) / 2, uv_height = (height + 1) / 2;
const int uv_width = (width + 1) / 2;
const int uv_height = (height + 1) / 2;
const int uv_stride = uv_width;
int uv0_stride = 0;
int a_width, a_stride;