Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3221)

Unified Diff: chrome/test/data/webrtc/webrtc_video_quality_test_hd.html

Issue 254803002: Making webrtc video quality test page generic (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/data/webrtc/webrtc_video_quality_test.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/webrtc/webrtc_video_quality_test_hd.html
diff --git a/chrome/test/data/webrtc/webrtc_video_quality_test_hd.html b/chrome/test/data/webrtc/webrtc_video_quality_test_hd.html
deleted file mode 100644
index d6d57ea2418164ead57bc019e7b67c6a64a5fb46..0000000000000000000000000000000000000000
--- a/chrome/test/data/webrtc/webrtc_video_quality_test_hd.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html>
-<head>
- <title>WebRTC Automated Test</title>
- <script type="text/javascript" src="adapter.js"></script>
- <script type="text/javascript" src="test_functions.js"></script>
- <script type="text/javascript" src="message_handling.js"></script>
- <script type="text/javascript" src="getusermedia.js"></script>
- <script type="text/javascript" src="jsep01_call.js"></script>
- <script type="text/javascript" src="video_extraction.js"></script>
-</head>
-<body>
- <table border="0">
- <tr>
- <td>Local Preview</td>
- <td>Remote Video</td>
- </tr>
- <tr>
- <td>
- <video width="1280" height="720" id="local-view"
- autoplay="autoplay"></video>
- </td>
- <td>
- <!-- startFrameCapture() takes 5 parameters:
- 1. width: width of the video/canvas area.
- 2. height: height of the video area.
- 3. canvas_height: Height of the canvas.
- 4. fps: fps at which we would like to sample.
- 5. duration: The duration of the capturing. -->
- <video width="1280" height="720" id="remote-view"
- autoplay="autoplay" onplay="startFrameCapture(1280,720,720,30,5)">
- </video>
- </td>
- </tr>
- <tr>
- <td></td>
- <td>
- <div id="output" style="display: inline-block;
- position: relative; width: 1280; height: 720">
- <!-- Canvas height should be equal to video height if we want to
- capture the whole frames. If we only want to capture the barcode,
- canvas height should equal the barcode height. -->
- <canvas id="remote-canvas" width="1280" height="720"></canvas>
- </div>
- </td>
- </tr>
- </table>
-</body>
-</html>
« no previous file with comments | « chrome/test/data/webrtc/webrtc_video_quality_test.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698