cwebp,get_disto: fix bpp output

bits-per-pixel were intended, not bytes-per-pixel

Change-Id: I023349013ac5956154ab4526bd1e195dfe95b8ab
(cherry picked from commit e122e511cf)
This commit is contained in:
James Zern
2018-04-10 15:51:23 -07:00
parent f5565ca84a
commit 99be34b3a8
2 changed files with 3 additions and 3 deletions

View File

@ -293,7 +293,7 @@ int main(int argc, const char *argv[]) {
printf("%u %.2f %.2f %.2f %.2f %.2f [ %.2f bpp ]\n",
(unsigned int)size1,
disto[4], disto[0], disto[1], disto[2], disto[3],
1.f * size1 / pic1.width / pic1.height);
8.f * size1 / pic1.width / pic1.height);
if (output != NULL) {
uint8_t* data = NULL;