Home | History | Annotate | Download | only in omx

Lines Matching refs:mPlane

88         if (image.mPlane[ix].mHorizSubsampling > INT32_MAX
89 || image.mPlane[ix].mVertSubsampling > INT32_MAX) {
102 mPlane[ix].mOffset = image.mPlane[ix].mOffset;
103 mPlane[ix].mColInc = image.mPlane[ix].mColInc;
104 mPlane[ix].mRowInc = image.mPlane[ix].mRowInc;
105 mPlane[ix].mHorizSubsampling = (int32_t)image.mPlane[ix].mHorizSubsampling;
106 mPlane[ix].mVertSubsampling = (int32_t)image.mPlane[ix].mVertSubsampling;
243 image.mPlane[image.Y].mOffset = 0;
244 image.mPlane[image.Y].mColInc = 1;
245 image.mPlane[image.Y].mRowInc = params.nStride;
246 image.mPlane[image.Y].mHorizSubsampling = 1;
247 image.mPlane[image.Y].mVertSubsampling = 1;
254 image.mPlane[image.Y].mRowInc = ystride;
256 image.mPlane[image.V].mOffset = ystride * params.nSliceHeight;
257 image.mPlane[image.V].mColInc = 1;
258 image.mPlane[image.V].mRowInc = cstride;
259 image.mPlane[image.V].mHorizSubsampling = 2;
260 image.mPlane[image.V].mVertSubsampling = 2;
262 image.mPlane[image.U].mOffset = image.mPlane[image.V].mOffset
264 image.mPlane[image.U].mColInc = 1;
265 image.mPlane[image.U].mRowInc = cstride;
266 image.mPlane[image.U].mHorizSubsampling = 2;
267 image.mPlane[image.U].mVertSubsampling = 2;
275 image.mPlane[image.U].mOffset = params.nStride * params.nSliceHeight;
276 image.mPlane[image.U].mColInc = 1;
277 image.mPlane[image.U].mRowInc = params.nStride / 2;
278 image.mPlane[image.U].mHorizSubsampling = 2;
279 image.mPlane[image.U].mVertSubsampling = 2;
281 image.mPlane[image.V].mOffset = image.mPlane[image.U].mOffset
283 image.mPlane[image.V].mColInc = 1;
284 image.mPlane[image.V].mRowInc = params.nStride / 2;
285 image.mPlane[image.V].mHorizSubsampling = 2;
286 image.mPlane[image.V].mVertSubsampling = 2;
293 image.mPlane[image.U].mOffset = params.nStride * params.nSliceHeight;
294 image.mPlane[image.U].mColInc = 2;
295 image.mPlane[image.U].mRowInc = params.nStride;
296 image.mPlane[image.U].mHorizSubsampling = 2;
297 image.mPlane[image.U].mVertSubsampling = 2;
299 image.mPlane[image.V].mOffset = image.mPlane[image.U].mOffset + 1;
300 image.mPlane[image.V].mColInc = 2;
301 image.mPlane[image.V].mRowInc = params.nStride;
302 image.mPlane[image.V].mHorizSubsampling = 2;
303 image.mPlane[image.V].mVertSubsampling = 2;
360 || img.mPlane[img.Y].mHorizSubsampling != 1
361 || img.mPlane[img.Y].mVertSubsampling != 1) {
366 if (img.mPlane[img.U].mHorizSubsampling == 2
367 && img.mPlane[img.U].mVertSubsampling == 2
368 && img.mPlane[img.V].mHorizSubsampling == 2
369 && img.mPlane[img.V].mVertSubsampling == 2) {