Searched defs:mRowInc (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/include/media/hardware/
H A DVideoAPI.h50 uint32_t mRowInc; // row increment in bytes member in struct:android::MediaImage::PlaneInfo
92 int32_t mRowInc; // row increment in bytes member in struct:android::PlaneInfo
/frameworks/av/media/libstagefright/codec2/include/
H A DC2Buffer.h830 int32_t mRowInc; // row increment in bytes. may be negative member in namespace:android
842 if (height > 0 && mRowInc < 0) {
843 offs += mRowInc * (ssize_t)(height - 1);
853 if (height > 0 && mRowInc > 0) {
854 offs += mRowInc * (ssize_t)(height - 1);
/frameworks/base/media/java/android/media/
H A DMediaCodec.java3634 mRowInc = rowInc;
3641 return mRowInc;
3657 private final int mRowInc; field in class:MediaCodec.MediaImage.MediaPlane

Completed in 1183 milliseconds