| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Test OPUS Decoding</title> | 4 <title>Test OPUS Decoding</title> |
| 5 <script src="../../resources/audio-codec-test.js"></script> | 5 <script src="../../resources/audio-codec-test.js"></script> |
| 6 <script src="../../resources/audit-util.js"></script> |
| 6 <script src="../../resources/audio-testing.js"></script> | 7 <script src="../../resources/audio-testing.js"></script> |
| 7 <script src="../../resources/buffer-loader.js"></script> | 8 <script src="../../resources/buffer-loader.js"></script> |
| 8 </head> | 9 </head> |
| 9 | 10 |
| 10 <body> | 11 <body> |
| 11 <script> | 12 <script> |
| 12 var url = "opus-test.opus"; | 13 var url = "opus-test.opus"; |
| 13 | 14 |
| 14 window.onload = function () { runDecodingTest(url, 48000) }; | 15 window.onload = function () { runDecodingTest(url, 48000) }; |
| 15 </script> | 16 </script> |
| 16 </body> | 17 </body> |
| 17 </html> | 18 </html> |
| OLD | NEW |