Home | History | Annotate | Download | only in media

Lines Matching defs:osize

103     size_t osize = I420_SIZE(ow, oh);
107 new uint8_t[osize + kAlignment + memoffset]());
109 new uint8_t[osize + kAlignment + memoffset]());
124 memset(obuf, 100, osize); // Output set to something wrong for now.
125 memset(xbuf, 213, osize); // Expected result.
130 FlushCache(obuf, osize);
131 FlushCache(xbuf, osize);
144 FlushCache(obuf, osize);
168 double sse = cricket::ComputeSumSquareError(obuf, xbuf, osize);
169 *error = sse / osize; // Mean Squared Error.
170 double PSNR = cricket::ComputePSNR(sse, osize);