Lines Matching refs:sizeInfo
59 SkCodec::YUVSizeInfo sizeInfo; in onGetYUV8Planes() local
63 bool result = fCodec->queryYUV8(&sizeInfo, colorSpace); in onGetYUV8Planes()
66 fYWidth = sizeInfo.fYSize.width(); in onGetYUV8Planes()
67 fUWidth = sizeInfo.fUSize.width(); in onGetYUV8Planes()
68 fVWidth = sizeInfo.fVSize.width(); in onGetYUV8Planes()
71 sizes[0].fWidth = (int) sizeInfo.fYWidthBytes; in onGetYUV8Planes()
72 sizes[0].fHeight = sizeInfo.fYSize.height(); in onGetYUV8Planes()
73 sizes[1].fWidth = (int) sizeInfo.fUWidthBytes; in onGetYUV8Planes()
74 sizes[1].fHeight = sizeInfo.fUSize.height(); in onGetYUV8Planes()
75 sizes[2].fWidth = (int) sizeInfo.fVWidthBytes; in onGetYUV8Planes()
76 sizes[2].fHeight = sizeInfo.fVSize.height(); in onGetYUV8Planes()
83 sizeInfo.fYSize.set(fYWidth, sizes[0].height()); in onGetYUV8Planes()
84 sizeInfo.fUSize.set(fUWidth, sizes[1].height()); in onGetYUV8Planes()
85 sizeInfo.fVSize.set(fVWidth, sizes[2].height()); in onGetYUV8Planes()
88 sizeInfo.fYWidthBytes = sizes[0].width(); in onGetYUV8Planes()
89 sizeInfo.fUWidthBytes = sizes[1].width(); in onGetYUV8Planes()
90 sizeInfo.fVWidthBytes = sizes[2].width(); in onGetYUV8Planes()
91 SkCodec::Result result = fCodec->getYUV8Planes(sizeInfo, planes); in onGetYUV8Planes()