Searched refs:vin (Results 1 – 1 of 1) sorted by relevance
476 VideoEncFrameIO vin, vout; in getOutput() local477 memset(&vin, 0, sizeof(vin)); in getOutput()479 vin.height = ((mVideoHeight + 15) >> 4) << 4; in getOutput()480 vin.pitch = ((mVideoWidth + 15) >> 4) << 4; in getOutput()481 vin.timestamp = (outBuffer->timeStamp + 500) / 1000; // in ms in getOutput()482 vin.yChan = mInputFrameData; in getOutput()483 vin.uChan = vin.yChan + vin.height * vin.pitch; in getOutput()484 vin.vChan = vin.uChan + ((vin.height * vin.pitch) >> 2); in getOutput()489 if (!PVEncodeVideoFrame(mHandle, &vin, &vout, in getOutput()