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
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "third_party/blink/renderer/platform/peerconnection/rtc_video_encoder.h"
#include <array>
#include <memory>
#include <numeric>
#include <vector>
#include "base/command_line.h"
#include "base/containers/contains.h"
#include "base/feature_list.h"
#include "base/functional/callback_helpers.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/unsafe_shared_memory_region.h"
#include "base/metrics/histogram_functions.h"
#include "base/metrics/histogram_macros.h"
#include "base/numerics/safe_conversions.h"
#include "base/strings/strcat.h"
#include "base/strings/stringprintf.h"
#include "base/synchronization/waitable_event.h"
#include "base/task/bind_post_task.h"
#include "base/task/sequenced_task_runner.h"
#include "base/thread_annotations.h"
#include "base/threading/thread_restrictions.h"
#include "base/time/time.h"
#include "base/trace_event/trace_event.h"
#include "build/build_config.h"
#include "components/viz/common/resources/shared_image_format_utils.h"
#include "gpu/command_buffer/client/client_shared_image.h"
#include "gpu/command_buffer/client/shared_image_interface.h"
#include "media/base/bitrate.h"
#include "media/base/bitstream_buffer.h"
#include "media/base/media_switches.h"
#include "media/base/media_util.h"
#include "media/base/platform_features.h"
#include "media/base/supported_types.h"
#include "media/base/svc_scalability_mode.h"
#include "media/base/video_bitrate_allocation.h"
#include "media/base/video_frame.h"
#include "media/base/video_util.h"
#include "media/capture/capture_switches.h"
#include "media/media_buildflags.h"
#include "media/mojo/clients/mojo_video_encoder_metrics_provider.h"
#include "media/parsers/h264_parser.h"
#include "media/video/gpu_video_accelerator_factories.h"
#include "media/video/video_encode_accelerator.h"
#include "media/webrtc/webrtc_features.h"
#include "third_party/blink/public/common/buildflags.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/renderer/platform/allow_discouraged_type.h"
#include "third_party/blink/renderer/platform/scheduler/public/post_cross_thread_task.h"
#include "third_party/blink/renderer/platform/webrtc/convert_to_webrtc_video_frame_buffer.h"
#include "third_party/blink/renderer/platform/webrtc/webrtc_video_frame_adapter.h"
#include "third_party/blink/renderer/platform/wtf/cross_thread_copier_base.h"
#include "third_party/blink/renderer/platform/wtf/cross_thread_copier_gfx.h"
#include "third_party/blink/renderer/platform/wtf/cross_thread_copier_std.h"
#include "third_party/blink/renderer/platform/wtf/cross_thread_functional.h"
#include "third_party/blink/renderer/platform/wtf/deque.h"
#include "third_party/blink/renderer/platform/wtf/functional.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include "third_party/blink/renderer/platform/wtf/thread_safe_ref_counted.h"
#include "third_party/blink/renderer/platform/wtf/vector.h"
#include "third_party/libyuv/include/libyuv.h"
#include "third_party/webrtc/api/video/video_frame_buffer.h"
#include "third_party/webrtc/modules/video_coding/codecs/h264/include/h264.h"
#include "third_party/webrtc/modules/video_coding/include/video_error_codes.h"
#include "third_party/webrtc/modules/video_coding/svc/create_scalability_structure.h"
#include "third_party/webrtc/modules/video_coding/svc/simulcast_to_svc_converter.h"
#include "third_party/webrtc/rtc_base/time_utils.h"
#include "ui/gfx/buffer_format_util.h"
namespace {
media::SVCScalabilityMode ToSVCScalabilityMode(
const std::vector<media::VideoEncodeAccelerator::Config::SpatialLayer>&
spatial_layers,
media::SVCInterLayerPredMode inter_layer_pred) {
if (spatial_layers.empty()) {
return media::SVCScalabilityMode::kL1T1;
}
return GetSVCScalabilityMode(spatial_layers.size(),
spatial_layers[0].num_of_temporal_layers,
inter_layer_pred);
}
class SignaledValue {
public:
SignaledValue() : event(nullptr), val(nullptr) {}
SignaledValue(base::WaitableEvent* event, int32_t* val)
: event(event), val(val) {
DCHECK(event);
}
~SignaledValue() {
if (IsValid() && !event->IsSignaled()) {
NOTREACHED() << "never signaled";
}
}
// Move-only.
SignaledValue(const SignaledValue&) = delete;
SignaledValue& operator=(const SignaledValue&) = delete;
SignaledValue(SignaledValue&& other) : event(other.event), val(other.val) {
other.event = nullptr;
other.val = nullptr;
}
SignaledValue& operator=(SignaledValue&& other) {
event = other.event;
val = other.val;
other.event = nullptr;
other.val = nullptr;
return *this;
}
void Signal() {
if (!IsValid())
return;
event->Signal();
event = nullptr;
}
void Set(int32_t v) {
if (!val)
return;
*val = v;
}
bool IsValid() { return event; }
private:
raw_ptr<base::WaitableEvent> event;
raw_ptr<int32_t> val;
};
class ScopedSignaledValue {
public:
ScopedSignaledValue() = default;
ScopedSignaledValue(base::WaitableEvent* event, int32_t* val)
: sv(event, val) {}
explicit ScopedSignaledValue(SignaledValue sv) : sv(std::move(sv)) {}
~ScopedSignaledValue() { sv.Signal(); }
ScopedSignaledValue(const ScopedSignaledValue&) = delete;
ScopedSignaledValue& operator=(const ScopedSignaledValue&) = delete;
ScopedSignaledValue(ScopedSignaledValue&& other) : sv(std::move(other.sv)) {
DCHECK(!other.sv.IsValid());
}
ScopedSignaledValue& operator=(ScopedSignaledValue&& other) {
sv.Signal();
sv = std::move(other.sv);
DCHECK(!other.sv.IsValid());
return *this;
}
// Set |v|, signal |sv|, and invalidate |sv|. If |sv| is already invalidated
// at the call, this has no effect.
void SetAndReset(int32_t v) {
sv.Set(v);
reset();
}
// Invalidate |sv|. The invalidated value will be set by move assignment
// operator.
void reset() { *this = ScopedSignaledValue(); }
private:
SignaledValue sv;
};
// TODO(https://crbug.com/1448809): Move to base/memory/ref_counted_memory.h
class RefCountedWritableSharedMemoryMapping
: public ThreadSafeRefCounted<RefCountedWritableSharedMemoryMapping> {
public:
explicit RefCountedWritableSharedMemoryMapping(
base::WritableSharedMemoryMapping mapping)
: mapping_(std::move(mapping)) {}
RefCountedWritableSharedMemoryMapping(
const RefCountedWritableSharedMemoryMapping&) = delete;
RefCountedWritableSharedMemoryMapping& operator=(
const RefCountedWritableSharedMemoryMapping&) = delete;
const unsigned char* front() const {
return static_cast<const unsigned char*>(mapping_.memory());
}
unsigned char* front() {
return static_cast<unsigned char*>(mapping_.memory());
}
size_t size() const { return mapping_.size(); }
private:
friend class ThreadSafeRefCounted<RefCountedWritableSharedMemoryMapping>;
~RefCountedWritableSharedMemoryMapping() = default;
base::WritableSharedMemoryMapping mapping_;
};
class EncodedDataWrapper : public webrtc::EncodedImageBufferInterface {
public:
EncodedDataWrapper(
const scoped_refptr<RefCountedWritableSharedMemoryMapping>&& mapping,
size_t size,
base::OnceClosure reuse_buffer_callback)
: mapping_(std::move(mapping)),
size_(size),
reuse_buffer_callback_(std::move(reuse_buffer_callback)) {}
~EncodedDataWrapper() override {
DCHECK(reuse_buffer_callback_);
std::move(reuse_buffer_callback_).Run();
}
const uint8_t* data() const override { return mapping_->front(); }
uint8_t* data() override { return mapping_->front(); }
size_t size() const override { return size_; }
private:
const scoped_refptr<RefCountedWritableSharedMemoryMapping> mapping_;
const size_t size_;
base::OnceClosure reuse_buffer_callback_;
};
struct FrameChunk {
FrameChunk(const webrtc::VideoFrame& input_image, bool force_keyframe)
: video_frame_buffer(input_image.video_frame_buffer()),
timestamp(input_image.rtp_timestamp()),
timestamp_us(input_image.timestamp_us()),
render_time_ms(input_image.render_time_ms()),
force_keyframe(force_keyframe) {
DCHECK(video_frame_buffer);
}
const webrtc::scoped_refptr<webrtc::VideoFrameBuffer> video_frame_buffer;
// TODO(b/241349739): timestamp and timestamp_us should be unified as one
// base::TimeDelta.
const uint32_t timestamp;
const uint64_t timestamp_us;
const int64_t render_time_ms;
const bool force_keyframe;
};
bool ConvertKbpsToBps(uint32_t bitrate_kbps, uint32_t* bitrate_bps) {
if (!base::IsValueInRangeForNumericType<uint32_t>(bitrate_kbps *
UINT64_C(1000))) {
return false;
}
*bitrate_bps = bitrate_kbps * 1000;
return true;
}
uint8_t GetDropFrameThreshold(const webrtc::VideoCodec& codec_settings) {
// This drop frame threshold is same as WebRTC.
// https://source.chromium.org/chromium/chromium/src/+/main:third_party/webrtc/modules/video_coding/codecs/vp9/libvpx_vp9_encoder.cc
if (codec_settings.GetFrameDropEnabled() &&
base::FeatureList::IsEnabled(
media::kWebRTCHardwareVideoEncoderFrameDrop)) {
return 30;
}
return 0;
}
webrtc::VideoBitrateAllocation AllocateBitrateForVEAConfig(
const media::VideoEncodeAccelerator::Config& config) {
// The same bitrate factors as the software encoder.
// https://source.chromium.org/chromium/chromium/src/+/main:media/video/vpx_video_encoder.cc;l=131;drc=d383d0b3e4f76789a6de2a221c61d3531f4c59da
constexpr auto kTemporalLayersBitrateScaleFactors =
std::to_array<std::array<double, 3>>({
{1.00, 0.00, 0.00}, // For one temporal layer.
{0.60, 0.40, 0.00}, // For two temporal layers.
{0.50, 0.20, 0.30}, // For three temporal layers.
});
DCHECK_EQ(config.bitrate.mode(), media::Bitrate::Mode::kConstant);
webrtc::VideoBitrateAllocation bitrate_allocation;
bitrate_allocation.SetBitrate(0, 0, config.bitrate.target_bps());
for (size_t sid = 0; sid < config.spatial_layers.size(); ++sid) {
const auto& sl = config.spatial_layers[sid];
CHECK_EQ(sl.num_of_temporal_layers <= 3, true);
for (size_t tid = 0; tid < sl.num_of_temporal_layers; ++tid) {
const double factor =
kTemporalLayersBitrateScaleFactors[sl.num_of_temporal_layers - 1]
[tid];
bitrate_allocation.SetBitrate(sid, tid, sl.bitrate_bps * factor);
}
}
return bitrate_allocation;
}
// Configures the spatial layer settings to be passed to encoder.
// If some config of |codec_settings| is not supported, returns false.
bool SetLayerConfigForTemporalScalability(
const webrtc::VideoCodec& codec_settings,
std::vector<media::VideoEncodeAccelerator::Config::SpatialLayer>&
spatial_layers,
int num_temporal_layers) {
spatial_layers.resize(1u);
auto& sl = spatial_layers[0];
sl.width = codec_settings.width;
sl.height = codec_settings.height;
if (!ConvertKbpsToBps(codec_settings.startBitrate, &sl.bitrate_bps)) {
return false;
}
sl.framerate = codec_settings.maxFramerate;
sl.max_qp = base::saturated_cast<uint8_t>(codec_settings.qpMax);
sl.num_of_temporal_layers =
base::saturated_cast<uint8_t>(num_temporal_layers);
return true;
}
bool IsValidTemporalSVC(
const std::optional<webrtc::ScalabilityMode>& scalability_mode,
int& num_temporal_layers) {
if (!scalability_mode.has_value()) {
// Assume L1T1 if no scalability mode is set.
num_temporal_layers = 1;
return true;
}
switch (*scalability_mode) {
case webrtc::ScalabilityMode::kL1T1:
num_temporal_layers = 1;
break;
case webrtc::ScalabilityMode::kL1T2:
num_temporal_layers = 2;
break;
case webrtc::ScalabilityMode::kL1T3:
num_temporal_layers = 3;
break;
default:
return false;
}
return (num_temporal_layers <= 3);
}
} // namespace
namespace WTF {
template <>
struct CrossThreadCopier<webrtc::VideoEncoder::RateControlParameters>
: public CrossThreadCopierPassThrough<
webrtc::VideoEncoder::RateControlParameters> {
STATIC_ONLY(CrossThreadCopier);
};
template <>
struct CrossThreadCopier<
std::vector<media::VideoEncodeAccelerator::Config::SpatialLayer>>
: public CrossThreadCopierPassThrough<
std::vector<media::VideoEncodeAccelerator::Config::SpatialLayer>> {
STATIC_ONLY(CrossThreadCopier);
};
template <>
struct CrossThreadCopier<FrameChunk>
: public CrossThreadCopierPassThrough<FrameChunk> {
STATIC_ONLY(CrossThreadCopier);
};
template <>
struct CrossThreadCopier<media::VideoEncodeAccelerator::Config>
: public CrossThreadCopierPassThrough<
media::VideoEncodeAccelerator::Config> {
STATIC_ONLY(CrossThreadCopier);
};
template <>
struct CrossThreadCopier<SignaledValue> {
static SignaledValue Copy(SignaledValue sv) {
return sv; // this is a move in fact.
}
};
} // namespace WTF
namespace blink {
namespace features {
// Enabled-by-default, except for Android where SW encoder for H264 and AV1 are
// not available. The existence of this flag remains only for testing purposes.
BASE_FEATURE(kForceSoftwareForLowResolutions,
"ForceSoftwareForLowResolutions",
#if !BUILDFLAG(IS_ANDROID)
base::FEATURE_ENABLED_BY_DEFAULT);
#else
base::FEATURE_DISABLED_BY_DEFAULT);
#endif
// Avoids large latencies to build up by dropping frames when the number of
// frames that are sent to a hardware video encoder reaches a certain limit.
// See b/298660336 for details.
BASE_FEATURE(kVideoEncoderLimitsFramesInEncoder,
"VideoEncoderLimitsFramesInEncoder",
base::FEATURE_ENABLED_BY_DEFAULT);
// When enabled, the encoder instance is preserved on Release() call.
// Reinitialization of the encoder will reuse the instance with the new
// resolution. See b/1466102 for details.
BASE_FEATURE(kKeepEncoderInstanceOnRelease,
"KeepEncoderInstanceOnRelease",
base::FEATURE_ENABLED_BY_DEFAULT);
// When enabled, the supports_simulcast will be always reported to webrtc
// and incoming simulcast codec config will be rewritten as an SVC config.
BASE_FEATURE(kRtcVideoEncoderConvertSimulcastToSvc,
"RtcVideoEncoderConvertSimulcastToSvc",
base::FEATURE_ENABLED_BY_DEFAULT);
} // namespace features
namespace {
media::SVCInterLayerPredMode CopyFromWebRtcInterLayerPredMode(
const webrtc::InterLayerPredMode inter_layer_pred) {
switch (inter_layer_pred) {
case webrtc::InterLayerPredMode::kOff:
return media::SVCInterLayerPredMode::kOff;
case webrtc::InterLayerPredMode::kOn:
return media::SVCInterLayerPredMode::kOn;
case webrtc::InterLayerPredMode::kOnKeyPic:
return media::SVCInterLayerPredMode::kOnKeyPic;
}
}
// Create VEA::Config::SpatialLayer from |codec_settings|. If some config of
// |codec_settings| is not supported, returns false.
bool CreateSpatialLayersConfig(
const webrtc::VideoCodec& codec_settings,
std::vector<media::VideoEncodeAccelerator::Config::SpatialLayer>*
spatial_layers,
media::SVCInterLayerPredMode* inter_layer_pred,
gfx::Size* highest_active_resolution) {
std::optional<webrtc::ScalabilityMode> scalability_mode =
codec_settings.GetScalabilityMode();
*highest_active_resolution =
gfx::Size(codec_settings.width, codec_settings.height);
if (codec_settings.codecType == webrtc::kVideoCodecVP9 &&
codec_settings.VP9().numberOfSpatialLayers > 1 &&
!media::IsVp9kSVCHWEncodingEnabled()) {
DVLOG(1)
<< "VP9 SVC not yet supported by HW codecs, falling back to software.";
return false;
}
// We fill SpatialLayer only in temporal layer or spatial layer encoding.
switch (codec_settings.codecType) {
case webrtc::kVideoCodecH264:
if (scalability_mode.has_value() &&
*scalability_mode != webrtc::ScalabilityMode::kL1T1) {
DVLOG(1)
<< "H264 temporal layers not yet supported by HW codecs, but use"
<< " HW codecs and leave the fallback decision to a webrtc client"
<< " by seeing metadata in webrtc::CodecSpecificInfo";
return true;
}
break;
case webrtc::kVideoCodecVP8: {
int number_of_temporal_layers = 1;
if (!IsValidTemporalSVC(scalability_mode, number_of_temporal_layers)) {
return false;
}
if (number_of_temporal_layers > 1) {
if (codec_settings.mode == webrtc::VideoCodecMode::kScreensharing) {
// This is a VP8 stream with screensharing using temporal layers for
// temporal scalability. Since this implementation does not yet
// implement temporal layers, fall back to software codec, if cfm and
// board is known to have a CPU that can handle it.
if (base::FeatureList::IsEnabled(
features::kWebRtcScreenshareSwEncoding)) {
// TODO(sprang): Add support for temporal layers so we don't need
// fallback. See eg http://crbug.com/702017
DVLOG(1) << "Falling back to software encoder.";
return false;
}
}
// Though there is no SVC in VP8 spec. We allocate 1 element in
// spatial_layers for temporal layer encoding.
return SetLayerConfigForTemporalScalability(
codec_settings, *spatial_layers, number_of_temporal_layers);
}
break;
}
case webrtc::kVideoCodecVP9:
// Since one TL and one SL can be regarded as one simple stream,
// SpatialLayer is not filled.
if (codec_settings.VP9().numberOfTemporalLayers > 1 ||
codec_settings.VP9().numberOfSpatialLayers > 1) {
std::optional<gfx::Size> top_res;
spatial_layers->clear();
for (size_t i = 0; i < codec_settings.VP9().numberOfSpatialLayers;
++i) {
const webrtc::SpatialLayer& rtc_sl = codec_settings.spatialLayers[i];
// We ignore non active spatial layer and don't proceed further. There
// must NOT be an active higher spatial layer than non active spatial
// layer.
if (!rtc_sl.active)
break;
spatial_layers->emplace_back();
auto& sl = spatial_layers->back();
sl.width = base::checked_cast<int32_t>(rtc_sl.width);
sl.height = base::checked_cast<int32_t>(rtc_sl.height);
if (!ConvertKbpsToBps(rtc_sl.targetBitrate, &sl.bitrate_bps))
return false;
sl.framerate = base::saturated_cast<int32_t>(rtc_sl.maxFramerate);
sl.max_qp = base::saturated_cast<uint8_t>(rtc_sl.qpMax);
sl.num_of_temporal_layers =
base::saturated_cast<uint8_t>(rtc_sl.numberOfTemporalLayers);
if (!top_res.has_value()) {
top_res = gfx::Size(rtc_sl.width, rtc_sl.height);
} else if (top_res->width() < rtc_sl.width) {
DCHECK_GE(rtc_sl.height, top_res->width());
top_res = gfx::Size(rtc_sl.width, rtc_sl.height);
}
}
if (top_res.has_value()) {
*highest_active_resolution = *top_res;
}
if (spatial_layers->size() == 1 &&
spatial_layers->at(0).num_of_temporal_layers == 1) {
// Don't report spatial layers if only the base layer is active and we
// have no temporar layers configured.
spatial_layers->clear();
} else {
*inter_layer_pred = CopyFromWebRtcInterLayerPredMode(
codec_settings.VP9().interLayerPred);
}
}
break;
case webrtc::kVideoCodecAV1: {
int number_of_temporal_layers = 1;
if (!IsValidTemporalSVC(scalability_mode, number_of_temporal_layers)) {
return false;
}
return SetLayerConfigForTemporalScalability(
codec_settings, *spatial_layers, number_of_temporal_layers);
}
#if BUILDFLAG(RTC_USE_H265)
case webrtc::kVideoCodecH265: {
int number_of_temporal_layers = 1;
if (!IsValidTemporalSVC(scalability_mode, number_of_temporal_layers) ||
(number_of_temporal_layers == 2 &&
!base::FeatureList::IsEnabled(::features::kWebRtcH265L1T2)) ||
(number_of_temporal_layers == 3 &&
!base::FeatureList::IsEnabled(::features::kWebRtcH265L1T3))) {
return false;
}
return SetLayerConfigForTemporalScalability(
codec_settings, *spatial_layers, number_of_temporal_layers);
}
#endif // BUILDFLAG(RTC_USE_H265)
default:
break;
}
return true;
}
struct ActiveSpatialLayers {
// `spatial_index` considered active if
// `begin_index <= spatial_index < end_index`
size_t begin_index = 0;
size_t end_index = 0;
size_t size() const { return end_index - begin_index; }
};
struct FrameInfo {
public:
FrameInfo(const base::TimeDelta& media_timestamp,
int32_t rtp_timestamp,
int64_t capture_time_ms,
const ActiveSpatialLayers& active_spatial_layers)
: media_timestamp_(media_timestamp),
rtp_timestamp_(rtp_timestamp),
capture_time_ms_(capture_time_ms),
active_spatial_layers_(active_spatial_layers) {}
const base::TimeDelta media_timestamp_;
const int32_t rtp_timestamp_;
const int64_t capture_time_ms_;
const ActiveSpatialLayers active_spatial_layers_;
size_t produced_frames_ = 0;
};
webrtc::VideoCodecType ProfileToWebRtcVideoCodecType(
media::VideoCodecProfile profile) {
switch (media::VideoCodecProfileToVideoCodec(profile)) {
case media::VideoCodec::kH264:
return webrtc::kVideoCodecH264;
case media::VideoCodec::kVP8:
return webrtc::kVideoCodecVP8;
case media::VideoCodec::kVP9:
return webrtc::kVideoCodecVP9;
case media::VideoCodec::kAV1:
return webrtc::kVideoCodecAV1;
#if BUILDFLAG(RTC_USE_H265)
case media::VideoCodec::kHEVC:
return webrtc::kVideoCodecH265;
#endif
default:
NOTREACHED() << "Invalid profile " << GetProfileName(profile);
}
}
void RecordInitEncodeUMA(int32_t init_retval,
media::VideoCodecProfile profile) {
base::UmaHistogramBoolean("Media.RTCVideoEncoderInitEncodeSuccess",
init_retval == WEBRTC_VIDEO_CODEC_OK);
if (init_retval != WEBRTC_VIDEO_CODEC_OK)
return;
UMA_HISTOGRAM_ENUMERATION("Media.RTCVideoEncoderProfile", profile,
media::VIDEO_CODEC_PROFILE_MAX + 1);
}
void RecordEncoderStatusUMA(const media::EncoderStatus& status,
webrtc::VideoCodecType type) {
std::string histogram_name = "Media.RTCVideoEncoderStatus.";
switch (type) {
case webrtc::VideoCodecType::kVideoCodecH264:
histogram_name += "H264";
break;
case webrtc::VideoCodecType::kVideoCodecVP8:
histogram_name += "VP8";
break;
case webrtc::VideoCodecType::kVideoCodecVP9:
histogram_name += "VP9";
break;
case webrtc::VideoCodecType::kVideoCodecAV1:
histogram_name += "AV1";
break;
#if BUILDFLAG(RTC_USE_H265)
case webrtc::VideoCodecType::kVideoCodecH265:
histogram_name += "H265";
break;
#endif // BUILDFLAG(RTC_USE_H265)
default:
histogram_name += "Other";
break;
}
base::UmaHistogramEnumeration(histogram_name, status.code());
}
bool IsZeroCopyEnabled(webrtc::VideoContentType content_type) {
if (content_type == webrtc::VideoContentType::SCREENSHARE) {
// Zero copy screen capture.
#if BUILDFLAG(IS_CHROMEOS)
// The zero-copy capture is available for all sources in ChromeOS
// Ash-chrome.
return base::FeatureList::IsEnabled(blink::features::kZeroCopyTabCapture);
#else
// Currently, zero copy capture screenshare is available only for tabs.
// Since it is impossible to determine the content source, tab, window or
// monitor, we don't configure VideoEncodeAccelerator with NV12
// GpuMemoryBuffer instead we configure I420 SHMEM as if it is not zero
// copy, and we convert the NV12 GpuMemoryBuffer to I420 SHMEM in
// RtcVideoEncoder::Impl::Encode().
// TODO(b/267995715): Solve this problem by calling Initialize() in the
// first frame.
return false;
#endif
}
// Zero copy video capture from other sources (e.g. camera).
return !base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisableVideoCaptureUseGpuMemoryBuffer) &&
base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kVideoCaptureUseGpuMemoryBuffer);
}
bool UseSoftwareForLowResolution(const webrtc::VideoCodecType codec,
uint16_t width,
uint16_t height) {
// Several HW encoders are known to yield worse quality compared to SW
// encoders for smaller resolutions such as 180p. At 360p, manual testing
// suggests HW and SW are roughly on par in terms of quality.
// go/vp9-hardware-encoder-visual-evaluation
// By default, Android is excluded from this logic because there are
// situations where a codec like H264 is available in HW but not SW in which
// case SW fallback would result in a change of codec, see
// https://crbug.com/1469318.
if (!base::FeatureList::IsEnabled(
features::kForceSoftwareForLowResolutions)) {
return false;
}
// H.265 does not support SW fallback, so it is excluded from low resoloution
// fallback.
if (codec == webrtc::kVideoCodecH265) {
return false;
}
// AV1 hardware has better performance vs quality at 270p compared to other
// codecs. So sets the threshold to 270p in AV1. See b/351090228#comment13 and
// b/351090228#comment24 for detail.
const uint16_t force_sw_height = codec == webrtc::kVideoCodecAV1 ? 270 : 360;
if (height < force_sw_height) {
LOG(WARNING) << "Fallback to SW due to low resolution being less than "
<< force_sw_height << "p (" << width << "x" << height << ")";
return true;
}
return false;
}
scoped_refptr<gpu::ClientSharedImage> CreateClientSharedImage(
media::GpuVideoAcceleratorFactories* gpu_factories,
gfx::Size size) {
const auto buffer_format = gfx::BufferFormat::YUV_420_BIPLANAR;
const auto si_format = viz::GetSharedImageFormat(buffer_format);
const auto buffer_usage =
gfx::BufferUsage::VEA_READ_CAMERA_AND_CPU_READ_WRITE;
// Setting some default usage in order to get a mappable shared image.
const auto si_usage = gpu::SHARED_IMAGE_USAGE_CPU_WRITE_ONLY |
gpu::SHARED_IMAGE_USAGE_DISPLAY_READ;
gpu::SharedImageInterface* sii = gpu_factories->SharedImageInterface();
if (!sii) {
return nullptr;
}
auto shared_image = sii->CreateSharedImage(
{si_format, size, gfx::ColorSpace(), gpu::SharedImageUsageSet(si_usage),
"RTCVideoEncoder"},
gpu::kNullSurfaceHandle, buffer_usage);
LOG_IF(ERROR, !shared_image) << "Unable to create a mappable shared image";
return shared_image;
}
} // namespace
namespace features {
// Fallback from hardware encoder (if available) to software, for WebRTC
// screensharing that uses temporal scalability.
BASE_FEATURE(kWebRtcScreenshareSwEncoding,
"WebRtcScreenshareSwEncoding",
base::FEATURE_DISABLED_BY_DEFAULT);
} // namespace features
// This private class of RTCVideoEncoder does the actual work of communicating
// with a media::VideoEncodeAccelerator for handling video encoding. It can
// be created on any thread, but should subsequently be executed on
// |gpu_task_runner| including destructor.
//
// This class separates state related to the thread that RTCVideoEncoder
// operates on from the thread that |gpu_factories_| provides for accelerator
// operations (presently the media thread).
class RTCVideoEncoder::Impl : public media::VideoEncodeAccelerator::Client {
public:
using UpdateEncoderInfoCallback = base::RepeatingCallback<void(
media::VideoEncoderInfo,
std::vector<webrtc::VideoFrameBuffer::Type>)>;
Impl(media::GpuVideoAcceleratorFactories* gpu_factories,
scoped_refptr<media::MojoVideoEncoderMetricsProviderFactory>
encoder_metrics_provider_factory,
webrtc::VideoCodecType video_codec_type,
std::optional<webrtc::ScalabilityMode> scalability_mode,
webrtc::VideoContentType video_content_type,
UpdateEncoderInfoCallback update_encoder_info_callback,
base::RepeatingClosure execute_software_fallback,
base::WeakPtr<Impl>& weak_this_for_client);
~Impl() override;
Impl(const Impl&) = delete;
Impl& operator=(const Impl&) = delete;
// Create the VEA and call Initialize() on it. Called once per instantiation,
// and then the instance is bound forevermore to whichever thread made the
// call.
// RTCVideoEncoder expects to be able to call this function synchronously from
// its own thread, hence the |init_event| argument.
void CreateAndInitializeVEA(
const media::VideoEncodeAccelerator::Config& vea_config,
SignaledValue init_event);
// Enqueue a frame from WebRTC for encoding. This function is called
// asynchronously from webrtc encoder thread. When the error is caused, it is
// reported by NotifyErrorStatus().
void Enqueue(FrameChunk frame_chunk);
// Request encoding parameter change for the underlying encoder with
// additional size change. Requires the encoder to be in flushed state.
void RequestEncodingParametersChangeWithSizeChange(
const webrtc::VideoEncoder::RateControlParameters& parameters,
const gfx::Size& input_visible_size,
const media::VideoCodecProfile& profile,
const media::SVCInterLayerPredMode& inter_layer_pred,
const std::vector<media::VideoEncodeAccelerator::Config::SpatialLayer>&
spatial_layers,
SignaledValue event);
// Request encoding parameter change for the underlying encoder.
void RequestEncodingParametersChange(
const webrtc::VideoEncoder::RateControlParameters& parameters);
void RegisterEncodeCompleteCallback(webrtc::EncodedImageCallback* callback);
webrtc::VideoCodecType video_codec_type() const { return video_codec_type_; }
// media::VideoEncodeAccelerator::Client implementation.
void RequireBitstreamBuffers(unsigned int input_count,
const gfx::Size& input_coded_size,
size_t output_buffer_size) override;
void BitstreamBufferReady(
int32_t bitstream_buffer_id,
const media::BitstreamBufferMetadata& metadata) override;
void NotifyErrorStatus(const media::EncoderStatus& status) override;
void NotifyEncoderInfoChange(const media::VideoEncoderInfo& info) override;
#if BUILDFLAG(RTC_USE_H265)
void SetH265ParameterSetsTrackerForTesting(
std::unique_ptr<H265ParameterSetsTracker> tracker);
#endif
void Suspend(SignaledValue event);
void Drain(SignaledValue event);
void DrainCompleted(bool success);
void SetSimulcastToSvcConverter(std::optional<webrtc::SimulcastToSvcConverter>
simulcast_to_svc_converter);
private:
enum {
kInputBufferExtraCount = 1, // The number of input buffers allocated, more
// than what is requested by
// VEA::RequireBitstreamBuffers().
kOutputBufferCount = 3,
// Max number of frames the encoder is allowed to hold before dropping
// input frames. Avoids large delay buildups. See
// https://issuetracker.google.com/issues/298660336 for details.
kMaxFramesInEncoder = 15,
};
// proxy to pass weak reference to webrtc which could be invalidated when
// frame size changes and new output buffers are allocated.
class EncodedBufferReferenceHolder {
public:
explicit EncodedBufferReferenceHolder(base::WeakPtr<Impl> impl)
: impl_(impl) {
weak_this_ = weak_this_factory_.GetWeakPtr();
}
~EncodedBufferReferenceHolder() = default;
base::WeakPtr<EncodedBufferReferenceHolder> GetWeakPtr() {
return weak_this_;
}
void BitstreamBufferAvailable(int bitstream_buffer_id) {
if (Impl* impl = impl_.get()) {
impl->BitstreamBufferAvailable(bitstream_buffer_id);
}
}
private:
base::WeakPtr<Impl> impl_;
base::WeakPtr<EncodedBufferReferenceHolder> weak_this_;
base::WeakPtrFactory<EncodedBufferReferenceHolder> weak_this_factory_{this};
};
// The resource that may be required for some frame conversion when inputting
// a frame to VEA.
struct InputBufferResource {
std::unique_ptr<base::MappedReadOnlyRegion> i420_shmem = nullptr;
scoped_refptr<gpu::ClientSharedImage> nv12_shared_image = nullptr;
};
void RequestEncodingParametersChangeInternal(
const webrtc::VideoEncoder::RateControlParameters& parameters,
const std::optional<gfx::Size>& input_visible_size);
// Returns whether the webrtc |frame_buffer| needs to be converted to a memory
// frame.
bool NeedConvertToMemoryFrame(
const webrtc::VideoFrameBuffer& frame_buffer) const;
// Create STORAGE_UNOWNED_MEMORY media::VideoFrame from the native
// |frame_buffer| by using webrtc::VideoFrameBuffer's Scale() and
// GetMappedFrameBuffer() methods, producing frames in either
// `preferred_pixel_formats_` (typically NV12) or I420 as a fallback.
scoped_refptr<media::VideoFrame>
CreateUnownedMemoryFrameByWebRTCVideoFrameBuffer(
webrtc::VideoFrameBuffer& frame_buffer);
// Create I420 STORAGE_SHMEM VideoFrame from the webrtc |frame_buffer| by
// libyuv functions. The shared memory is allocated in this function.
scoped_refptr<media::VideoFrame> CreateI420SharedMemoryFrameByLibyuv(
webrtc::VideoFrameBuffer& frame_buffer);
// Create memory based VideoFrame from |frame_buffer|, the resulting frame can
// be either `preferred_pixel_formats_` (typically NV12) or I420.
scoped_refptr<media::VideoFrame> CreateMemoryFrame(
webrtc::VideoFrameBuffer& frame_buffer);
scoped_refptr<media::VideoFrame> CreateNV12SharedImageFrame(
webrtc::VideoFrameBuffer& frame_buffer,
const gfx::Rect& visible_rect);
// Perform encoding on an input frame from the input queue.
void EncodeOneFrame(FrameChunk frame_chunk);
// Perform encoding on an input frame from the input queue using VEA native
// input mode. The input frame must be backed with GpuMemoryBuffer buffers.
void EncodeOneFrameWithNativeInput(FrameChunk frame_chunk);
// Creates a MappableSI frame filled with black pixels. Returns true if
// the frame is successfully created; false otherwise.
bool CreateBlackMappableSIFrame(const gfx::Size& natural_size);
// Notify that an input frame is finished for encoding. |index| is the index
// of the completed frame in |input_buffers_|.
void InputBufferReleased(int index);
// Return an encoded output buffer to WebRTC.
void ReturnEncodedImage(const webrtc::EncodedImage& image,
const webrtc::CodecSpecificInfo& info,
int32_t bitstream_buffer_id);
// Gets ActiveSpatialLayers that are currently active,
// meaning the are configured, have active=true and have non-zero bandwidth
// allocated to them.
// Returns an empty list if a layer encoding is not used.
ActiveSpatialLayers GetActiveSpatialLayers() const;
// Call VideoEncodeAccelerator::UseOutputBitstreamBuffer() for a buffer whose
// id is |bitstream_buffer_id|.
void UseOutputBitstreamBuffer(int32_t bitstream_buffer_id);
// RTCVideoEncoder is given a buffer to be passed to WebRTC through the
// RTCVideoEncoder::ReturnEncodedImage() function. When that is complete,
// the buffer is returned to Impl by its index using this function.
void BitstreamBufferAvailable(int32_t bitstream_buffer_id);
// Fill `webrtc::CodecSpecificInfo.generic_frame_info` to provide more
// accurate description of used layering.
media::EncoderStatus FillGenericFrameInfo(
webrtc::CodecSpecificInfo& info,
const media::BitstreamBufferMetadata& metadata);
// This is attached to |gpu_task_runner_|, not the thread class is constructed
// on.
SEQUENCE_CHECKER(sequence_checker_);
// Factory for creating VEAs, shared memory buffers, etc.
const raw_ptr<media::GpuVideoAcceleratorFactories> gpu_factories_;
scoped_refptr<media::MojoVideoEncoderMetricsProviderFactory>
encoder_metrics_provider_factory_;
std::unique_ptr<media::VideoEncoderMetricsProvider> encoder_metrics_provider_;
// webrtc::VideoEncoder expects InitEncode() to be synchronous. Do this by
// waiting on the |async_init_event_| when initialization completes.
ScopedSignaledValue async_init_event_;
// The underlying VEA to perform encoding on.
std::unique_ptr<media::VideoEncodeAccelerator> video_encoder_;
// Metadata for frames passed to Encode(), matched to encoded frames using
// timestamps.
WTF::Deque<FrameInfo> submitted_frames_;
// Indicates that timestamp match failed and we should no longer attempt
// matching.
bool failed_timestamp_match_{false};
// The pending frames to be encoded with the boolean representing whether the
// frame must be encoded keyframe.
WTF::Deque<FrameChunk> pending_frames_;
// Frame sizes.
gfx::Size input_frame_coded_size_;
gfx::Size input_visible_size_;
// The buffer resource that is possibly necessary to input a video frame.
// The resource is not allocated until it's needed.
Vector<InputBufferResource> input_buffers_;
// The slot of |input_buffers_| that is available to use for input. As a LIFO
// since we don't care about ordering.
Vector<size_t> input_buffers_free_;
Vector<std::pair<base::UnsafeSharedMemoryRegion,
scoped_refptr<RefCountedWritableSharedMemoryMapping>>>
output_buffers_;
// The number of frames that are sent to a hardware video encoder by Encode()
// and the encoder holds them.
size_t frames_in_encoder_count_{0};
// The number of output buffers that have been sent to a hardware video
// encoder by VideoEncodeAccelerator::UseOutputBitstreamBuffer() and the
// encoder holds them.
size_t output_buffers_in_encoder_count_{0};
// proxy to pass weak reference to webrtc which could be invalidated when
// frame size changes and new output buffers are allocated.
std::unique_ptr<EncodedBufferReferenceHolder>
encoded_buffer_reference_holder_;
// The buffer ids that are not sent to a hardware video encoder and this holds
// them. UseOutputBitstreamBuffer() is called for them on the next Encode().
Vector<int32_t> pending_output_buffers_;
// Whether to send the frames to VEA as native buffer. Native buffer allows
// VEA to pass the buffer to the encoder directly without further processing.
bool use_native_input_{false};
// A black frame used when the video track is disabled.
scoped_refptr<media::VideoFrame> black_frame_;
// The video codec type, as reported to WebRTC.
const webrtc::VideoCodecType video_codec_type_;
// The scalability mode, as reported to WebRTC.
const std::optional<webrtc::ScalabilityMode> scalability_mode_;
// Generate the dependency template and generic frame info according to
// https://w3c.github.io/webrtc-svc/#scalabilitymodes*
std::unique_ptr<webrtc::ScalableVideoController> svc_controller_;
// Maintain the temporal layer idx for each frame in the encode buffer.
Vector<uint32_t> encode_buffers_tid_;
// The content type, as reported to WebRTC (screenshare vs realtime video).
const webrtc::VideoContentType video_content_type_;
// This has the same information as |encoder_info_.preferred_pixel_formats|
// but can be used on |sequence_checker_| without acquiring the lock.
absl::InlinedVector<webrtc::VideoFrameBuffer::Type,
webrtc::kMaxPreferredPixelFormats>
preferred_pixel_formats_;
UpdateEncoderInfoCallback update_encoder_info_callback_;
// Calling this causes a software encoder fallback.
base::RepeatingClosure execute_software_fallback_;
// The spatial layer resolutions configured in VEA::Initialize(). This is set
// only in CreateAndInitializeVEA().
WTF::Vector<gfx::Size> init_spatial_layer_resolutions_;
// The current active spatial layer range. This is set in
// CreateAndInitializeVEA() and updated in RequestEncodingParametersChange().
ActiveSpatialLayers active_spatial_layers_;
#if BUILDFLAG(RTC_USE_H265)
// Parameter sets(VPS/SPS/PPS) tracker used for H.265, to ensure parameter
// sets are always included in IRAP pictures.
std::unique_ptr<H265ParameterSetsTracker> ps_tracker_;
#endif // BUILDFLAG(RTC_USE_H265)
// We cannot immediately return error conditions to the WebRTC user of this
// class, as there is no error callback in the webrtc::VideoEncoder interface.
// Instead, we cache an error status here and return it the next time an
// interface entry point is called.
int32_t status_ GUARDED_BY_CONTEXT(sequence_checker_){
WEBRTC_VIDEO_CODEC_UNINITIALIZED};
// Protect |encoded_image_callback_|. |encoded_image_callback_| is read on
// media thread and written in webrtc encoder thread.
mutable base::Lock lock_;
// webrtc::VideoEncoder encode complete callback.
// TODO(b/257021675): Don't guard this by |lock_|
raw_ptr<webrtc::EncodedImageCallback> encoded_image_callback_
GUARDED_BY(lock_){nullptr};
// Used to rewrite the encoded image metadata to look like simulcast
// instead of SVC. Set only when simulcat config is emulated by SVC one.
std::optional<webrtc::SimulcastToSvcConverter> simulcast_to_svc_converter_;
// They are bound to |gpu_task_runner_|, which is sequence checked by
// |sequence_checker|.
base::WeakPtr<Impl> weak_this_;
base::WeakPtrFactory<Impl> weak_this_factory_{this};
};
RTCVideoEncoder::Impl::Impl(
media::GpuVideoAcceleratorFactories* gpu_factories,
scoped_refptr<media::MojoVideoEncoderMetricsProviderFactory>
encoder_metrics_provider_factory,
webrtc::VideoCodecType video_codec_type,
std::optional<webrtc::ScalabilityMode> scalability_mode,
webrtc::VideoContentType video_content_type,
UpdateEncoderInfoCallback update_encoder_info_callback,
base::RepeatingClosure execute_software_fallback,
base::WeakPtr<Impl>& weak_this_for_client)
: gpu_factories_(gpu_factories),
encoder_metrics_provider_factory_(
std::move(encoder_metrics_provider_factory)),
video_codec_type_(video_codec_type),
scalability_mode_(scalability_mode),
video_content_type_(video_content_type),
update_encoder_info_callback_(std::move(update_encoder_info_callback)),
execute_software_fallback_(std::move(execute_software_fallback)) {
DETACH_FROM_SEQUENCE(sequence_checker_);
CHECK(encoder_metrics_provider_factory_);
preferred_pixel_formats_ = {webrtc::VideoFrameBuffer::Type::kI420};
weak_this_ = weak_this_factory_.GetWeakPtr();
encoded_buffer_reference_holder_ =
std::make_unique<EncodedBufferReferenceHolder>(weak_this_);
weak_this_for_client = weak_this_;
if (scalability_mode_.has_value() &&
(
#if BUILDFLAG(RTC_USE_H265)
video_codec_type == webrtc::kVideoCodecH265 ||
#endif
video_codec_type == webrtc::kVideoCodecAV1)) {
svc_controller_ =
webrtc::CreateScalabilityStructure(scalability_mode.value());
if (!svc_controller_) {
LOG(ERROR) << "Failed to set scalability mode "
<< static_cast<int>(*scalability_mode_);
}
}
}
void RTCVideoEncoder::Impl::CreateAndInitializeVEA(
const media::VideoEncodeAccelerator::Config& vea_config,
SignaledValue init_event) {
TRACE_EVENT0("webrtc", "RTCVideoEncoder::Impl::CreateAndInitializeVEA");
DVLOG(3) << __func__;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
status_ = WEBRTC_VIDEO_CODEC_UNINITIALIZED;
async_init_event_ = ScopedSignaledValue(std::move(init_event));
video_encoder_ = gpu_factories_->CreateVideoEncodeAccelerator();
if (!video_encoder_) {
NotifyErrorStatus({media::EncoderStatus::Codes::kEncoderInitializationError,
"Failed to create VideoEncodeAccelerato"});
return;
}
input_visible_size_ = vea_config.input_visible_size;
// The valid config is NV12+kGpuMemoryBuffer and I420+kShmem.
CHECK_EQ(
vea_config.input_format == media::PIXEL_FORMAT_NV12,
vea_config.storage_type ==
media::VideoEncodeAccelerator::Config::StorageType::kGpuMemoryBuffer);
if (vea_config.storage_type ==
media::VideoEncodeAccelerator::Config::StorageType::kGpuMemoryBuffer) {
use_native_input_ = true;
preferred_pixel_formats_ = {webrtc::VideoFrameBuffer::Type::kNV12};
}
encoder_metrics_provider_ =
encoder_metrics_provider_factory_->CreateVideoEncoderMetricsProvider();
encoder_metrics_provider_->Initialize(
vea_config.output_profile, vea_config.input_visible_size,
/*is_hardware_encoder=*/true,
ToSVCScalabilityMode(vea_config.spatial_layers,
vea_config.inter_layer_pred));
if (auto status = video_encoder_->Initialize(
vea_config, this, std::make_unique<media::NullMediaLog>());
!status.is_ok()) {
NotifyErrorStatus(
{media::EncoderStatus::Codes::kEncoderInitializationError,
"Failed to initialize VideoEncodeAccelerator: " + status.message()});
return;
}
init_spatial_layer_resolutions_.clear();
for (const auto& layer : vea_config.spatial_layers) {
init_spatial_layer_resolutions_.emplace_back(layer.width, layer.height);
}
active_spatial_layers_.begin_index = 0;
active_spatial_layers_.end_index = vea_config.spatial_layers.size();
#if BUILDFLAG(RTC_USE_H265)
if (video_codec_type_ == webrtc::kVideoCodecH265 && !ps_tracker_) {
ps_tracker_ = std::make_unique<H265ParameterSetsTracker>();
}
#endif // BUILDFLAG(RTC_USE_H265)
// RequireBitstreamBuffers or NotifyError will be called and the waiter will
// be signaled.
}
void RTCVideoEncoder::Impl::NotifyEncoderInfoChange(
const media::VideoEncoderInfo& info) {
update_encoder_info_callback_.Run(
info,
std::vector<webrtc::VideoFrameBuffer::Type>(
preferred_pixel_formats_.begin(), preferred_pixel_formats_.end()));
}
void RTCVideoEncoder::Impl::Enqueue(FrameChunk frame_chunk) {
TRACE_EVENT1("webrtc", "RTCVideoEncoder::Impl::Enqueue", "timestamp",
frame_chunk.timestamp_us);
DVLOG(3) << __func__;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (status_ != WEBRTC_VIDEO_CODEC_OK) {
// When |status_| is already not OK, the error has been notified.
return;
}
// Avoid large latencies to build up by dropping frames when the number of
// frames that are sent to a hardware video encoder reaches a certain limit.
// `frames_in_encoder_count_` is reduced by `BitstreamBufferReady` when
// the first spatial layer of a frame has been encoded.
// Killswitch: blink::features::VideoEncoderLimitsFramesInEncoder.
if (base::FeatureList::IsEnabled(
features::kVideoEncoderLimitsFramesInEncoder) &&
frames_in_encoder_count_ >= kMaxFramesInEncoder) {
DVLOG(1) << "VAE drops the input frame to reduce latency";
base::AutoLock lock(lock_);
if (encoded_image_callback_) {
encoded_image_callback_->OnDroppedFrame(
webrtc::EncodedImageCallback::DropReason::kDroppedByEncoder);
}
return;
}
// On Windows it is possible that RtcVideoEncoder is configured to only accept
// native inputs, but the incoming frame is not backed by GpuMemoryBuffer and
// is not a black frame.
#if BUILDFLAG(IS_WIN)
{
// Check if the incoming frame is backed by unowned memory. This could
// happen when: 1. Zero-copy capture feature is turned on but device does
// not support MediaFoundation; 2. The video track gets disabled so black
// frames are sent.
scoped_refptr<media::VideoFrame> frame;
webrtc::scoped_refptr<webrtc::VideoFrameBuffer> frame_buffer =
frame_chunk.video_frame_buffer;
// For black frames their handling will depend on the current
// |use_native_input_| state. As a result we don't toggle
// |use_native_input_| flag here for them.
if (frame_buffer->type() == webrtc::VideoFrameBuffer::Type::kNative) {
frame = static_cast<WebRtcVideoFrameAdapterInterface*>(frame_buffer.get())
->getMediaVideoFrame();
if (frame->storage_type() == media::VideoFrame::STORAGE_UNOWNED_MEMORY) {
if (use_native_input_) {
use_native_input_ = false;
}
} else if (frame->storage_type() ==
media::VideoFrame::STORAGE_GPU_MEMORY_BUFFER) {
if (!use_native_input_) {
use_native_input_ = true;
// TODO(https://issuetracker.google.com/issues/337130619): Ideally
// |input_buffers_| should be cleaned up here.
}
}
}
}
#endif
pending_frames_.push_back(std::move(frame_chunk));
// When |input_buffers_free_| is empty, EncodeOneFrame() or
// EncodeOneFrameWithNativeInput() for the frame in |pending_frames_| will be
// invoked from InputBufferReleased().
while (!pending_frames_.empty() && !input_buffers_free_.empty()) {
auto chunk = std::move(pending_frames_.front());
pending_frames_.pop_front();
if (use_native_input_) {
EncodeOneFrameWithNativeInput(std::move(chunk));
} else {
EncodeOneFrame(std::move(chunk));
}
}
}
void RTCVideoEncoder::Impl::BitstreamBufferAvailable(
int32_t bitstream_buffer_id) {
TRACE_EVENT0("webrtc", "RTCVideoEncoder::Impl::BitstreamBufferAvailable");
DVLOG(3) << __func__ << " bitstream_buffer_id=" << bitstream_buffer_id;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// If there is no frame in a hardware video encoder,
// UseOutputBitstreamBuffer() call for this buffer id is postponed in the next
// Encode() call. This avoids unnecessary thread wake up in GPU process.
if (frames_in_encoder_count_ == 0) {
pending_output_buffers_.push_back(bitstream_buffer_id);
return;
}
UseOutputBitstreamBuffer(bitstream_buffer_id);
}
void RTCVideoEncoder::Impl::Suspend(SignaledValue event) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (status_ == WEBRTC_VIDEO_CODEC_OK) {
status_ = WEBRTC_VIDEO_CODEC_UNINITIALIZED;
}
event.Set(status_);
event.Signal();
}
void RTCVideoEncoder::Impl::Drain(SignaledValue event) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (status_ == WEBRTC_VIDEO_CODEC_OK ||
status_ == WEBRTC_VIDEO_CODEC_UNINITIALIZED) {
async_init_event_ = ScopedSignaledValue(std::move(event));
video_encoder_->Flush(base::BindOnce(&RTCVideoEncoder::Impl::DrainCompleted,
base::Unretained(this)));
} else {
event.Set(status_);
event.Signal();
}
}
void RTCVideoEncoder::Impl::DrainCompleted(bool success) {
DVLOG(3) << __func__;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (success) {
status_ = WEBRTC_VIDEO_CODEC_UNINITIALIZED;
async_init_event_.SetAndReset(WEBRTC_VIDEO_CODEC_UNINITIALIZED);
} else {
NotifyErrorStatus({media::EncoderStatus::Codes::kEncoderInitializationError,
"Failed to flush VideoEncodeAccelerator"});
}
}
void RTCVideoEncoder::Impl::SetSimulcastToSvcConverter(
std::optional<webrtc::SimulcastToSvcConverter> simulcast_to_svc_converter) {
simulcast_to_svc_converter_ = std::move(simulcast_to_svc_converter);
}
void RTCVideoEncoder::Impl::UseOutputBitstreamBuffer(
int32_t bitstream_buffer_id) {
TRACE_EVENT0("webrtc", "RTCVideoEncoder::Impl::UseOutputBitstreamBuffer");
DVLOG(3) << __func__ << " bitstream_buffer_id=" << bitstream_buffer_id;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (video_encoder_) {
video_encoder_->UseOutputBitstreamBuffer(media::BitstreamBuffer(
bitstream_buffer_id,
output_buffers_[bitstream_buffer_id].first.Duplicate(),
output_buffers_[bitstream_buffer_id].first.GetSize()));
output_buffers_in_encoder_count_++;
}
}
void RTCVideoEncoder::Impl::RequestEncodingParametersChange(
const webrtc::VideoEncoder::RateControlParameters& parameters) {
DVLOG(3) << __func__ << " bitrate=" << parameters.bitrate.ToString()
<< ", framerate=" << parameters.framerate_fps;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (status_ != WEBRTC_VIDEO_CODEC_OK)
return;
RequestEncodingParametersChangeInternal(parameters, std::nullopt);
}
void RTCVideoEncoder::Impl::RequestEncodingParametersChangeInternal(
const webrtc::VideoEncoder::RateControlParameters& parameters,
const std::optional<gfx::Size>& input_visible_size) {
// NotfiyError() has been called. Don't proceed the change request.
if (!video_encoder_)
return;
uint32_t framerate =
std::max(1u, static_cast<uint32_t>(parameters.framerate_fps + 0.5));
// This is a workaround to zero being temporarily provided, as part of the
// initial setup, by WebRTC.
media::VideoBitrateAllocation allocation;
if (parameters.bitrate.get_sum_bps() == 0u) {
allocation.SetBitrate(0, 0, 1u);
} else {
active_spatial_layers_.begin_index = 0;
active_spatial_layers_.end_index = 0;
for (size_t spatial_id = 0;
spatial_id < media::VideoBitrateAllocation::kMaxSpatialLayers;
++spatial_id) {
for (size_t temporal_id = 0;
temporal_id < media::VideoBitrateAllocation::kMaxTemporalLayers;
++temporal_id) {
// TODO(sprang): Clean this up if/when webrtc struct moves to int.
uint32_t temporal_layer_bitrate = base::checked_cast<int>(
parameters.bitrate.GetBitrate(spatial_id, temporal_id));
if (!allocation.SetBitrate(spatial_id, temporal_id,
temporal_layer_bitrate)) {
LOG(WARNING) << "Overflow in bitrate allocation: "
<< parameters.bitrate.ToString();
break;
}
if (temporal_layer_bitrate > 0) {
if (active_spatial_layers_.end_index == 0) {
active_spatial_layers_.begin_index = spatial_id;
}
active_spatial_layers_.end_index = spatial_id + 1;
}
}
}
DCHECK_EQ(allocation.GetSumBps(), parameters.bitrate.get_sum_bps());
}
video_encoder_->RequestEncodingParametersChange(allocation, framerate,
input_visible_size);
}
void RTCVideoEncoder::Impl::RequestEncodingParametersChangeWithSizeChange(
const webrtc::VideoEncoder::RateControlParameters& parameters,
const gfx::Size& input_visible_size,
const media::VideoCodecProfile& profile,
const media::SVCInterLayerPredMode& inter_layer_pred,
const std::vector<media::VideoEncodeAccelerator::Config::SpatialLayer>&
spatial_layers,
SignaledValue event) {
DVLOG(3) << __func__ << " bitrate=" << parameters.bitrate.ToString()
<< ", framerate=" << parameters.framerate_fps
<< ", resolution=" << input_visible_size.ToString();
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK_EQ(status_, WEBRTC_VIDEO_CODEC_UNINITIALIZED);
async_init_event_ = ScopedSignaledValue(std::move(event));
if (input_visible_size == input_visible_size_) {
// If the input visible size is the same, we expect all the resolution of
// spatial layers should be the same.
CHECK_EQ(init_spatial_layer_resolutions_.size(), spatial_layers.size());
for (size_t i = 0; i < spatial_layers.size(); ++i) {
wtf_size_t wtf_i = base::checked_cast<wtf_size_t>(i);
CHECK_EQ(init_spatial_layer_resolutions_[wtf_i].width(),
spatial_layers[i].width);
CHECK_EQ(init_spatial_layer_resolutions_[wtf_i].height(),
spatial_layers[i].height);
}
RequestEncodingParametersChangeInternal(parameters, std::nullopt);
status_ = WEBRTC_VIDEO_CODEC_OK;
async_init_event_.SetAndReset(WEBRTC_VIDEO_CODEC_OK);
return;
}
DVLOG(3) << __func__ << " expecting new buffers, old size "
<< input_visible_size_.ToString();
init_spatial_layer_resolutions_.clear();
for (const auto& layer : spatial_layers) {
init_spatial_layer_resolutions_.emplace_back(layer.width, layer.height);
}
encoder_metrics_provider_->Initialize(
profile, input_visible_size,
/*is_hardware_encoder=*/true,
ToSVCScalabilityMode(spatial_layers, inter_layer_pred));
RequestEncodingParametersChangeInternal(parameters, input_visible_size);
input_visible_size_ = input_visible_size;
}
ActiveSpatialLayers RTCVideoEncoder::Impl::GetActiveSpatialLayers() const {
if (init_spatial_layer_resolutions_.empty()) {
return ActiveSpatialLayers();
}
return active_spatial_layers_;
}
void RTCVideoEncoder::Impl::RequireBitstreamBuffers(
unsigned int input_count,
const gfx::Size& input_coded_size,
size_t output_buffer_size) {
TRACE_EVENT0("webrtc", "RTCVideoEncoder::Impl::RequireBitstreamBuffers");
DVLOG(3) << __func__ << " input_count=" << input_count
<< ", input_coded_size=" << input_coded_size.ToString()
<< ", output_buffer_size=" << output_buffer_size;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
auto scoped_event = std::move(async_init_event_);
if (!video_encoder_)
return;
input_frame_coded_size_ = input_coded_size;
size_t input_buffers_requested_count = input_count + kInputBufferExtraCount;
input_buffers_.resize(input_buffers_requested_count);
input_buffers_free_.resize(input_buffers_requested_count);
for (wtf_size_t i = 0; i < input_buffers_requested_count; i++) {
input_buffers_free_[i] = i;
input_buffers_[i] = {};
}
output_buffers_.clear();
for (int i = 0; i < kOutputBufferCount; ++i) {
base::UnsafeSharedMemoryRegion region =
gpu_factories_->CreateSharedMemoryRegion(output_buffer_size);
base::WritableSharedMemoryMapping mapping = region.Map();
if (!mapping.IsValid()) {
NotifyErrorStatus({media::EncoderStatus::Codes::kSystemAPICallError,
"failed to create output buffer"});
return;
}
output_buffers_.push_back(std::make_pair(
std::move(region),
base::MakeRefCounted<RefCountedWritableSharedMemoryMapping>(
std::move(mapping))));
}
encoded_buffer_reference_holder_ =
std::make_unique<EncodedBufferReferenceHolder>(weak_this_);
// Immediately provide all output buffers to the VEA.
for (wtf_size_t i = 0; i < output_buffers_.size(); ++i) {
UseOutputBitstreamBuffer(i);
}
pending_output_buffers_.clear();
pending_output_buffers_.reserve(output_buffers_.size());
DCHECK_EQ(status_, WEBRTC_VIDEO_CODEC_UNINITIALIZED);
status_ = WEBRTC_VIDEO_CODEC_OK;
scoped_event.SetAndReset(WEBRTC_VIDEO_CODEC_OK);
}
media::EncoderStatus RTCVideoEncoder::Impl::FillGenericFrameInfo(
webrtc::CodecSpecificInfo& info,
const media::BitstreamBufferMetadata& metadata) {
CHECK(svc_controller_);
auto config = svc_controller_->StreamConfig();
// For L1T1 we don't care what reference structure the encoder has produced.
const bool is_l1t1 =
config.num_spatial_layers == 1 && config.num_temporal_layers == 1;
std::vector<webrtc::ScalableVideoController::LayerFrameConfig> layer_frames =
svc_controller_->NextFrameConfig(metadata.key_frame);
DCHECK_EQ(config.num_spatial_layers, 1);
if (layer_frames.size() != 1ull /*num_of_spatial_layers*/) {
return {media::EncoderStatus::Codes::kEncoderFailedEncode,
"Invalid number of layer frames: " +
base::NumberToString(layer_frames.size())};
}
webrtc::GenericFrameInfo generic =
svc_controller_->OnEncodeDone(layer_frames[0]);
// VEA can skip svc_generic only for L1T1.
CHECK(metadata.svc_generic.has_value() || is_l1t1);
if (!is_l1t1 && !metadata.svc_generic->follow_svc_spec) {
const media::SVCGenericMetadata& md_generic = metadata.svc_generic.value();
// Some codecs, like H.265, may produce output bitstream that does not
// follow SVC spec and there is no parsing on the bitstream to get the
// reference structure.
if (!md_generic.reference_flags || !md_generic.refresh_flags) {
return {media::EncoderStatus::Codes::kEncoderFailedEncode,
"Missing reference flags or refresh flags"};
}
if (*md_generic.refresh_flags >= (1 << webrtc::kMaxEncoderBuffers)) {
return {media::EncoderStatus::Codes::kEncoderFailedEncode,
"Invalid refreshed encode buffer flags: " +
base::NumberToString(*md_generic.refresh_flags)};
}
if (layer_frames[0].TemporalId() != md_generic.temporal_idx) {
return {media::EncoderStatus::Codes::kEncoderFailedEncode,
"Invalid temporal id: " +
base::NumberToString(md_generic.temporal_idx) +
" expected: " +
base::NumberToString(layer_frames[0].TemporalId())};
}
generic.encoder_buffers.clear();
if (encode_buffers_tid_.size() == 0) {
encode_buffers_tid_.resize(webrtc::kMaxEncoderBuffers);
}
uint32_t temporal_id = md_generic.temporal_idx;
for (int i = 0; i < webrtc::kMaxEncoderBuffers; i++) {
bool referenced = !!(*md_generic.reference_flags & (1u << i));
if (referenced) {
// If VEA doesn't follow the SVC spec, we need to check whether
// the reference dependency is allowed.
if (encode_buffers_tid_[i] > temporal_id ||
(encode_buffers_tid_[i] == temporal_id && temporal_id != 0)) {
return {media::EncoderStatus::Codes::kEncoderFailedEncode,
"Invalid referenced temporal id: " +
base::NumberToString(encode_buffers_tid_[i]) +
" for current frame with tid: " +
base::NumberToString(temporal_id)};
}
}
bool updated = !!(*md_generic.refresh_flags & (1u << i));
if (updated) {
encode_buffers_tid_[i] = temporal_id;
}
if (referenced || updated) {
webrtc::CodecBufferUsage buffer(i, referenced, updated);
generic.encoder_buffers.push_back(buffer);
}
}
}
info.generic_frame_info = generic;
if (metadata.key_frame) {
info.template_structure = svc_controller_->DependencyStructure();
}
return {media::EncoderStatus::Codes::kOk};
}
void RTCVideoEncoder::Impl::BitstreamBufferReady(
int32_t bitstream_buffer_id,
const media::BitstreamBufferMetadata& metadata) {
TRACE_EVENT2("webrtc", "RTCVideoEncoder::Impl::BitstreamBufferReady",
"timestamp", metadata.timestamp.InMicroseconds(),
"bitstream_buffer_id", bitstream_buffer_id);
DVLOG(3) << __func__ << " bitstream_buffer_id=" << bitstream_buffer_id
<< ", payload_size=" << metadata.payload_size_bytes
<< ", end_of_picture=" << metadata.end_of_picture()
<< ", key_frame=" << metadata.key_frame
<< ", timestamp ms=" << metadata.timestamp.InMicroseconds();
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (bitstream_buffer_id < 0 ||
bitstream_buffer_id >= static_cast<int>(output_buffers_.size())) {
NotifyErrorStatus({media::EncoderStatus::Codes::kInvalidOutputBuffer,
"invalid bitstream_buffer_id: " +
base::NumberToString(bitstream_buffer_id)});
return;
}
DCHECK_NE(output_buffers_in_encoder_count_, 0u);
output_buffers_in_encoder_count_--;
// Decrease |frames_in_encoder_count_| on the first frame so that
// UseOutputBitstreamBuffer() is not called until next frame if no frame but
// the current frame is in VideoEncodeAccelerator.
if (metadata.spatial_idx().value_or(0) == 0) {
CHECK_NE(0u, frames_in_encoder_count_);
frames_in_encoder_count_--;
}
if (status_ == WEBRTC_VIDEO_CODEC_UNINITIALIZED) {
// The encoder has been suspended, drain remaining frames.
BitstreamBufferAvailable(bitstream_buffer_id);
return;
}
// An encoder drops a frame.
if (metadata.dropped_frame()) {
BitstreamBufferAvailable(bitstream_buffer_id);
// Invoke OnDroppedFrame() only in the end of picture. How to call
// OnDroppedFrame() in spatial layers is not defined in the webrtc encoder
// API. We call once in spatial layers. This point will be fixed in a
// new WebRTC encoder API.
if (metadata.end_of_picture()) {
base::AutoLock lock(lock_);
if (!encoded_image_callback_) {
return;
}
encoded_image_callback_->OnDroppedFrame(
webrtc::EncodedImageCallback::DropReason::kDroppedByEncoder);
}
return;
}
scoped_refptr<RefCountedWritableSharedMemoryMapping> output_mapping =
output_buffers_[bitstream_buffer_id].second;
if (metadata.payload_size_bytes >
output_buffers_[bitstream_buffer_id].second->size()) {
NotifyErrorStatus({media::EncoderStatus::Codes::kInvalidOutputBuffer,
"invalid payload_size: " +
base::NumberToString(metadata.payload_size_bytes)});
return;
}
if (metadata.end_of_picture()) {
CHECK(encoder_metrics_provider_);
encoder_metrics_provider_->IncrementEncodedFrameCount();
}
// Find RTP and capture timestamps by going through |pending_timestamps_|.
// Derive it from current time otherwise.
std::optional<uint32_t> rtp_timestamp;
std::optional<int64_t> capture_timestamp_ms;
std::optional<ActiveSpatialLayers> expected_active_spatial_layers;
if (!failed_timestamp_match_) {
// Pop timestamps until we have a match.
while (!submitted_frames_.empty()) {
auto& front_frame = submitted_frames_.front();
const bool end_of_picture = metadata.end_of_picture();
if (front_frame.media_timestamp_ == metadata.timestamp) {
rtp_timestamp = front_frame.rtp_timestamp_;
capture_timestamp_ms = front_frame.capture_time_ms_;
expected_active_spatial_layers = front_frame.active_spatial_layers_;
const size_t num_spatial_layers =
std::max(front_frame.active_spatial_layers_.size(), size_t{1});
++front_frame.produced_frames_;
if (front_frame.produced_frames_ == num_spatial_layers &&
!end_of_picture) {
// The top layer must always have the end-of-picture indicator.
NotifyErrorStatus({media::EncoderStatus::Codes::kEncoderFailedEncode,
"missing end-of-picture"});
return;
}
if (end_of_picture) {
// Remove pending timestamp at the top spatial layer in the case of
// SVC encoding.
if (front_frame.produced_frames_ != num_spatial_layers) {
// At least one resolution was not produced.
NotifyErrorStatus(
{media::EncoderStatus::Codes::kEncoderFailedEncode,
"missing resolution"});
return;
}
submitted_frames_.pop_front();
}
break;
}
submitted_frames_.pop_front();
}
DCHECK(rtp_timestamp.has_value());
}
if (!rtp_timestamp.has_value() || !capture_timestamp_ms.has_value()) {
failed_timestamp_match_ = true;
submitted_frames_.clear();
const int64_t current_time_ms =
webrtc::TimeMicros() / base::Time::kMicrosecondsPerMillisecond;
// RTP timestamp can wrap around. Get the lower 32 bits.
rtp_timestamp = static_cast<uint32_t>(current_time_ms * 90);
capture_timestamp_ms = current_time_ms;
}
// Only H.265 bitstream may need a fix. If a fixed bitstream is available, the
// original bitstream buffer can be released immediately.
bool fixed_bitstream = false;
webrtc::EncodedImage image;
#if BUILDFLAG(RTC_USE_H265)
if (ps_tracker_.get()) {
H265ParameterSetsTracker::FixedBitstream fixed =
ps_tracker_->MaybeFixBitstream(webrtc::MakeArrayView(
output_mapping->front(), metadata.payload_size_bytes));
if (fixed.action == H265ParameterSetsTracker::PacketAction::kInsert) {
image.SetEncodedData(fixed.bitstream);
BitstreamBufferAvailable(bitstream_buffer_id);
fixed_bitstream = true;
}
}
#endif // BUILDFLAG(RTC_USE_H265)
if (!fixed_bitstream) {
image.SetEncodedData(webrtc::make_ref_counted<EncodedDataWrapper>(
std::move(output_mapping), metadata.payload_size_bytes,
base::BindPostTaskToCurrentDefault(base::BindOnce(
&EncodedBufferReferenceHolder::BitstreamBufferAvailable,
encoded_buffer_reference_holder_->GetWeakPtr(),
bitstream_buffer_id))));
}
auto encoded_size = metadata.encoded_size.value_or(input_visible_size_);
image._encodedWidth = encoded_size.width();
image._encodedHeight = encoded_size.height();
image.SetRtpTimestamp(rtp_timestamp.value());
image.capture_time_ms_ = capture_timestamp_ms.value();
image._frameType =
(metadata.key_frame ? webrtc::VideoFrameType::kVideoFrameKey
: webrtc::VideoFrameType::kVideoFrameDelta);
image.content_type_ = video_content_type_;
// Default invalid qp value is -1 in webrtc::EncodedImage and
// media::BitstreamBufferMetadata, and libwebrtc would parse bitstream to get
// the qp if |qp_| is less than zero.
image.qp_ = metadata.qp;
webrtc::CodecSpecificInfo info;
info.codecType = video_codec_type_;
if (scalability_mode_.has_value()) {
info.scalability_mode = scalability_mode_;
}
switch (video_codec_type_) {
case webrtc::kVideoCodecH264: {
webrtc::CodecSpecificInfoH264& h264 = info.codecSpecific.H264;
h264.packetization_mode = webrtc::H264PacketizationMode::NonInterleaved;
h264.idr_frame = metadata.key_frame;
if (metadata.h264) {
h264.temporal_idx = metadata.h264->temporal_idx;
h264.base_layer_sync = metadata.h264->layer_sync;
image.SetTemporalIndex(metadata.h264->temporal_idx);
} else {
h264.temporal_idx = webrtc::kNoTemporalIdx;
h264.base_layer_sync = false;
}
} break;
case webrtc::kVideoCodecVP8:
info.codecSpecific.VP8.keyIdx = -1;
if (metadata.vp8) {
image.SetTemporalIndex(metadata.vp8->temporal_idx);
}
break;
case webrtc::kVideoCodecVP9: {
webrtc::CodecSpecificInfoVP9& vp9 = info.codecSpecific.VP9;
if (metadata.vp9) {
// Temporal and/or spatial layer stream.
CHECK(expected_active_spatial_layers);
if (metadata.key_frame) {
if (metadata.vp9->spatial_layer_resolutions.empty()) {
NotifyErrorStatus(
{media::EncoderStatus::Codes::kEncoderFailedEncode,
"SVC resolution metadata is not filled on keyframe"});
return;
}
CHECK_NE(expected_active_spatial_layers->end_index, 0u);
const size_t expected_begin_index =
expected_active_spatial_layers->begin_index;
const size_t expected_end_index =
expected_active_spatial_layers->end_index;
const size_t begin_index =
metadata.vp9->begin_active_spatial_layer_index;
const size_t end_index = metadata.vp9->end_active_spatial_layer_index;
if (begin_index != expected_begin_index ||
end_index != expected_end_index) {
NotifyErrorStatus(
{media::EncoderStatus::Codes::kEncoderFailedEncode,
base::StrCat({"SVC active layer indices don't match "
"request: expected [",
base::NumberToString(expected_begin_index), ", ",
base::NumberToString(expected_end_index),
"), but got [",
base::NumberToString(begin_index), ", ",
base::NumberToString(end_index), ")"})});
return;
}
const std::vector<gfx::Size> expected_resolutions(
init_spatial_layer_resolutions_.begin() + begin_index,
init_spatial_layer_resolutions_.begin() + end_index);
if (metadata.vp9->spatial_layer_resolutions != expected_resolutions) {
NotifyErrorStatus(
{media::EncoderStatus::Codes::kEncoderFailedEncode,
"Encoded SVC resolution set does not match request"});
return;
}
}
const ActiveSpatialLayers& vea_active_spatial_layers =
*expected_active_spatial_layers;
CHECK_NE(vea_active_spatial_layers.end_index, 0u);
const uint8_t spatial_index =
metadata.vp9->spatial_idx + vea_active_spatial_layers.begin_index;
if (spatial_index >= init_spatial_layer_resolutions_.size()) {
NotifyErrorStatus(
{media::EncoderStatus::Codes::kInvalidOutputBuffer,
base::StrCat(
{"spatial_idx=", base::NumberToString(spatial_index),
" is not less than init_spatial_layer_resolutions_.size()=",
base::NumberToString(
init_spatial_layer_resolutions_.size())})});
return;
}
if (spatial_index >= vea_active_spatial_layers.end_index) {
NotifyErrorStatus(
{media::EncoderStatus::Codes::kInvalidOutputBuffer,
base::StrCat(
{"spatial_idx=", base::NumberToString(spatial_index),
" is not less than vea_active_spatial_layers.end_index=",
base::NumberToString(
vea_active_spatial_layers.end_index)})});
return;
}
image._encodedWidth =
init_spatial_layer_resolutions_[spatial_index].width();
image._encodedHeight =
init_spatial_layer_resolutions_[spatial_index].height();
image.SetSpatialIndex(spatial_index);
image.SetTemporalIndex(metadata.vp9->temporal_idx);
vp9.first_frame_in_picture =
spatial_index == vea_active_spatial_layers.begin_index;
vp9.inter_pic_predicted = metadata.vp9->inter_pic_predicted;
vp9.non_ref_for_inter_layer_pred =
!metadata.vp9->referenced_by_upper_spatial_layers;
vp9.temporal_idx = metadata.vp9->temporal_idx;
vp9.temporal_up_switch = metadata.vp9->temporal_up_switch;
vp9.inter_layer_predicted =
metadata.vp9->reference_lower_spatial_layers;
vp9.num_ref_pics = metadata.vp9->p_diffs.size();
for (size_t i = 0; i < metadata.vp9->p_diffs.size(); ++i)
vp9.p_diff[i] = metadata.vp9->p_diffs[i];
vp9.ss_data_available = metadata.key_frame;
// |num_spatial_layers| is not the number of active spatial layers,
// but the highest spatial layer + 1.
vp9.first_active_layer = vea_active_spatial_layers.begin_index;
vp9.num_spatial_layers = vea_active_spatial_layers.end_index;
if (vp9.ss_data_available) {
vp9.spatial_layer_resolution_present = true;
vp9.gof.num_frames_in_gof = 0;
for (size_t i = 0; i < vea_active_spatial_layers.begin_index; ++i) {
// Signal disabled layers.
vp9.width[i] = 0;
vp9.height[i] = 0;
}
for (size_t i = vea_active_spatial_layers.begin_index;
i < vea_active_spatial_layers.end_index; ++i) {
wtf_size_t wtf_i = base::checked_cast<wtf_size_t>(i);
vp9.width[i] = init_spatial_layer_resolutions_[wtf_i].width();
vp9.height[i] = init_spatial_layer_resolutions_[wtf_i].height();
}
}
vp9.flexible_mode = true;
vp9.gof_idx = 0;
info.end_of_picture = metadata.end_of_picture();
} else {
// Simple stream, neither temporal nor spatial layer stream.
vp9.flexible_mode = false;
vp9.temporal_idx = webrtc::kNoTemporalIdx;
vp9.temporal_up_switch = true;
vp9.inter_layer_predicted = false;
vp9.gof_idx = 0;
vp9.num_spatial_layers = 1;
vp9.first_frame_in_picture = true;
vp9.spatial_layer_resolution_present = false;
vp9.inter_pic_predicted = !metadata.key_frame;
vp9.ss_data_available = metadata.key_frame;
if (vp9.ss_data_available) {
vp9.spatial_layer_resolution_present = true;
vp9.width[0] = image._encodedWidth;
vp9.height[0] = image._encodedHeight;
vp9.gof.num_frames_in_gof = 1;
vp9.gof.temporal_idx[0] = 0;
vp9.gof.temporal_up_switch[0] = false;
vp9.gof.num_ref_pics[0] = 1;
vp9.gof.pid_diff[0][0] = 1;
}
info.end_of_picture = true;
}
// TODO(bugs.webrtc.org/11999): Fill `info.generic_frame_info` to
// provide more accurate description of used layering than webrtc can
// simulate based on the codec specific info.
} break;
case webrtc::kVideoCodecAV1:
#if BUILDFLAG(RTC_USE_H265)
case webrtc::kVideoCodecH265:
#endif // BUILDFLAG(RTC_USE_H265)
if (svc_controller_) {
media::EncoderStatus status = FillGenericFrameInfo(info, metadata);
if (!status.is_ok()) {
NotifyErrorStatus(status);
}
}
break;
default:
break;
}
if (simulcast_to_svc_converter_) {
simulcast_to_svc_converter_->ConvertFrame(image, info);
}
base::AutoLock lock(lock_);
if (!encoded_image_callback_)
return;
const auto result = encoded_image_callback_->OnEncodedImage(image, &info);
if (result.error != webrtc::EncodedImageCallback::Result::OK) {
DVLOG(2)
<< "ReturnEncodedImage(): webrtc::EncodedImageCallback::Result.error = "
<< result.error;
}
}
void RTCVideoEncoder::Impl::NotifyErrorStatus(
const media::EncoderStatus& status) {
TRACE_EVENT0("webrtc", "RTCVideoEncoder::Impl::NotifyErrorStatus");
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
CHECK(!status.is_ok());
LOG(ERROR) << "NotifyErrorStatus is called with code="
<< static_cast<int>(status.code())
<< ", message=" << status.message();
if (encoder_metrics_provider_) {
// |encoder_metrics_provider_| is nullptr if NotifyErrorStatus() is called
// before it is created in CreateAndInitializeVEA().
encoder_metrics_provider_->SetError(status);
}
// Don't count the error multiple times.
if (status_ != WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE) {
RecordEncoderStatusUMA(status, video_codec_type_);
}
input_visible_size_ = gfx::Size();
video_encoder_.reset();
status_ = WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE;
async_init_event_.SetAndReset(WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE);
execute_software_fallback_.Run();
}
RTCVideoEncoder::Impl::~Impl() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (video_encoder_) {
video_encoder_.reset();
status_ = WEBRTC_VIDEO_CODEC_UNINITIALIZED;
RecordEncoderStatusUMA(media::EncoderStatus::Codes::kOk, video_codec_type_);
}
async_init_event_.reset();
encoded_buffer_reference_holder_.reset();
// weak_this_ must be invalidated in |gpu_task_runner_|.
weak_this_factory_.InvalidateWeakPtrs();
}
bool RTCVideoEncoder::Impl::NeedConvertToMemoryFrame(
const webrtc::VideoFrameBuffer& frame_buffer) const {
if (frame_buffer.type() != webrtc::VideoFrameBuffer::Type::kNative) {
// Why...?
// This frame is created in libwebrtc.
return true;
}
const auto* frame_adapter =
static_cast<const WebRtcVideoFrameAdapterInterface*>(&frame_buffer);
const media::VideoFrame& frame = *frame_adapter->getMediaVideoFrame();
using enum media::VideoFrame::StorageType;
using StorageType = media::VideoFrame::StorageType;
const StorageType storage_type = frame.storage_type();
constexpr StorageType kStorageTypeSupportedByMojo[] = {
STORAGE_UNOWNED_MEMORY,
STORAGE_OWNED_MEMORY,
STORAGE_SHMEM,
};
if (!base::Contains(kStorageTypeSupportedByMojo, storage_type)) {
// We need to convert to I420 memory frame if mojo doesn't support it.
return true;
}
if (frame.format() != media::PIXEL_FORMAT_I420) {
// VEA supports I420 and NV12. But NV12 frame must come with
// GPU_MEMORY_BUFFER. For non GPU_MEMORY_BUFFER NV12 frames should be
// converted to I420 memory frame.
return true;
}
// Here, |frame| is I420 memory frame. Let's finally check its sizes matches
// VEA's desired sizes.
if (frame.visible_rect() != gfx::Rect(input_visible_size_)) {
// This happens when (1) an input video frame is different from the encoder
// resolution (e.g simulcast case or dynamic resolution degradation), or
// (2) the |frame|'s visible rectanble origin is not (0, 0) (e.g. the
// camera only supports 4:3 ratio, but 16:9 is requested by WebRTC app, so
// it produces 16:9 ratio frame by cropping the 4:3 captured frame.).
return true;
}
if (frame.coded_size() != input_frame_coded_size_) {
// Here the |visible_rect| above is the same. So this means that the
// hardware video decoder desired alignments (e.g. stride and aligned
// height) don't match frame.coded_size().
return true;
}
return false;
}
scoped_refptr<media::VideoFrame>
RTCVideoEncoder::Impl::CreateUnownedMemoryFrameByWebRTCVideoFrameBuffer(
webrtc::VideoFrameBuffer& frame_buffer) {
DCHECK_EQ(frame_buffer.type(), webrtc::VideoFrameBuffer::Type::kNative);
auto scaled_buffer = frame_buffer.Scale(input_visible_size_.width(),
input_visible_size_.height());
auto mapped_buffer =
scaled_buffer->GetMappedFrameBuffer(preferred_pixel_formats_);
if (!mapped_buffer) {
mapped_buffer = scaled_buffer->ToI420();
}
if (!mapped_buffer) {
NotifyErrorStatus({media::EncoderStatus::Codes::kSystemAPICallError,
"Failed to map buffer"});
return nullptr;
}
DCHECK_NE(mapped_buffer->type(), webrtc::VideoFrameBuffer::Type::kNative);
// Timestamp is set later in EncodeOneFrame() .
auto frame =
ConvertFromMappedWebRtcVideoFrameBuffer(mapped_buffer, base::TimeDelta());
if (!frame) {
NotifyErrorStatus(
{media::EncoderStatus::Codes::kFormatConversionError,
"Failed to convert WebRTC mapped buffer to media::VideoFrame"});
return nullptr;
}
return frame;
}
scoped_refptr<media::VideoFrame>
RTCVideoEncoder::Impl::CreateI420SharedMemoryFrameByLibyuv(
webrtc::VideoFrameBuffer& frame_buffer) {
CHECK(!input_buffers_free_.empty());
const int index = input_buffers_free_.back();
auto& i420_shmem = input_buffers_[index].i420_shmem;
if (!i420_shmem) {
const size_t input_frame_buffer_size = media::VideoFrame::AllocationSize(
media::PIXEL_FORMAT_I420, input_frame_coded_size_);
i420_shmem = std::make_unique<base::MappedReadOnlyRegion>(
base::ReadOnlySharedMemoryRegion::Create(input_frame_buffer_size));
if (!i420_shmem->IsValid()) {
NotifyErrorStatus({media::EncoderStatus::Codes::kSystemAPICallError,
"Failed to create shared memory"});
return nullptr;
}
}
CHECK(i420_shmem->IsValid());
auto& region = i420_shmem->region;
auto& mapping = i420_shmem->mapping;
// The timestamp is set later in EncodeOneFrame().
auto frame = media::VideoFrame::WrapExternalData(
media::PIXEL_FORMAT_I420, input_frame_coded_size_,
gfx::Rect(input_visible_size_), input_visible_size_,
static_cast<uint8_t*>(mapping.memory()), mapping.size(),
base::TimeDelta());
if (!frame) {
NotifyErrorStatus({media::EncoderStatus::Codes::kEncoderFailedEncode,
"Failed to create input buffer"});
return nullptr;
}
// |frame| is STORAGE_UNOWNED_MEMORY at this point. Writing the data is
// allowed.
// Do a strided copy and scale (if necessary) the input frame to match
// the input requirements for the encoder.
// TODO(magjed): Downscale with an image pyramid instead.
webrtc::scoped_refptr<webrtc::I420BufferInterface> i420_buffer =
frame_buffer.ToI420();
if (libyuv::I420Scale(
i420_buffer->DataY(), i420_buffer->StrideY(), i420_buffer->DataU(),
i420_buffer->StrideU(), i420_buffer->DataV(), i420_buffer->StrideV(),
i420_buffer->width(), i420_buffer->height(),
frame->GetWritableVisibleData(media::VideoFrame::Plane::kY),
frame->stride(media::VideoFrame::Plane::kY),
frame->GetWritableVisibleData(media::VideoFrame::Plane::kU),
frame->stride(media::VideoFrame::Plane::kU),
frame->GetWritableVisibleData(media::VideoFrame::Plane::kV),
frame->stride(media::VideoFrame::Plane::kV),
frame->visible_rect().width(), frame->visible_rect().height(),
libyuv::kFilterBox)) {
NotifyErrorStatus({media::EncoderStatus::Codes::kFormatConversionError,
"Failed to copy buffer"});
return nullptr;
}
// |frame| becomes STORAGE_SHMEM. Writing the buffer is not permitted
// after here.
frame->BackWithSharedMemory(®ion);
input_buffers_free_.pop_back();
frame->AddDestructionObserver(
base::BindPostTaskToCurrentDefault(WTF::BindOnce(
&RTCVideoEncoder::Impl::InputBufferReleased, weak_this_, index)));
return frame;
}
scoped_refptr<media::VideoFrame> RTCVideoEncoder::Impl::CreateMemoryFrame(
webrtc::VideoFrameBuffer& frame_buffer) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// Native buffer scaling is performed by WebRtcVideoFrameAdapter, which may
// be more efficient in some cases. E.g. avoiding I420 conversion or scaling
// from a middle layer instead of top layer.
//
// Native buffer scaling is only supported when `input_frame_coded_size_`
// and `input_visible_size_` strides match. This ensures the strides of the
// frame that we pass to the encoder fits the input requirements.
bool native_buffer_scaling =
#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_CHROMEOS)
frame_buffer.type() == webrtc::VideoFrameBuffer::Type::kNative &&
input_frame_coded_size_ == input_visible_size_;
#else
// TODO(https://crbug.com/1307206): Android (e.g. android-pie-arm64-rel)
// and CrOS does not support the native buffer scaling path. Investigate
// why and find a way to enable it, if possible.
false;
#endif
if (native_buffer_scaling) {
return CreateUnownedMemoryFrameByWebRTCVideoFrameBuffer(frame_buffer);
}
return CreateI420SharedMemoryFrameByLibyuv(frame_buffer);
}
scoped_refptr<media::VideoFrame>
RTCVideoEncoder::Impl::CreateNV12SharedImageFrame(
webrtc::VideoFrameBuffer& frame_buffer,
const gfx::Rect& visible_rect) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
CHECK(!input_buffers_free_.empty());
TRACE_EVENT1("webrtc", "RTCVideoEncoder::Impl::CreateNV12SharedImageFrame",
"visible_rect", visible_rect.ToString());
const int index = input_buffers_free_.back();
scoped_refptr<gpu::ClientSharedImage>& nv12_shared_image =
input_buffers_[index].nv12_shared_image;
if (!nv12_shared_image || nv12_shared_image->size() != visible_rect.size()) {
nv12_shared_image =
CreateClientSharedImage(gpu_factories_, visible_rect.size());
if (!nv12_shared_image) {
NotifyErrorStatus({media::EncoderStatus::Codes::kSystemAPICallError,
"Failed to allocate shared image"});
return nullptr;
}
}
TRACE_EVENT_BEGIN0("webrtc", "CreateNV12SharedImageFrame-ToI420");
webrtc::scoped_refptr<webrtc::I420BufferInterface> i420_buffer =
frame_buffer.ToI420();
CHECK(i420_buffer);
TRACE_EVENT_END0("webrtc", "CreateNV12SharedImageFrame-ToI420");
// Map in order to write to it.
auto mapping = nv12_shared_image->Map();
if (!mapping) {
NotifyErrorStatus({media::EncoderStatus::Codes::kSystemAPICallError,
"Failed to map shared image"});
return nullptr;
}
TRACE_EVENT_BEGIN0("webrtc", "CreateNV12SharedImageFrame-I420ToNV12");
uint8_t* dst_y = mapping->GetMemoryForPlane(0).data();
uint8_t* dst_uv = mapping->GetMemoryForPlane(1).data();
const size_t dst_y_stride = mapping->Stride(0);
const size_t dst_uv_stride = mapping->Stride(1);
const size_t width = visible_rect.width();
const size_t height = visible_rect.height();
if (libyuv::I420ToNV12(i420_buffer->DataY(), i420_buffer->StrideY(),
i420_buffer->DataU(), i420_buffer->StrideU(),
i420_buffer->DataV(), i420_buffer->StrideV(), dst_y,
dst_y_stride, dst_uv, dst_uv_stride, width, height)) {
NotifyErrorStatus({media::EncoderStatus::Codes::kFormatConversionError,
"Failed to convert I420 to NV12 SharedImage"});
return nullptr;
}
TRACE_EVENT_END0("webrtc", "CreateNV12SharedImageFrame-I420ToNV12");
TRACE_EVENT_BEGIN0("webrtc",
"CreateNV12SharedImageFrame-GenVerifiedSyncToken");
auto* sii = gpu_factories_->SharedImageInterface();
CHECK(sii);
gpu::SyncToken sync_token = sii->GenVerifiedSyncToken();
TRACE_EVENT_END0("webrtc", "CreateNV12SharedImageFrame-GenVerifiedSyncToken");
// The timestamp is set later in EncodeOneFrameWithNativeInput().
auto frame = media::VideoFrame::WrapMappableSharedImage(
nv12_shared_image, sync_token, base::NullCallback(), visible_rect,
visible_rect.size(), base::TimeDelta());
if (!frame) {
NotifyErrorStatus({media::EncoderStatus::Codes::kEncoderFailedEncode,
"Failed to create video frame"});
return nullptr;
}
input_buffers_free_.pop_back();
frame->AddDestructionObserver(
base::BindPostTaskToCurrentDefault(WTF::BindOnce(
&RTCVideoEncoder::Impl::InputBufferReleased, weak_this_, index)));
return frame;
}
void RTCVideoEncoder::Impl::EncodeOneFrame(FrameChunk frame_chunk) {
DVLOG(3) << "Impl::EncodeOneFrame()";
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(!input_buffers_free_.empty());
TRACE_EVENT1("webrtc", "RTCVideoEncoder::Impl::EncodeOneFrame", "timestamp",
frame_chunk.timestamp_us);
if (!video_encoder_) {
return;
}
const base::TimeDelta timestamp =
base::Microseconds(frame_chunk.timestamp_us);
scoped_refptr<media::VideoFrame> frame;
webrtc::scoped_refptr<webrtc::VideoFrameBuffer> frame_buffer =
frame_chunk.video_frame_buffer;
// TODO: set timestamp.
if (NeedConvertToMemoryFrame(*frame_buffer)) {
TRACE_EVENT0("webrtc",
"RTCVideoEncoder::Impl::EncodeOneFrame::CopyOrScale");
frame = CreateMemoryFrame(*frame_buffer);
if (!frame) {
return;
}
} else {
frame =
static_cast<const WebRtcVideoFrameAdapterInterface*>(frame_buffer.get())
->getMediaVideoFrame();
}
frame->set_timestamp(timestamp);
if (!failed_timestamp_match_) {
DCHECK(!base::Contains(submitted_frames_, timestamp,
&FrameInfo::media_timestamp_));
submitted_frames_.emplace_back(timestamp, frame_chunk.timestamp,
frame_chunk.render_time_ms,
GetActiveSpatialLayers());
}
// Call UseOutputBitstreamBuffer() for pending output buffers.
for (const auto& bitstream_buffer_id : pending_output_buffers_) {
UseOutputBitstreamBuffer(bitstream_buffer_id);
}
pending_output_buffers_.clear();
if (simulcast_to_svc_converter_) {
simulcast_to_svc_converter_->EncodeStarted(frame_chunk.force_keyframe);
}
frames_in_encoder_count_++;
DVLOG(3) << "frames_in_encoder_count=" << frames_in_encoder_count_;
video_encoder_->Encode(frame, frame_chunk.force_keyframe);
}
void RTCVideoEncoder::Impl::EncodeOneFrameWithNativeInput(
FrameChunk frame_chunk) {
DVLOG(3) << "Impl::EncodeOneFrameWithNativeInput()";
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(!input_buffers_free_.empty());
TRACE_EVENT1("webrtc", "RTCVideoEncoder::Impl::EncodeOneFrameWithNativeInput",
"timestamp", frame_chunk.timestamp_us);
if (!video_encoder_) {
return;
}
scoped_refptr<media::VideoFrame> frame;
webrtc::scoped_refptr<webrtc::VideoFrameBuffer> frame_buffer =
frame_chunk.video_frame_buffer;
if (frame_buffer->type() != webrtc::VideoFrameBuffer::Type::kNative) {
// If we get a non-native frame it's because the video track is disabled
// and WebRTC VideoBroadcaster replaces the camera frame with a black YUV
// frame.
if (!black_frame_) {
gfx::Size natural_size(frame_buffer->width(), frame_buffer->height());
if (!CreateBlackMappableSIFrame(natural_size)) {
NotifyErrorStatus({media::EncoderStatus::Codes::kSystemAPICallError,
"Failed to allocate native buffer for black frame"});
return;
}
}
frame = media::VideoFrame::WrapVideoFrame(
black_frame_, black_frame_->format(), black_frame_->visible_rect(),
black_frame_->natural_size());
} else {
frame = static_cast<WebRtcVideoFrameAdapterInterface*>(frame_buffer.get())
->getMediaVideoFrame();
if (frame->storage_type() != media::VideoFrame::STORAGE_GPU_MEMORY_BUFFER) {
frame = CreateNV12SharedImageFrame(*frame_buffer, frame->visible_rect());
if (!frame) {
return;
}
}
}
frame->set_timestamp(base::Microseconds(frame_chunk.timestamp_us));
CHECK_EQ(frame->storage_type(), media::VideoFrame::STORAGE_GPU_MEMORY_BUFFER);
if (!failed_timestamp_match_) {
DCHECK(!base::Contains(submitted_frames_, frame->timestamp(),
&FrameInfo::media_timestamp_));
submitted_frames_.emplace_back(frame->timestamp(), frame_chunk.timestamp,
frame_chunk.render_time_ms,
GetActiveSpatialLayers());
}
// Call UseOutputBitstreamBuffer() for pending output buffers.
for (const auto& bitstream_buffer_id : pending_output_buffers_) {
UseOutputBitstreamBuffer(bitstream_buffer_id);
}
pending_output_buffers_.clear();
frames_in_encoder_count_++;
DVLOG(3) << "frames_in_encoder_count=" << frames_in_encoder_count_;
video_encoder_->Encode(frame, frame_chunk.force_keyframe);
}
bool RTCVideoEncoder::Impl::CreateBlackMappableSIFrame(
const gfx::Size& natural_size) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
auto shared_image = CreateClientSharedImage(gpu_factories_, natural_size);
if (!shared_image) {
return false;
}
auto* sii = gpu_factories_->SharedImageInterface();
CHECK(sii);
// Map in order to write to it.
auto mapping = shared_image->Map();
if (!mapping) {
LOG(ERROR) << "Mapping shared image failed.";
sii->DestroySharedImage(gpu::SyncToken(), std::move(shared_image));
return false;
}
// Fills the NV12 frame with YUV black (0x00, 0x80, 0x80).
std::ranges::fill(mapping->GetMemoryForPlane(0), 0x0);
std::ranges::fill(mapping->GetMemoryForPlane(1), 0x80);
gpu::SyncToken sync_token = sii->GenVerifiedSyncToken();
black_frame_ = media::VideoFrame::WrapMappableSharedImage(
std::move(shared_image), sync_token, base::NullCallback(),
gfx::Rect(mapping->Size()), natural_size, base::TimeDelta());
return true;
}
void RTCVideoEncoder::Impl::InputBufferReleased(int index) {
TRACE_EVENT0("webrtc", "RTCVideoEncoder::Impl::InputBufferReleased");
DVLOG(3) << "Impl::InputBufferReleased(): index=" << index;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// NotfiyError() has been called. Don't proceed the frame completion.
if (!video_encoder_) {
return;
}
DCHECK_GE(index, 0);
DCHECK_LT(index, static_cast<int>(input_buffers_.size()));
input_buffers_free_.push_back(index);
while (!pending_frames_.empty() && !input_buffers_free_.empty()) {
auto chunk = std::move(pending_frames_.front());
pending_frames_.pop_front();
if (use_native_input_) {
EncodeOneFrameWithNativeInput(std::move(chunk));
} else {
EncodeOneFrame(std::move(chunk));
}
}
}
void RTCVideoEncoder::Impl::RegisterEncodeCompleteCallback(
webrtc::EncodedImageCallback* callback) {
DVLOG(3) << __func__;
base::AutoLock lock(lock_);
encoded_image_callback_ = callback;
}
#if BUILDFLAG(RTC_USE_H265)
void RTCVideoEncoder::Impl::SetH265ParameterSetsTrackerForTesting(
std::unique_ptr<H265ParameterSetsTracker> tracker) {
ps_tracker_ = std::move(tracker);
}
#endif
RTCVideoEncoder::RTCVideoEncoder(
media::VideoCodecProfile profile,
bool is_constrained_h264,
media::GpuVideoAcceleratorFactories* gpu_factories,
scoped_refptr<media::MojoVideoEncoderMetricsProviderFactory>
encoder_metrics_provider_factory)
: profile_(profile),
is_constrained_h264_(is_constrained_h264),
gpu_factories_(gpu_factories),
encoder_metrics_provider_factory_(
std::move(encoder_metrics_provider_factory)),
gpu_task_runner_(gpu_factories->GetTaskRunner()) {
DCHECK_CALLED_ON_VALID_SEQUENCE(webrtc_sequence_checker_);
CHECK(encoder_metrics_provider_factory_);
DVLOG(1) << "RTCVideoEncoder(): profile=" << GetProfileName(profile);
// The default values of EncoderInfo.
encoder_info_.scaling_settings = webrtc::VideoEncoder::ScalingSettings::kOff;
encoder_info_.requested_resolution_alignment = 1;
encoder_info_.apply_alignment_to_all_simulcast_layers = false;
encoder_info_.supports_native_handle = true;
encoder_info_.implementation_name = "ExternalEncoder";
encoder_info_.has_trusted_rate_controller = false;
encoder_info_.is_hardware_accelerated = true;
encoder_info_.is_qp_trusted = true;
encoder_info_.fps_allocation[0] = {
webrtc::VideoEncoder::EncoderInfo::kMaxFramerateFraction};
DCHECK(encoder_info_.resolution_bitrate_limits.empty());
// Simulcast is supported for VP9 codec if svc is supported.
// Since this encoder is used for all codecs, need to always
// report true.
encoder_info_.supports_simulcast =
media::IsVp9kSVCHWEncodingEnabled() &&
base::FeatureList::IsEnabled(
features::kRtcVideoEncoderConvertSimulcastToSvc);
encoder_info_.preferred_pixel_formats = {
webrtc::VideoFrameBuffer::Type::kI420};
impl_initialized_ = false;
weak_this_ = weak_this_factory_.GetWeakPtr();
}
RTCVideoEncoder::~RTCVideoEncoder() {
DCHECK_CALLED_ON_VALID_SEQUENCE(webrtc_sequence_checker_);
DVLOG(3) << __func__;
// |weak_this_| must be invalidated on |webrtc_sequence_checker_|.
weak_this_factory_.InvalidateWeakPtrs();
ReleaseImpl();
DCHECK(!impl_);
// |encoder_metrics_provider_factory_| needs to be destroyed on the same
// sequence as one that destroys the VideoEncoderMetricsProviders created by
// it. It is gpu task runner in this case.
gpu_task_runner_->ReleaseSoon(FROM_HERE,
std::move(encoder_metrics_provider_factory_));
}
int32_t RTCVideoEncoder::DrainEncoderAndUpdateFrameSize(
const gfx::Size& input_visible_size,
const webrtc::VideoEncoder::RateControlParameters& params,
const media::SVCInterLayerPredMode& inter_layer_pred,
const std::vector<media::VideoEncodeAccelerator::Config::SpatialLayer>&
spatial_layers) {
DCHECK_CALLED_ON_VALID_SEQUENCE(webrtc_sequence_checker_);
base::ScopedAllowBaseSyncPrimitivesOutsideBlockingScope allow_wait;
base::WaitableEvent initialization_waiter(
base::WaitableEvent::ResetPolicy::MANUAL,
base::WaitableEvent::InitialState::NOT_SIGNALED);
int32_t initialization_retval = WEBRTC_VIDEO_CODEC_UNINITIALIZED;
{
int32_t drain_result;
base::WaitableEvent drain_waiter(
base::WaitableEvent::ResetPolicy::MANUAL,
base::WaitableEvent::InitialState::NOT_SIGNALED);
PostCrossThreadTask(
*gpu_task_runner_.get(), FROM_HERE,
CrossThreadBindOnce(&RTCVideoEncoder::Impl::Drain, weak_impl_,
SignaledValue(&drain_waiter, &drain_result)));
drain_waiter.Wait();
DVLOG(3) << __func__ << " Drain complete, status " << drain_result;
if (drain_result != WEBRTC_VIDEO_CODEC_OK &&
drain_result != WEBRTC_VIDEO_CODEC_UNINITIALIZED) {
return drain_result;
}
}
DVLOG(3) << __func__ << ": updating frame size on existing instance";
PostCrossThreadTask(
*gpu_task_runner_.get(), FROM_HERE,
CrossThreadBindOnce(
&RTCVideoEncoder::Impl::RequestEncodingParametersChangeWithSizeChange,
weak_impl_, params, input_visible_size, profile_, inter_layer_pred,
spatial_layers,
SignaledValue(&initialization_waiter, &initialization_retval)));
initialization_waiter.Wait();
return initialization_retval;
}
int32_t RTCVideoEncoder::InitializeEncoder(
const media::VideoEncodeAccelerator::Config& vea_config) {
DCHECK_CALLED_ON_VALID_SEQUENCE(webrtc_sequence_checker_);
TRACE_EVENT1("webrtc", "RTCVideoEncoder::InitEncode", "config",
vea_config.AsHumanReadableString());
DVLOG(1) << __func__ << ": config=" << vea_config.AsHumanReadableString();
auto init_start = base::TimeTicks::Now();
// This wait is necessary because this task is completed in GPU process
// asynchronously but WebRTC API is synchronous.
base::ScopedAllowBaseSyncPrimitivesOutsideBlockingScope allow_wait;
base::WaitableEvent initialization_waiter(
base::WaitableEvent::ResetPolicy::MANUAL,
base::WaitableEvent::InitialState::NOT_SIGNALED);
int32_t initialization_retval = WEBRTC_VIDEO_CODEC_UNINITIALIZED;
if (!impl_initialized_) {
DVLOG(3) << __func__ << ": CreateAndInitializeVEA";
PostCrossThreadTask(
*gpu_task_runner_.get(), FROM_HERE,
CrossThreadBindOnce(
&RTCVideoEncoder::Impl::CreateAndInitializeVEA, weak_impl_,
vea_config,
SignaledValue(&initialization_waiter, &initialization_retval)));
// webrtc::VideoEncoder expects this call to be synchronous.
initialization_waiter.Wait();
if (initialization_retval == WEBRTC_VIDEO_CODEC_OK) {
UMA_HISTOGRAM_TIMES("WebRTC.RTCVideoEncoder.Initialize",
base::TimeTicks::Now() - init_start);
impl_initialized_ = true;
}
RecordInitEncodeUMA(initialization_retval, profile_);
} else {
DCHECK(frame_size_change_supported_);
webrtc::VideoEncoder::RateControlParameters params(
AllocateBitrateForVEAConfig(vea_config), vea_config.framerate);
initialization_retval = DrainEncoderAndUpdateFrameSize(
vea_config.input_visible_size, params, vea_config.inter_layer_pred,
vea_config.spatial_layers);
}
return initialization_retval;
}
bool RTCVideoEncoder::CodecSettingsUsableForFrameSizeChange(
const webrtc::VideoCodec& codec_settings) const {
if (codec_settings.codecType != codec_settings_.codecType) {
return false;
}
if (codec_settings.GetScalabilityMode() !=
codec_settings_.GetScalabilityMode()) {
return false;
}
if (codec_settings.GetFrameDropEnabled() !=
codec_settings_.GetFrameDropEnabled()) {
return false;
}
if (codec_settings.mode != codec_settings_.mode) {
return false;
}
if (codec_settings.codecType == webrtc::kVideoCodecVP9) {
const auto vp9 = codec_settings_.VP9();
const auto new_vp9 = codec_settings.VP9();
if (vp9.numberOfTemporalLayers != new_vp9.numberOfTemporalLayers ||
vp9.numberOfSpatialLayers != new_vp9.numberOfSpatialLayers ||
vp9.interLayerPred != new_vp9.interLayerPred) {
return false;
}
}
return true;
}
int32_t RTCVideoEncoder::InitEncode(
const webrtc::VideoCodec* codec_settings,
const webrtc::VideoEncoder::Settings& settings) {
TRACE_EVENT0("webrtc", "RTCVideoEncoder::InitEncode");
DCHECK_CALLED_ON_VALID_SEQUENCE(webrtc_sequence_checker_);
DVLOG(1) << __func__ << " codecType=" << codec_settings->codecType
<< ", width=" << codec_settings->width
<< ", height=" << codec_settings->height
<< ", startBitrate=" << codec_settings->startBitrate;
// Try to rewrite the simulcast config as SVC one.
webrtc::VideoCodec converted_settings;
std::optional<webrtc::SimulcastToSvcConverter> simulcast_to_svc_converter;
int32_t initialization_error_message = WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE;
if (codec_settings->numberOfSimulcastStreams > 1) {
// No VEA currently supports simulcast. It, however, can be
// emulated with SVC VP9 if the streams have the same temporal
// settings and 4:2:1 scaling.
if (codec_settings->codecType != webrtc::kVideoCodecVP9 ||
!base::FeatureList::IsEnabled(
features::kRtcVideoEncoderConvertSimulcastToSvc) ||
!webrtc::SimulcastToSvcConverter::IsConfigSupported(*codec_settings)) {
return WEBRTC_VIDEO_CODEC_ERR_SIMULCAST_PARAMETERS_NOT_SUPPORTED;
}
simulcast_to_svc_converter.emplace(*codec_settings);
converted_settings = simulcast_to_svc_converter->GetConfig();
// If we've rewritten config, never report software fallback on errors.
// Let the WebRTC try to initialize each simulcast stream separately.
initialization_error_message =
WEBRTC_VIDEO_CODEC_ERR_SIMULCAST_PARAMETERS_NOT_SUPPORTED;
} else {
converted_settings = *codec_settings;
}
if (impl_) {
if (!impl_initialized_ || has_error_ || !frame_size_change_supported_ ||
!CodecSettingsUsableForFrameSizeChange(converted_settings)) {
DVLOG(3) << __func__ << " ReleaseImpl";
ReleaseImpl();
}
}
codec_settings_ = converted_settings;
if (UseSoftwareForLowResolution(codec_settings_.codecType,
codec_settings_.width,
codec_settings_.height)) {
return initialization_error_message;
}
if (codec_settings_.codecType == webrtc::kVideoCodecH264 &&
(codec_settings_.width % 2 != 0 || codec_settings_.height % 2 != 0)) {
LOG(ERROR) << "Input video size is " << codec_settings_.width << "x"
<< codec_settings_.height << ", "
<< "but hardware H.264 encoder only supports even sized frames.";
return WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE;
}
has_error_ = false;
uint32_t bitrate_bps = 0;
// Check for overflow converting bitrate (kilobits/sec) to bits/sec.
if (!ConvertKbpsToBps(codec_settings_.startBitrate, &bitrate_bps)) {
LOG(ERROR) << "Overflow converting bitrate from kbps to bps: bps="
<< codec_settings_.startBitrate;
return WEBRTC_VIDEO_CODEC_ERR_PARAMETER;
}
gfx::Size input_visible_size;
std::vector<media::VideoEncodeAccelerator::Config::SpatialLayer>
spatial_layers;
auto inter_layer_pred = media::SVCInterLayerPredMode::kOff;
if (!CreateSpatialLayersConfig(codec_settings_, &spatial_layers,
&inter_layer_pred, &input_visible_size)) {
return initialization_error_message;
}
// Fallback to SW if VEA does not support VP9/AV1 SVC encoding. For H.265,
// this will fail the initialization as there is no fallback.
if ((codec_settings_.codecType == webrtc::kVideoCodecVP9 ||
#if BUILDFLAG(RTC_USE_H265)
codec_settings_.codecType == webrtc::kVideoCodecH265 ||
#endif
codec_settings_.codecType == webrtc::kVideoCodecAV1) &&
!!spatial_layers.size()) {
const auto vea_supported_profiles =
gpu_factories_->GetVideoEncodeAcceleratorSupportedProfiles().value_or(
media::VideoEncodeAccelerator::SupportedProfiles());
auto support_profile = std::ranges::find_if(
vea_supported_profiles,
[this](const media::VideoEncodeAccelerator::SupportedProfile&
support_profile) {
return this->profile_ == support_profile.profile &&
support_profile.scalability_modes.size() > 0;
});
if (vea_supported_profiles.end() != support_profile) {
media::SVCScalabilityMode scalability_mode =
ToSVCScalabilityMode(spatial_layers, inter_layer_pred);
if (support_profile->scalability_modes.end() ==
std::ranges::find_if(
support_profile->scalability_modes,
[&support_profile,
scalability_mode](const media::SVCScalabilityMode& value) {
return (value == scalability_mode) &&
(!support_profile->is_software_codec ||
media::MayHaveAndAllowSelectOSSoftwareEncoder(
media::VideoCodecProfileToVideoCodec(
support_profile->profile)));
})) {
return initialization_error_message;
}
}
}
// Check that |profile| supports |input_visible_size|.
if (base::FeatureList::IsEnabled(features::kWebRtcUseMinMaxVEADimensions)) {
const auto vea_supported_profiles =
gpu_factories_->GetVideoEncodeAcceleratorSupportedProfiles().value_or(
media::VideoEncodeAccelerator::SupportedProfiles());
auto it = std::find_if(
vea_supported_profiles.begin(), vea_supported_profiles.end(),
[this, &input_visible_size](
const media::VideoEncodeAccelerator::SupportedProfile&
vea_profile) {
return vea_profile.profile == profile_ &&
(!vea_profile.is_software_codec ||
media::MayHaveAndAllowSelectOSSoftwareEncoder(
media::VideoCodecProfileToVideoCodec(
vea_profile.profile))) &&
input_visible_size.width() <=
vea_profile.max_resolution.width() &&
input_visible_size.height() <=
vea_profile.max_resolution.height() &&
input_visible_size.width() >=
vea_profile.min_resolution.width() &&
input_visible_size.height() >=
vea_profile.min_resolution.height();
});
if (vea_supported_profiles.empty() || it == vea_supported_profiles.end()) {
LOG(ERROR) << "Requested dimensions (" << input_visible_size.ToString()
<< ") beyond accelerator limits.";
return initialization_error_message;
}
}
auto webrtc_content_type = webrtc::VideoContentType::UNSPECIFIED;
auto vea_content_type =
media::VideoEncodeAccelerator::Config::ContentType::kCamera;
if (codec_settings_.mode == webrtc::VideoCodecMode::kScreensharing) {
webrtc_content_type = webrtc::VideoContentType::SCREENSHARE;
vea_content_type =
media::VideoEncodeAccelerator::Config::ContentType::kDisplay;
}
if (!impl_) {
// base::Unretained(this) is safe because |impl_| is synchronously destroyed
// in Release() so that |impl_| does not call UpdateEncoderInfo() after this
// is destructed.
Impl::UpdateEncoderInfoCallback update_encoder_info_callback =
base::BindRepeating(&RTCVideoEncoder::UpdateEncoderInfo,
base::Unretained(this));
base::RepeatingClosure execute_software_fallback =
base::BindPostTaskToCurrentDefault(base::BindRepeating(
&RTCVideoEncoder::SetError, weak_this_, ++impl_id_));
impl_ = std::make_unique<Impl>(
gpu_factories_, encoder_metrics_provider_factory_,
ProfileToWebRtcVideoCodecType(profile_),
codec_settings_.GetScalabilityMode(), webrtc_content_type,
update_encoder_info_callback, execute_software_fallback, weak_impl_);
}
media::VideoPixelFormat pixel_format = media::PIXEL_FORMAT_I420;
auto storage_type =
media::VideoEncodeAccelerator::Config::StorageType::kShmem;
if (IsZeroCopyEnabled(webrtc_content_type)) {
pixel_format = media::PIXEL_FORMAT_NV12;
storage_type =
media::VideoEncodeAccelerator::Config::StorageType::kGpuMemoryBuffer;
}
media::VideoEncodeAccelerator::Config vea_config(
pixel_format, input_visible_size, profile_,
media::Bitrate::ConstantBitrate(bitrate_bps),
codec_settings_.maxFramerate, storage_type, vea_content_type);
vea_config.is_constrained_h264 = is_constrained_h264_;
vea_config.spatial_layers = spatial_layers;
vea_config.inter_layer_pred = inter_layer_pred;
vea_config.drop_frame_thresh_percentage =
GetDropFrameThreshold(codec_settings_);
// When we don't have built in H264/H265 software encoding, allow usage of any
// software encoders provided by the platform.
if (media::MayHaveAndAllowSelectOSSoftwareEncoder(
media::VideoCodecProfileToVideoCodec(profile_))) {
vea_config.required_encoder_type =
media::VideoEncodeAccelerator::Config::EncoderType::kNoPreference;
}
int32_t initialization_ret = InitializeEncoder(vea_config);
if (initialization_ret != WEBRTC_VIDEO_CODEC_OK) {
ReleaseImpl();
CHECK(!impl_);
} else {
impl_->SetSimulcastToSvcConverter(std::move(simulcast_to_svc_converter));
}
return initialization_ret;
}
int32_t RTCVideoEncoder::Encode(
const webrtc::VideoFrame& input_image,
const std::vector<webrtc::VideoFrameType>* frame_types) {
DCHECK_CALLED_ON_VALID_SEQUENCE(webrtc_sequence_checker_);
TRACE_EVENT1("webrtc", "RTCVideoEncoder::Encode", "timestamp",
input_image.timestamp_us());
DVLOG(3) << __func__;
if (!impl_) {
DVLOG(3) << "Encoder is not initialized";
return WEBRTC_VIDEO_CODEC_UNINITIALIZED;
}
if (has_error_)
return WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE;
const bool want_key_frame =
frame_types && frame_types->size() &&
frame_types->front() == webrtc::VideoFrameType::kVideoFrameKey;
PostCrossThreadTask(
*gpu_task_runner_.get(), FROM_HERE,
CrossThreadBindOnce(&RTCVideoEncoder::Impl::Enqueue, weak_impl_,
FrameChunk(input_image, want_key_frame)));
return WEBRTC_VIDEO_CODEC_OK;
}
int32_t RTCVideoEncoder::RegisterEncodeCompleteCallback(
webrtc::EncodedImageCallback* callback) {
DCHECK_CALLED_ON_VALID_SEQUENCE(webrtc_sequence_checker_);
DVLOG(3) << __func__;
if (!impl_) {
if (!callback)
return WEBRTC_VIDEO_CODEC_OK;
DVLOG(3) << "Encoder is not initialized";
return WEBRTC_VIDEO_CODEC_UNINITIALIZED;
}
// TOD(b/257021675): RegisterEncodeCompleteCallback() should be called twice,
// with a valid pointer after InitEncode() and with a nullptr after Release().
// Setting callback in |impl_| should be done asynchronously by posting the
// task to |media_task_runner_|.
// However, RegisterEncodeCompleteCallback() are actually called multiple
// times with valid pointers, this may be a bug. To workaround this problem,
// a mutex is used so that it is guaranteed that the previous callback is not
// executed after RegisterEncodeCompleteCallback().
impl_->RegisterEncodeCompleteCallback(callback);
return WEBRTC_VIDEO_CODEC_OK;
}
int32_t RTCVideoEncoder::Release() {
DCHECK_CALLED_ON_VALID_SEQUENCE(webrtc_sequence_checker_);
DVLOG(3) << __func__;
if (!impl_)
return WEBRTC_VIDEO_CODEC_OK;
if (!frame_size_change_supported_ || !impl_initialized_ || has_error_) {
DVLOG(3) << __func__ << " ReleaseImpl";
ReleaseImpl();
} else {
base::ScopedAllowBaseSyncPrimitivesOutsideBlockingScope allow_wait;
int32_t suspend_result;
base::WaitableEvent suspend_waiter(
base::WaitableEvent::ResetPolicy::MANUAL,
base::WaitableEvent::InitialState::NOT_SIGNALED);
PostCrossThreadTask(
*gpu_task_runner_.get(), FROM_HERE,
CrossThreadBindOnce(&RTCVideoEncoder::Impl::Suspend, weak_impl_,
SignaledValue(&suspend_waiter, &suspend_result)));
suspend_waiter.Wait();
if (suspend_result != WEBRTC_VIDEO_CODEC_UNINITIALIZED) {
ReleaseImpl();
}
}
return WEBRTC_VIDEO_CODEC_OK;
}
void RTCVideoEncoder::ReleaseImpl() {
if (!impl_) {
return;
}
base::ScopedAllowBaseSyncPrimitivesOutsideBlockingScope allow_wait;
base::WaitableEvent release_waiter(
base::WaitableEvent::ResetPolicy::MANUAL,
base::WaitableEvent::InitialState::NOT_SIGNALED);
PostCrossThreadTask(
*gpu_task_runner_.get(), FROM_HERE,
CrossThreadBindOnce(
[](std::unique_ptr<Impl> impl, base::WaitableEvent* waiter) {
impl.reset();
waiter->Signal();
},
std::move(impl_), CrossThreadUnretained(&release_waiter)));
release_waiter.Wait();
// The object pointed by |weak_impl_| has been invalidated in Impl destructor.
// Calling reset() is optional, but it's good to invalidate the value of
// |weak_impl_| too
weak_impl_.reset();
impl_initialized_ = false;
}
void RTCVideoEncoder::SetRates(
const webrtc::VideoEncoder::RateControlParameters& parameters) {
DCHECK_CALLED_ON_VALID_SEQUENCE(webrtc_sequence_checker_);
TRACE_EVENT1("webrtc", "SetRates", "parameters",
parameters.bitrate.ToString());
DVLOG(3) << __func__ << " new_bit_rate=" << parameters.bitrate.ToString()
<< ", frame_rate=" << parameters.framerate_fps;
if (!impl_) {
DVLOG(3) << "Encoder is not initialized";
return;
}
if (has_error_)
return;
PostCrossThreadTask(
*gpu_task_runner_.get(), FROM_HERE,
CrossThreadBindOnce(
&RTCVideoEncoder::Impl::RequestEncodingParametersChange, weak_impl_,
parameters));
return;
}
webrtc::VideoEncoder::EncoderInfo RTCVideoEncoder::GetEncoderInfo() const {
base::AutoLock auto_lock(lock_);
return encoder_info_;
}
void RTCVideoEncoder::UpdateEncoderInfo(
media::VideoEncoderInfo media_enc_info,
std::vector<webrtc::VideoFrameBuffer::Type> preferred_pixel_formats) {
// See b/261437029#comment7 why this needs to be done in |gpu_task_runner_|.
DCHECK(gpu_task_runner_->RunsTasksInCurrentSequence());
base::AutoLock auto_lock(lock_);
frame_size_change_supported_ =
base::FeatureList::IsEnabled(features::kKeepEncoderInstanceOnRelease) &&
media_enc_info.supports_frame_size_change;
encoder_info_.implementation_name = media_enc_info.implementation_name;
encoder_info_.supports_native_handle = media_enc_info.supports_native_handle;
encoder_info_.has_trusted_rate_controller =
media_enc_info.has_trusted_rate_controller;
encoder_info_.is_hardware_accelerated =
media_enc_info.is_hardware_accelerated;
// Simulcast is supported via VP9 SVC
encoder_info_.supports_simulcast =
media_enc_info.supports_simulcast ||
(media::IsVp9kSVCHWEncodingEnabled() &&
base::FeatureList::IsEnabled(
features::kRtcVideoEncoderConvertSimulcastToSvc));
encoder_info_.is_qp_trusted = media_enc_info.reports_average_qp;
encoder_info_.scaling_settings = VideoEncoder::ScalingSettings::kOff;
if (encoder_info_.is_qp_trusted) {
if (media::VideoCodecProfileToVideoCodec(profile_) ==
media::VideoCodec::kHEVC) {
// Thresholds based on local QP and PSNR measurements.
constexpr int kH265QpThresholdLow = 29;
constexpr int kH265QpThresholdHigh = 36;
encoder_info_.scaling_settings = VideoEncoder::ScalingSettings(
kH265QpThresholdLow, kH265QpThresholdHigh);
} else if (media::VideoCodecProfileToVideoCodec(profile_) ==
media::VideoCodec::kAV1) {
constexpr int kAV1QindexLow = 145;
constexpr int kAV1QindexHigh = 205;
encoder_info_.scaling_settings =
VideoEncoder::ScalingSettings(kAV1QindexLow, kAV1QindexHigh);
}
}
encoder_info_.requested_resolution_alignment =
media_enc_info.requested_resolution_alignment;
encoder_info_.apply_alignment_to_all_simulcast_layers =
media_enc_info.apply_alignment_to_all_simulcast_layers;
static_assert(
webrtc::kMaxSpatialLayers >= media::VideoEncoderInfo::kMaxSpatialLayers,
"webrtc::kMaxSpatiallayers is less than "
"media::VideoEncoderInfo::kMaxSpatialLayers");
for (size_t i = 0; i < std::size(media_enc_info.fps_allocation); ++i) {
if (media_enc_info.fps_allocation[i].empty())
continue;
encoder_info_.fps_allocation[i] =
absl::InlinedVector<uint8_t, webrtc::kMaxTemporalStreams>(
media_enc_info.fps_allocation[i].begin(),
media_enc_info.fps_allocation[i].end());
}
for (const auto& limit : media_enc_info.resolution_rate_limits) {
encoder_info_.resolution_bitrate_limits.emplace_back(
limit.frame_size.GetArea(), limit.min_start_bitrate_bps,
limit.min_bitrate_bps, limit.max_bitrate_bps);
}
encoder_info_.preferred_pixel_formats.assign(preferred_pixel_formats.begin(),
preferred_pixel_formats.end());
}
void RTCVideoEncoder::SetError(uint32_t impl_id) {
DCHECK_CALLED_ON_VALID_SEQUENCE(webrtc_sequence_checker_);
// RTCVideoEncoder should reject to set error if the impl_id is not equal to
// current impl_id_, which means it's requested by a released impl_.
if (impl_id == impl_id_) {
has_error_ = true;
impl_initialized_ = false;
}
if (error_callback_for_testing_)
std::move(error_callback_for_testing_).Run();
}
#if BUILDFLAG(RTC_USE_H265)
void RTCVideoEncoder::SetH265ParameterSetsTrackerForTesting(
std::unique_ptr<H265ParameterSetsTracker> tracker) {
if (!impl_) {
DVLOG(1) << "Encoder is not initialized";
return;
}
impl_->SetH265ParameterSetsTrackerForTesting(std::move(tracker));
}
#endif
} // namespace blink
|