Home | History | Annotate | Download | only in videodecoder

Lines Matching refs:mVideoFormatInfo

67     memset(&mVideoFormatInfo, 0, sizeof(VideoFormatInfo));
74 mVideoFormatInfo.mimeType = strdup(mimeType);
90 free(mVideoFormatInfo.mimeType);
133 mVideoFormatInfo.width = buffer->width;
134 mVideoFormatInfo.height = buffer->height;
136 mVideoFormatInfo.surfaceWidth = buffer->graphicBufferWidth;
137 mVideoFormatInfo.surfaceHeight = buffer->graphicBufferHeight;
163 mVideoFormatInfo.width = buffer->width;
164 mVideoFormatInfo.height = buffer->height;
166 mVideoFormatInfo.surfaceWidth = buffer->graphicBufferWidth;
167 mVideoFormatInfo.surfaceHeight = buffer->graphicBufferHeight;
169 mVideoFormatInfo.actualBufferNeeded = mConfigBuffer.surfaceNumber;
199 mVideoFormatInfo.valid = false;
273 return &mVideoFormatInfo;
794 if (mVideoFormatInfo.actualBufferNeeded > mConfigBuffer.surfaceNumber - mConfigBuffer.vppBufferNum)
796 if (mVideoFormatInfo.actualBufferNeeded > mConfigBuffer.surfaceNumber)
804 if (mStoreMetaData || (!mStoreMetaData && (mVideoFormatInfo.surfaceWidth < mVideoFormatInfo.width || mVideoFormatInfo.surfaceHeight < mVideoFormatInfo.height))) {
891 setColorSpaceInfo(mVideoFormatInfo.colorMatrix, mVideoFormatInfo.videoRange);
914 mVASurfaceAttrib->width = mVideoFormatInfo.surfaceWidth;
915 mVASurfaceAttrib->height = mVideoFormatInfo.surfaceHeight;
948 mVideoFormatInfo.surfaceWidth,
949 mVideoFormatInfo.surfaceHeight,
959 mVideoFormatInfo.width,
960 mVideoFormatInfo.height,
965 mVideoFormatInfo.surfaceWidth = mVideoFormatInfo.width;
966 mVideoFormatInfo.surfaceHeight = mVideoFormatInfo.height;
974 mVideoFormatInfo.surfaceWidth,
975 mVideoFormatInfo.surfaceHeight,
983 mVideoFormatInfo.surfaceNumber = mNumSurfaces;
984 mVideoFormatInfo.ctxSurfaces = mSurfaces;
992 mVideoFormatInfo.surfaceWidth,
993 mVideoFormatInfo.surfaceHeight,
1002 mVideoFormatInfo.surfaceWidth,
1003 mVideoFormatInfo.surfaceHeight,
1013 mVideoFormatInfo.surfaceWidth,
1014 mVideoFormatInfo.surfaceHeight,
1173 mSurfaceBuffers[i].mappedData->width = mVideoFormatInfo.width;
1174 mSurfaceBuffers[i].mappedData->height = mVideoFormatInfo.height;
1182 image.width != mVideoFormatInfo.width ||
1183 image.height != mVideoFormatInfo.height ||
1219 uint32_t cropWidth = mVideoFormatInfo.width - (mVideoFormatInfo.cropLeft + mVideoFormatInfo.cropRight);
1220 uint32_t cropHeight = mVideoFormatInfo.height - (mVideoFormatInfo.cropBottom + mVideoFormatInfo.cropTop);
1221 if (strcasecmp(mVideoFormatInfo.mimeType,"video/avc") == 0 ||
1222 strcasecmp(mVideoFormatInfo.mimeType,"video/h264") == 0) {
1223 cropHeight = mVideoFormatInfo.height;
1224 cropWidth = mVideoFormatInfo.width;
1327 surfExtBuf.width = mVideoFormatInfo.surfaceWidth;
1328 surfExtBuf.height = mVideoFormatInfo.surfaceHeight;
1360 mVideoFormatInfo.surfaceWidth,
1361 mVideoFormatInfo.surfaceHeight,
1651 rect.x = mVideoFormatInfo.cropLeft;
1652 rect.y = mVideoFormatInfo.cropTop;
1653 rect.width = mVideoFormatInfo.width - (mVideoFormatInfo.cropLeft + mVideoFormatInfo.cropRight);
1654 rect.height = mVideoFormatInfo.height - (mVideoFormatInfo.cropBottom + mVideoFormatInfo.cropTop);
1655 if (strcasecmp(mVideoFormatInfo.mimeType,"video/avc") == 0 ||
1656 strcasecmp(mVideoFormatInfo.mimeType,"video/h264") == 0) {
1657 rect.height = mVideoFormatInfo.height;
1658 rect.width = mVideoFormatInfo.width;
1682 if (mVideoFormatInfo.width < 1280 && mVideoFormatInfo.height < 720)