1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135
|
/*
* Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "core/html/HTMLMediaElement.h"
#include "bindings/core/v8/ExceptionState.h"
#include "bindings/core/v8/Microtask.h"
#include "bindings/core/v8/ScriptController.h"
#include "bindings/core/v8/ScriptEventListener.h"
#include "bindings/core/v8/ScriptPromiseResolver.h"
#include "core/HTMLNames.h"
#include "core/css/MediaList.h"
#include "core/dom/Attribute.h"
#include "core/dom/DOMException.h"
#include "core/dom/ElementTraversal.h"
#include "core/dom/ElementVisibilityObserver.h"
#include "core/dom/Fullscreen.h"
#include "core/dom/TaskRunnerHelper.h"
#include "core/dom/shadow/ShadowRoot.h"
#include "core/events/Event.h"
#include "core/frame/FrameView.h"
#include "core/frame/LocalFrame.h"
#include "core/frame/Settings.h"
#include "core/frame/UseCounter.h"
#include "core/frame/csp/ContentSecurityPolicy.h"
#include "core/html/AutoplayUmaHelper.h"
#include "core/html/HTMLMediaSource.h"
#include "core/html/HTMLSourceElement.h"
#include "core/html/HTMLTrackElement.h"
#include "core/html/MediaError.h"
#include "core/html/MediaFragmentURIParser.h"
#include "core/html/TimeRanges.h"
#include "core/html/shadow/MediaControls.h"
#include "core/html/track/AudioTrack.h"
#include "core/html/track/AudioTrackList.h"
#include "core/html/track/AutomaticTrackSelection.h"
#include "core/html/track/CueTimeline.h"
#include "core/html/track/InbandTextTrack.h"
#include "core/html/track/TextTrackContainer.h"
#include "core/html/track/TextTrackList.h"
#include "core/html/track/VideoTrack.h"
#include "core/html/track/VideoTrackList.h"
#include "core/inspector/ConsoleMessage.h"
#include "core/layout/IntersectionGeometry.h"
#include "core/layout/LayoutMedia.h"
#include "core/layout/api/LayoutViewItem.h"
#include "core/layout/compositing/PaintLayerCompositor.h"
#include "core/loader/FrameLoader.h"
#include "core/loader/FrameLoaderClient.h"
#include "core/page/ChromeClient.h"
#include "core/page/NetworkStateNotifier.h"
#include "platform/Histogram.h"
#include "platform/LayoutTestSupport.h"
#include "platform/RuntimeEnabledFeatures.h"
#include "platform/UserGestureIndicator.h"
#include "platform/audio/AudioBus.h"
#include "platform/audio/AudioSourceProviderClient.h"
#include "platform/graphics/GraphicsLayer.h"
#include "platform/mediastream/MediaStreamDescriptor.h"
#include "platform/network/mime/ContentType.h"
#include "platform/network/mime/MIMETypeFromURL.h"
#include "platform/weborigin/SecurityOrigin.h"
#include "public/platform/Platform.h"
#include "public/platform/WebAudioSourceProvider.h"
#include "public/platform/WebContentDecryptionModule.h"
#include "public/platform/WebInbandTextTrack.h"
#include "public/platform/WebMediaPlayerSource.h"
#include "public/platform/WebMediaStream.h"
#include "public/platform/modules/remoteplayback/WebRemotePlaybackAvailability.h"
#include "public/platform/modules/remoteplayback/WebRemotePlaybackClient.h"
#include "public/platform/modules/remoteplayback/WebRemotePlaybackState.h"
#include "wtf/AutoReset.h"
#include "wtf/CurrentTime.h"
#include "wtf/MathExtras.h"
#include "wtf/PtrUtil.h"
#include "wtf/text/CString.h"
#include <limits>
#ifndef BLINK_MEDIA_LOG
#define BLINK_MEDIA_LOG DVLOG(3)
#endif
#ifndef LOG_MEDIA_EVENTS
// Default to not logging events because so many are generated they can
// overwhelm the rest of the logging.
#define LOG_MEDIA_EVENTS 0
#endif
#ifndef LOG_OFFICIAL_TIME_STATUS
// Default to not logging status of official time because it adds a fair amount
// of overhead and logging.
#define LOG_OFFICIAL_TIME_STATUS 0
#endif
namespace blink {
using namespace HTMLNames;
using WeakMediaElementSet = HeapHashSet<WeakMember<HTMLMediaElement>>;
using DocumentElementSetMap =
HeapHashMap<WeakMember<Document>, Member<WeakMediaElementSet>>;
namespace {
constexpr float kMostlyFillViewportThreshold = 0.85f;
constexpr double kMostlyFillViewportBecomeStableSeconds = 5;
constexpr double kCheckViewportIntersectionIntervalSeconds = 1;
enum MediaControlsShow {
MediaControlsShowAttribute = 0,
MediaControlsShowFullscreen,
MediaControlsShowNoScript,
MediaControlsShowNotShown,
MediaControlsShowMax
};
String urlForLoggingMedia(const KURL& url) {
static const unsigned maximumURLLengthForLogging = 128;
if (url.getString().length() < maximumURLLengthForLogging)
return url.getString();
return url.getString().substring(0, maximumURLLengthForLogging) + "...";
}
const char* boolString(bool val) {
return val ? "true" : "false";
}
DocumentElementSetMap& documentToElementSetMap() {
DEFINE_STATIC_LOCAL(DocumentElementSetMap, map, (new DocumentElementSetMap));
return map;
}
void addElementToDocumentMap(HTMLMediaElement* element, Document* document) {
DocumentElementSetMap& map = documentToElementSetMap();
WeakMediaElementSet* set = nullptr;
auto it = map.find(document);
if (it == map.end()) {
set = new WeakMediaElementSet;
map.add(document, set);
} else {
set = it->value;
}
set->add(element);
}
void removeElementFromDocumentMap(HTMLMediaElement* element,
Document* document) {
DocumentElementSetMap& map = documentToElementSetMap();
auto it = map.find(document);
DCHECK(it != map.end());
WeakMediaElementSet* set = it->value;
set->remove(element);
if (set->isEmpty())
map.remove(it);
}
class AudioSourceProviderClientLockScope {
STACK_ALLOCATED();
public:
AudioSourceProviderClientLockScope(HTMLMediaElement& element)
: m_client(element.audioSourceNode()) {
if (m_client)
m_client->lock();
}
~AudioSourceProviderClientLockScope() {
if (m_client)
m_client->unlock();
}
private:
Member<AudioSourceProviderClient> m_client;
};
const AtomicString& AudioKindToString(
WebMediaPlayerClient::AudioTrackKind kind) {
switch (kind) {
case WebMediaPlayerClient::AudioTrackKindNone:
return emptyAtom;
case WebMediaPlayerClient::AudioTrackKindAlternative:
return AudioTrack::alternativeKeyword();
case WebMediaPlayerClient::AudioTrackKindDescriptions:
return AudioTrack::descriptionsKeyword();
case WebMediaPlayerClient::AudioTrackKindMain:
return AudioTrack::mainKeyword();
case WebMediaPlayerClient::AudioTrackKindMainDescriptions:
return AudioTrack::mainDescriptionsKeyword();
case WebMediaPlayerClient::AudioTrackKindTranslation:
return AudioTrack::translationKeyword();
case WebMediaPlayerClient::AudioTrackKindCommentary:
return AudioTrack::commentaryKeyword();
}
NOTREACHED();
return emptyAtom;
}
const AtomicString& VideoKindToString(
WebMediaPlayerClient::VideoTrackKind kind) {
switch (kind) {
case WebMediaPlayerClient::VideoTrackKindNone:
return emptyAtom;
case WebMediaPlayerClient::VideoTrackKindAlternative:
return VideoTrack::alternativeKeyword();
case WebMediaPlayerClient::VideoTrackKindCaptions:
return VideoTrack::captionsKeyword();
case WebMediaPlayerClient::VideoTrackKindMain:
return VideoTrack::mainKeyword();
case WebMediaPlayerClient::VideoTrackKindSign:
return VideoTrack::signKeyword();
case WebMediaPlayerClient::VideoTrackKindSubtitles:
return VideoTrack::subtitlesKeyword();
case WebMediaPlayerClient::VideoTrackKindCommentary:
return VideoTrack::commentaryKeyword();
}
NOTREACHED();
return emptyAtom;
}
bool canLoadURL(const KURL& url, const ContentType& contentType) {
DEFINE_STATIC_LOCAL(const String, codecs, ("codecs"));
String contentMIMEType = contentType.type().lower();
String contentTypeCodecs = contentType.parameter(codecs);
// If the MIME type is missing or is not meaningful, try to figure it out from
// the URL.
if (contentMIMEType.isEmpty() ||
contentMIMEType == "application/octet-stream" ||
contentMIMEType == "text/plain") {
if (url.protocolIsData())
contentMIMEType = mimeTypeFromDataURL(url.getString());
}
// If no MIME type is specified, always attempt to load.
if (contentMIMEType.isEmpty())
return true;
// 4.8.10.3 MIME types - In the absence of a specification to the contrary,
// the MIME type "application/octet-stream" when used with parameters, e.g.
// "application/octet-stream;codecs=theora", is a type that the user agent
// knows it cannot render.
if (contentMIMEType != "application/octet-stream" ||
contentTypeCodecs.isEmpty()) {
return MIMETypeRegistry::supportsMediaMIMEType(contentMIMEType,
contentTypeCodecs);
}
return false;
}
String preloadTypeToString(WebMediaPlayer::Preload preloadType) {
switch (preloadType) {
case WebMediaPlayer::PreloadNone:
return "none";
case WebMediaPlayer::PreloadMetaData:
return "metadata";
case WebMediaPlayer::PreloadAuto:
return "auto";
}
NOTREACHED();
return String();
}
bool isDocumentCrossOrigin(Document& document) {
const LocalFrame* frame = document.frame();
return frame && frame->isCrossOriginSubframe();
}
// Return true if and only if the document settings specifies media playback
// requires user gesture.
bool computeLockedPendingUserGesture(Document& document) {
if (!document.settings())
return false;
if (document.settings()->getCrossOriginMediaPlaybackRequiresUserGesture() &&
isDocumentCrossOrigin(document)) {
return true;
}
return document.settings()->getMediaPlaybackRequiresUserGesture();
}
} // anonymous namespace
MIMETypeRegistry::SupportsType HTMLMediaElement::supportsType(
const ContentType& contentType) {
DEFINE_STATIC_LOCAL(const String, codecs, ("codecs"));
String type = contentType.type().lower();
// The codecs string is not lower-cased because MP4 values are case sensitive
// per http://tools.ietf.org/html/rfc4281#page-7.
String typeCodecs = contentType.parameter(codecs);
if (type.isEmpty())
return MIMETypeRegistry::IsNotSupported;
// 4.8.10.3 MIME types - The canPlayType(type) method must return the empty
// string if type is a type that the user agent knows it cannot render or is
// the type "application/octet-stream"
if (type == "application/octet-stream")
return MIMETypeRegistry::IsNotSupported;
return MIMETypeRegistry::supportsMediaMIMEType(type, typeCodecs);
}
URLRegistry* HTMLMediaElement::s_mediaStreamRegistry = 0;
void HTMLMediaElement::setMediaStreamRegistry(URLRegistry* registry) {
DCHECK(!s_mediaStreamRegistry);
s_mediaStreamRegistry = registry;
}
bool HTMLMediaElement::isMediaStreamURL(const String& url) {
return s_mediaStreamRegistry ? s_mediaStreamRegistry->contains(url) : false;
}
bool HTMLMediaElement::isHLSURL(const KURL& url) {
// Keep the same logic as in media_codec_util.h.
if (url.isNull() || url.isEmpty())
return false;
if (!url.isLocalFile() && !url.protocolIs("http") && !url.protocolIs("https"))
return false;
return url.getString().contains("m3u8");
}
bool HTMLMediaElement::mediaTracksEnabledInternally() {
return RuntimeEnabledFeatures::audioVideoTracksEnabled() ||
RuntimeEnabledFeatures::backgroundVideoTrackOptimizationEnabled();
}
HTMLMediaElement::HTMLMediaElement(const QualifiedName& tagName,
Document& document)
: HTMLElement(tagName, document),
SuspendableObject(&document),
m_loadTimer(TaskRunnerHelper::get(TaskType::Unthrottled, &document),
this,
&HTMLMediaElement::loadTimerFired),
m_progressEventTimer(
TaskRunnerHelper::get(TaskType::Unthrottled, &document),
this,
&HTMLMediaElement::progressEventTimerFired),
m_playbackProgressTimer(
TaskRunnerHelper::get(TaskType::Unthrottled, &document),
this,
&HTMLMediaElement::playbackProgressTimerFired),
m_audioTracksTimer(
TaskRunnerHelper::get(TaskType::Unthrottled, &document),
this,
&HTMLMediaElement::audioTracksTimerFired),
m_viewportFillDebouncerTimer(
TaskRunnerHelper::get(TaskType::Unthrottled, &document),
this,
&HTMLMediaElement::viewportFillDebouncerTimerFired),
m_checkViewportIntersectionTimer(
TaskRunnerHelper::get(TaskType::Unthrottled, &document),
this,
&HTMLMediaElement::checkViewportIntersectionTimerFired),
m_playedTimeRanges(),
m_asyncEventQueue(GenericEventQueue::create(this)),
m_playbackRate(1.0f),
m_defaultPlaybackRate(1.0f),
m_networkState(kNetworkEmpty),
m_readyState(kHaveNothing),
m_readyStateMaximum(kHaveNothing),
m_volume(1.0f),
m_lastSeekTime(0),
m_previousProgressTime(std::numeric_limits<double>::max()),
m_duration(std::numeric_limits<double>::quiet_NaN()),
m_lastTimeUpdateEventWallTime(0),
m_lastTimeUpdateEventMediaTime(std::numeric_limits<double>::quiet_NaN()),
m_defaultPlaybackStartPosition(0),
m_loadState(WaitingForSource),
m_deferredLoadState(NotDeferred),
m_deferredLoadTimer(this, &HTMLMediaElement::deferredLoadTimerFired),
m_webLayer(nullptr),
m_displayMode(Unknown),
m_officialPlaybackPosition(0),
m_officialPlaybackPositionNeedsUpdate(true),
m_fragmentEndTime(std::numeric_limits<double>::quiet_NaN()),
m_pendingActionFlags(0),
m_lockedPendingUserGesture(false),
m_lockedPendingUserGestureIfCrossOriginExperimentEnabled(true),
m_playing(false),
m_shouldDelayLoadEvent(false),
m_haveFiredLoadedData(false),
m_autoplaying(true),
m_muted(false),
m_paused(true),
m_seeking(false),
m_sentStalledEvent(false),
m_ignorePreloadNone(false),
m_textTracksVisible(false),
m_shouldPerformAutomaticTrackSelection(true),
m_tracksAreReady(true),
m_processingPreferenceChange(false),
m_playingRemotely(false),
m_inOverlayFullscreenVideo(false),
m_mostlyFillingViewport(false),
m_audioTracks(this, AudioTrackList::create(*this)),
m_videoTracks(this, VideoTrackList::create(*this)),
m_textTracks(this, nullptr),
m_audioSourceNode(nullptr),
m_autoplayUmaHelper(AutoplayUmaHelper::create(this)),
m_remotePlaybackClient(nullptr),
m_autoplayVisibilityObserver(nullptr),
m_mediaControls(nullptr) {
BLINK_MEDIA_LOG << "HTMLMediaElement(" << (void*)this << ")";
m_lockedPendingUserGesture = computeLockedPendingUserGesture(document);
m_lockedPendingUserGestureIfCrossOriginExperimentEnabled =
isDocumentCrossOrigin(document);
LocalFrame* frame = document.frame();
if (frame) {
m_remotePlaybackClient =
frame->loader().client()->createWebRemotePlaybackClient(*this);
}
setHasCustomStyleCallbacks();
addElementToDocumentMap(this, &document);
UseCounter::count(document, UseCounter::HTMLMediaElement);
}
HTMLMediaElement::~HTMLMediaElement() {
BLINK_MEDIA_LOG << "~HTMLMediaElement(" << (void*)this << ")";
// m_audioSourceNode is explicitly cleared by AudioNode::dispose().
// Since AudioNode::dispose() is guaranteed to be always called before
// the AudioNode is destructed, m_audioSourceNode is explicitly cleared
// even if the AudioNode and the HTMLMediaElement die together.
DCHECK(!m_audioSourceNode);
}
void HTMLMediaElement::dispose() {
closeMediaSource();
// Destroying the player may cause a resource load to be canceled,
// which could result in LocalDOMWindow::dispatchWindowLoadEvent() being
// called via ResourceFetch::didLoadResource(), then
// FrameLoader::checkCompleted(). But it's guaranteed that the load event
// doesn't get dispatched during the object destruction.
// See Document::isDelayingLoadEvent().
// Also see http://crbug.com/275223 for more details.
clearMediaPlayerAndAudioSourceProviderClientWithoutLocking();
}
void HTMLMediaElement::didMoveToNewDocument(Document& oldDocument) {
BLINK_MEDIA_LOG << "didMoveToNewDocument(" << (void*)this << ")";
m_loadTimer.moveToNewTaskRunner(
TaskRunnerHelper::get(TaskType::Unthrottled, &document()));
m_progressEventTimer.moveToNewTaskRunner(
TaskRunnerHelper::get(TaskType::Unthrottled, &document()));
m_playbackProgressTimer.moveToNewTaskRunner(
TaskRunnerHelper::get(TaskType::Unthrottled, &document()));
m_audioTracksTimer.moveToNewTaskRunner(
TaskRunnerHelper::get(TaskType::Unthrottled, &document()));
m_viewportFillDebouncerTimer.moveToNewTaskRunner(
TaskRunnerHelper::get(TaskType::Unthrottled, &document()));
m_checkViewportIntersectionTimer.moveToNewTaskRunner(
TaskRunnerHelper::get(TaskType::Unthrottled, &document()));
m_autoplayUmaHelper->didMoveToNewDocument(oldDocument);
// If any experiment is enabled, then we want to enable a user gesture by
// default, otherwise the experiment does nothing.
bool oldDocumentRequiresUserGesture =
computeLockedPendingUserGesture(oldDocument);
bool newDocumentRequiresUserGesture =
computeLockedPendingUserGesture(document());
if (newDocumentRequiresUserGesture && !oldDocumentRequiresUserGesture)
m_lockedPendingUserGesture = true;
if (m_shouldDelayLoadEvent) {
document().incrementLoadEventDelayCount();
// Note: Keeping the load event delay count increment on oldDocument that
// was added when m_shouldDelayLoadEvent was set so that destruction of
// m_webMediaPlayer can not cause load event dispatching in oldDocument.
} else {
// Incrementing the load event delay count so that destruction of
// m_webMediaPlayer can not cause load event dispatching in oldDocument.
oldDocument.incrementLoadEventDelayCount();
}
if (isDocumentCrossOrigin(document()) && !isDocumentCrossOrigin(oldDocument))
m_lockedPendingUserGestureIfCrossOriginExperimentEnabled = true;
removeElementFromDocumentMap(this, &oldDocument);
addElementToDocumentMap(this, &document());
// FIXME: This is a temporary fix to prevent this object from causing the
// MediaPlayer to dereference LocalFrame and FrameLoader pointers from the
// previous document. This restarts the load, as if the src attribute had been
// set. A proper fix would provide a mechanism to allow this object to
// refresh the MediaPlayer's LocalFrame and FrameLoader references on document
// changes so that playback can be resumed properly.
m_ignorePreloadNone = false;
invokeLoadAlgorithm();
// Decrement the load event delay count on oldDocument now that
// m_webMediaPlayer has been destroyed and there is no risk of dispatching a
// load event from within the destructor.
oldDocument.decrementLoadEventDelayCount();
SuspendableObject::didMoveToNewExecutionContext(&document());
HTMLElement::didMoveToNewDocument(oldDocument);
}
bool HTMLMediaElement::supportsFocus() const {
if (ownerDocument()->isMediaDocument())
return false;
// If no controls specified, we should still be able to focus the element if
// it has tabIndex.
return shouldShowControls() || HTMLElement::supportsFocus();
}
bool HTMLMediaElement::isMouseFocusable() const {
return false;
}
void HTMLMediaElement::parseAttribute(
const AttributeModificationParams& params) {
const QualifiedName& name = params.name;
if (name == srcAttr) {
BLINK_MEDIA_LOG << "parseAttribute(" << (void*)this
<< ", srcAttr, old=" << params.oldValue
<< ", new=" << params.newValue << ")";
// Trigger a reload, as long as the 'src' attribute is present.
if (!params.newValue.isNull()) {
m_ignorePreloadNone = false;
invokeLoadAlgorithm();
}
} else if (name == controlsAttr) {
UseCounter::count(document(),
UseCounter::HTMLMediaElementControlsAttribute);
updateControlsVisibility();
} else if (name == preloadAttr) {
setPlayerPreload();
} else if (name == disableremoteplaybackAttr) {
// This attribute is an extension described in the Remote Playback API spec.
// Please see: https://w3c.github.io/remote-playback
UseCounter::count(document(), UseCounter::DisableRemotePlaybackAttribute);
if (params.oldValue != params.newValue) {
if (m_webMediaPlayer) {
m_webMediaPlayer->requestRemotePlaybackDisabled(
!params.newValue.isNull());
}
// TODO(mlamouri): there is no direct API to expose if
// disableRemotePLayback attribute has changed. It will require a direct
// access to MediaControls for the moment.
if (mediaControls())
mediaControls()->onDisableRemotePlaybackAttributeChanged();
}
} else {
HTMLElement::parseAttribute(params);
}
}
void HTMLMediaElement::finishParsingChildren() {
HTMLElement::finishParsingChildren();
if (Traversal<HTMLTrackElement>::firstChild(*this))
scheduleTextTrackResourceLoad();
}
bool HTMLMediaElement::layoutObjectIsNeeded(const ComputedStyle& style) {
return shouldShowControls() && HTMLElement::layoutObjectIsNeeded(style);
}
LayoutObject* HTMLMediaElement::createLayoutObject(const ComputedStyle&) {
return new LayoutMedia(this);
}
Node::InsertionNotificationRequest HTMLMediaElement::insertedInto(
ContainerNode* insertionPoint) {
BLINK_MEDIA_LOG << "insertedInto(" << (void*)this << ", " << insertionPoint
<< ")";
HTMLElement::insertedInto(insertionPoint);
if (insertionPoint->isConnected()) {
UseCounter::count(document(), UseCounter::HTMLMediaElementInDocument);
if ((!getAttribute(srcAttr).isEmpty() || m_srcObject) &&
m_networkState == kNetworkEmpty) {
m_ignorePreloadNone = false;
invokeLoadAlgorithm();
}
}
return InsertionShouldCallDidNotifySubtreeInsertions;
}
void HTMLMediaElement::didNotifySubtreeInsertionsToDocument() {
updateControlsVisibility();
}
void HTMLMediaElement::removedFrom(ContainerNode* insertionPoint) {
BLINK_MEDIA_LOG << "removedFrom(" << (void*)this << ", " << insertionPoint
<< ")";
HTMLElement::removedFrom(insertionPoint);
if (insertionPoint->inActiveDocument()) {
updateControlsVisibility();
if (m_networkState > kNetworkEmpty)
pauseInternal();
}
}
void HTMLMediaElement::attachLayoutTree(const AttachContext& context) {
HTMLElement::attachLayoutTree(context);
if (layoutObject())
layoutObject()->updateFromElement();
}
void HTMLMediaElement::didRecalcStyle(StyleRecalcChange) {
if (layoutObject())
layoutObject()->updateFromElement();
}
void HTMLMediaElement::scheduleTextTrackResourceLoad() {
BLINK_MEDIA_LOG << "scheduleTextTrackResourceLoad(" << (void*)this << ")";
m_pendingActionFlags |= LoadTextTrackResource;
if (!m_loadTimer.isActive())
m_loadTimer.startOneShot(0, BLINK_FROM_HERE);
}
void HTMLMediaElement::scheduleNextSourceChild() {
// Schedule the timer to try the next <source> element WITHOUT resetting state
// ala invokeLoadAlgorithm.
m_pendingActionFlags |= LoadMediaResource;
m_loadTimer.startOneShot(0, BLINK_FROM_HERE);
}
void HTMLMediaElement::scheduleEvent(const AtomicString& eventName) {
scheduleEvent(Event::createCancelable(eventName));
}
void HTMLMediaElement::scheduleEvent(Event* event) {
#if LOG_MEDIA_EVENTS
BLINK_MEDIA_LOG << "scheduleEvent(" << (void*)this << ")"
<< " - scheduling '" << event->type() << "'";
#endif
m_asyncEventQueue->enqueueEvent(event);
}
void HTMLMediaElement::loadTimerFired(TimerBase*) {
if (m_pendingActionFlags & LoadTextTrackResource)
honorUserPreferencesForAutomaticTextTrackSelection();
if (m_pendingActionFlags & LoadMediaResource) {
if (m_loadState == LoadingFromSourceElement)
loadNextSourceChild();
else
loadInternal();
}
m_pendingActionFlags = 0;
}
MediaError* HTMLMediaElement::error() const {
return m_error;
}
void HTMLMediaElement::setSrc(const AtomicString& url) {
setAttribute(srcAttr, url);
}
void HTMLMediaElement::setSrcObject(MediaStreamDescriptor* srcObject) {
BLINK_MEDIA_LOG << "setSrcObject(" << (void*)this << ")";
m_srcObject = srcObject;
invokeLoadAlgorithm();
}
HTMLMediaElement::NetworkState HTMLMediaElement::getNetworkState() const {
return m_networkState;
}
String HTMLMediaElement::canPlayType(const String& mimeType) const {
MIMETypeRegistry::SupportsType support = supportsType(ContentType(mimeType));
String canPlay;
// 4.8.10.3
switch (support) {
case MIMETypeRegistry::IsNotSupported:
canPlay = emptyString();
break;
case MIMETypeRegistry::MayBeSupported:
canPlay = "maybe";
break;
case MIMETypeRegistry::IsSupported:
canPlay = "probably";
break;
}
BLINK_MEDIA_LOG << "canPlayType(" << (void*)this << ", " << mimeType
<< ") -> " << canPlay;
return canPlay;
}
void HTMLMediaElement::load() {
BLINK_MEDIA_LOG << "load(" << (void*)this << ")";
if (isLockedPendingUserGesture() &&
UserGestureIndicator::utilizeUserGesture()) {
unlockUserGesture();
}
m_ignorePreloadNone = true;
invokeLoadAlgorithm();
}
// TODO(srirama.m): Currently m_ignorePreloadNone is reset before calling
// invokeLoadAlgorithm() in all places except load(). Move it inside here
// once microtask is implemented for "Await a stable state" step
// in resource selection algorithm.
void HTMLMediaElement::invokeLoadAlgorithm() {
BLINK_MEDIA_LOG << "invokeLoadAlgorithm(" << (void*)this << ")";
// Perform the cleanup required for the resource load algorithm to run.
stopPeriodicTimers();
m_loadTimer.stop();
cancelDeferredLoad();
// FIXME: Figure out appropriate place to reset LoadTextTrackResource if
// necessary and set m_pendingActionFlags to 0 here.
m_pendingActionFlags &= ~LoadMediaResource;
m_sentStalledEvent = false;
m_haveFiredLoadedData = false;
m_displayMode = Unknown;
// 1 - Abort any already-running instance of the resource selection algorithm
// for this element.
m_loadState = WaitingForSource;
m_currentSourceNode = nullptr;
// 2 - Let pending tasks be a list of tasks from the media element's media
// element task source in one of the task queues.
//
// 3 - For each task in the pending tasks that would run resolve pending
// play promises or project pending play prmoises algorithms, immediately
// resolve or reject those promises in the order the corresponding tasks
// were queued.
//
// TODO(mlamouri): the promises are first resolved then rejected but the
// order between resolved/rejected promises isn't respected. This could be
// improved when the same task is used for both cases.
//
// TODO(mlamouri): don't run the callback synchronously if we are not allowed
// to run scripts. It can happen in some edge cases. https://crbug.com/660382
if (m_playPromiseResolveTaskHandle.isActive() &&
!ScriptForbiddenScope::isScriptForbidden()) {
m_playPromiseResolveTaskHandle.cancel();
resolveScheduledPlayPromises();
}
if (m_playPromiseRejectTaskHandle.isActive() &&
!ScriptForbiddenScope::isScriptForbidden()) {
m_playPromiseRejectTaskHandle.cancel();
rejectScheduledPlayPromises();
}
// 4 - Remove each task in pending tasks from its task queue.
cancelPendingEventsAndCallbacks();
// 5 - If the media element's networkState is set to NETWORK_LOADING or
// NETWORK_IDLE, queue a task to fire a simple event named abort at the media
// element.
if (m_networkState == kNetworkLoading || m_networkState == kNetworkIdle)
scheduleEvent(EventTypeNames::abort);
resetMediaPlayerAndMediaSource();
// 6 - If the media element's networkState is not set to NETWORK_EMPTY, then
// run these substeps
if (m_networkState != kNetworkEmpty) {
// 4.1 - Queue a task to fire a simple event named emptied at the media
// element.
scheduleEvent(EventTypeNames::emptied);
// 4.2 - If a fetching process is in progress for the media element, the
// user agent should stop it.
setNetworkState(kNetworkEmpty);
// 4.4 - Forget the media element's media-resource-specific tracks.
forgetResourceSpecificTracks();
// 4.5 - If readyState is not set to kHaveNothing, then set it to that
// state.
m_readyState = kHaveNothing;
m_readyStateMaximum = kHaveNothing;
DCHECK(!m_paused || m_playPromiseResolvers.isEmpty());
// 4.6 - If the paused attribute is false, then run these substeps
if (!m_paused) {
// 4.6.1 - Set the paused attribute to true.
m_paused = true;
// 4.6.2 - Take pending play promises and reject pending play promises
// with the result and an "AbortError" DOMException.
rejectPlayPromises(
AbortError,
"The play() request was interrupted by a new load request.");
}
// 4.7 - If seeking is true, set it to false.
m_seeking = false;
// 4.8 - Set the current playback position to 0.
// Set the official playback position to 0.
// If this changed the official playback position, then queue a task
// to fire a simple event named timeupdate at the media element.
// 4.9 - Set the initial playback position to 0.
setOfficialPlaybackPosition(0);
scheduleTimeupdateEvent(false);
// 4.10 - Set the timeline offset to Not-a-Number (NaN).
// 4.11 - Update the duration attribute to Not-a-Number (NaN).
cueTimeline().updateActiveCues(0);
} else if (!m_paused) {
// TODO(foolip): There is a proposal to always reset the paused state
// in the media element load algorithm, to avoid a bogus play() promise
// rejection: https://github.com/whatwg/html/issues/869
// This is where that change would have an effect, and it is measured to
// verify the assumption that it's a very rare situation.
UseCounter::count(document(),
UseCounter::HTMLMediaElementLoadNetworkEmptyNotPaused);
}
// 7 - Set the playbackRate attribute to the value of the defaultPlaybackRate
// attribute.
setPlaybackRate(defaultPlaybackRate());
// 8 - Set the error attribute to null and the autoplaying flag to true.
m_error = nullptr;
m_autoplaying = true;
// 9 - Invoke the media element's resource selection algorithm.
invokeResourceSelectionAlgorithm();
// 10 - Note: Playback of any previously playing media resource for this
// element stops.
}
void HTMLMediaElement::invokeResourceSelectionAlgorithm() {
BLINK_MEDIA_LOG << "invokeResourceSelectionAlgorithm(" << (void*)this << ")";
// The resource selection algorithm
// 1 - Set the networkState to NETWORK_NO_SOURCE
setNetworkState(kNetworkNoSource);
// 2 - Set the element's show poster flag to true
// TODO(srirama.m): Introduce show poster flag and update it as per spec
m_playedTimeRanges = TimeRanges::create();
// FIXME: Investigate whether these can be moved into m_networkState !=
// kNetworkEmpty block above
// so they are closer to the relevant spec steps.
m_lastSeekTime = 0;
m_duration = std::numeric_limits<double>::quiet_NaN();
// 3 - Set the media element's delaying-the-load-event flag to true (this
// delays the load event)
setShouldDelayLoadEvent(true);
if (mediaControls())
mediaControls()->reset();
// 4 - Await a stable state, allowing the task that invoked this algorithm to
// continue
// TODO(srirama.m): Remove scheduleNextSourceChild() and post a microtask
// instead. See http://crbug.com/593289 for more details.
scheduleNextSourceChild();
}
void HTMLMediaElement::loadInternal() {
// HTMLMediaElement::textTracksAreReady will need "... the text tracks whose
// mode was not in the disabled state when the element's resource selection
// algorithm last started".
m_textTracksWhenResourceSelectionBegan.clear();
if (m_textTracks) {
for (unsigned i = 0; i < m_textTracks->length(); ++i) {
TextTrack* track = m_textTracks->anonymousIndexedGetter(i);
if (track->mode() != TextTrack::disabledKeyword())
m_textTracksWhenResourceSelectionBegan.push_back(track);
}
}
selectMediaResource();
}
void HTMLMediaElement::selectMediaResource() {
BLINK_MEDIA_LOG << "selectMediaResource(" << (void*)this << ")";
enum Mode { Object, Attribute, Children, Nothing };
Mode mode = Nothing;
// 6 - If the media element has an assigned media provider object, then let
// mode be object.
if (m_srcObject) {
mode = Object;
} else if (fastHasAttribute(srcAttr)) {
// Otherwise, if the media element has no assigned media provider object
// but has a src attribute, then let mode be attribute.
mode = Attribute;
} else if (HTMLSourceElement* element =
Traversal<HTMLSourceElement>::firstChild(*this)) {
// Otherwise, if the media element does not have an assigned media
// provider object and does not have a src attribute, but does have a
// source element child, then let mode be children and let candidate be
// the first such source element child in tree order.
mode = Children;
m_nextChildNodeToConsider = element;
m_currentSourceNode = nullptr;
} else {
// Otherwise the media element has no assigned media provider object and
// has neither a src attribute nor a source element child: set the
// networkState to kNetworkEmpty, and abort these steps; the synchronous
// section ends.
m_loadState = WaitingForSource;
setShouldDelayLoadEvent(false);
setNetworkState(kNetworkEmpty);
updateDisplayState();
BLINK_MEDIA_LOG << "selectMediaResource(" << (void*)this
<< "), nothing to load";
return;
}
// 7 - Set the media element's networkState to NETWORK_LOADING.
setNetworkState(kNetworkLoading);
// 8 - Queue a task to fire a simple event named loadstart at the media
// element.
scheduleEvent(EventTypeNames::loadstart);
// 9 - Run the appropriate steps...
switch (mode) {
case Object:
loadSourceFromObject();
BLINK_MEDIA_LOG << "selectMediaResource(" << (void*)this
<< ", using 'srcObject' attribute";
break;
case Attribute:
loadSourceFromAttribute();
BLINK_MEDIA_LOG << "selectMediaResource(" << (void*)this
<< "), using 'src' attribute url";
break;
case Children:
loadNextSourceChild();
BLINK_MEDIA_LOG << "selectMediaResource(" << (void*)this
<< "), using source element";
break;
default:
NOTREACHED();
}
}
void HTMLMediaElement::loadSourceFromObject() {
DCHECK(m_srcObject);
m_loadState = LoadingFromSrcObject;
// No type is available when the resource comes from the 'srcObject'
// attribute.
loadResource(WebMediaPlayerSource(WebMediaStream(m_srcObject)),
ContentType((String())));
}
void HTMLMediaElement::loadSourceFromAttribute() {
m_loadState = LoadingFromSrcAttr;
const AtomicString& srcValue = fastGetAttribute(srcAttr);
// If the src attribute's value is the empty string ... jump down to the
// failed step below
if (srcValue.isEmpty()) {
mediaLoadingFailed(WebMediaPlayer::NetworkStateFormatError);
BLINK_MEDIA_LOG << "loadSourceFromAttribute(" << (void*)this
<< "), empty 'src'";
return;
}
KURL mediaURL = document().completeURL(srcValue);
if (!isSafeToLoadURL(mediaURL, Complain)) {
mediaLoadingFailed(WebMediaPlayer::NetworkStateFormatError);
return;
}
// No type is available when the url comes from the 'src' attribute so
// MediaPlayer will have to pick a media engine based on the file extension.
loadResource(WebMediaPlayerSource(WebURL(mediaURL)), ContentType((String())));
}
void HTMLMediaElement::loadNextSourceChild() {
ContentType contentType((String()));
KURL mediaURL = selectNextSourceChild(&contentType, Complain);
if (!mediaURL.isValid()) {
waitForSourceChange();
return;
}
// Reset the MediaPlayer and MediaSource if any
resetMediaPlayerAndMediaSource();
m_loadState = LoadingFromSourceElement;
loadResource(WebMediaPlayerSource(WebURL(mediaURL)), contentType);
}
void HTMLMediaElement::loadResource(const WebMediaPlayerSource& source,
const ContentType& contentType) {
DCHECK(isMainThread());
KURL url;
if (source.isURL()) {
url = source.getAsURL();
DCHECK(isSafeToLoadURL(url, Complain));
BLINK_MEDIA_LOG << "loadResource(" << (void*)this << ", "
<< urlForLoggingMedia(url) << ", " << contentType.raw()
<< ")";
}
LocalFrame* frame = document().frame();
if (!frame) {
mediaLoadingFailed(WebMediaPlayer::NetworkStateFormatError);
return;
}
// The resource fetch algorithm
setNetworkState(kNetworkLoading);
// Set m_currentSrc *before* changing to the cache url, the fact that we are
// loading from the app cache is an internal detail not exposed through the
// media element API.
m_currentSrc = url;
if (m_audioSourceNode)
m_audioSourceNode->onCurrentSrcChanged(m_currentSrc);
BLINK_MEDIA_LOG << "loadResource(" << (void*)this << ") - m_currentSrc -> "
<< urlForLoggingMedia(m_currentSrc);
startProgressEventTimer();
// Reset display mode to force a recalculation of what to show because we are
// resetting the player.
setDisplayMode(Unknown);
setPlayerPreload();
if (fastHasAttribute(mutedAttr))
m_muted = true;
DCHECK(!m_mediaSource);
bool attemptLoad = true;
m_mediaSource = HTMLMediaSource::lookup(url.getString());
if (m_mediaSource && !m_mediaSource->attachToElement(this)) {
// Forget our reference to the MediaSource, so we leave it alone
// while processing remainder of load failure.
m_mediaSource = nullptr;
attemptLoad = false;
}
bool canLoadResource = source.isMediaStream() || canLoadURL(url, contentType);
if (attemptLoad && canLoadResource) {
DCHECK(!webMediaPlayer());
// Conditionally defer the load if effective preload is 'none'.
// Skip this optional deferral for MediaStream sources or any blob URL,
// including MediaSource blob URLs.
if (!source.isMediaStream() && !url.protocolIs("blob") &&
effectivePreloadType() == WebMediaPlayer::PreloadNone) {
BLINK_MEDIA_LOG << "loadResource(" << (void*)this
<< ") : Delaying load because preload == 'none'";
deferLoad();
} else {
startPlayerLoad();
}
} else {
mediaLoadingFailed(WebMediaPlayer::NetworkStateFormatError);
}
// If there is no poster to display, allow the media engine to render video
// frames as soon as they are available.
updateDisplayState();
if (layoutObject())
layoutObject()->updateFromElement();
}
void HTMLMediaElement::startPlayerLoad(const KURL& playerProvidedUrl) {
DCHECK(!m_webMediaPlayer);
WebMediaPlayerSource source;
if (m_srcObject) {
source = WebMediaPlayerSource(WebMediaStream(m_srcObject));
} else {
// Filter out user:pass as those two URL components aren't
// considered for media resource fetches (including for the CORS
// use-credentials mode.) That behavior aligns with Gecko, with IE
// being more restrictive and not allowing fetches to such URLs.
//
// Spec reference: http://whatwg.org/c/#concept-media-load-resource
//
// FIXME: when the HTML spec switches to specifying resource
// fetches in terms of Fetch (http://fetch.spec.whatwg.org), and
// along with that potentially also specifying a setting for its
// 'authentication flag' to control how user:pass embedded in a
// media resource URL should be treated, then update the handling
// here to match.
KURL requestURL =
playerProvidedUrl.isNull() ? KURL(m_currentSrc) : playerProvidedUrl;
if (!requestURL.user().isEmpty())
requestURL.setUser(String());
if (!requestURL.pass().isEmpty())
requestURL.setPass(String());
KURL kurl(ParsedURLString, requestURL);
source = WebMediaPlayerSource(WebURL(kurl));
}
LocalFrame* frame = document().frame();
// TODO(srirama.m): Figure out how frame can be null when
// coming from executeDeferredLoad()
if (!frame) {
mediaLoadingFailed(WebMediaPlayer::NetworkStateFormatError);
return;
}
m_webMediaPlayer =
frame->loader().client()->createWebMediaPlayer(*this, source, this);
if (!m_webMediaPlayer) {
mediaLoadingFailed(WebMediaPlayer::NetworkStateFormatError);
return;
}
if (layoutObject())
layoutObject()->setShouldDoFullPaintInvalidation();
// Make sure if we create/re-create the WebMediaPlayer that we update our
// wrapper.
m_audioSourceProvider.wrap(m_webMediaPlayer->getAudioSourceProvider());
m_webMediaPlayer->setVolume(effectiveMediaVolume());
m_webMediaPlayer->setPoster(posterImageURL());
m_webMediaPlayer->setPreload(effectivePreloadType());
m_webMediaPlayer->requestRemotePlaybackDisabled(
fastHasAttribute(disableremoteplaybackAttr));
m_webMediaPlayer->load(loadType(), source, corsMode());
if (isFullscreen())
m_webMediaPlayer->enteredFullscreen();
m_webMediaPlayer->becameDominantVisibleContent(m_mostlyFillingViewport);
}
void HTMLMediaElement::setPlayerPreload() {
if (m_webMediaPlayer)
m_webMediaPlayer->setPreload(effectivePreloadType());
if (loadIsDeferred() && effectivePreloadType() != WebMediaPlayer::PreloadNone)
startDeferredLoad();
}
bool HTMLMediaElement::loadIsDeferred() const {
return m_deferredLoadState != NotDeferred;
}
void HTMLMediaElement::deferLoad() {
// This implements the "optional" step 3 from the resource fetch algorithm.
DCHECK(!m_deferredLoadTimer.isActive());
DCHECK_EQ(m_deferredLoadState, NotDeferred);
// 1. Set the networkState to NETWORK_IDLE.
// 2. Queue a task to fire a simple event named suspend at the element.
changeNetworkStateFromLoadingToIdle();
// 3. Queue a task to set the element's delaying-the-load-event
// flag to false. This stops delaying the load event.
m_deferredLoadTimer.startOneShot(0, BLINK_FROM_HERE);
// 4. Wait for the task to be run.
m_deferredLoadState = WaitingForStopDelayingLoadEventTask;
// Continued in executeDeferredLoad().
}
void HTMLMediaElement::cancelDeferredLoad() {
m_deferredLoadTimer.stop();
m_deferredLoadState = NotDeferred;
}
void HTMLMediaElement::executeDeferredLoad() {
DCHECK_GE(m_deferredLoadState, WaitingForTrigger);
// resource fetch algorithm step 3 - continued from deferLoad().
// 5. Wait for an implementation-defined event (e.g. the user requesting that
// the media element begin playback). This is assumed to be whatever 'event'
// ended up calling this method.
cancelDeferredLoad();
// 6. Set the element's delaying-the-load-event flag back to true (this
// delays the load event again, in case it hasn't been fired yet).
setShouldDelayLoadEvent(true);
// 7. Set the networkState to NETWORK_LOADING.
setNetworkState(kNetworkLoading);
startProgressEventTimer();
startPlayerLoad();
}
void HTMLMediaElement::startDeferredLoad() {
if (m_deferredLoadState == WaitingForTrigger) {
executeDeferredLoad();
return;
}
if (m_deferredLoadState == ExecuteOnStopDelayingLoadEventTask)
return;
DCHECK_EQ(m_deferredLoadState, WaitingForStopDelayingLoadEventTask);
m_deferredLoadState = ExecuteOnStopDelayingLoadEventTask;
}
void HTMLMediaElement::deferredLoadTimerFired(TimerBase*) {
setShouldDelayLoadEvent(false);
if (m_deferredLoadState == ExecuteOnStopDelayingLoadEventTask) {
executeDeferredLoad();
return;
}
DCHECK_EQ(m_deferredLoadState, WaitingForStopDelayingLoadEventTask);
m_deferredLoadState = WaitingForTrigger;
}
WebMediaPlayer::LoadType HTMLMediaElement::loadType() const {
if (m_mediaSource)
return WebMediaPlayer::LoadTypeMediaSource;
if (m_srcObject ||
(!m_currentSrc.isNull() && isMediaStreamURL(m_currentSrc.getString())))
return WebMediaPlayer::LoadTypeMediaStream;
return WebMediaPlayer::LoadTypeURL;
}
bool HTMLMediaElement::textTracksAreReady() const {
// 4.8.10.12.1 Text track model
// ...
// The text tracks of a media element are ready if all the text tracks whose
// mode was not in the disabled state when the element's resource selection
// algorithm last started now have a text track readiness state of loaded or
// failed to load.
for (const auto& textTrack : m_textTracksWhenResourceSelectionBegan) {
if (textTrack->getReadinessState() == TextTrack::Loading ||
textTrack->getReadinessState() == TextTrack::NotLoaded)
return false;
}
return true;
}
void HTMLMediaElement::textTrackReadyStateChanged(TextTrack* track) {
if (webMediaPlayer() &&
m_textTracksWhenResourceSelectionBegan.contains(track)) {
if (track->getReadinessState() != TextTrack::Loading)
setReadyState(static_cast<ReadyState>(webMediaPlayer()->getReadyState()));
} else {
// The track readiness state might have changed as a result of the user
// clicking the captions button. In this case, a check whether all the
// resources have failed loading should be done in order to hide the CC
// button.
// TODO(mlamouri): when an HTMLTrackElement fails to load, it is not
// propagated to the TextTrack object in a web exposed fashion. We have to
// keep relying on a custom glue to the controls while this is taken care
// of on the web side. See https://crbug.com/669977
if (mediaControls() &&
track->getReadinessState() == TextTrack::FailedToLoad) {
mediaControls()->onTrackElementFailedToLoad();
}
}
}
void HTMLMediaElement::textTrackModeChanged(TextTrack* track) {
// Mark this track as "configured" so configureTextTracks won't change the
// mode again.
if (track->trackType() == TextTrack::TrackElement)
track->setHasBeenConfigured(true);
configureTextTrackDisplay();
DCHECK(textTracks()->contains(track));
textTracks()->scheduleChangeEvent();
}
void HTMLMediaElement::disableAutomaticTextTrackSelection() {
m_shouldPerformAutomaticTrackSelection = false;
}
bool HTMLMediaElement::isSafeToLoadURL(const KURL& url,
InvalidURLAction actionIfInvalid) {
if (!url.isValid()) {
BLINK_MEDIA_LOG << "isSafeToLoadURL(" << (void*)this << ", "
<< urlForLoggingMedia(url)
<< ") -> FALSE because url is invalid";
return false;
}
LocalFrame* frame = document().frame();
if (!frame || !document().getSecurityOrigin()->canDisplay(url)) {
if (actionIfInvalid == Complain)
FrameLoader::reportLocalLoadFailed(frame, url.elidedString());
BLINK_MEDIA_LOG << "isSafeToLoadURL(" << (void*)this << ", "
<< urlForLoggingMedia(url)
<< ") -> FALSE rejected by SecurityOrigin";
return false;
}
if (!document().contentSecurityPolicy()->allowMediaFromSource(url)) {
BLINK_MEDIA_LOG << "isSafeToLoadURL(" << (void*)this << ", "
<< urlForLoggingMedia(url)
<< ") -> rejected by Content Security Policy";
return false;
}
return true;
}
bool HTMLMediaElement::isMediaDataCORSSameOrigin(SecurityOrigin* origin) const {
// hasSingleSecurityOrigin() tells us whether the origin in the src is
// the same as the actual request (i.e. after redirect).
// didPassCORSAccessCheck() means it was a successful CORS-enabled fetch
// (vs. non-CORS-enabled or failed).
// taintsCanvas() does checkAccess() on the URL plus allow data sources,
// to ensure that it is not a URL that requires CORS (basically same
// origin).
return hasSingleSecurityOrigin() &&
((webMediaPlayer() && webMediaPlayer()->didPassCORSAccessCheck()) ||
!origin->taintsCanvas(currentSrc()));
}
bool HTMLMediaElement::isInCrossOriginFrame() const {
return isDocumentCrossOrigin(document());
}
void HTMLMediaElement::startProgressEventTimer() {
if (m_progressEventTimer.isActive())
return;
m_previousProgressTime = WTF::currentTime();
// 350ms is not magic, it is in the spec!
m_progressEventTimer.startRepeating(0.350, BLINK_FROM_HERE);
}
void HTMLMediaElement::waitForSourceChange() {
BLINK_MEDIA_LOG << "waitForSourceChange(" << (void*)this << ")";
stopPeriodicTimers();
m_loadState = WaitingForSource;
// 6.17 - Waiting: Set the element's networkState attribute to the
// NETWORK_NO_SOURCE value
setNetworkState(kNetworkNoSource);
// 6.18 - Set the element's delaying-the-load-event flag to false. This stops
// delaying the load event.
setShouldDelayLoadEvent(false);
updateDisplayState();
if (layoutObject())
layoutObject()->updateFromElement();
}
void HTMLMediaElement::noneSupported() {
BLINK_MEDIA_LOG << "noneSupported(" << (void*)this << ")";
stopPeriodicTimers();
m_loadState = WaitingForSource;
m_currentSourceNode = nullptr;
// 4.8.13.5
// The dedicated media source failure steps are the following steps:
// 1 - Set the error attribute to a new MediaError object whose code attribute
// is set to MEDIA_ERR_SRC_NOT_SUPPORTED.
m_error = MediaError::create(MediaError::kMediaErrSrcNotSupported);
// 2 - Forget the media element's media-resource-specific text tracks.
forgetResourceSpecificTracks();
// 3 - Set the element's networkState attribute to the NETWORK_NO_SOURCE
// value.
setNetworkState(kNetworkNoSource);
// 4 - Set the element's show poster flag to true.
updateDisplayState();
// 5 - Fire a simple event named error at the media element.
scheduleEvent(EventTypeNames::error);
// 6 - Reject pending play promises with NotSupportedError.
scheduleRejectPlayPromises(NotSupportedError);
closeMediaSource();
// 7 - Set the element's delaying-the-load-event flag to false. This stops
// delaying the load event.
setShouldDelayLoadEvent(false);
if (layoutObject())
layoutObject()->updateFromElement();
}
void HTMLMediaElement::mediaEngineError(MediaError* err) {
DCHECK_GE(m_readyState, kHaveMetadata);
BLINK_MEDIA_LOG << "mediaEngineError(" << (void*)this << ", "
<< static_cast<int>(err->code()) << ")";
// 1 - The user agent should cancel the fetching process.
stopPeriodicTimers();
m_loadState = WaitingForSource;
// 2 - Set the error attribute to a new MediaError object whose code attribute
// is set to MEDIA_ERR_NETWORK/MEDIA_ERR_DECODE.
m_error = err;
// 3 - Queue a task to fire a simple event named error at the media element.
scheduleEvent(EventTypeNames::error);
// 4 - Set the element's networkState attribute to the NETWORK_IDLE value.
setNetworkState(kNetworkIdle);
// 5 - Set the element's delaying-the-load-event flag to false. This stops
// delaying the load event.
setShouldDelayLoadEvent(false);
// 6 - Abort the overall resource selection algorithm.
m_currentSourceNode = nullptr;
}
void HTMLMediaElement::cancelPendingEventsAndCallbacks() {
BLINK_MEDIA_LOG << "cancelPendingEventsAndCallbacks(" << (void*)this << ")";
m_asyncEventQueue->cancelAllEvents();
for (HTMLSourceElement* source =
Traversal<HTMLSourceElement>::firstChild(*this);
source; source = Traversal<HTMLSourceElement>::nextSibling(*source))
source->cancelPendingErrorEvent();
}
void HTMLMediaElement::networkStateChanged() {
setNetworkState(webMediaPlayer()->getNetworkState());
}
void HTMLMediaElement::mediaLoadingFailed(WebMediaPlayer::NetworkState error) {
stopPeriodicTimers();
// If we failed while trying to load a <source> element, the movie was never
// parsed, and there are more <source> children, schedule the next one
if (m_readyState < kHaveMetadata && m_loadState == LoadingFromSourceElement) {
// resource selection algorithm
// Step 9.Otherwise.9 - Failed with elements: Queue a task, using the DOM
// manipulation task source, to fire a simple event named error at the
// candidate element.
if (m_currentSourceNode)
m_currentSourceNode->scheduleErrorEvent();
else
BLINK_MEDIA_LOG << "mediaLoadingFailed(" << (void*)this
<< ") - error event not sent, <source> was removed";
// 9.Otherwise.10 - Asynchronously await a stable state. The synchronous
// section consists of all the remaining steps of this algorithm until the
// algorithm says the synchronous section has ended.
// 9.Otherwise.11 - Forget the media element's media-resource-specific
// tracks.
forgetResourceSpecificTracks();
if (havePotentialSourceChild()) {
BLINK_MEDIA_LOG << "mediaLoadingFailed(" << (void*)this
<< ") - scheduling next <source>";
scheduleNextSourceChild();
} else {
BLINK_MEDIA_LOG << "mediaLoadingFailed(" << (void*)this
<< ") - no more <source> elements, waiting";
waitForSourceChange();
}
return;
}
if (error == WebMediaPlayer::NetworkStateNetworkError &&
m_readyState >= kHaveMetadata) {
mediaEngineError(MediaError::create(MediaError::kMediaErrNetwork));
} else if (error == WebMediaPlayer::NetworkStateDecodeError) {
mediaEngineError(MediaError::create(MediaError::kMediaErrDecode));
} else if ((error == WebMediaPlayer::NetworkStateFormatError ||
error == WebMediaPlayer::NetworkStateNetworkError) &&
m_loadState == LoadingFromSrcAttr) {
noneSupported();
}
updateDisplayState();
}
void HTMLMediaElement::setNetworkState(WebMediaPlayer::NetworkState state) {
BLINK_MEDIA_LOG << "setNetworkState(" << (void*)this << ", "
<< static_cast<int>(state) << ") - current state is "
<< static_cast<int>(m_networkState);
if (state == WebMediaPlayer::NetworkStateEmpty) {
// Just update the cached state and leave, we can't do anything.
setNetworkState(kNetworkEmpty);
return;
}
if (state == WebMediaPlayer::NetworkStateFormatError ||
state == WebMediaPlayer::NetworkStateNetworkError ||
state == WebMediaPlayer::NetworkStateDecodeError) {
mediaLoadingFailed(state);
return;
}
if (state == WebMediaPlayer::NetworkStateIdle) {
if (m_networkState > kNetworkIdle) {
changeNetworkStateFromLoadingToIdle();
setShouldDelayLoadEvent(false);
} else {
setNetworkState(kNetworkIdle);
}
}
if (state == WebMediaPlayer::NetworkStateLoading) {
if (m_networkState < kNetworkLoading || m_networkState == kNetworkNoSource)
startProgressEventTimer();
setNetworkState(kNetworkLoading);
}
if (state == WebMediaPlayer::NetworkStateLoaded) {
if (m_networkState != kNetworkIdle)
changeNetworkStateFromLoadingToIdle();
}
}
void HTMLMediaElement::changeNetworkStateFromLoadingToIdle() {
m_progressEventTimer.stop();
// Schedule one last progress event so we guarantee that at least one is fired
// for files that load very quickly.
if (webMediaPlayer() && webMediaPlayer()->didLoadingProgress())
scheduleEvent(EventTypeNames::progress);
scheduleEvent(EventTypeNames::suspend);
setNetworkState(kNetworkIdle);
}
void HTMLMediaElement::readyStateChanged() {
setReadyState(static_cast<ReadyState>(webMediaPlayer()->getReadyState()));
}
void HTMLMediaElement::setReadyState(ReadyState state) {
BLINK_MEDIA_LOG << "setReadyState(" << (void*)this << ", "
<< static_cast<int>(state) << ") - current state is "
<< static_cast<int>(m_readyState);
// Set "wasPotentiallyPlaying" BEFORE updating m_readyState,
// potentiallyPlaying() uses it
bool wasPotentiallyPlaying = potentiallyPlaying();
ReadyState oldState = m_readyState;
ReadyState newState = state;
bool tracksAreReady = textTracksAreReady();
if (newState == oldState && m_tracksAreReady == tracksAreReady)
return;
m_tracksAreReady = tracksAreReady;
if (tracksAreReady) {
m_readyState = newState;
} else {
// If a media file has text tracks the readyState may not progress beyond
// kHaveFutureData until the text tracks are ready, regardless of the state
// of the media file.
if (newState <= kHaveMetadata)
m_readyState = newState;
else
m_readyState = kHaveCurrentData;
}
if (oldState > m_readyStateMaximum)
m_readyStateMaximum = oldState;
if (m_networkState == kNetworkEmpty)
return;
if (m_seeking) {
// 4.8.10.9, step 9 note: If the media element was potentially playing
// immediately before it started seeking, but seeking caused its readyState
// attribute to change to a value lower than kHaveFutureData, then a waiting
// will be fired at the element.
if (wasPotentiallyPlaying && m_readyState < kHaveFutureData)
scheduleEvent(EventTypeNames::waiting);
// 4.8.10.9 steps 12-14
if (m_readyState >= kHaveCurrentData)
finishSeek();
} else {
if (wasPotentiallyPlaying && m_readyState < kHaveFutureData) {
// Force an update to official playback position. Automatic updates from
// currentPlaybackPosition() will be blocked while m_readyState remains
// < kHaveFutureData. This blocking is desired after 'waiting' has been
// fired, but its good to update it one final time to accurately reflect
// media time at the moment we ran out of data to play.
setOfficialPlaybackPosition(currentPlaybackPosition());
// 4.8.10.8
scheduleTimeupdateEvent(false);
scheduleEvent(EventTypeNames::waiting);
}
}
// Once enough of the media data has been fetched to determine the duration of
// the media resource, its dimensions, and other metadata...
if (m_readyState >= kHaveMetadata && oldState < kHaveMetadata) {
createPlaceholderTracksIfNecessary();
selectInitialTracksIfNecessary();
MediaFragmentURIParser fragmentParser(m_currentSrc);
m_fragmentEndTime = fragmentParser.endTime();
// Set the current playback position and the official playback position to
// the earliest possible position.
setOfficialPlaybackPosition(earliestPossiblePosition());
m_duration = m_webMediaPlayer->duration();
scheduleEvent(EventTypeNames::durationchange);
if (isHTMLVideoElement())
scheduleEvent(EventTypeNames::resize);
scheduleEvent(EventTypeNames::loadedmetadata);
bool jumped = false;
if (m_defaultPlaybackStartPosition > 0) {
seek(m_defaultPlaybackStartPosition);
jumped = true;
}
m_defaultPlaybackStartPosition = 0;
double initialPlaybackPosition = fragmentParser.startTime();
if (std::isnan(initialPlaybackPosition))
initialPlaybackPosition = 0;
if (!jumped && initialPlaybackPosition > 0) {
UseCounter::count(document(),
UseCounter::HTMLMediaElementSeekToFragmentStart);
seek(initialPlaybackPosition);
jumped = true;
}
if (layoutObject())
layoutObject()->updateFromElement();
}
bool shouldUpdateDisplayState = false;
if (m_readyState >= kHaveCurrentData && oldState < kHaveCurrentData &&
!m_haveFiredLoadedData) {
// Force an update to official playback position to catch non-zero start
// times that were not known at kHaveMetadata, but are known now that the
// first packets have been demuxed.
setOfficialPlaybackPosition(currentPlaybackPosition());
m_haveFiredLoadedData = true;
shouldUpdateDisplayState = true;
scheduleEvent(EventTypeNames::loadeddata);
setShouldDelayLoadEvent(false);
}
bool isPotentiallyPlaying = potentiallyPlaying();
if (m_readyState == kHaveFutureData && oldState <= kHaveCurrentData &&
tracksAreReady) {
scheduleEvent(EventTypeNames::canplay);
if (isPotentiallyPlaying)
scheduleNotifyPlaying();
shouldUpdateDisplayState = true;
}
if (m_readyState == kHaveEnoughData && oldState < kHaveEnoughData &&
tracksAreReady) {
if (oldState <= kHaveCurrentData) {
scheduleEvent(EventTypeNames::canplay);
if (isPotentiallyPlaying)
scheduleNotifyPlaying();
}
// Check for autoplay, and record metrics about it if needed.
if (shouldAutoplay()) {
m_autoplayUmaHelper->onAutoplayInitiated(AutoplaySource::Attribute);
if (!isGestureNeededForPlayback()) {
if (isGestureNeededForPlaybackIfCrossOriginExperimentEnabled()) {
m_autoplayUmaHelper->recordCrossOriginAutoplayResult(
CrossOriginAutoplayResult::AutoplayBlocked);
} else {
m_autoplayUmaHelper->recordCrossOriginAutoplayResult(
CrossOriginAutoplayResult::AutoplayAllowed);
}
if (isHTMLVideoElement() && muted() &&
RuntimeEnabledFeatures::autoplayMutedVideosEnabled()) {
// We might end up in a situation where the previous
// observer didn't had time to fire yet. We can avoid
// creating a new one in this case.
if (!m_autoplayVisibilityObserver) {
m_autoplayVisibilityObserver = new ElementVisibilityObserver(
this,
WTF::bind(&HTMLMediaElement::onVisibilityChangedForAutoplay,
wrapWeakPersistent(this)));
m_autoplayVisibilityObserver->start();
}
} else {
m_paused = false;
scheduleEvent(EventTypeNames::play);
scheduleNotifyPlaying();
m_autoplaying = false;
}
} else {
m_autoplayUmaHelper->recordCrossOriginAutoplayResult(
CrossOriginAutoplayResult::AutoplayBlocked);
}
}
scheduleEvent(EventTypeNames::canplaythrough);
shouldUpdateDisplayState = true;
}
if (shouldUpdateDisplayState)
updateDisplayState();
updatePlayState();
cueTimeline().updateActiveCues(currentTime());
}
void HTMLMediaElement::progressEventTimerFired(TimerBase*) {
if (m_networkState != kNetworkLoading)
return;
double time = WTF::currentTime();
double timedelta = time - m_previousProgressTime;
if (webMediaPlayer() && webMediaPlayer()->didLoadingProgress()) {
scheduleEvent(EventTypeNames::progress);
m_previousProgressTime = time;
m_sentStalledEvent = false;
if (layoutObject())
layoutObject()->updateFromElement();
} else if (timedelta > 3.0 && !m_sentStalledEvent) {
scheduleEvent(EventTypeNames::stalled);
m_sentStalledEvent = true;
setShouldDelayLoadEvent(false);
}
}
void HTMLMediaElement::addPlayedRange(double start, double end) {
BLINK_MEDIA_LOG << "addPlayedRange(" << (void*)this << ", " << start << ", "
<< end << ")";
if (!m_playedTimeRanges)
m_playedTimeRanges = TimeRanges::create();
m_playedTimeRanges->add(start, end);
}
bool HTMLMediaElement::supportsSave() const {
return webMediaPlayer() && webMediaPlayer()->supportsSave();
}
void HTMLMediaElement::setIgnorePreloadNone() {
BLINK_MEDIA_LOG << "setIgnorePreloadNone(" << (void*)this << ")";
m_ignorePreloadNone = true;
setPlayerPreload();
}
void HTMLMediaElement::seek(double time) {
BLINK_MEDIA_LOG << "seek(" << (void*)this << ", " << time << ")";
// 2 - If the media element's readyState is HAVE_NOTHING, abort these steps.
// FIXME: remove m_webMediaPlayer check once we figure out how
// m_webMediaPlayer is going out of sync with readystate.
// m_webMediaPlayer is cleared but readystate is not set to HAVE_NOTHING.
if (!m_webMediaPlayer || m_readyState == kHaveNothing)
return;
// Ignore preload none and start load if necessary.
setIgnorePreloadNone();
// Get the current time before setting m_seeking, m_lastSeekTime is returned
// once it is set.
double now = currentTime();
// 3 - If the element's seeking IDL attribute is true, then another instance
// of this algorithm is already running. Abort that other instance of the
// algorithm without waiting for the step that it is running to complete.
// Nothing specific to be done here.
// 4 - Set the seeking IDL attribute to true.
// The flag will be cleared when the engine tells us the time has actually
// changed.
m_seeking = true;
// 6 - If the new playback position is later than the end of the media
// resource, then let it be the end of the media resource instead.
time = std::min(time, duration());
// 7 - If the new playback position is less than the earliest possible
// position, let it be that position instead.
time = std::max(time, earliestPossiblePosition());
// Ask the media engine for the time value in the movie's time scale before
// comparing with current time. This is necessary because if the seek time is
// not equal to currentTime but the delta is less than the movie's time scale,
// we will ask the media engine to "seek" to the current movie time, which may
// be a noop and not generate a timechanged callback. This means m_seeking
// will never be cleared and we will never fire a 'seeked' event.
double mediaTime = webMediaPlayer()->mediaTimeForTimeValue(time);
if (time != mediaTime) {
BLINK_MEDIA_LOG << "seek(" << (void*)this << ", " << time
<< ") - media timeline equivalent is " << mediaTime;
time = mediaTime;
}
// 8 - If the (possibly now changed) new playback position is not in one of
// the ranges given in the seekable attribute, then let it be the position in
// one of the ranges given in the seekable attribute that is the nearest to
// the new playback position. ... If there are no ranges given in the seekable
// attribute then set the seeking IDL attribute to false and abort these
// steps.
TimeRanges* seekableRanges = seekable();
if (!seekableRanges->length()) {
m_seeking = false;
return;
}
time = seekableRanges->nearest(time, now);
if (m_playing && m_lastSeekTime < now)
addPlayedRange(m_lastSeekTime, now);
m_lastSeekTime = time;
// 10 - Queue a task to fire a simple event named seeking at the element.
scheduleEvent(EventTypeNames::seeking);
// 11 - Set the current playback position to the given new playback position.
webMediaPlayer()->seek(time);
// 14-17 are handled, if necessary, when the engine signals a readystate
// change or otherwise satisfies seek completion and signals a time change.
}
void HTMLMediaElement::finishSeek() {
BLINK_MEDIA_LOG << "finishSeek(" << (void*)this << ")";
// 14 - Set the seeking IDL attribute to false.
m_seeking = false;
// Force an update to officialPlaybackPosition. Periodic updates generally
// handle this, but may be skipped paused or waiting for data.
setOfficialPlaybackPosition(currentPlaybackPosition());
// 16 - Queue a task to fire a simple event named timeupdate at the element.
scheduleTimeupdateEvent(false);
// 17 - Queue a task to fire a simple event named seeked at the element.
scheduleEvent(EventTypeNames::seeked);
setDisplayMode(Video);
}
HTMLMediaElement::ReadyState HTMLMediaElement::getReadyState() const {
return m_readyState;
}
bool HTMLMediaElement::hasVideo() const {
return webMediaPlayer() && webMediaPlayer()->hasVideo();
}
bool HTMLMediaElement::hasAudio() const {
return webMediaPlayer() && webMediaPlayer()->hasAudio();
}
bool HTMLMediaElement::seeking() const {
return m_seeking;
}
// https://www.w3.org/TR/html51/semantics-embedded-content.html#earliest-possible-position
// The earliest possible position is not explicitly exposed in the API; it
// corresponds to the start time of the first range in the seekable attribute’s
// TimeRanges object, if any, or the current playback position otherwise.
double HTMLMediaElement::earliestPossiblePosition() const {
TimeRanges* seekableRanges = seekable();
if (seekableRanges && seekableRanges->length() > 0)
return seekableRanges->start(0, ASSERT_NO_EXCEPTION);
return currentPlaybackPosition();
}
double HTMLMediaElement::currentPlaybackPosition() const {
// "Official" playback position won't take updates from "current" playback
// position until m_readyState > kHaveMetadata, but other callers (e.g.
// pauseInternal) may still request currentPlaybackPosition at any time.
// From spec: "Media elements have a current playback position, which must
// initially (i.e., in the absence of media data) be zero seconds."
if (m_readyState == kHaveNothing)
return 0;
if (webMediaPlayer())
return webMediaPlayer()->currentTime();
if (m_readyState >= kHaveMetadata) {
LOG(WARNING) << __func__ << " readyState = " << m_readyState
<< " but no webMeidaPlayer to provide currentPlaybackPosition";
}
return 0;
}
double HTMLMediaElement::officialPlaybackPosition() const {
// Hold updates to official playback position while paused or waiting for more
// data. The underlying media player may continue to make small advances in
// currentTime (e.g. as samples in the last rendered audio buffer are played
// played out), but advancing currentTime while paused/waiting sends a mixed
// signal about the state of playback.
bool waitingForData = m_readyState <= kHaveCurrentData;
if (m_officialPlaybackPositionNeedsUpdate && !m_paused && !waitingForData) {
setOfficialPlaybackPosition(currentPlaybackPosition());
}
#if LOG_OFFICIAL_TIME_STATUS
static const double minCachedDeltaForWarning = 0.01;
double delta =
std::abs(m_officialPlaybackPosition - currentPlaybackPosition());
if (delta > minCachedDeltaForWarning) {
BLINK_MEDIA_LOG << "currentTime(" << (void*)this
<< ") - WARNING, cached time is " << delta
<< "seconds off of media time when paused/waiting";
}
#endif
return m_officialPlaybackPosition;
}
void HTMLMediaElement::setOfficialPlaybackPosition(double position) const {
#if LOG_OFFICIAL_TIME_STATUS
BLINK_MEDIA_LOG << "setOfficialPlaybackPosition(" << (void*)this
<< ") was:" << m_officialPlaybackPosition
<< " now:" << position;
#endif
// Internal player position may advance slightly beyond duration because
// many files use imprecise duration. Clamp official position to duration when
// known. Duration may be unknown when readyState < HAVE_METADATA.
m_officialPlaybackPosition =
std::isnan(duration()) ? position : std::min(duration(), position);
if (m_officialPlaybackPosition != position) {
BLINK_MEDIA_LOG << "setOfficialPlaybackPosition(" << (void*)this
<< ") position:" << position
<< " truncated to duration:" << m_officialPlaybackPosition;
}
// Once set, official playback position should hold steady until the next
// stable state. We approximate this by using a microtask to mark the
// need for an update after the current (micro)task has completed. When
// needed, the update is applied in the next call to
// officialPlaybackPosition().
m_officialPlaybackPositionNeedsUpdate = false;
Microtask::enqueueMicrotask(
WTF::bind(&HTMLMediaElement::requireOfficialPlaybackPositionUpdate,
wrapWeakPersistent(this)));
}
void HTMLMediaElement::requireOfficialPlaybackPositionUpdate() const {
m_officialPlaybackPositionNeedsUpdate = true;
}
double HTMLMediaElement::currentTime() const {
if (m_defaultPlaybackStartPosition)
return m_defaultPlaybackStartPosition;
if (m_seeking) {
BLINK_MEDIA_LOG << "currentTime(" << (void*)this
<< ") - seeking, returning " << m_lastSeekTime;
return m_lastSeekTime;
}
return officialPlaybackPosition();
}
void HTMLMediaElement::setCurrentTime(double time) {
// If the media element's readyState is kHaveNothing, then set the default
// playback start position to that time.
if (m_readyState == kHaveNothing) {
m_defaultPlaybackStartPosition = time;
return;
}
seek(time);
}
double HTMLMediaElement::duration() const {
return m_duration;
}
bool HTMLMediaElement::paused() const {
return m_paused;
}
double HTMLMediaElement::defaultPlaybackRate() const {
return m_defaultPlaybackRate;
}
void HTMLMediaElement::setDefaultPlaybackRate(double rate) {
if (m_defaultPlaybackRate == rate)
return;
m_defaultPlaybackRate = rate;
scheduleEvent(EventTypeNames::ratechange);
}
double HTMLMediaElement::playbackRate() const {
return m_playbackRate;
}
void HTMLMediaElement::setPlaybackRate(double rate) {
BLINK_MEDIA_LOG << "setPlaybackRate(" << (void*)this << ", " << rate << ")";
if (m_playbackRate != rate) {
m_playbackRate = rate;
scheduleEvent(EventTypeNames::ratechange);
}
updatePlaybackRate();
}
HTMLMediaElement::DirectionOfPlayback HTMLMediaElement::getDirectionOfPlayback()
const {
return m_playbackRate >= 0 ? Forward : Backward;
}
void HTMLMediaElement::updatePlaybackRate() {
// FIXME: remove m_webMediaPlayer check once we figure out how
// m_webMediaPlayer is going out of sync with readystate.
// m_webMediaPlayer is cleared but readystate is not set to kHaveNothing.
if (m_webMediaPlayer && potentiallyPlaying())
webMediaPlayer()->setRate(playbackRate());
}
bool HTMLMediaElement::ended() const {
// 4.8.10.8 Playing the media resource
// The ended attribute must return true if the media element has ended
// playback and the direction of playback is forwards, and false otherwise.
return endedPlayback() && getDirectionOfPlayback() == Forward;
}
bool HTMLMediaElement::autoplay() const {
return fastHasAttribute(autoplayAttr);
}
bool HTMLMediaElement::shouldAutoplay() {
if (document().isSandboxed(SandboxAutomaticFeatures))
return false;
return m_autoplaying && m_paused && autoplay();
}
String HTMLMediaElement::preload() const {
return preloadTypeToString(preloadType());
}
void HTMLMediaElement::setPreload(const AtomicString& preload) {
BLINK_MEDIA_LOG << "setPreload(" << (void*)this << ", " << preload << ")";
setAttribute(preloadAttr, preload);
}
WebMediaPlayer::Preload HTMLMediaElement::preloadType() const {
const AtomicString& preload = fastGetAttribute(preloadAttr);
if (equalIgnoringCase(preload, "none")) {
UseCounter::count(document(), UseCounter::HTMLMediaElementPreloadNone);
return WebMediaPlayer::PreloadNone;
}
// If the source scheme is requires network, force preload to 'none' on Data
// Saver and for low end devices.
if (document().settings() &&
(document().settings()->getDataSaverEnabled() ||
document().settings()->getForcePreloadNoneForMediaElements()) &&
(m_currentSrc.protocol() != "blob" && m_currentSrc.protocol() != "data" &&
m_currentSrc.protocol() != "file")) {
UseCounter::count(document(),
UseCounter::HTMLMediaElementPreloadForcedNone);
return WebMediaPlayer::PreloadNone;
}
if (equalIgnoringCase(preload, "metadata")) {
UseCounter::count(document(), UseCounter::HTMLMediaElementPreloadMetadata);
return WebMediaPlayer::PreloadMetaData;
}
// Force preload to 'metadata' on cellular connections.
if (networkStateNotifier().isCellularConnectionType()) {
UseCounter::count(document(),
UseCounter::HTMLMediaElementPreloadForcedMetadata);
return WebMediaPlayer::PreloadMetaData;
}
if (equalIgnoringCase(preload, "auto")) {
UseCounter::count(document(), UseCounter::HTMLMediaElementPreloadAuto);
return WebMediaPlayer::PreloadAuto;
}
// "The attribute's missing value default is user-agent defined, though the
// Metadata state is suggested as a compromise between reducing server load
// and providing an optimal user experience."
// The spec does not define an invalid value default:
// https://www.w3.org/Bugs/Public/show_bug.cgi?id=28950
// TODO(foolip): Try to make "metadata" the default preload state:
// https://crbug.com/310450
UseCounter::count(document(), UseCounter::HTMLMediaElementPreloadDefault);
return WebMediaPlayer::PreloadAuto;
}
String HTMLMediaElement::effectivePreload() const {
return preloadTypeToString(effectivePreloadType());
}
WebMediaPlayer::Preload HTMLMediaElement::effectivePreloadType() const {
if (autoplay() && !isGestureNeededForPlayback())
return WebMediaPlayer::PreloadAuto;
WebMediaPlayer::Preload preload = preloadType();
if (m_ignorePreloadNone && preload == WebMediaPlayer::PreloadNone)
return WebMediaPlayer::PreloadMetaData;
return preload;
}
ScriptPromise HTMLMediaElement::playForBindings(ScriptState* scriptState) {
// We have to share the same logic for internal and external callers. The
// internal callers do not want to receive a Promise back but when ::play()
// is called, |m_playPromiseResolvers| needs to be populated. What this code
// does is to populate |m_playPromiseResolvers| before calling ::play() and
// remove the Promise if ::play() failed.
ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState);
ScriptPromise promise = resolver->promise();
m_playPromiseResolvers.push_back(resolver);
Nullable<ExceptionCode> code = play();
if (!code.isNull()) {
DCHECK(!m_playPromiseResolvers.isEmpty());
m_playPromiseResolvers.pop_back();
String message;
switch (code.get()) {
case NotAllowedError:
message = "play() can only be initiated by a user gesture.";
break;
case NotSupportedError:
message = "The element has no supported sources.";
break;
default:
NOTREACHED();
}
resolver->reject(DOMException::create(code.get(), message));
return promise;
}
return promise;
}
Nullable<ExceptionCode> HTMLMediaElement::play() {
BLINK_MEDIA_LOG << "play(" << (void*)this << ")";
if (!UserGestureIndicator::processingUserGesture()) {
m_autoplayUmaHelper->onAutoplayInitiated(AutoplaySource::Method);
if (isGestureNeededForPlayback()) {
// If we're already playing, then this play would do nothing anyway.
// Call playInternal to handle scheduling the promise resolution.
if (!m_paused) {
playInternal();
return nullptr;
}
m_autoplayUmaHelper->recordCrossOriginAutoplayResult(
CrossOriginAutoplayResult::AutoplayBlocked);
String message = ExceptionMessages::failedToExecute(
"play", "HTMLMediaElement",
"API can only be initiated by a user gesture.");
document().addConsoleMessage(ConsoleMessage::create(
JSMessageSource, WarningMessageLevel, message));
return NotAllowedError;
} else {
if (isGestureNeededForPlaybackIfCrossOriginExperimentEnabled()) {
m_autoplayUmaHelper->recordCrossOriginAutoplayResult(
CrossOriginAutoplayResult::AutoplayBlocked);
} else {
m_autoplayUmaHelper->recordCrossOriginAutoplayResult(
CrossOriginAutoplayResult::AutoplayAllowed);
}
}
} else {
m_autoplayUmaHelper->recordCrossOriginAutoplayResult(
CrossOriginAutoplayResult::PlayedWithGesture);
UserGestureIndicator::utilizeUserGesture();
unlockUserGesture();
}
if (m_error && m_error->code() == MediaError::kMediaErrSrcNotSupported)
return NotSupportedError;
playInternal();
return nullptr;
}
void HTMLMediaElement::playInternal() {
BLINK_MEDIA_LOG << "playInternal(" << (void*)this << ")";
// Always return the buffering strategy to normal when not paused,
// regardless of the cause. (In contrast with aggressive buffering which is
// only enabled by pause(), not pauseInternal().)
if (webMediaPlayer())
webMediaPlayer()->setBufferingStrategy(
WebMediaPlayer::BufferingStrategy::Normal);
// 4.8.10.9. Playing the media resource
if (m_networkState == kNetworkEmpty)
invokeResourceSelectionAlgorithm();
// Generally "ended" and "looping" are exclusive. Here, the loop attribute
// is ignored to seek back to start in case loop was set after playback
// ended. See http://crbug.com/364442
if (endedPlayback(LoopCondition::Ignored))
seek(0);
if (m_paused) {
m_paused = false;
scheduleEvent(EventTypeNames::play);
if (m_readyState <= kHaveCurrentData)
scheduleEvent(EventTypeNames::waiting);
else if (m_readyState >= kHaveFutureData)
scheduleNotifyPlaying();
} else if (m_readyState >= kHaveFutureData) {
scheduleResolvePlayPromises();
}
m_autoplaying = false;
setIgnorePreloadNone();
updatePlayState();
}
void HTMLMediaElement::pause() {
BLINK_MEDIA_LOG << "pause(" << (void*)this << ")";
// Only buffer aggressively on a user-initiated pause. Other types of pauses
// (which go directly to pauseInternal()) should not cause this behavior.
if (webMediaPlayer() && UserGestureIndicator::utilizeUserGesture())
webMediaPlayer()->setBufferingStrategy(
WebMediaPlayer::BufferingStrategy::Aggressive);
pauseInternal();
}
void HTMLMediaElement::pauseInternal() {
BLINK_MEDIA_LOG << "pauseInternal(" << (void*)this << ")";
if (m_networkState == kNetworkEmpty)
invokeResourceSelectionAlgorithm();
m_autoplaying = false;
if (!m_paused) {
m_paused = true;
scheduleTimeupdateEvent(false);
scheduleEvent(EventTypeNames::pause);
// Force an update to official playback position. Automatic updates from
// currentPlaybackPosition() will be blocked while m_paused = true. This
// blocking is desired while paused, but its good to update it one final
// time to accurately reflect movie time at the moment we paused.
setOfficialPlaybackPosition(currentPlaybackPosition());
scheduleRejectPlayPromises(AbortError);
}
updatePlayState();
}
void HTMLMediaElement::requestRemotePlayback() {
if (webMediaPlayer())
webMediaPlayer()->requestRemotePlayback();
}
void HTMLMediaElement::requestRemotePlaybackControl() {
if (webMediaPlayer())
webMediaPlayer()->requestRemotePlaybackControl();
}
void HTMLMediaElement::requestRemotePlaybackStop() {
if (webMediaPlayer())
webMediaPlayer()->requestRemotePlaybackStop();
}
void HTMLMediaElement::closeMediaSource() {
if (!m_mediaSource)
return;
m_mediaSource->close();
m_mediaSource = nullptr;
}
bool HTMLMediaElement::loop() const {
return fastHasAttribute(loopAttr);
}
void HTMLMediaElement::setLoop(bool b) {
BLINK_MEDIA_LOG << "setLoop(" << (void*)this << ", " << boolString(b) << ")";
setBooleanAttribute(loopAttr, b);
}
bool HTMLMediaElement::shouldShowControls(
const RecordMetricsBehavior recordMetrics) const {
if (fastHasAttribute(controlsAttr)) {
if (recordMetrics == RecordMetricsBehavior::DoRecord)
showControlsHistogram().count(MediaControlsShowAttribute);
return true;
}
if (isFullscreen()) {
if (recordMetrics == RecordMetricsBehavior::DoRecord)
showControlsHistogram().count(MediaControlsShowFullscreen);
return true;
}
LocalFrame* frame = document().frame();
if (frame && !frame->script().canExecuteScripts(NotAboutToExecuteScript)) {
if (recordMetrics == RecordMetricsBehavior::DoRecord)
showControlsHistogram().count(MediaControlsShowNoScript);
return true;
}
if (recordMetrics == RecordMetricsBehavior::DoRecord)
showControlsHistogram().count(MediaControlsShowNotShown);
return false;
}
double HTMLMediaElement::volume() const {
return m_volume;
}
void HTMLMediaElement::setVolume(double vol, ExceptionState& exceptionState) {
BLINK_MEDIA_LOG << "setVolume(" << (void*)this << ", " << vol << ")";
if (m_volume == vol)
return;
if (vol < 0.0f || vol > 1.0f) {
exceptionState.throwDOMException(
IndexSizeError,
ExceptionMessages::indexOutsideRange(
"volume", vol, 0.0, ExceptionMessages::InclusiveBound, 1.0,
ExceptionMessages::InclusiveBound));
return;
}
m_volume = vol;
if (webMediaPlayer())
webMediaPlayer()->setVolume(effectiveMediaVolume());
scheduleEvent(EventTypeNames::volumechange);
}
bool HTMLMediaElement::muted() const {
return m_muted;
}
void HTMLMediaElement::setMuted(bool muted) {
BLINK_MEDIA_LOG << "setMuted(" << (void*)this << ", " << boolString(muted)
<< ")";
if (m_muted == muted)
return;
bool wasAutoplayingMuted = isAutoplayingMuted();
bool wasPendingAutoplayMuted = m_autoplayVisibilityObserver && paused() &&
m_muted && isLockedPendingUserGesture();
if (UserGestureIndicator::processingUserGesture())
unlockUserGesture();
m_muted = muted;
scheduleEvent(EventTypeNames::volumechange);
// If an element autoplayed while muted, it needs to be unlocked to unmute,
// otherwise, it will be paused.
if (wasAutoplayingMuted) {
if (isGestureNeededForPlayback()) {
pause();
m_autoplayUmaHelper->recordAutoplayUnmuteStatus(
AutoplayUnmuteActionStatus::Failure);
} else {
m_autoplayUmaHelper->recordAutoplayUnmuteStatus(
AutoplayUnmuteActionStatus::Success);
}
}
// This is called after the volumechange event to make sure isAutoplayingMuted
// returns the right value when webMediaPlayer receives the volume update.
if (webMediaPlayer())
webMediaPlayer()->setVolume(effectiveMediaVolume());
// If an element was a candidate for autoplay muted but not visible, it will
// have a visibility observer ready to start its playback.
if (wasPendingAutoplayMuted) {
m_autoplayVisibilityObserver->stop();
m_autoplayVisibilityObserver = nullptr;
}
}
double HTMLMediaElement::effectiveMediaVolume() const {
if (m_muted)
return 0;
return m_volume;
}
// The spec says to fire periodic timeupdate events (those sent while playing)
// every "15 to 250ms", we choose the slowest frequency
static const double maxTimeupdateEventFrequency = 0.25;
void HTMLMediaElement::startPlaybackProgressTimer() {
if (m_playbackProgressTimer.isActive())
return;
m_previousProgressTime = WTF::currentTime();
m_playbackProgressTimer.startRepeating(maxTimeupdateEventFrequency,
BLINK_FROM_HERE);
}
void HTMLMediaElement::playbackProgressTimerFired(TimerBase*) {
if (!std::isnan(m_fragmentEndTime) && currentTime() >= m_fragmentEndTime &&
getDirectionOfPlayback() == Forward) {
m_fragmentEndTime = std::numeric_limits<double>::quiet_NaN();
if (!m_paused) {
UseCounter::count(document(),
UseCounter::HTMLMediaElementPauseAtFragmentEnd);
// changes paused to true and fires a simple event named pause at the
// media element.
pauseInternal();
}
}
if (!m_seeking)
scheduleTimeupdateEvent(true);
if (!playbackRate())
return;
cueTimeline().updateActiveCues(currentTime());
}
void HTMLMediaElement::scheduleTimeupdateEvent(bool periodicEvent) {
// Per spec, consult current playback position to check for changing time.
double mediaTime = currentPlaybackPosition();
double now = WTF::currentTime();
bool haveNotRecentlyFiredTimeupdate =
(now - m_lastTimeUpdateEventWallTime) >= maxTimeupdateEventFrequency;
bool mediaTimeHasProgressed = mediaTime != m_lastTimeUpdateEventMediaTime;
// Non-periodic timeupdate events must always fire as mandated by the spec,
// otherwise we shouldn't fire duplicate periodic timeupdate events when the
// movie time hasn't changed.
if (!periodicEvent ||
(haveNotRecentlyFiredTimeupdate && mediaTimeHasProgressed)) {
scheduleEvent(EventTypeNames::timeupdate);
m_lastTimeUpdateEventWallTime = now;
m_lastTimeUpdateEventMediaTime = mediaTime;
}
}
void HTMLMediaElement::togglePlayState() {
if (paused())
play();
else
pause();
}
AudioTrackList& HTMLMediaElement::audioTracks() {
return *m_audioTracks;
}
void HTMLMediaElement::audioTrackChanged(AudioTrack* track) {
BLINK_MEDIA_LOG << "audioTrackChanged(" << (void*)this
<< ") trackId= " << String(track->id())
<< " enabled=" << boolString(track->enabled());
DCHECK(mediaTracksEnabledInternally());
audioTracks().scheduleChangeEvent();
if (m_mediaSource)
m_mediaSource->onTrackChanged(track);
if (!m_audioTracksTimer.isActive())
m_audioTracksTimer.startOneShot(0, BLINK_FROM_HERE);
}
void HTMLMediaElement::audioTracksTimerFired(TimerBase*) {
Vector<WebMediaPlayer::TrackId> enabledTrackIds;
for (unsigned i = 0; i < audioTracks().length(); ++i) {
AudioTrack* track = audioTracks().anonymousIndexedGetter(i);
if (track->enabled())
enabledTrackIds.push_back(track->id());
}
webMediaPlayer()->enabledAudioTracksChanged(enabledTrackIds);
}
WebMediaPlayer::TrackId HTMLMediaElement::addAudioTrack(
const WebString& id,
WebMediaPlayerClient::AudioTrackKind kind,
const WebString& label,
const WebString& language,
bool enabled) {
AtomicString kindString = AudioKindToString(kind);
BLINK_MEDIA_LOG << "addAudioTrack(" << (void*)this << ", '" << (String)id
<< "', ' " << (AtomicString)kindString << "', '"
<< (String)label << "', '" << (String)language << "', "
<< boolString(enabled) << ")";
AudioTrack* audioTrack =
AudioTrack::create(id, kindString, label, language, enabled);
audioTracks().add(audioTrack);
return audioTrack->id();
}
void HTMLMediaElement::removeAudioTrack(WebMediaPlayer::TrackId trackId) {
BLINK_MEDIA_LOG << "removeAudioTrack(" << (void*)this << ")";
audioTracks().remove(trackId);
}
VideoTrackList& HTMLMediaElement::videoTracks() {
return *m_videoTracks;
}
void HTMLMediaElement::selectedVideoTrackChanged(VideoTrack* track) {
BLINK_MEDIA_LOG << "selectedVideoTrackChanged(" << (void*)this
<< ") selectedTrackId="
<< (track->selected() ? String(track->id()) : "none");
DCHECK(mediaTracksEnabledInternally());
if (track->selected())
videoTracks().trackSelected(track->id());
videoTracks().scheduleChangeEvent();
if (m_mediaSource)
m_mediaSource->onTrackChanged(track);
WebMediaPlayer::TrackId id = track->id();
webMediaPlayer()->selectedVideoTrackChanged(track->selected() ? &id
: nullptr);
}
WebMediaPlayer::TrackId HTMLMediaElement::addVideoTrack(
const WebString& id,
WebMediaPlayerClient::VideoTrackKind kind,
const WebString& label,
const WebString& language,
bool selected) {
AtomicString kindString = VideoKindToString(kind);
BLINK_MEDIA_LOG << "addVideoTrack(" << (void*)this << ", '" << (String)id
<< "', '" << (AtomicString)kindString << "', '"
<< (String)label << "', '" << (String)language << "', "
<< boolString(selected) << ")";
// If another track was selected (potentially by the user), leave it selected.
if (selected && videoTracks().selectedIndex() != -1)
selected = false;
VideoTrack* videoTrack =
VideoTrack::create(id, kindString, label, language, selected);
videoTracks().add(videoTrack);
return videoTrack->id();
}
void HTMLMediaElement::removeVideoTrack(WebMediaPlayer::TrackId trackId) {
BLINK_MEDIA_LOG << "removeVideoTrack(" << (void*)this << ")";
videoTracks().remove(trackId);
}
void HTMLMediaElement::addTextTrack(WebInbandTextTrack* webTrack) {
// 4.8.10.12.2 Sourcing in-band text tracks
// 1. Associate the relevant data with a new text track and its corresponding
// new TextTrack object.
InbandTextTrack* textTrack = InbandTextTrack::create(webTrack);
// 2. Set the new text track's kind, label, and language based on the
// semantics of the relevant data, as defined by the relevant specification.
// If there is no label in that data, then the label must be set to the empty
// string.
// 3. Associate the text track list of cues with the rules for updating the
// text track rendering appropriate for the format in question.
// 4. If the new text track's kind is metadata, then set the text track
// in-band metadata track dispatch type as follows, based on the type of the
// media resource:
// 5. Populate the new text track's list of cues with the cues parsed so far,
// folllowing the guidelines for exposing cues, and begin updating it
// dynamically as necessary.
// - Thess are all done by the media engine.
// 6. Set the new text track's readiness state to loaded.
textTrack->setReadinessState(TextTrack::Loaded);
// 7. Set the new text track's mode to the mode consistent with the user's
// preferences and the requirements of the relevant specification for the
// data.
// - This will happen in honorUserPreferencesForAutomaticTextTrackSelection()
scheduleTextTrackResourceLoad();
// 8. Add the new text track to the media element's list of text tracks.
// 9. Fire an event with the name addtrack, that does not bubble and is not
// cancelable, and that uses the TrackEvent interface, with the track
// attribute initialized to the text track's TextTrack object, at the media
// element's textTracks attribute's TextTrackList object.
textTracks()->append(textTrack);
}
void HTMLMediaElement::removeTextTrack(WebInbandTextTrack* webTrack) {
if (!m_textTracks)
return;
// This cast is safe because InbandTextTrack is the only concrete
// implementation of WebInbandTextTrackClient.
InbandTextTrack* textTrack = toInbandTextTrack(webTrack->client());
if (!textTrack)
return;
m_textTracks->remove(textTrack);
}
void HTMLMediaElement::forgetResourceSpecificTracks() {
// Implements the "forget the media element's media-resource-specific tracks"
// algorithm. The order is explicitly specified as text, then audio, and
// finally video. Also 'removetrack' events should not be fired.
if (m_textTracks) {
TrackDisplayUpdateScope scope(this->cueTimeline());
m_textTracks->removeAllInbandTracks();
}
m_audioTracks->removeAll();
m_videoTracks->removeAll();
m_audioTracksTimer.stop();
}
TextTrack* HTMLMediaElement::addTextTrack(const AtomicString& kind,
const AtomicString& label,
const AtomicString& language,
ExceptionState& exceptionState) {
// https://html.spec.whatwg.org/multipage/embedded-content.html#dom-media-addtexttrack
// The addTextTrack(kind, label, language) method of media elements, when
// invoked, must run the following steps:
// 1. Create a new TextTrack object.
// 2. Create a new text track corresponding to the new object, and set its
// text track kind to kind, its text track label to label, its text
// track language to language, ..., and its text track list of cues to
// an empty list.
TextTrack* textTrack = TextTrack::create(kind, label, language);
// ..., its text track readiness state to the text track loaded state, ...
textTrack->setReadinessState(TextTrack::Loaded);
// 3. Add the new text track to the media element's list of text tracks.
// 4. Queue a task to fire a trusted event with the name addtrack, that
// does not bubble and is not cancelable, and that uses the TrackEvent
// interface, with the track attribute initialised to the new text
// track's TextTrack object, at the media element's textTracks
// attribute's TextTrackList object.
textTracks()->append(textTrack);
// Note: Due to side effects when changing track parameters, we have to
// first append the track to the text track list.
// FIXME: Since setMode() will cause a 'change' event to be queued on the
// same task source as the 'addtrack' event (see above), the order is
// wrong. (The 'change' event shouldn't be fired at all in this case...)
// ..., its text track mode to the text track hidden mode, ...
textTrack->setMode(TextTrack::hiddenKeyword());
// 5. Return the new TextTrack object.
return textTrack;
}
TextTrackList* HTMLMediaElement::textTracks() {
if (!m_textTracks)
m_textTracks = TextTrackList::create(this);
return m_textTracks.get();
}
void HTMLMediaElement::didAddTrackElement(HTMLTrackElement* trackElement) {
// 4.8.10.12.3 Sourcing out-of-band text tracks
// When a track element's parent element changes and the new parent is a media
// element, then the user agent must add the track element's corresponding
// text track to the media element's list of text tracks ... [continues in
// TextTrackList::append]
TextTrack* textTrack = trackElement->track();
if (!textTrack)
return;
textTracks()->append(textTrack);
// Do not schedule the track loading until parsing finishes so we don't start
// before all tracks in the markup have been added.
if (isFinishedParsingChildren())
scheduleTextTrackResourceLoad();
}
void HTMLMediaElement::didRemoveTrackElement(HTMLTrackElement* trackElement) {
KURL url = trackElement->getNonEmptyURLAttribute(srcAttr);
BLINK_MEDIA_LOG << "didRemoveTrackElement(" << (void*)this << ") - 'src' is "
<< urlForLoggingMedia(url);
TextTrack* textTrack = trackElement->track();
if (!textTrack)
return;
textTrack->setHasBeenConfigured(false);
if (!m_textTracks)
return;
// 4.8.10.12.3 Sourcing out-of-band text tracks
// When a track element's parent element changes and the old parent was a
// media element, then the user agent must remove the track element's
// corresponding text track from the media element's list of text tracks.
m_textTracks->remove(textTrack);
size_t index = m_textTracksWhenResourceSelectionBegan.find(textTrack);
if (index != kNotFound)
m_textTracksWhenResourceSelectionBegan.remove(index);
}
void HTMLMediaElement::honorUserPreferencesForAutomaticTextTrackSelection() {
if (!m_textTracks || !m_textTracks->length())
return;
if (!m_shouldPerformAutomaticTrackSelection)
return;
AutomaticTrackSelection::Configuration configuration;
if (m_processingPreferenceChange)
configuration.disableCurrentlyEnabledTracks = true;
if (m_textTracksVisible)
configuration.forceEnableSubtitleOrCaptionTrack = true;
Settings* settings = document().settings();
if (settings) {
configuration.textTrackKindUserPreference =
settings->getTextTrackKindUserPreference();
}
AutomaticTrackSelection trackSelection(configuration);
trackSelection.perform(*m_textTracks);
}
bool HTMLMediaElement::havePotentialSourceChild() {
// Stash the current <source> node and next nodes so we can restore them after
// checking to see there is another potential.
HTMLSourceElement* currentSourceNode = m_currentSourceNode;
Node* nextNode = m_nextChildNodeToConsider;
KURL nextURL = selectNextSourceChild(0, DoNothing);
m_currentSourceNode = currentSourceNode;
m_nextChildNodeToConsider = nextNode;
return nextURL.isValid();
}
KURL HTMLMediaElement::selectNextSourceChild(ContentType* contentType,
InvalidURLAction actionIfInvalid) {
// Don't log if this was just called to find out if there are any valid
// <source> elements.
bool shouldLog = actionIfInvalid != DoNothing;
if (shouldLog)
BLINK_MEDIA_LOG << "selectNextSourceChild(" << (void*)this << ")";
if (!m_nextChildNodeToConsider) {
if (shouldLog)
BLINK_MEDIA_LOG << "selectNextSourceChild(" << (void*)this
<< ") -> 0x0000, \"\"";
return KURL();
}
KURL mediaURL;
Node* node;
HTMLSourceElement* source = 0;
String type;
bool lookingForStartNode = m_nextChildNodeToConsider;
bool canUseSourceElement = false;
NodeVector potentialSourceNodes;
getChildNodes(*this, potentialSourceNodes);
for (unsigned i = 0; !canUseSourceElement && i < potentialSourceNodes.size();
++i) {
node = potentialSourceNodes[i].get();
if (lookingForStartNode && m_nextChildNodeToConsider != node)
continue;
lookingForStartNode = false;
if (!isHTMLSourceElement(*node))
continue;
if (node->parentNode() != this)
continue;
source = toHTMLSourceElement(node);
// 2. If candidate does not have a src attribute, or if its src
// attribute's value is the empty string ... jump down to the failed
// step below
const AtomicString& srcValue = source->fastGetAttribute(srcAttr);
if (shouldLog)
BLINK_MEDIA_LOG << "selectNextSourceChild(" << (void*)this
<< ") - 'src' is " << urlForLoggingMedia(mediaURL);
if (srcValue.isEmpty())
goto checkAgain;
// 3. Let urlString be the resulting URL string that would have resulted
// from parsing the URL specified by candidate's src attribute's value
// relative to the candidate's node document when the src attribute was
// last changed.
mediaURL = source->document().completeURL(srcValue);
// 4. If urlString was not obtained successfully, then end the
// synchronous section, and jump down to the failed with elements step
// below.
if (!isSafeToLoadURL(mediaURL, actionIfInvalid))
goto checkAgain;
// 5. If candidate has a type attribute whose value, when parsed as a
// MIME type ...
type = source->type();
if (type.isEmpty() && mediaURL.protocolIsData())
type = mimeTypeFromDataURL(mediaURL);
if (!type.isEmpty()) {
if (shouldLog)
BLINK_MEDIA_LOG << "selectNextSourceChild(" << (void*)this
<< ") - 'type' is '" << type << "'";
if (!supportsType(ContentType(type)))
goto checkAgain;
}
// Making it this far means the <source> looks reasonable.
canUseSourceElement = true;
checkAgain:
if (!canUseSourceElement && actionIfInvalid == Complain && source)
source->scheduleErrorEvent();
}
if (canUseSourceElement) {
if (contentType)
*contentType = ContentType(type);
m_currentSourceNode = source;
m_nextChildNodeToConsider = source->nextSibling();
} else {
m_currentSourceNode = nullptr;
m_nextChildNodeToConsider = nullptr;
}
if (shouldLog)
BLINK_MEDIA_LOG << "selectNextSourceChild(" << (void*)this << ") -> "
<< m_currentSourceNode.get() << ", "
<< (canUseSourceElement ? urlForLoggingMedia(mediaURL)
: "");
return canUseSourceElement ? mediaURL : KURL();
}
void HTMLMediaElement::sourceWasAdded(HTMLSourceElement* source) {
BLINK_MEDIA_LOG << "sourceWasAdded(" << (void*)this << ", " << source << ")";
KURL url = source->getNonEmptyURLAttribute(srcAttr);
BLINK_MEDIA_LOG << "sourceWasAdded(" << (void*)this << ") - 'src' is "
<< urlForLoggingMedia(url);
// We should only consider a <source> element when there is not src attribute
// at all.
if (fastHasAttribute(srcAttr))
return;
// 4.8.8 - If a source element is inserted as a child of a media element that
// has no src attribute and whose networkState has the value NETWORK_EMPTY,
// the user agent must invoke the media element's resource selection
// algorithm.
if (getNetworkState() == HTMLMediaElement::kNetworkEmpty) {
invokeResourceSelectionAlgorithm();
// Ignore current |m_nextChildNodeToConsider| and consider |source|.
m_nextChildNodeToConsider = source;
return;
}
if (m_currentSourceNode && source == m_currentSourceNode->nextSibling()) {
BLINK_MEDIA_LOG << "sourceWasAdded(" << (void*)this
<< ") - <source> inserted immediately after current source";
// Ignore current |m_nextChildNodeToConsider| and consider |source|.
m_nextChildNodeToConsider = source;
return;
}
// Consider current |m_nextChildNodeToConsider| as it is already in the middle
// of processing.
if (m_nextChildNodeToConsider)
return;
if (m_loadState != WaitingForSource)
return;
// 4.8.9.5, resource selection algorithm, source elements section:
// 21. Wait until the node after pointer is a node other than the end of the
// list. (This step might wait forever.)
// 22. Asynchronously await a stable state...
// 23. Set the element's delaying-the-load-event flag back to true (this
// delays the load event again, in case it hasn't been fired yet).
setShouldDelayLoadEvent(true);
// 24. Set the networkState back to NETWORK_LOADING.
setNetworkState(kNetworkLoading);
// 25. Jump back to the find next candidate step above.
m_nextChildNodeToConsider = source;
scheduleNextSourceChild();
}
void HTMLMediaElement::sourceWasRemoved(HTMLSourceElement* source) {
BLINK_MEDIA_LOG << "sourceWasRemoved(" << (void*)this << ", " << source
<< ")";
KURL url = source->getNonEmptyURLAttribute(srcAttr);
BLINK_MEDIA_LOG << "sourceWasRemoved(" << (void*)this << ") - 'src' is "
<< urlForLoggingMedia(url);
if (source != m_currentSourceNode && source != m_nextChildNodeToConsider)
return;
if (source == m_nextChildNodeToConsider) {
if (m_currentSourceNode)
m_nextChildNodeToConsider = m_currentSourceNode->nextSibling();
BLINK_MEDIA_LOG << "sourceWasRemoved(" << (void*)this
<< ") - m_nextChildNodeToConsider set to "
<< m_nextChildNodeToConsider.get();
} else if (source == m_currentSourceNode) {
// Clear the current source node pointer, but don't change the movie as the
// spec says:
// 4.8.8 - Dynamically modifying a source element and its attribute when the
// element is already inserted in a video or audio element will have no
// effect.
m_currentSourceNode = nullptr;
BLINK_MEDIA_LOG << "sourceWasRemoved(" << (void*)this
<< ") - m_currentSourceNode set to 0";
}
}
void HTMLMediaElement::timeChanged() {
BLINK_MEDIA_LOG << "timeChanged(" << (void*)this << ")";
cueTimeline().updateActiveCues(currentTime());
// 4.8.10.9 steps 12-14. Needed if no ReadyState change is associated with the
// seek.
if (m_seeking && m_readyState >= kHaveCurrentData &&
!webMediaPlayer()->seeking())
finishSeek();
// Always call scheduleTimeupdateEvent when the media engine reports a time
// discontinuity, it will only queue a 'timeupdate' event if we haven't
// already posted one at the current movie time.
scheduleTimeupdateEvent(false);
double now = currentPlaybackPosition();
double dur = duration();
// When the current playback position reaches the end of the media resource
// when the direction of playback is forwards, then the user agent must follow
// these steps:
if (!std::isnan(dur) && dur && now >= dur &&
getDirectionOfPlayback() == Forward) {
// If the media element has a loop attribute specified
if (loop()) {
// then seek to the earliest possible position of the media resource and
// abort these steps.
seek(earliestPossiblePosition());
} else {
// If the media element has still ended playback, and the direction of
// playback is still forwards, and paused is false,
if (!m_paused) {
// changes paused to true and fires a simple event named pause at the
// media element.
m_paused = true;
scheduleEvent(EventTypeNames::pause);
scheduleRejectPlayPromises(AbortError);
}
// Queue a task to fire a simple event named ended at the media element.
scheduleEvent(EventTypeNames::ended);
}
}
updatePlayState();
}
void HTMLMediaElement::durationChanged() {
BLINK_MEDIA_LOG << "durationChanged(" << (void*)this << ")";
// durationChanged() is triggered by media player.
CHECK(m_webMediaPlayer);
double newDuration = m_webMediaPlayer->duration();
// If the duration is changed such that the *current playback position* ends
// up being greater than the time of the end of the media resource, then the
// user agent must also seek to the time of the end of the media resource.
durationChanged(newDuration, currentPlaybackPosition() > newDuration);
}
void HTMLMediaElement::durationChanged(double duration, bool requestSeek) {
BLINK_MEDIA_LOG << "durationChanged(" << (void*)this << ", " << duration
<< ", " << boolString(requestSeek) << ")";
// Abort if duration unchanged.
if (m_duration == duration)
return;
BLINK_MEDIA_LOG << "durationChanged(" << (void*)this << ") : " << m_duration
<< " -> " << duration;
m_duration = duration;
scheduleEvent(EventTypeNames::durationchange);
if (layoutObject())
layoutObject()->updateFromElement();
if (requestSeek)
seek(duration);
}
void HTMLMediaElement::playbackStateChanged() {
BLINK_MEDIA_LOG << "playbackStateChanged(" << (void*)this << ")";
if (!webMediaPlayer())
return;
if (webMediaPlayer()->paused())
pauseInternal();
else
playInternal();
}
void HTMLMediaElement::requestSeek(double time) {
// The player is the source of this seek request.
setCurrentTime(time);
}
void HTMLMediaElement::remoteRouteAvailabilityChanged(
WebRemotePlaybackAvailability availability) {
if (remotePlaybackClient())
remotePlaybackClient()->availabilityChanged(availability);
// TODO(mlamouri): the RemotePlayback object should be used in order to
// register to watch availability but the object is in modules/ and core/ has
// no access to it. It will have to be done when the media controls move to
// modules/.
if (mediaControls())
mediaControls()->onRemotePlaybackAvailabilityChanged();
}
bool HTMLMediaElement::hasRemoteRoutes() const {
// TODO(mlamouri): this is only used for controls related code. It shouldn't
// live in HTMLMediaElement.
return remotePlaybackClient() &&
remotePlaybackClient()->remotePlaybackAvailable();
}
void HTMLMediaElement::connectedToRemoteDevice() {
m_playingRemotely = true;
if (remotePlaybackClient())
remotePlaybackClient()->stateChanged(WebRemotePlaybackState::Connecting);
// TODO(mlamouri): the RemotePlayback object should be used in order to listen
// for events but the object is in modules/ and core/ has no access to it. It
// will have to be done when the media controls move to modules/.
if (mediaControls())
mediaControls()->onRemotePlaybackConnecting();
}
void HTMLMediaElement::disconnectedFromRemoteDevice() {
m_playingRemotely = false;
if (remotePlaybackClient())
remotePlaybackClient()->stateChanged(WebRemotePlaybackState::Disconnected);
// TODO(mlamouri): the RemotePlayback object should be used in order to listen
// for events but the object is in modules/ and core/ has no access to it. It
// will have to be done when the media controls move to modules/.
if (mediaControls())
mediaControls()->onRemotePlaybackDisconnected();
}
void HTMLMediaElement::cancelledRemotePlaybackRequest() {
if (remotePlaybackClient())
remotePlaybackClient()->promptCancelled();
}
void HTMLMediaElement::remotePlaybackStarted() {
if (remotePlaybackClient())
remotePlaybackClient()->stateChanged(WebRemotePlaybackState::Connected);
}
bool HTMLMediaElement::hasSelectedVideoTrack() {
DCHECK(RuntimeEnabledFeatures::backgroundVideoTrackOptimizationEnabled());
return m_videoTracks && m_videoTracks->selectedIndex() != -1;
}
WebMediaPlayer::TrackId HTMLMediaElement::getSelectedVideoTrackId() {
DCHECK(RuntimeEnabledFeatures::backgroundVideoTrackOptimizationEnabled());
DCHECK(hasSelectedVideoTrack());
int selectedTrackIndex = m_videoTracks->selectedIndex();
VideoTrack* track = m_videoTracks->anonymousIndexedGetter(selectedTrackIndex);
return track->id();
}
bool HTMLMediaElement::isAutoplayingMuted() {
if (!isHTMLVideoElement() ||
!RuntimeEnabledFeatures::autoplayMutedVideosEnabled()) {
return false;
}
return !paused() && muted() && isLockedPendingUserGesture();
}
void HTMLMediaElement::requestReload(const WebURL& newUrl) {
DCHECK(webMediaPlayer());
DCHECK(!m_srcObject);
DCHECK(newUrl.isValid());
DCHECK(isSafeToLoadURL(newUrl, Complain));
resetMediaPlayerAndMediaSource();
startPlayerLoad(newUrl);
}
// MediaPlayerPresentation methods
void HTMLMediaElement::repaint() {
if (m_webLayer)
m_webLayer->invalidate();
updateDisplayState();
if (layoutObject())
layoutObject()->setShouldDoFullPaintInvalidation();
}
void HTMLMediaElement::sizeChanged() {
BLINK_MEDIA_LOG << "sizeChanged(" << (void*)this << ")";
DCHECK(hasVideo()); // "resize" makes no sense in absence of video.
if (m_readyState > kHaveNothing && isHTMLVideoElement())
scheduleEvent(EventTypeNames::resize);
if (layoutObject())
layoutObject()->updateFromElement();
}
TimeRanges* HTMLMediaElement::buffered() const {
if (m_mediaSource)
return m_mediaSource->buffered();
if (!webMediaPlayer())
return TimeRanges::create();
return TimeRanges::create(webMediaPlayer()->buffered());
}
TimeRanges* HTMLMediaElement::played() {
if (m_playing) {
double time = currentTime();
if (time > m_lastSeekTime)
addPlayedRange(m_lastSeekTime, time);
}
if (!m_playedTimeRanges)
m_playedTimeRanges = TimeRanges::create();
return m_playedTimeRanges->copy();
}
TimeRanges* HTMLMediaElement::seekable() const {
if (!webMediaPlayer())
return TimeRanges::create();
if (m_mediaSource)
return m_mediaSource->seekable();
return TimeRanges::create(webMediaPlayer()->seekable());
}
bool HTMLMediaElement::potentiallyPlaying() const {
// "pausedToBuffer" means the media engine's rate is 0, but only because it
// had to stop playing when it ran out of buffered data. A movie in this state
// is "potentially playing", modulo the checks in couldPlayIfEnoughData().
bool pausedToBuffer =
m_readyStateMaximum >= kHaveFutureData && m_readyState < kHaveFutureData;
return (pausedToBuffer || m_readyState >= kHaveFutureData) &&
couldPlayIfEnoughData();
}
bool HTMLMediaElement::couldPlayIfEnoughData() const {
return !paused() && !endedPlayback() && !stoppedDueToErrors();
}
bool HTMLMediaElement::endedPlayback(LoopCondition loopCondition) const {
double dur = duration();
if (std::isnan(dur))
return false;
// 4.8.10.8 Playing the media resource
// A media element is said to have ended playback when the element's
// readyState attribute is HAVE_METADATA or greater,
if (m_readyState < kHaveMetadata)
return false;
// and the current playback position is the end of the media resource and the
// direction of playback is forwards, Either the media element does not have a
// loop attribute specified,
double now = currentPlaybackPosition();
if (getDirectionOfPlayback() == Forward)
return dur > 0 && now >= dur &&
(loopCondition == LoopCondition::Ignored || !loop());
// or the current playback position is the earliest possible position and the
// direction of playback is backwards
DCHECK_EQ(getDirectionOfPlayback(), Backward);
return now <= earliestPossiblePosition();
}
bool HTMLMediaElement::stoppedDueToErrors() const {
if (m_readyState >= kHaveMetadata && m_error) {
TimeRanges* seekableRanges = seekable();
if (!seekableRanges->contain(currentTime()))
return true;
}
return false;
}
void HTMLMediaElement::updatePlayState() {
bool isPlaying = webMediaPlayer() && !webMediaPlayer()->paused();
bool shouldBePlaying = potentiallyPlaying();
BLINK_MEDIA_LOG << "updatePlayState(" << (void*)this
<< ") - shouldBePlaying = " << boolString(shouldBePlaying)
<< ", isPlaying = " << boolString(isPlaying);
if (shouldBePlaying) {
setDisplayMode(Video);
if (!isPlaying) {
// Set rate, muted before calling play in case they were set before the
// media engine was setup. The media engine should just stash the rate
// and muted values since it isn't already playing.
webMediaPlayer()->setRate(playbackRate());
webMediaPlayer()->setVolume(effectiveMediaVolume());
webMediaPlayer()->play();
}
startPlaybackProgressTimer();
m_playing = true;
} else { // Should not be playing right now
if (isPlaying) {
webMediaPlayer()->pause();
}
m_playbackProgressTimer.stop();
m_playing = false;
double time = currentTime();
if (time > m_lastSeekTime)
addPlayedRange(m_lastSeekTime, time);
}
if (layoutObject())
layoutObject()->updateFromElement();
}
void HTMLMediaElement::stopPeriodicTimers() {
m_progressEventTimer.stop();
m_playbackProgressTimer.stop();
m_checkViewportIntersectionTimer.stop();
}
void HTMLMediaElement::
clearMediaPlayerAndAudioSourceProviderClientWithoutLocking() {
getAudioSourceProvider().setClient(nullptr);
if (m_webMediaPlayer) {
m_audioSourceProvider.wrap(nullptr);
m_webMediaPlayer.reset();
}
}
void HTMLMediaElement::clearMediaPlayer() {
forgetResourceSpecificTracks();
closeMediaSource();
cancelDeferredLoad();
{
AudioSourceProviderClientLockScope scope(*this);
clearMediaPlayerAndAudioSourceProviderClientWithoutLocking();
}
stopPeriodicTimers();
m_loadTimer.stop();
m_pendingActionFlags = 0;
m_loadState = WaitingForSource;
// We can't cast if we don't have a media player.
m_playingRemotely = false;
remoteRouteAvailabilityChanged(WebRemotePlaybackAvailability::Unknown);
if (layoutObject())
layoutObject()->setShouldDoFullPaintInvalidation();
}
void HTMLMediaElement::contextDestroyed(ExecutionContext*) {
BLINK_MEDIA_LOG << "contextDestroyed(" << (void*)this << ")";
// Close the async event queue so that no events are enqueued.
cancelPendingEventsAndCallbacks();
m_asyncEventQueue->close();
// Clear everything in the Media Element
clearMediaPlayer();
m_readyState = kHaveNothing;
m_readyStateMaximum = kHaveNothing;
setNetworkState(kNetworkEmpty);
setShouldDelayLoadEvent(false);
m_currentSourceNode = nullptr;
m_officialPlaybackPosition = 0;
m_officialPlaybackPositionNeedsUpdate = true;
cueTimeline().updateActiveCues(0);
m_playing = false;
m_paused = true;
m_seeking = false;
if (layoutObject())
layoutObject()->updateFromElement();
stopPeriodicTimers();
// Ensure that hasPendingActivity() is not preventing garbage collection,
// since otherwise this media element will simply leak.
DCHECK(!hasPendingActivity());
}
bool HTMLMediaElement::hasPendingActivity() const {
// The delaying-the-load-event flag is set by resource selection algorithm
// when looking for a resource to load, before networkState has reached to
// kNetworkLoading.
if (m_shouldDelayLoadEvent)
return true;
// When networkState is kNetworkLoading, progress and stalled events may be
// fired.
if (m_networkState == kNetworkLoading)
return true;
{
// Disable potential updating of playback position, as that will
// require v8 allocations; not allowed while GCing
// (hasPendingActivity() is called during a v8 GC.)
AutoReset<bool> scope(&m_officialPlaybackPositionNeedsUpdate, false);
// When playing or if playback may continue, timeupdate events may be fired.
if (couldPlayIfEnoughData())
return true;
}
// When the seek finishes timeupdate and seeked events will be fired.
if (m_seeking)
return true;
// When connected to a MediaSource, e.g. setting MediaSource.duration will
// cause a durationchange event to be fired.
if (m_mediaSource)
return true;
// Wait for any pending events to be fired.
if (m_asyncEventQueue->hasPendingEvents())
return true;
return false;
}
bool HTMLMediaElement::isFullscreen() const {
return Fullscreen::isCurrentFullScreenElement(*this);
}
void HTMLMediaElement::didEnterFullscreen() {
updateControlsVisibility();
// FIXME: There is no embedder-side handling in layout test mode.
if (webMediaPlayer() && !LayoutTestSupport::isRunningLayoutTest())
webMediaPlayer()->enteredFullscreen();
// Cache this in case the player is destroyed before leaving fullscreen.
m_inOverlayFullscreenVideo = usesOverlayFullscreenVideo();
if (m_inOverlayFullscreenVideo)
document().layoutViewItem().compositor()->setNeedsCompositingUpdate(
CompositingUpdateRebuildTree);
}
void HTMLMediaElement::didExitFullscreen() {
updateControlsVisibility();
if (webMediaPlayer())
webMediaPlayer()->exitedFullscreen();
if (m_inOverlayFullscreenVideo)
document().layoutViewItem().compositor()->setNeedsCompositingUpdate(
CompositingUpdateRebuildTree);
m_inOverlayFullscreenVideo = false;
}
WebLayer* HTMLMediaElement::platformLayer() const {
return m_webLayer;
}
bool HTMLMediaElement::hasClosedCaptions() const {
if (!m_textTracks)
return false;
for (unsigned i = 0; i < m_textTracks->length(); ++i) {
if (m_textTracks->anonymousIndexedGetter(i)->canBeRendered())
return true;
}
return false;
}
bool HTMLMediaElement::textTracksVisible() const {
return m_textTracksVisible;
}
static void assertShadowRootChildren(ShadowRoot& shadowRoot) {
#if DCHECK_IS_ON()
// There can be up to two children, either or both of the text
// track container and media controls. If both are present, the
// text track container must be the first child.
unsigned numberOfChildren = shadowRoot.countChildren();
DCHECK_LE(numberOfChildren, 2u);
Node* firstChild = shadowRoot.firstChild();
Node* lastChild = shadowRoot.lastChild();
if (numberOfChildren == 1) {
DCHECK(firstChild->isTextTrackContainer() || firstChild->isMediaControls());
} else if (numberOfChildren == 2) {
DCHECK(firstChild->isTextTrackContainer());
DCHECK(lastChild->isMediaControls());
}
#endif
}
TextTrackContainer& HTMLMediaElement::ensureTextTrackContainer() {
ShadowRoot& shadowRoot = ensureUserAgentShadowRoot();
assertShadowRootChildren(shadowRoot);
Node* firstChild = shadowRoot.firstChild();
if (firstChild && firstChild->isTextTrackContainer())
return toTextTrackContainer(*firstChild);
TextTrackContainer* textTrackContainer =
TextTrackContainer::create(document());
// The text track container should be inserted before the media controls,
// so that they are rendered behind them.
shadowRoot.insertBefore(textTrackContainer, firstChild);
assertShadowRootChildren(shadowRoot);
return *textTrackContainer;
}
void HTMLMediaElement::updateTextTrackDisplay() {
BLINK_MEDIA_LOG << "updateTextTrackDisplay(" << (void*)this << ")";
ensureTextTrackContainer().updateDisplay(
*this, TextTrackContainer::DidNotStartExposingControls);
}
void HTMLMediaElement::mediaControlsDidBecomeVisible() {
BLINK_MEDIA_LOG << "mediaControlsDidBecomeVisible(" << (void*)this << ")";
// When the user agent starts exposing a user interface for a video element,
// the user agent should run the rules for updating the text track rendering
// of each of the text tracks in the video element's list of text tracks ...
if (isHTMLVideoElement() && textTracksVisible())
ensureTextTrackContainer().updateDisplay(
*this, TextTrackContainer::DidStartExposingControls);
}
void HTMLMediaElement::setTextTrackKindUserPreferenceForAllMediaElements(
Document* document) {
auto it = documentToElementSetMap().find(document);
if (it == documentToElementSetMap().end())
return;
DCHECK(it->value);
WeakMediaElementSet& elements = *it->value;
for (const auto& element : elements)
element->automaticTrackSelectionForUpdatedUserPreference();
}
void HTMLMediaElement::automaticTrackSelectionForUpdatedUserPreference() {
if (!m_textTracks || !m_textTracks->length())
return;
markCaptionAndSubtitleTracksAsUnconfigured();
m_processingPreferenceChange = true;
m_textTracksVisible = false;
honorUserPreferencesForAutomaticTextTrackSelection();
m_processingPreferenceChange = false;
// If a track is set to 'showing' post performing automatic track selection,
// set text tracks state to visible to update the CC button and display the
// track.
m_textTracksVisible = m_textTracks->hasShowingTracks();
updateTextTrackDisplay();
}
void HTMLMediaElement::markCaptionAndSubtitleTracksAsUnconfigured() {
if (!m_textTracks)
return;
// Mark all tracks as not "configured" so that
// honorUserPreferencesForAutomaticTextTrackSelection() will reconsider
// which tracks to display in light of new user preferences (e.g. default
// tracks should not be displayed if the user has turned off captions and
// non-default tracks should be displayed based on language preferences if
// the user has turned captions on).
for (unsigned i = 0; i < m_textTracks->length(); ++i) {
TextTrack* textTrack = m_textTracks->anonymousIndexedGetter(i);
if (textTrack->isVisualKind())
textTrack->setHasBeenConfigured(false);
}
}
unsigned HTMLMediaElement::webkitAudioDecodedByteCount() const {
if (!webMediaPlayer())
return 0;
return webMediaPlayer()->audioDecodedByteCount();
}
unsigned HTMLMediaElement::webkitVideoDecodedByteCount() const {
if (!webMediaPlayer())
return 0;
return webMediaPlayer()->videoDecodedByteCount();
}
bool HTMLMediaElement::isURLAttribute(const Attribute& attribute) const {
return attribute.name() == srcAttr || HTMLElement::isURLAttribute(attribute);
}
void HTMLMediaElement::setShouldDelayLoadEvent(bool shouldDelay) {
if (m_shouldDelayLoadEvent == shouldDelay)
return;
BLINK_MEDIA_LOG << "setShouldDelayLoadEvent(" << (void*)this << ", "
<< boolString(shouldDelay) << ")";
m_shouldDelayLoadEvent = shouldDelay;
if (shouldDelay)
document().incrementLoadEventDelayCount();
else
document().decrementLoadEventDelayCount();
}
MediaControls* HTMLMediaElement::mediaControls() const {
return m_mediaControls;
}
void HTMLMediaElement::ensureMediaControls() {
if (mediaControls())
return;
ShadowRoot& shadowRoot = ensureUserAgentShadowRoot();
m_mediaControls = MediaControls::create(*this, shadowRoot);
// The media controls should be inserted after the text track container,
// so that they are rendered in front of captions and subtitles. This check
// is verifying the contract.
assertShadowRootChildren(shadowRoot);
}
void HTMLMediaElement::updateControlsVisibility() {
if (!isConnected()) {
if (mediaControls())
mediaControls()->hide();
return;
}
ensureMediaControls();
// TODO(mlamouri): this doesn't sound needed but the following tests, on
// Android fails when removed:
// fullscreen/compositor-touch-hit-rects-fullscreen-video-controls.html
mediaControls()->reset();
if (shouldShowControls(RecordMetricsBehavior::DoRecord))
mediaControls()->show();
else
mediaControls()->hide();
}
CueTimeline& HTMLMediaElement::cueTimeline() {
if (!m_cueTimeline)
m_cueTimeline = new CueTimeline(*this);
return *m_cueTimeline;
}
void HTMLMediaElement::configureTextTrackDisplay() {
DCHECK(m_textTracks);
BLINK_MEDIA_LOG << "configureTextTrackDisplay(" << (void*)this << ")";
if (m_processingPreferenceChange)
return;
bool haveVisibleTextTrack = m_textTracks->hasShowingTracks();
m_textTracksVisible = haveVisibleTextTrack;
if (!haveVisibleTextTrack && !mediaControls())
return;
cueTimeline().updateActiveCues(currentTime());
// Note: The "time marches on" algorithm (updateActiveCues) runs the "rules
// for updating the text track rendering" (updateTextTrackDisplay) only for
// "affected tracks", i.e. tracks where the the active cues have changed.
// This misses cues in tracks that changed mode between hidden and showing.
// This appears to be a spec bug, which we work around here:
// https://www.w3.org/Bugs/Public/show_bug.cgi?id=28236
updateTextTrackDisplay();
}
// TODO(srirama.m): Merge it to resetMediaElement if possible and remove it.
void HTMLMediaElement::resetMediaPlayerAndMediaSource() {
closeMediaSource();
{
AudioSourceProviderClientLockScope scope(*this);
clearMediaPlayerAndAudioSourceProviderClientWithoutLocking();
}
// We haven't yet found out if any remote routes are available.
m_playingRemotely = false;
remoteRouteAvailabilityChanged(WebRemotePlaybackAvailability::Unknown);
if (m_audioSourceNode)
getAudioSourceProvider().setClient(m_audioSourceNode);
}
void HTMLMediaElement::setAudioSourceNode(
AudioSourceProviderClient* sourceNode) {
DCHECK(isMainThread());
m_audioSourceNode = sourceNode;
AudioSourceProviderClientLockScope scope(*this);
getAudioSourceProvider().setClient(m_audioSourceNode);
}
WebMediaPlayer::CORSMode HTMLMediaElement::corsMode() const {
const AtomicString& crossOriginMode = fastGetAttribute(crossoriginAttr);
if (crossOriginMode.isNull())
return WebMediaPlayer::CORSModeUnspecified;
if (equalIgnoringCase(crossOriginMode, "use-credentials"))
return WebMediaPlayer::CORSModeUseCredentials;
return WebMediaPlayer::CORSModeAnonymous;
}
void HTMLMediaElement::setWebLayer(WebLayer* webLayer) {
if (webLayer == m_webLayer)
return;
// If either of the layers is null we need to enable or disable compositing.
// This is done by triggering a style recalc.
if (!m_webLayer || !webLayer)
setNeedsCompositingUpdate();
if (m_webLayer)
GraphicsLayer::unregisterContentsLayer(m_webLayer);
m_webLayer = webLayer;
if (m_webLayer)
GraphicsLayer::registerContentsLayer(m_webLayer);
}
void HTMLMediaElement::mediaSourceOpened(WebMediaSource* webMediaSource) {
setShouldDelayLoadEvent(false);
m_mediaSource->setWebMediaSourceAndOpen(WTF::wrapUnique(webMediaSource));
}
bool HTMLMediaElement::isInteractiveContent() const {
return fastHasAttribute(controlsAttr);
}
DEFINE_TRACE(HTMLMediaElement) {
visitor->trace(m_playedTimeRanges);
visitor->trace(m_asyncEventQueue);
visitor->trace(m_error);
visitor->trace(m_currentSourceNode);
visitor->trace(m_nextChildNodeToConsider);
visitor->trace(m_mediaSource);
visitor->trace(m_audioTracks);
visitor->trace(m_videoTracks);
visitor->trace(m_cueTimeline);
visitor->trace(m_textTracks);
visitor->trace(m_textTracksWhenResourceSelectionBegan);
visitor->trace(m_playPromiseResolvers);
visitor->trace(m_playPromiseResolveList);
visitor->trace(m_playPromiseRejectList);
visitor->trace(m_audioSourceProvider);
visitor->trace(m_autoplayUmaHelper);
visitor->trace(m_srcObject);
visitor->trace(m_autoplayVisibilityObserver);
visitor->trace(m_mediaControls);
visitor->template registerWeakMembers<HTMLMediaElement,
&HTMLMediaElement::clearWeakMembers>(
this);
Supplementable<HTMLMediaElement>::trace(visitor);
HTMLElement::trace(visitor);
SuspendableObject::trace(visitor);
}
DEFINE_TRACE_WRAPPERS(HTMLMediaElement) {
visitor->traceWrappers(m_videoTracks);
visitor->traceWrappers(m_audioTracks);
visitor->traceWrappers(m_textTracks);
HTMLElement::traceWrappers(visitor);
}
void HTMLMediaElement::createPlaceholderTracksIfNecessary() {
if (!mediaTracksEnabledInternally())
return;
// Create a placeholder audio track if the player says it has audio but it
// didn't explicitly announce the tracks.
if (hasAudio() && !audioTracks().length()) {
addAudioTrack("audio", WebMediaPlayerClient::AudioTrackKindMain,
"Audio Track", "", false);
}
// Create a placeholder video track if the player says it has video but it
// didn't explicitly announce the tracks.
if (hasVideo() && !videoTracks().length()) {
addVideoTrack("video", WebMediaPlayerClient::VideoTrackKindMain,
"Video Track", "", false);
}
}
void HTMLMediaElement::selectInitialTracksIfNecessary() {
if (!mediaTracksEnabledInternally())
return;
// Enable the first audio track if an audio track hasn't been enabled yet.
if (audioTracks().length() > 0 && !audioTracks().hasEnabledTrack())
audioTracks().anonymousIndexedGetter(0)->setEnabled(true);
// Select the first video track if a video track hasn't been selected yet.
if (videoTracks().length() > 0 && videoTracks().selectedIndex() == -1)
videoTracks().anonymousIndexedGetter(0)->setSelected(true);
}
bool HTMLMediaElement::isLockedPendingUserGesture() const {
return m_lockedPendingUserGesture;
}
void HTMLMediaElement::unlockUserGesture() {
m_lockedPendingUserGesture = false;
m_lockedPendingUserGestureIfCrossOriginExperimentEnabled = false;
}
bool HTMLMediaElement::isGestureNeededForPlayback() const {
if (!m_lockedPendingUserGesture)
return false;
return isGestureNeededForPlaybackIfPendingUserGestureIsLocked();
}
bool HTMLMediaElement::
isGestureNeededForPlaybackIfCrossOriginExperimentEnabled() const {
if (!m_lockedPendingUserGestureIfCrossOriginExperimentEnabled)
return false;
return isGestureNeededForPlaybackIfPendingUserGestureIsLocked();
}
bool HTMLMediaElement::isGestureNeededForPlaybackIfPendingUserGestureIsLocked()
const {
if (loadType() == WebMediaPlayer::LoadTypeMediaStream)
return false;
// We want to allow muted video to autoplay if:
// - the flag is enabled;
// - Data Saver is not enabled;
// - Preload was not disabled (low end devices);
// - Autoplay is enabled in settings;
if (isHTMLVideoElement() && muted() &&
RuntimeEnabledFeatures::autoplayMutedVideosEnabled() &&
!(document().settings() &&
document().settings()->getDataSaverEnabled()) &&
!(document().settings() &&
document().settings()->getForcePreloadNoneForMediaElements()) &&
isAutoplayAllowedPerSettings()) {
return false;
}
return true;
}
bool HTMLMediaElement::isAutoplayAllowedPerSettings() const {
LocalFrame* frame = document().frame();
if (!frame)
return false;
FrameLoaderClient* frameLoaderClient = frame->loader().client();
return frameLoaderClient && frameLoaderClient->allowAutoplay(true);
}
void HTMLMediaElement::setNetworkState(NetworkState state) {
if (m_networkState == state)
return;
m_networkState = state;
if (mediaControls())
mediaControls()->networkStateChanged();
}
void HTMLMediaElement::videoWillBeDrawnToCanvas() const {
DCHECK(isHTMLVideoElement());
UseCounter::count(document(), UseCounter::VideoInCanvas);
if (m_autoplayUmaHelper->hasSource() && !m_autoplayUmaHelper->isVisible())
UseCounter::count(document(), UseCounter::HiddenAutoplayedVideoInCanvas);
}
void HTMLMediaElement::scheduleResolvePlayPromises() {
// TODO(mlamouri): per spec, we should create a new task but we can't create
// a new cancellable task without cancelling the previous one. There are two
// approaches then: cancel the previous task and create a new one with the
// appended promise list or append the new promise to the current list. The
// latter approach is preferred because it might be the less observable
// change.
DCHECK(m_playPromiseResolveList.isEmpty() ||
m_playPromiseResolveTaskHandle.isActive());
if (m_playPromiseResolvers.isEmpty())
return;
m_playPromiseResolveList.appendVector(m_playPromiseResolvers);
m_playPromiseResolvers.clear();
if (m_playPromiseResolveTaskHandle.isActive())
return;
m_playPromiseResolveTaskHandle =
TaskRunnerHelper::get(TaskType::MediaElementEvent, &document())
->postCancellableTask(
BLINK_FROM_HERE,
WTF::bind(&HTMLMediaElement::resolveScheduledPlayPromises,
wrapWeakPersistent(this)));
}
void HTMLMediaElement::scheduleRejectPlayPromises(ExceptionCode code) {
// TODO(mlamouri): per spec, we should create a new task but we can't create
// a new cancellable task without cancelling the previous one. There are two
// approaches then: cancel the previous task and create a new one with the
// appended promise list or append the new promise to the current list. The
// latter approach is preferred because it might be the less observable
// change.
DCHECK(m_playPromiseRejectList.isEmpty() ||
m_playPromiseRejectTaskHandle.isActive());
if (m_playPromiseResolvers.isEmpty())
return;
m_playPromiseRejectList.appendVector(m_playPromiseResolvers);
m_playPromiseResolvers.clear();
if (m_playPromiseRejectTaskHandle.isActive())
return;
// TODO(nhiroki): Bind this error code to a cancellable task instead of a
// member field.
m_playPromiseErrorCode = code;
m_playPromiseRejectTaskHandle =
TaskRunnerHelper::get(TaskType::MediaElementEvent, &document())
->postCancellableTask(
BLINK_FROM_HERE,
WTF::bind(&HTMLMediaElement::rejectScheduledPlayPromises,
wrapWeakPersistent(this)));
}
void HTMLMediaElement::scheduleNotifyPlaying() {
scheduleEvent(EventTypeNames::playing);
scheduleResolvePlayPromises();
}
void HTMLMediaElement::resolveScheduledPlayPromises() {
for (auto& resolver : m_playPromiseResolveList)
resolver->resolve();
m_playPromiseResolveList.clear();
}
void HTMLMediaElement::rejectScheduledPlayPromises() {
// TODO(mlamouri): the message is generated based on the code because
// arguments can't be passed to a cancellable task. In order to save space
// used by the object, the string isn't saved.
DCHECK(m_playPromiseErrorCode == AbortError ||
m_playPromiseErrorCode == NotSupportedError);
if (m_playPromiseErrorCode == AbortError)
rejectPlayPromisesInternal(
AbortError, "The play() request was interrupted by a call to pause().");
else
rejectPlayPromisesInternal(
NotSupportedError,
"Failed to load because no supported source was found.");
}
void HTMLMediaElement::rejectPlayPromises(ExceptionCode code,
const String& message) {
m_playPromiseRejectList.appendVector(m_playPromiseResolvers);
m_playPromiseResolvers.clear();
rejectPlayPromisesInternal(code, message);
}
void HTMLMediaElement::rejectPlayPromisesInternal(ExceptionCode code,
const String& message) {
DCHECK(code == AbortError || code == NotSupportedError);
for (auto& resolver : m_playPromiseRejectList)
resolver->reject(DOMException::create(code, message));
m_playPromiseRejectList.clear();
}
EnumerationHistogram& HTMLMediaElement::showControlsHistogram() const {
if (isHTMLVideoElement()) {
DEFINE_STATIC_LOCAL(EnumerationHistogram, histogram,
("Media.Controls.Show.Video", MediaControlsShowMax));
return histogram;
}
DEFINE_STATIC_LOCAL(EnumerationHistogram, histogram,
("Media.Controls.Show.Audio", MediaControlsShowMax));
return histogram;
}
void HTMLMediaElement::onVisibilityChangedForAutoplay(bool isVisible) {
if (!isVisible)
return;
if (shouldAutoplay()) {
m_paused = false;
scheduleEvent(EventTypeNames::play);
scheduleNotifyPlaying();
m_autoplaying = false;
updatePlayState();
}
// TODO(zqzhang): There's still flaky leak if onVisibilityChangedForAutoplay()
// is never called. The leak comes from either ElementVisibilityObserver or
// IntersectionObserver. Should keep an eye on it. See
// https://crbug.com/627539
m_autoplayVisibilityObserver->stop();
m_autoplayVisibilityObserver = nullptr;
}
void HTMLMediaElement::clearWeakMembers(Visitor* visitor) {
if (!ThreadHeap::isHeapObjectAlive(m_audioSourceNode)) {
getAudioSourceProvider().setClient(nullptr);
m_audioSourceNode = nullptr;
}
}
void HTMLMediaElement::AudioSourceProviderImpl::wrap(
WebAudioSourceProvider* provider) {
MutexLocker locker(provideInputLock);
if (m_webAudioSourceProvider && provider != m_webAudioSourceProvider)
m_webAudioSourceProvider->setClient(nullptr);
m_webAudioSourceProvider = provider;
if (m_webAudioSourceProvider)
m_webAudioSourceProvider->setClient(m_client.get());
}
void HTMLMediaElement::AudioSourceProviderImpl::setClient(
AudioSourceProviderClient* client) {
MutexLocker locker(provideInputLock);
if (client)
m_client = new HTMLMediaElement::AudioClientImpl(client);
else
m_client.clear();
if (m_webAudioSourceProvider)
m_webAudioSourceProvider->setClient(m_client.get());
}
void HTMLMediaElement::AudioSourceProviderImpl::provideInput(
AudioBus* bus,
size_t framesToProcess) {
DCHECK(bus);
MutexTryLocker tryLocker(provideInputLock);
if (!tryLocker.locked() || !m_webAudioSourceProvider || !m_client.get()) {
bus->zero();
return;
}
// Wrap the AudioBus channel data using WebVector.
size_t n = bus->numberOfChannels();
WebVector<float*> webAudioData(n);
for (size_t i = 0; i < n; ++i)
webAudioData[i] = bus->channel(i)->mutableData();
m_webAudioSourceProvider->provideInput(webAudioData, framesToProcess);
}
void HTMLMediaElement::AudioClientImpl::setFormat(size_t numberOfChannels,
float sampleRate) {
if (m_client)
m_client->setFormat(numberOfChannels, sampleRate);
}
DEFINE_TRACE(HTMLMediaElement::AudioClientImpl) {
visitor->trace(m_client);
}
DEFINE_TRACE(HTMLMediaElement::AudioSourceProviderImpl) {
visitor->trace(m_client);
}
void HTMLMediaElement::activateViewportIntersectionMonitoring(bool activate) {
if (activate && !m_checkViewportIntersectionTimer.isActive()) {
m_checkViewportIntersectionTimer.startRepeating(
kCheckViewportIntersectionIntervalSeconds, BLINK_FROM_HERE);
} else if (!activate) {
m_checkViewportIntersectionTimer.stop();
}
}
void HTMLMediaElement::checkViewportIntersectionTimerFired(TimerBase*) {
bool shouldReportRootBounds = true;
IntersectionGeometry geometry(nullptr, *this, Vector<Length>(),
shouldReportRootBounds);
geometry.computeGeometry();
IntRect intersectRect = geometry.intersectionIntRect();
if (m_currentIntersectRect == intersectRect)
return;
m_currentIntersectRect = intersectRect;
// Reset on any intersection change, since this indicates the user is
// scrolling around in the document, the document is changing layout, etc.
m_viewportFillDebouncerTimer.stop();
bool isMostlyFillingViewport =
(m_currentIntersectRect.size().area() >
kMostlyFillViewportThreshold * geometry.rootIntRect().size().area());
if (m_mostlyFillingViewport == isMostlyFillingViewport)
return;
if (!isMostlyFillingViewport) {
m_mostlyFillingViewport = isMostlyFillingViewport;
if (m_webMediaPlayer)
m_webMediaPlayer->becameDominantVisibleContent(m_mostlyFillingViewport);
return;
}
m_viewportFillDebouncerTimer.startOneShot(
kMostlyFillViewportBecomeStableSeconds, BLINK_FROM_HERE);
}
void HTMLMediaElement::viewportFillDebouncerTimerFired(TimerBase*) {
m_mostlyFillingViewport = true;
if (m_webMediaPlayer)
m_webMediaPlayer->becameDominantVisibleContent(m_mostlyFillingViewport);
}
} // namespace blink
|