Revert "msm: vidc: Increase extradata size to 16k"

This reverts commit I6dbaf74a7f7939ae6aa516d01ede3d7119307818.

In new firmware version extn_userdata size has adjusted from 8240 bytes
to 7728 bytes. Hence decreasing default extradata size to 8k.

Change-Id: Id6965cc74b3b1d22e3a4240aad7fc8cb7bac9222
Signed-off-by: Srinu Gorle <sgorle@codeaurora.org>
This commit is contained in:
Srinu Gorle 2015-07-10 14:16:04 +05:30 committed by Gerrit - the friendly Code Review server
parent 81818ea2c7
commit ed8577e7e3
1 changed files with 2 additions and 2 deletions

View File

@ -323,9 +323,9 @@ static inline unsigned int VENUS_EXTRADATA_SIZE(int width, int height)
/*
* In the future, calculate the size based on the w/h but just
* hardcode it for now since 16K satisfies all current usecases.
* hardcode it for now since 8K satisfies all current usecases.
*/
return 16 * 1024;
return 8 * 1024;
}
static inline unsigned int VENUS_Y_STRIDE(int color_fmt, int width)