Home
last modified time | relevance | path

Searched refs:video (Results 1 – 7 of 7) sorted by relevance

/development/tools/winscope/src/test/e2e/
Dviewer_screen_recording_test.ts36 const video = element(by.css('viewer-screen-recording video')); constant
37 expect(await video.isPresent()).toBeTruthy();
38 expect(await video.getAttribute('src')).toContain('blob:');
39 expect(await video.getAttribute('currentTime')).toBeCloseTo(0, 0.001);
/development/tools/winscope/src/viewers/viewer_screen_recording/
Dviewer_screen_recording_component.ts168 const video: HTMLVideoElement | null = constant
171 if (video) {
186 if (video?.className.includes('ready')) {
187 this.frameHeight = video?.videoHeight;
188 this.frameWidth = video?.videoWidth;
196 this.videoObserver.observe(video, config);
/development/tools/winscope/src/app/
Dtrace_pipeline_test.ts319 const video = await tracePipeline.getScreenRecordingVideo(); constant
320 expect(video).toBeDefined();
321 expect(video?.size).toBeGreaterThan(0);
329 const video = await tracePipeline.getScreenRecordingVideo(); constant
330 expect(video).toBeDefined();
331 expect(video?.size).toBeGreaterThan(0);
346 const video = await tracePipeline.getScreenRecordingVideo(); constant
347 expect(video).toBeDefined();
348 expect(video?.size).toBeGreaterThan(0);
/development/samples/browseable/Camera2Video/
D_index.jd8 This sample demonstrates how to record video using Camera2 API.
/development/samples/browseable/BasicMediaDecoder/
D_index.jd8 This activity uses a TextureView to render the frames of a video decoded using the
/development/samples/browseable/MediaEffects/
D_index.jd11 video streams.
/development/samples/browseable/Camera2Video/src/com.example.android.camera2video/
DCamera2VideoFragment.java285 mButtonVideo = (Button) view.findViewById(R.id.video); in onViewCreated()
311 case R.id.video: { in onClick()