Searched refs:frames (Results 1 – 4 of 4) sorted by relevance
/cts/apps/CameraITS/tests/sensor_fusion/ |
D | test_sensor_fusion.py | 80 events, frames = collect_data() 82 events, frames = load_data() 101 cam_rots = get_cam_rotations(frames) 247 def get_cam_rotations(frames): argument 260 for frame in frames: 277 frame = frames[i] 312 frames = [] 316 frames.append(numpy.array(img).reshape(h,w,3) / 255.0) 317 return events, frames 363 frames = [] [all …]
|
/cts/tests/tests/textureview/src/android/textureview/cts/ |
D | GLProducerThread.java | 59 int frames, int delayMs, Semaphore semaphore) { in GLProducerThread() argument 61 mFrames = frames; in GLProducerThread() 68 GLProducerThread(SurfaceTexture surfaceTexture, GLRenderer renderer, int frames, int delayMs, in GLProducerThread() argument 70 this(surfaceTexture, renderer, null, frames, delayMs, semaphore); in GLProducerThread()
|
/cts/tests/tests/media/src/android/media/cts/ |
D | AdaptivePlaybackTest.java | 553 int frames = mDecoder.queueInputBufferRange( in addTests() 560 if (lastSequence && frames >= 0) { in addTests() 561 warn("did not receive EOS, received " + frames + " frames"); in addTests() 562 } else if (!lastSequence && frames < 0) { in addTests() 563 warn("received EOS, received " + (-frames) + " frames"); in addTests() 568 mDecodedFrames += Math.abs(frames); in addTests() 707 int frames = mDecoder.queueInputBufferRange( 714 if (lastSequence && frames >= 0) { 715 warn("did not receive EOS, received " + frames + " frames"); 716 } else if (!lastSequence && frames < 0) { [all …]
|
D | Vp8CodecTestBase.java | 1764 int frames = 0; in computeEncodingStatistics() local 1787 frames++; in computeEncodingStatistics() 1830 Log.d(TAG, " Frames: " + frames + ". Duration: " + duration + in computeEncodingStatistics() 1922 int frames = 0; in computeDecodingStatistics() local 1969 minimumPSNRFrameIndex = frames; in computeDecodingStatistics() 1973 frames, curYPSNR, curUPSNR, curVPSNR); in computeDecodingStatistics() 1976 frames++; in computeDecodingStatistics() 1979 averageYPSNR /= frames; in computeDecodingStatistics() 1980 averageUPSNR /= frames; in computeDecodingStatistics() 1981 averageVPSNR /= frames; in computeDecodingStatistics() [all …]
|