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