HomeSort by relevance Sort by last modified time
    Searched defs:outputSurface (Results 1 - 5 of 5) sorted by null

  /cts/tests/tests/media/src/android/media/cts/
EncodeVirtualDisplayTest.java 205 OutputSurface outputSurface = null;
237 outputSurface = new OutputSurface(sWidth, sHeight);
238 decoder.configure(decoderFormat, outputSurface.getSurface(), null, 0);
246 doTestEncodeVirtual(encoder, decoder, outputSurface);
253 if (outputSurface != null) {
254 outputSurface.release();
271 OutputSurface outputSurface) {
    [all...]
EncodeDecodeTest.java 362 OutputSurface outputSurface = null;
390 outputSurface = new OutputSurface(mWidth, mHeight);
396 decoder.configure(format, outputSurface.getSurface(), null, 0);
406 doEncodeDecodeVideoFromSurfaceToSurface(encoder, inputSurface, decoder, outputSurface);
412 if (outputSurface != null) {
413 outputSurface.release();
497 OutputSurface outputSurface = null
    [all...]
DecodeEditEncodeTest.java 392 OutputSurface outputSurface = null;
417 // OutputSurface uses the EGL context created by InputSurface.
419 outputSurface = new OutputSurface();
420 outputSurface.changeFragmentShader(FRAGMENT_SHADER);
421 decoder.configure(inputFormat, outputSurface.getSurface(), null, 0);
424 editVideoData(inputData, decoder, outputSurface, inputSurface, encoder, outputData);
427 if (outputSurface != null) {
428 outputSurface.release()
    [all...]
ExtractDecodeEditEncodeMuxTest.java 306 OutputSurface outputSurface = null;
330 outputSurface = new OutputSurface();
331 outputSurface.changeFragmentShader(FRAGMENT_SHADER);
332 videoDecoder = createVideoDecoder(mcl, inputFormat, outputSurface.getSurface());
360 outputSurface);
400 if (outputSurface != null) {
401 outputSurface.release();
404 Log.e(TAG, "error while releasing outputSurface", e)
    [all...]
MediaCodecTest.java 588 OutputSurface outputSurface = null;
592 outputSurface = new OutputSurface(1, 1);
603 mediaCodec.configure(mediaFormat, outputSurface.getSurface(), null, 0);
643 outputSurface.awaitNewImage();
661 if (outputSurface != null) {
662 outputSurface.release();
    [all...]

Completed in 122 milliseconds