HomeSort by relevance Sort by last modified time
    Searched refs:InputSurface (Results 1 - 8 of 8) sorted by null

  /cts/tests/tests/media/src/android/media/cts/
PresentationSyncTest.java 83 // access to any of those things, so just ask our InputSurface to get it from EGL,
86 // Note: InputSurface was intended for a different purpose, but it's 99% right for our
89 InputSurface output = new InputSurface(holder.getSurface());
145 private long runThroughputTest(InputSurface output, long frameTimeNsec, float mult) {
223 InputSurface output = new InputSurface(holder.getSurface());
241 private final InputSurface mOutput;
245 private ChoreographedWrapper(PresentationSyncTest test, InputSurface output,
262 public static void runTest(PresentationSyncTest obj, InputSurface output
    [all...]
InputSurface.java 36 class InputSurface {
37 private static final String TAG = "InputSurface";
51 * Creates an InputSurface from a Surface.
53 public InputSurface(Surface surface) {
MediaCodecTest.java 365 InputSurface inputSurface = null;
374 inputSurface = new InputSurface(encoder.createInputSurface());
375 inputSurface.makeCurrent();
392 inputSurface.swapBuffers();
404 if (inputSurface != null) {
405 inputSurface.release();
431 InputSurface inputSurface = null
    [all...]
DecodeEditEncodeTest.java 191 InputSurface inputSurface = null;
220 inputSurface = new InputSurface(encoder.createInputSurface());
221 inputSurface.makeCurrent();
224 generateVideoData(encoder, inputSurface, output);
232 if (inputSurface != null) {
233 inputSurface.release();
253 private void generateVideoData(MediaCodec encoder, InputSurface inputSurface,
    [all...]
EncodeDecodeTest.java 287 InputSurface inputSurface = null;
293 inputSurface = new InputSurface(
298 mTest.encodeDecodeVideoFromSurfaceToSurface(inputSurface);
304 if (inputSurface != null) {
305 inputSurface.release();
414 private void encodeDecodeVideoFromSurfaceToSurface(InputSurface inSurf) throws Exception {
417 InputSurface inputSurface = inSurf
    [all...]
ExtractDecodeEditEncodeMuxTest.java 324 InputSurface inputSurface = null;
338 inputSurface = new InputSurface(inputSurfaceReference.get());
339 inputSurface.makeCurrent();
370 inputSurface,
465 if (inputSurface != null) {
466 inputSurface.release();
469 Log.e(TAG, "error while releasing inputSurface", e);
641 InputSurface inputSurface
    [all...]
EncodeVirtualDisplayWithCompositionTest.java 611 private InputSurface mEglHelper;
751 mEglHelper = new InputSurface(mSurface);
    [all...]
VideoEncoderTest.java 564 private InputSurface mEncSurface;
586 mEncSurface = new InputSurface(mEncoder.createInputSurface());
    [all...]

Completed in 264 milliseconds