Searched defs:planeIdx (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/media/java/android/media/
H A DImageUtils.java229 private static Size getEffectivePlaneSizeForImage(Image image, int planeIdx) { argument
234 if (planeIdx == 0) {
240 if (planeIdx == 0) {
/frameworks/av/media/ndk/
H A DNdkImage.cpp238 AImage::getPlanePixelStride(int planeIdx, /*out*/int32_t* pixelStride) const { argument
244 if (planeIdx < 0 || planeIdx >= mNumPlanes) {
245 ALOGE("Error: planeIdx %d out of bound [0,%d]",
246 planeIdx, mNumPlanes - 1);
259 *pixelStride = (planeIdx == 0) ? 1 : mLockedBuffer->chromaStep;
262 *pixelStride = (planeIdx == 0) ? 1 : 2;
298 AImage::getPlaneRowStride(int planeIdx, /*out*/int32_t* rowStride) const { argument
304 if (planeIdx < 0 || planeIdx >
415 getPlaneData(int planeIdx, uint8_t** data, int* dataLength) const argument
714 AImage_getPlanePixelStride( const AImage* image, int planeIdx, int32_t* pixelStride) argument
732 AImage_getPlaneRowStride( const AImage* image, int planeIdx, int32_t* rowStride) argument
750 AImage_getPlaneData( const AImage* image, int planeIdx, uint8_t** data, int* dataLength) argument
[all...]

Completed in 143 milliseconds