Home
last modified time | relevance | path

Searched refs:videoIn (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/media/module/codecs/m4v_h263/fuzzer/
Dmpeg4_h263_enc_fuzzer.cpp154 VideoEncFrameIO videoIn{}, videoOut{}; in encodeFrames() local
155 videoIn.height = mFrameHeight; in encodeFrames()
156 videoIn.pitch = mFrameWidth; in encodeFrames()
157 videoIn.timestamp = (numFrame * 1000) / mFrameRate; in encodeFrames()
158 videoIn.yChan = inputBuffer; in encodeFrames()
159 videoIn.uChan = videoIn.yChan + videoIn.height * videoIn.pitch; in encodeFrames()
160 videoIn.vChan = videoIn.uChan + ((videoIn.height * videoIn.pitch) >> 2); in encodeFrames()
164 PVEncodeVideoFrame(mEncodeControl, &videoIn, &videoOut, &modTimeMs, outputBuffer, in encodeFrames()
/frameworks/av/media/module/codecs/m4v_h263/enc/test/
DMpeg4H263EncoderTest.cpp170 VideoEncFrameIO videoIn, videoOut; in processEncoder() local
171 videoIn.height = mFrameHeight; in processEncoder()
172 videoIn.pitch = mFrameWidth; in processEncoder()
173 videoIn.timestamp = (numEncodedFrames * 1000) / mFrameRate; // in ms. in processEncoder()
174 videoIn.yChan = mInputBuffer; in processEncoder()
175 videoIn.uChan = videoIn.yChan + videoIn.height * videoIn.pitch; in processEncoder()
176 videoIn.vChan = videoIn.uChan + ((videoIn.height * videoIn.pitch) >> 2); in processEncoder()
180 status = PVEncodeVideoFrame(mEncodeControl, &videoIn, &videoOut, &modTimeMs, mOutputBuffer, in processEncoder()
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
DIfElseFilter.java42 FrameType videoIn = FrameType.image2D(FrameType.ELEMENT_RGBA8888, FrameType.READ_GPU); in getSignature() local
46 .addInputPort("trueResult", Signature.PORT_REQUIRED, videoIn) in getSignature()