OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:I420_SIZE
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/libjingle/source/talk/session/media/
yuvscaler_unittest.cc
102
size_t isize =
I420_SIZE
(iw, ih);
103
size_t osize =
I420_SIZE
(ow, oh);
192
ALIGN16(uint8 ibuf[
I420_SIZE
(iw, ih)]);
193
ALIGN16(uint8 obuf[
I420_SIZE
(ow, oh)]);
209
scoped_ptr<uint8[]> ibuffer(new uint8[
I420_SIZE
(iw, ih) + kAlignment]);
210
scoped_ptr<uint8[]> obuffer(new uint8[
I420_SIZE
(ow, oh) + kAlignment]);
planarfunctions_unittest.cc
538
new uint8[
I420_SIZE
(kHeight, kWidth) + kAlignment]);
555
I420_SIZE
(kHeight, kWidth), 1.e-6));
575
new uint8[
I420_SIZE
(kHeight, kWidth) + kAlignment]);
601
I420_SIZE
(kHeight, kWidth), 1.e-6));
623
new uint8[
I420_SIZE
(kHeight, kWidth) + kAlignment + unalignment]);
648
I420_SIZE
(kHeight, kWidth), 1.e-6));
669
new uint8[
I420_SIZE
(kHeight, kWidth) + kAlignment + unalignment]);
692
I420_SIZE
(kHeight, kWidth), 1.e-6));
714
new uint8[
I420_SIZE
(kHeight, kWidth) + kAlignment + unalignment]);
738
I420_SIZE
(kHeight, kWidth), 1.e-6))
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/media/base/
testutils.cc
286
stream->ReadAll(out,
I420_SIZE
(width, height), NULL, NULL);
299
fs.Write(img,
I420_SIZE
(w, h), NULL, NULL);
testutils.h
52
#define
I420_SIZE
(w, h) (w * h + (((w + 1) / 2) * ((h + 1) / 2)) * 2)
Completed in 4092 milliseconds