OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script type="text/javascript" src="webrtc_test_utilities.js"></script> | 3 <script type="text/javascript" src="webrtc_test_utilities.js"></script> |
4 <script type="text/javascript" src="webrtc_test_audio.js"></script> | 4 <script type="text/javascript" src="webrtc_test_audio.js"></script> |
5 <script type="text/javascript"> | 5 <script type="text/javascript"> |
6 $ = function(id) { | 6 $ = function(id) { |
7 return document.getElementById(id); | 7 return document.getElementById(id); |
8 }; | 8 }; |
9 | 9 |
10 var gFirstConnection = null; | 10 var gFirstConnection = null; |
(...skipping 894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
905 var remoteStreamUrl = URL.createObjectURL(e.stream); | 905 var remoteStreamUrl = URL.createObjectURL(e.stream); |
906 var remoteVideo = $(target); | 906 var remoteVideo = $(target); |
907 remoteVideo.src = remoteStreamUrl; | 907 remoteVideo.src = remoteStreamUrl; |
908 } | 908 } |
909 | 909 |
910 </script> | 910 </script> |
911 </head> | 911 </head> |
912 <body> | 912 <body> |
913 <table border="0"> | 913 <table border="0"> |
914 <tr> | 914 <tr> |
915 <td>Local Preview</td> | 915 <td><video width="320" height="240" id="local-view" style="display:none" |
916 <td>Remote Stream for Connection 1</td> | 916 autoplay muted></video></td> |
917 <td>Remote Stream for Connection 2</td> | 917 <td><video width="320" height="240" id="remote-view-1" |
918 <td>Remote Stream for Connection 3</td> | 918 style="display:none" autoplay></video></td> |
919 <td>Remote Stream for Connection 4</td> | 919 <td><video width="320" height="240" id="remote-view-2" |
920 </tr> | 920 style="display:none" autoplay></video></td> |
921 <tr> | 921 <td><video width="320" height="240" id="remote-view-3" |
922 <td><video width="320" height="240" id="local-view" autoplay muted> | 922 style="display:none" autoplay></video></td> |
923 </video></td> | 923 <td><video width="320" height="240" id="remote-view-4" |
924 <td><video width="320" height="240" id="remote-view-1" autoplay> | 924 style="display:none" autoplay></video></td> |
925 </video></td> | |
926 <td><video width="320" height="240" id="remote-view-2" autoplay> | |
927 </video></td> | |
928 <td><video width="320" height="240" id="remote-view-3" autoplay> | |
929 </video></td> | |
930 <td><video width="320" height="240" id="remote-view-4" autoplay> | |
931 </video></td> | |
932 <!-- Canvases are named after their corresponding video elements. --> | 925 <!-- Canvases are named after their corresponding video elements. --> |
933 <td><canvas width="320" height="240" id="remote-view-1-canvas" | 926 <td><canvas width="320" height="240" id="remote-view-1-canvas" |
934 style="display:none"></canvas></td> | 927 style="display:none"></canvas></td> |
935 <td><canvas width="320" height="240" id="remote-view-2-canvas" | 928 <td><canvas width="320" height="240" id="remote-view-2-canvas" |
936 style="display:none"></canvas></td> | 929 style="display:none"></canvas></td> |
937 <td><canvas width="320" height="240" id="remote-view-3-canvas" | 930 <td><canvas width="320" height="240" id="remote-view-3-canvas" |
938 style="display:none"></canvas></td> | 931 style="display:none"></canvas></td> |
939 <td><canvas width="320" height="240" id="remote-view-4-canvas" | 932 <td><canvas width="320" height="240" id="remote-view-4-canvas" |
940 style="display:none"></canvas></td> | 933 style="display:none"></canvas></td> |
941 </tr> | 934 </tr> |
942 </table> | 935 </table> |
943 </body> | 936 </body> |
944 </html> | 937 </html> |
OLD | NEW |