OLD | NEW |
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>WebRTC PeerConnection Manual Test</title> | 4 <title>WebRTC PeerConnection Manual Test</title> |
5 <!-- Load the polyfill to switch-hit between Chrome and Firefox --> | 5 <!-- Load the polyfill to switch-hit between Chrome and Firefox --> |
6 <script src="../adapter.js"></script> | 6 <script src="../adapter.js"></script> |
7 <script src="../test_functions.js"></script> | 7 <script src="../test_functions.js"></script> |
8 <script src="../message_handling.js"></script> | 8 <script src="../message_handling.js"></script> |
9 <script src="../getusermedia.js"></script> | 9 <script src="../getusermedia.js"></script> |
10 <script src="../jsep01_call.js"></script> | 10 <script src="../jsep01_call.js"></script> |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 DTMF Sender: | 102 DTMF Sender: |
103 <button onclick="createDtmfSenderFromHere();">Create</button> | 103 <button onclick="createDtmfSenderFromHere();">Create</button> |
104 tones: | 104 tones: |
105 <input type="text" id="dtmf-tones" size="10" value="123,abc" /> | 105 <input type="text" id="dtmf-tones" size="10" value="123,abc" /> |
106 duration(ms): | 106 duration(ms): |
107 <input type="text" id="dtmf-tones-duration" size="10" value="100" /> | 107 <input type="text" id="dtmf-tones-duration" size="10" value="100" /> |
108 gap(ms): | 108 gap(ms): |
109 <input type="text" id="dtmf-tones-gap" size="10" value="50" /> | 109 <input type="text" id="dtmf-tones-gap" size="10" value="50" /> |
110 <button onclick="insertDtmfFromHere();">Send</button><br/> | 110 <button onclick="insertDtmfFromHere();">Send</button><br/> |
111 Options: | 111 Options: |
112 <input type="checkbox" id="force-opus" onclick="forceOpusChanged();"/> | 112 <input type="checkbox" id="force-isac" onclick="forceIsacChanged();"/> |
113 Force Opus in Outgoing SDP<br/> | 113 Force iSAC in Outgoing SDP<br/> |
114 <button onclick="clearLog();">Clear Logs</button> | 114 <button onclick="clearLog();">Clear Logs</button> |
115 | 115 |
116 <h2>Messages</h2> | 116 <h2>Messages</h2> |
117 <pre id="messages"></pre> | 117 <pre id="messages"></pre> |
118 </div> | 118 </div> |
119 | 119 |
120 <div id="right-half"> | 120 <div id="right-half"> |
121 | 121 |
122 <div> | 122 <div> |
123 <h2>Remote Video</h2> | 123 <h2>Remote Video</h2> |
(...skipping 26 matching lines...) Expand all Loading... |
150 </textarea> | 150 </textarea> |
151 | 151 |
152 <h2>Debug</h2> | 152 <h2>Debug</h2> |
153 <pre id="debug"></pre> | 153 <pre id="debug"></pre> |
154 </div> | 154 </div> |
155 </div> | 155 </div> |
156 </div> | 156 </div> |
157 | 157 |
158 </body> | 158 </body> |
159 </html> | 159 </html> |
OLD | NEW |