HomeSort by relevance Sort by last modified time
    Searched refs:rowInc (Results 1 - 11 of 11) sorted by null

  /cts/tests/tests/media/libmediandkjni/
codec-utils-jni.cpp 54 ssize_t rowInc;
220 img->plane[ix].rowInc = env->CallIntMethod(plane.get(), gFields.methodRowStride);
229 + (img->crop.top >> yDecim) * img->plane[ix].rowInc;
239 (((img->height + (1 << yDecim) - 1) >> yDecim) - 1) * img->plane[ix].rowInc;
271 row += img->plane[ix].rowInc;
299 row += img->plane[ix].rowInc;
331 tgt->plane[0].rowInc, tgt->plane[0].colInc,
332 tgt->plane[1].rowInc, tgt->plane[1].colInc,
333 tgt->plane[2].rowInc, tgt->plane[2].colInc,
337 src->plane[0].rowInc, src->plane[0].colInc
    [all...]
  /hardware/google/av/media/sfplugin/utils/
Codec2BufferUtils.cpp 100 viewRow += plane.rowInc;
264 pRed += layout.planes[C2PlanarLayout::PLANE_R].rowInc;
265 pGreen += layout.planes[C2PlanarLayout::PLANE_G].rowInc;
266 pBlue += layout.planes[C2PlanarLayout::PLANE_B].rowInc;
  /frameworks/base/media/java/android/media/
MediaCodec.java     [all...]
  /hardware/google/av/codec2/include/
C2Buffer.h     [all...]
  /hardware/google/av/media/codecs/mpeg4_h263/
C2SoftMpeg4Enc.cpp 401 int32_t yStride = layout.planes[C2PlanarLayout::PLANE_Y].rowInc;
402 int32_t uStride = layout.planes[C2PlanarLayout::PLANE_U].rowInc;
403 int32_t vStride = layout.planes[C2PlanarLayout::PLANE_V].rowInc;
  /hardware/google/av/media/codecs/vpx/
C2SoftVpxEnc.cpp 479 raw_frame.stride[0] = layout.planes[layout.PLANE_Y].rowInc;
480 raw_frame.stride[1] = layout.planes[layout.PLANE_U].rowInc;
481 raw_frame.stride[2] = layout.planes[layout.PLANE_V].rowInc;
  /external/v4l2_codec2/
C2VDAComponent.cpp 746 ALOGV("plane %u: stride: %d, offset: %u", i, layout.planes[i].rowInc, offsets[i]);
763 CHECK_GT(layout.planes[i].rowInc, 0);
764 passedPlanes.push_back({offsets[i], static_cast<uint32_t>(layout.planes[i].rowInc)});
    [all...]
  /hardware/google/av/media/codecs/avc/
C2SoftAvcEnc.cpp 939 int32_t yStride = layout.planes[C2PlanarLayout::PLANE_Y].rowInc;
940 int32_t uStride = layout.planes[C2PlanarLayout::PLANE_U].rowInc;
941 int32_t vStride = layout.planes[C2PlanarLayout::PLANE_V].rowInc;
    [all...]
  /hardware/google/av/media/sfplugin/
Codec2Buffer.cpp 279 planeSize += std::abs(plane.rowInc) * align(mHeight, 64)
291 mediaImage->mPlane[i].mRowInc = plane.rowInc;
  /hardware/google/av/codec2/tests/vndk/
C2BufferTest.cpp 431 int32_t rowOffset = (row + rect.top / info.rowSampling) * info.rowInc;
441 int32_t rowOffset = (row + rect.top / info.rowSampling) * info.rowInc;
    [all...]
  /hardware/google/av/codec2/vndk/
C2Buffer.cpp 881 + (ssize_t)crop.top * mLayout.planes[planeIx].rowInc;
    [all...]

Completed in 458 milliseconds