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

  /hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderVP9Hybrid.cpp 91 mGraphicBufferParam.graphicBufferColorFormat = def_output->format.video.eColorFormat;
92 mGraphicBufferParam.graphicBufferHStride = (def_output->format.video.nFrameWidth + VP9_YV12_ALIGN) & ~VP9_YV12_ALIGN;
93 mGraphicBufferParam.graphicBufferVStride = (def_output->format.video.nFrameHeight + 0x1f) & ~0x1f;
94 mGraphicBufferParam.graphicBufferWidth = def_output->format.video.nFrameWidth;
95 mGraphicBufferParam.graphicBufferHeight = def_output->format.video.nFrameHeight;
107 bufferHStride = mGraphicBufferParam.graphicBufferHStride;
108 bufferVStride = mGraphicBufferParam.graphicBufferVStride;
109 bufferWidth = mGraphicBufferParam.graphicBufferWidth;
110 bufferHeight = mGraphicBufferParam.graphicBufferHeight;
175 mGraphicBufferParam.graphicBufferColorFormat = def_output->format.video.eColorFormat
    [all...]
OMXVideoDecoderBase.cpp 47 memset(&mGraphicBufferParam, 0, sizeof(mGraphicBufferParam));
231 memset(&mGraphicBufferParam, 0, sizeof(mGraphicBufferParam));
518 mGraphicBufferParam.graphicBufferColorFormat = def_output->format.video.eColorFormat;
519 mGraphicBufferParam.graphicBufferHStride = getStride(def_output->format.video.nFrameWidth);
520 mGraphicBufferParam.graphicBufferVStride = (def_output->format.video.nFrameHeight + 0x1f) & ~0x1f;
521 mGraphicBufferParam.graphicBufferWidth = def_output->format.video.nFrameWidth;
522 mGraphicBufferParam.graphicBufferHeight = def_output->format.video.nFrameHeight;
538 p->graphicBufferHStride = mGraphicBufferParam.graphicBufferHStride
    [all...]
OMXVideoDecoderVP9HWR.cpp 257 int surfaceWidth = mGraphicBufferParam.graphicBufferWidth;
258 int surfaceHeight = mGraphicBufferParam.graphicBufferHeight;
259 int surfaceHStride = mGraphicBufferParam.graphicBufferHStride;
260 int surfaceVStride = mGraphicBufferParam.graphicBufferVStride;
261 extNativeBufferSize = mGraphicBufferParam.graphicBufferHStride *
262 mGraphicBufferParam.graphicBufferVStride * 1.5;
362 memset(&mGraphicBufferParam, 0, sizeof(mGraphicBufferParam));
525 if (width <= mGraphicBufferParam.graphicBufferWidth &&
526 height <= mGraphicBufferParam.graphicBufferHeight)
    [all...]
OMXVideoDecoderBase.h 138 GraphicBufferParam mGraphicBufferParam;

Completed in 690 milliseconds