Lines Matching refs:mVideoFormatInfo
132 mVideoFormatInfo.flags = 0;
152 mVideoFormatInfo.flags |= IS_SINGLE_FIELD;
707 if(mVideoFormatInfo.surfaceHeight == 1088 && DPBSize + AVC_EXTRA_SURFACE_NUMBER > 19) {
732 mVideoFormatInfo.width, mVideoFormatInfo.height, width, height);
738 if ((mVideoFormatInfo.width != width ||
739 mVideoFormatInfo.height != height) &&
741 if (VideoDecoderBase::alignMB(mVideoFormatInfo.width) != width ||
742 VideoDecoderBase::alignMB(mVideoFormatInfo.height) != height) {
746 mVideoFormatInfo.width = width;
747 mVideoFormatInfo.height = height;
751 mVideoFormatInfo.videoRange = data->codec_data->video_full_range_flag;
755 mVideoFormatInfo.colorMatrix = VA_SRC_BT709;
762 mVideoFormatInfo.colorMatrix = VA_SRC_BT601;
767 mVideoFormatInfo.colorMatrix = 0;
770 mVideoFormatInfo.aspectX = data->codec_data->sar_width;
771 mVideoFormatInfo.aspectY = data->codec_data->sar_height;
772 mVideoFormatInfo.bitrate = data->codec_data->bit_rate;
773 mVideoFormatInfo.cropLeft = data->codec_data->crop_left;
774 mVideoFormatInfo.cropRight = data->codec_data->crop_right;
775 mVideoFormatInfo.cropTop = data->codec_data->crop_top;
776 mVideoFormatInfo.cropBottom = data->codec_data->crop_bottom;
785 mVideoFormatInfo.actualBufferNeeded = mConfigBuffer.surfaceNumber;
790 mVideoFormatInfo.actualBufferNeeded = mOutputWindowSize + NW_CONSUMED /* Owned by native window */
799 ITRACE("actualBufferNeeded =%d", mVideoFormatInfo.actualBufferNeeded);
804 || (mVideoFormatInfo.actualBufferNeeded > mConfigBuffer.surfaceNumber)) {
805 mVideoFormatInfo.valid = false;
807 mVideoFormatInfo.valid = true;
812 mVideoFormatInfo.valid = true;
816 setColorSpaceInfo(mVideoFormatInfo.colorMatrix, mVideoFormatInfo.videoRange);
834 mVideoFormatInfo.actualBufferNeeded += WIDI_CONSUMED;
836 ITRACE("WiDi is enabled, actual buffer needed is %d", mVideoFormatInfo.actualBufferNeeded);
861 || (mVideoFormatInfo.actualBufferNeeded > mConfigBuffer.surfaceNumber);
863 needFlush = (mVideoFormatInfo.width > mVideoFormatInfo.surfaceWidth)
864 || (mVideoFormatInfo.height > mVideoFormatInfo.surfaceHeight)
866 || (mVideoFormatInfo.actualBufferNeeded > mConfigBuffer.surfaceNumber);
997 if (cfgAttribs[0].value * cfgAttribs[1].value < (uint32_t)mVideoFormatInfo.width * (uint32_t)mVideoFormatInfo.height) {
999 cfgAttribs[0].value, cfgAttribs[1].value, mVideoFormatInfo.width, mVideoFormatInfo.height);