Searched refs:videoData (Results 1 – 5 of 5) sorted by relevance
/development/tools/winscope/src/parsers/screen_recording/ |
D | parser_screen_recording.ts | 48 override decodeTrace(videoData: Uint8Array): Array<bigint> { 49 const posVersion = this.searchMagicString(videoData); 51 videoData, 74 videoData, 78 const [posTimestamps, count] = this.parseFramesCount(videoData, posCount); 80 videoData, 100 const videoData = this.traceFile.file; constant 101 return new ScreenRecordingTraceEntry(videoTimeSeconds, videoData); 104 private searchMagicString(videoData: Uint8Array): number { 106 videoData, [all …]
|
D | parser_screen_recording_legacy.ts | 41 override decodeTrace(videoData: Uint8Array): Array<bigint> { 42 const posCount = this.searchMagicString(videoData); 43 const [posTimestamps, count] = this.parseFramesCount(videoData, posCount); 44 return this.parseVideoData(videoData, posTimestamps, count); 59 const videoData = this.traceFile.file; constant 60 return new ScreenRecordingTraceEntry(videoTimeSeconds, videoData); 63 private searchMagicString(videoData: Uint8Array): number { 65 videoData, 76 videoData: Uint8Array, 79 if (pos + 4 > videoData.length) { [all …]
|
/development/tools/winscope/src/trace/ |
D | screen_recording.ts | 20 public videoData: Blob, property in ScreenRecordingTraceEntry
|
/development/tools/winscope/src/viewers/viewer_screen_recording/ |
D | viewer_screen_recording_component.ts | 162 URL.createObjectURL(this.currentTraceEntry.videoData),
|
/development/tools/winscope/src/app/ |
D | trace_pipeline.ts | 170 return (await screenRecording.getEntry(0).getValue()).videoData;
|