1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917
|
/*
* Copyright (c) 2016, Alliance for Open Media. All rights reserved.
*
* This source code is subject to the terms of the BSD 2 Clause License and
* the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
* was not distributed with this source code in the LICENSE file, you can
* obtain it at www.aomedia.org/license/software. If the Alliance for Open
* Media Patent License 1.0 was not distributed with this source code in the
* PATENTS file, you can obtain it at www.aomedia.org/license/patent.
*/
#include <assert.h>
#include <float.h>
#include <inttypes.h>
#include <limits.h>
#include <math.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "av1/common/scale.h"
#include "config/aom_config.h"
#include "config/aom_dsp_rtcd.h"
#include "aom/aomcx.h"
#if CONFIG_DENOISE
#include "aom_dsp/grain_table.h"
#include "aom_dsp/noise_util.h"
#include "aom_dsp/noise_model.h"
#endif
#include "aom_dsp/flow_estimation/corner_detect.h"
#include "aom_dsp/psnr.h"
#if CONFIG_INTERNAL_STATS
#include "aom_dsp/ssim.h"
#endif
#include "aom_ports/aom_timer.h"
#include "aom_ports/mem.h"
#include "aom_util/aom_pthread.h"
#if CONFIG_BITSTREAM_DEBUG
#include "aom_util/debug_util.h"
#endif // CONFIG_BITSTREAM_DEBUG
#include "av1/common/alloccommon.h"
#include "av1/common/debugmodes.h"
#include "av1/common/filter.h"
#include "av1/common/idct.h"
#include "av1/common/reconinter.h"
#include "av1/common/reconintra.h"
#include "av1/common/resize.h"
#include "av1/common/tile_common.h"
#include "av1/encoder/allintra_vis.h"
#include "av1/encoder/aq_complexity.h"
#include "av1/encoder/aq_cyclicrefresh.h"
#include "av1/encoder/aq_variance.h"
#include "av1/encoder/bitstream.h"
#if CONFIG_INTERNAL_STATS
#include "av1/encoder/blockiness.h"
#endif
#include "av1/encoder/context_tree.h"
#include "av1/encoder/dwt.h"
#include "av1/encoder/encodeframe.h"
#include "av1/encoder/encodemv.h"
#include "av1/encoder/encode_strategy.h"
#include "av1/encoder/encoder.h"
#include "av1/encoder/encoder_alloc.h"
#include "av1/encoder/encoder_utils.h"
#include "av1/encoder/encodetxb.h"
#include "av1/encoder/ethread.h"
#include "av1/encoder/firstpass.h"
#include "av1/encoder/hash_motion.h"
#include "av1/encoder/hybrid_fwd_txfm.h"
#include "av1/encoder/intra_mode_search.h"
#include "av1/encoder/mv_prec.h"
#include "av1/encoder/pass2_strategy.h"
#include "av1/encoder/pickcdef.h"
#include "av1/encoder/picklpf.h"
#include "av1/encoder/pickrst.h"
#include "av1/encoder/random.h"
#include "av1/encoder/ratectrl.h"
#include "av1/encoder/rc_utils.h"
#include "av1/encoder/rd.h"
#include "av1/encoder/rdopt.h"
#if CONFIG_SALIENCY_MAP
#include "av1/encoder/saliency_map.h"
#endif
#include "av1/encoder/segmentation.h"
#include "av1/encoder/speed_features.h"
#include "av1/encoder/superres_scale.h"
#if CONFIG_THREE_PASS
#include "av1/encoder/thirdpass.h"
#endif
#include "av1/encoder/tpl_model.h"
#include "av1/encoder/reconinter_enc.h"
#include "av1/encoder/var_based_part.h"
#define DEFAULT_EXPLICIT_ORDER_HINT_BITS 7
// #define OUTPUT_YUV_REC
#ifdef OUTPUT_YUV_REC
FILE *yuv_rec_file;
#define FILE_NAME_LEN 100
#endif
#ifdef OUTPUT_YUV_DENOISED
FILE *yuv_denoised_file = NULL;
#endif
static inline void Scale2Ratio(AOM_SCALING_MODE mode, int *hr, int *hs) {
switch (mode) {
case AOME_NORMAL:
*hr = 1;
*hs = 1;
break;
case AOME_FOURFIVE:
*hr = 4;
*hs = 5;
break;
case AOME_THREEFIVE:
*hr = 3;
*hs = 5;
break;
case AOME_THREEFOUR:
*hr = 3;
*hs = 4;
break;
case AOME_ONEFOUR:
*hr = 1;
*hs = 4;
break;
case AOME_ONEEIGHT:
*hr = 1;
*hs = 8;
break;
case AOME_ONETWO:
*hr = 1;
*hs = 2;
break;
case AOME_TWOTHREE:
*hr = 2;
*hs = 3;
break;
case AOME_ONETHREE:
*hr = 1;
*hs = 3;
break;
default:
*hr = 1;
*hs = 1;
assert(0);
break;
}
}
static int check_seg_range(int seg_data[8], int range) {
for (int i = 0; i < 8; ++i) {
// Note abs() alone can't be used as the behavior of abs(INT_MIN) is
// undefined.
if (seg_data[i] > range || seg_data[i] < -range) {
return 0;
}
}
return 1;
}
int av1_set_roi_map(AV1_COMP *cpi, unsigned char *map, unsigned int rows,
unsigned int cols, int delta_q[8], int delta_lf[8],
int skip[8], int ref_frame[8]) {
AV1_COMMON *cm = &cpi->common;
aom_roi_map_t *roi = &cpi->roi;
const int range = 63;
const int ref_frame_range = REF_FRAMES;
const int skip_range = 1;
const int frame_rows = cpi->common.mi_params.mi_rows;
const int frame_cols = cpi->common.mi_params.mi_cols;
// Check number of rows and columns match
if (frame_rows != (int)rows || frame_cols != (int)cols) {
return AOM_CODEC_INVALID_PARAM;
}
if (!check_seg_range(delta_q, range) || !check_seg_range(delta_lf, range) ||
!check_seg_range(ref_frame, ref_frame_range) ||
!check_seg_range(skip, skip_range))
return AOM_CODEC_INVALID_PARAM;
// Also disable segmentation if no deltas are specified.
if (!map ||
(!(delta_q[0] | delta_q[1] | delta_q[2] | delta_q[3] | delta_q[4] |
delta_q[5] | delta_q[6] | delta_q[7] | delta_lf[0] | delta_lf[1] |
delta_lf[2] | delta_lf[3] | delta_lf[4] | delta_lf[5] | delta_lf[6] |
delta_lf[7] | skip[0] | skip[1] | skip[2] | skip[3] | skip[4] |
skip[5] | skip[6] | skip[7]) &&
(ref_frame[0] == -1 && ref_frame[1] == -1 && ref_frame[2] == -1 &&
ref_frame[3] == -1 && ref_frame[4] == -1 && ref_frame[5] == -1 &&
ref_frame[6] == -1 && ref_frame[7] == -1))) {
av1_disable_segmentation(&cm->seg);
cpi->roi.enabled = 0;
return AOM_CODEC_OK;
}
if (roi->roi_map) {
aom_free(roi->roi_map);
roi->roi_map = NULL;
}
roi->roi_map = aom_malloc(rows * cols);
if (!roi->roi_map) return AOM_CODEC_MEM_ERROR;
// Copy to ROI structure in the compressor.
memcpy(roi->roi_map, map, rows * cols);
memcpy(&roi->delta_q, delta_q, MAX_SEGMENTS * sizeof(delta_q[0]));
memcpy(&roi->delta_lf, delta_lf, MAX_SEGMENTS * sizeof(delta_lf[0]));
memcpy(&roi->skip, skip, MAX_SEGMENTS * sizeof(skip[0]));
memcpy(&roi->ref_frame, ref_frame, MAX_SEGMENTS * sizeof(ref_frame[0]));
roi->enabled = 1;
roi->rows = rows;
roi->cols = cols;
return AOM_CODEC_OK;
}
int av1_set_active_map(AV1_COMP *cpi, unsigned char *new_map_16x16, int rows,
int cols) {
const CommonModeInfoParams *const mi_params = &cpi->common.mi_params;
if (rows == mi_params->mb_rows && cols == mi_params->mb_cols) {
unsigned char *const active_map_4x4 = cpi->active_map.map;
const int mi_rows = mi_params->mi_rows;
const int mi_cols = mi_params->mi_cols;
cpi->active_map.update = 0;
cpi->rc.percent_blocks_inactive = 0;
assert(mi_rows % 2 == 0 && mi_rows > 0);
assert(mi_cols % 2 == 0 && mi_cols > 0);
if (new_map_16x16) {
int num_samples = 0;
int num_blocks_inactive = 0;
for (int r = 0; r < mi_rows; r += 4) {
for (int c = 0; c < mi_cols; c += 4) {
const uint8_t val = new_map_16x16[(r >> 2) * cols + (c >> 2)]
? AM_SEGMENT_ID_ACTIVE
: AM_SEGMENT_ID_INACTIVE;
num_samples++;
if (val == AM_SEGMENT_ID_INACTIVE) num_blocks_inactive++;
const int row_max = AOMMIN(4, mi_rows - r);
const int col_max = AOMMIN(4, mi_cols - c);
for (int x = 0; x < row_max; ++x) {
for (int y = 0; y < col_max; ++y) {
active_map_4x4[(r + x) * mi_cols + (c + y)] = val;
}
}
}
}
cpi->active_map.enabled = 1;
cpi->active_map.update = 1;
assert(num_samples);
cpi->rc.percent_blocks_inactive =
(num_blocks_inactive * 100) / num_samples;
}
return 0;
}
return -1;
}
int av1_get_active_map(AV1_COMP *cpi, unsigned char *new_map_16x16, int rows,
int cols) {
const CommonModeInfoParams *const mi_params = &cpi->common.mi_params;
if (rows == mi_params->mb_rows && cols == mi_params->mb_cols &&
new_map_16x16) {
unsigned char *const seg_map_8x8 = cpi->enc_seg.map;
const int mi_rows = mi_params->mi_rows;
const int mi_cols = mi_params->mi_cols;
const int row_scale = mi_size_high_log2[BLOCK_16X16];
const int col_scale = mi_size_wide_log2[BLOCK_16X16];
assert(mi_rows % 2 == 0);
assert(mi_cols % 2 == 0);
memset(new_map_16x16, !cpi->active_map.enabled, rows * cols);
if (cpi->active_map.enabled) {
for (int r = 0; r < (mi_rows >> row_scale); ++r) {
for (int c = 0; c < (mi_cols >> col_scale); ++c) {
// Cyclic refresh segments are considered active despite not having
// AM_SEGMENT_ID_ACTIVE
uint8_t temp = 0;
temp |= seg_map_8x8[(2 * r + 0) * mi_cols + (2 * c + 0)] !=
AM_SEGMENT_ID_INACTIVE;
temp |= seg_map_8x8[(2 * r + 0) * mi_cols + (2 * c + 1)] !=
AM_SEGMENT_ID_INACTIVE;
temp |= seg_map_8x8[(2 * r + 1) * mi_cols + (2 * c + 0)] !=
AM_SEGMENT_ID_INACTIVE;
temp |= seg_map_8x8[(2 * r + 1) * mi_cols + (2 * c + 1)] !=
AM_SEGMENT_ID_INACTIVE;
new_map_16x16[r * cols + c] |= temp;
}
}
}
return 0;
}
return -1;
}
void av1_initialize_enc(unsigned int usage, enum aom_rc_mode end_usage) {
bool is_allintra = usage == ALLINTRA;
av1_rtcd();
aom_dsp_rtcd();
aom_scale_rtcd();
av1_init_intra_predictors();
av1_init_me_luts();
if (!is_allintra) av1_init_wedge_masks();
if (!is_allintra || end_usage != AOM_Q) av1_rc_init_minq_luts();
}
void av1_new_framerate(AV1_COMP *cpi, double framerate) {
cpi->framerate = framerate < 0.1 ? 30 : framerate;
av1_rc_update_framerate(cpi, cpi->common.width, cpi->common.height);
}
double av1_get_compression_ratio(const AV1_COMMON *const cm,
size_t encoded_frame_size) {
const int upscaled_width = cm->superres_upscaled_width;
const int height = cm->height;
const int64_t luma_pic_size = (int64_t)upscaled_width * height;
const SequenceHeader *const seq_params = cm->seq_params;
const BITSTREAM_PROFILE profile = seq_params->profile;
const int pic_size_profile_factor =
profile == PROFILE_0 ? 15 : (profile == PROFILE_1 ? 30 : 36);
encoded_frame_size =
(encoded_frame_size > 129 ? encoded_frame_size - 128 : 1);
const int64_t uncompressed_frame_size =
(luma_pic_size * pic_size_profile_factor) >> 3;
return (double)uncompressed_frame_size / encoded_frame_size;
}
static void auto_tile_size_balancing(AV1_COMMON *const cm, int num_sbs,
int num_tiles_lg, int tile_col_row) {
CommonTileParams *const tiles = &cm->tiles;
int i, start_sb;
int size_sb = num_sbs >> num_tiles_lg;
int res_sbs = num_sbs - (size_sb << num_tiles_lg);
int num_tiles = 1 << num_tiles_lg;
int inc_index = num_tiles - res_sbs;
tiles->uniform_spacing = 0;
const int max_size_sb =
tile_col_row ? tiles->max_width_sb : tiles->max_height_sb;
for (i = 0, start_sb = 0; start_sb < num_sbs && i < MAX_TILE_COLS; ++i) {
if (i == inc_index) ++size_sb;
if (tile_col_row)
tiles->col_start_sb[i] = start_sb;
else
tiles->row_start_sb[i] = start_sb;
start_sb += AOMMIN(size_sb, max_size_sb);
}
if (tile_col_row) {
tiles->cols = i;
tiles->col_start_sb[i] = num_sbs;
} else {
tiles->rows = i;
tiles->row_start_sb[i] = num_sbs;
}
}
static void set_tile_info(AV1_COMMON *const cm,
const TileConfig *const tile_cfg) {
const CommonModeInfoParams *const mi_params = &cm->mi_params;
const SequenceHeader *const seq_params = cm->seq_params;
CommonTileParams *const tiles = &cm->tiles;
int i, start_sb;
av1_get_tile_limits(cm);
int sb_cols =
CEIL_POWER_OF_TWO(mi_params->mi_cols, seq_params->mib_size_log2);
// configure tile columns
if (tile_cfg->tile_width_count == 0 || tile_cfg->tile_height_count == 0) {
tiles->uniform_spacing = 1;
tiles->log2_cols = AOMMAX(tile_cfg->tile_columns, tiles->min_log2_cols);
// Add a special case to handle super resolution
sb_cols = coded_to_superres_mi(sb_cols, cm->superres_scale_denominator);
int min_log2_cols = 0;
for (; (tiles->max_width_sb << min_log2_cols) <= sb_cols; ++min_log2_cols) {
}
tiles->log2_cols = AOMMAX(tiles->log2_cols, min_log2_cols);
tiles->log2_cols = AOMMIN(tiles->log2_cols, tiles->max_log2_cols);
} else if (tile_cfg->tile_widths[0] < 0) {
auto_tile_size_balancing(cm, sb_cols, tile_cfg->tile_columns, 1);
} else {
int size_sb, j = 0;
tiles->uniform_spacing = 0;
for (i = 0, start_sb = 0; start_sb < sb_cols && i < MAX_TILE_COLS; i++) {
tiles->col_start_sb[i] = start_sb;
size_sb = tile_cfg->tile_widths[j++];
if (j >= tile_cfg->tile_width_count) j = 0;
start_sb += AOMMIN(size_sb, tiles->max_width_sb);
}
tiles->cols = i;
tiles->col_start_sb[i] = sb_cols;
}
av1_calculate_tile_cols(seq_params, mi_params->mi_rows, mi_params->mi_cols,
tiles);
// configure tile rows
int sb_rows =
CEIL_POWER_OF_TWO(mi_params->mi_rows, seq_params->mib_size_log2);
if (tiles->uniform_spacing) {
tiles->log2_rows = AOMMAX(tile_cfg->tile_rows, tiles->min_log2_rows);
tiles->log2_rows = AOMMIN(tiles->log2_rows, tiles->max_log2_rows);
} else if (tile_cfg->tile_heights[0] < 0) {
auto_tile_size_balancing(cm, sb_rows, tile_cfg->tile_rows, 0);
} else {
int size_sb, j = 0;
for (i = 0, start_sb = 0; start_sb < sb_rows && i < MAX_TILE_ROWS; i++) {
tiles->row_start_sb[i] = start_sb;
size_sb = tile_cfg->tile_heights[j++];
if (j >= tile_cfg->tile_height_count) j = 0;
start_sb += AOMMIN(size_sb, tiles->max_height_sb);
}
tiles->rows = i;
tiles->row_start_sb[i] = sb_rows;
}
av1_calculate_tile_rows(seq_params, mi_params->mi_rows, tiles);
}
void av1_update_frame_size(AV1_COMP *cpi) {
AV1_COMMON *const cm = &cpi->common;
MACROBLOCKD *const xd = &cpi->td.mb.e_mbd;
// Setup mi_params here in case we need more mi's.
CommonModeInfoParams *const mi_params = &cm->mi_params;
mi_params->set_mb_mi(mi_params, cm->width, cm->height,
cpi->sf.part_sf.default_min_partition_size);
av1_init_macroblockd(cm, xd);
if (!cpi->ppi->seq_params_locked)
set_sb_size(cm->seq_params,
av1_select_sb_size(&cpi->oxcf, cm->width, cm->height,
cpi->ppi->number_spatial_layers));
set_tile_info(cm, &cpi->oxcf.tile_cfg);
}
static inline int does_level_match(int width, int height, double fps,
int lvl_width, int lvl_height,
double lvl_fps, int lvl_dim_mult) {
const int64_t lvl_luma_pels = (int64_t)lvl_width * lvl_height;
const double lvl_display_sample_rate = lvl_luma_pels * lvl_fps;
const int64_t luma_pels = (int64_t)width * height;
const double display_sample_rate = luma_pels * fps;
return luma_pels <= lvl_luma_pels &&
display_sample_rate <= lvl_display_sample_rate &&
width <= lvl_width * lvl_dim_mult &&
height <= lvl_height * lvl_dim_mult;
}
static void set_bitstream_level_tier(AV1_PRIMARY *const ppi, int width,
int height, double init_framerate) {
SequenceHeader *const seq_params = &ppi->seq_params;
const AV1LevelParams *const level_params = &ppi->level_params;
// TODO(any): This is a placeholder function that only addresses dimensions
// and max display sample rates.
// Need to add checks for max bit rate, max decoded luma sample rate, header
// rate, etc. that are not covered by this function.
AV1_LEVEL level = SEQ_LEVEL_MAX;
if (does_level_match(width, height, init_framerate, 512, 288, 30.0, 4)) {
level = SEQ_LEVEL_2_0;
} else if (does_level_match(width, height, init_framerate, 704, 396, 30.0,
4)) {
level = SEQ_LEVEL_2_1;
} else if (does_level_match(width, height, init_framerate, 1088, 612, 30.0,
4)) {
level = SEQ_LEVEL_3_0;
} else if (does_level_match(width, height, init_framerate, 1376, 774, 30.0,
4)) {
level = SEQ_LEVEL_3_1;
} else if (does_level_match(width, height, init_framerate, 2048, 1152, 30.0,
3)) {
level = SEQ_LEVEL_4_0;
} else if (does_level_match(width, height, init_framerate, 2048, 1152, 60.0,
3)) {
level = SEQ_LEVEL_4_1;
} else if (does_level_match(width, height, init_framerate, 4096, 2176, 30.0,
2)) {
level = SEQ_LEVEL_5_0;
} else if (does_level_match(width, height, init_framerate, 4096, 2176, 60.0,
2)) {
level = SEQ_LEVEL_5_1;
} else if (does_level_match(width, height, init_framerate, 4096, 2176, 120.0,
2)) {
level = SEQ_LEVEL_5_2;
} else if (does_level_match(width, height, init_framerate, 8192, 4352, 30.0,
2)) {
level = SEQ_LEVEL_6_0;
} else if (does_level_match(width, height, init_framerate, 8192, 4352, 60.0,
2)) {
level = SEQ_LEVEL_6_1;
} else if (does_level_match(width, height, init_framerate, 8192, 4352, 120.0,
2)) {
level = SEQ_LEVEL_6_2;
}
#if CONFIG_CWG_C013
// TODO(bohanli): currently target level is only working for the 0th operating
// point, so scalable coding is not supported.
else if (level_params->target_seq_level_idx[0] >= SEQ_LEVEL_7_0 &&
level_params->target_seq_level_idx[0] <= SEQ_LEVEL_8_3) {
// Only use level 7.x to 8.x when explicitly asked to.
if (does_level_match(width, height, init_framerate, 16384, 8704, 30.0, 2)) {
level = SEQ_LEVEL_7_0;
} else if (does_level_match(width, height, init_framerate, 16384, 8704,
60.0, 2)) {
level = SEQ_LEVEL_7_1;
} else if (does_level_match(width, height, init_framerate, 16384, 8704,
120.0, 2)) {
level = SEQ_LEVEL_7_2;
} else if (does_level_match(width, height, init_framerate, 32768, 17408,
30.0, 2)) {
level = SEQ_LEVEL_8_0;
} else if (does_level_match(width, height, init_framerate, 32768, 17408,
60.0, 2)) {
level = SEQ_LEVEL_8_1;
} else if (does_level_match(width, height, init_framerate, 32768, 17408,
120.0, 2)) {
level = SEQ_LEVEL_8_2;
}
}
#endif
for (int i = 0; i < MAX_NUM_OPERATING_POINTS; ++i) {
assert(is_valid_seq_level_idx(level_params->target_seq_level_idx[i]) ||
level_params->target_seq_level_idx[i] == SEQ_LEVEL_KEEP_STATS);
// If a higher target level is specified, it is then used rather than the
// inferred one from resolution and framerate.
seq_params->seq_level_idx[i] =
level_params->target_seq_level_idx[i] < SEQ_LEVELS &&
level_params->target_seq_level_idx[i] > level
? level_params->target_seq_level_idx[i]
: level;
// Set the maximum parameters for bitrate and buffer size for this profile,
// level, and tier
seq_params->op_params[i].bitrate = av1_max_level_bitrate(
seq_params->profile, seq_params->seq_level_idx[i], seq_params->tier[i]);
// Level with seq_level_idx = 31 returns a high "dummy" bitrate to pass the
// check
if (seq_params->op_params[i].bitrate == 0)
aom_internal_error(
&ppi->error, AOM_CODEC_UNSUP_BITSTREAM,
"AV1 does not support this combination of profile, level, and tier.");
// Buffer size in bits/s is bitrate in bits/s * 1 s
seq_params->op_params[i].buffer_size = seq_params->op_params[i].bitrate;
}
}
void av1_set_svc_seq_params(AV1_PRIMARY *const ppi) {
SequenceHeader *const seq = &ppi->seq_params;
if (seq->operating_points_cnt_minus_1 == 0) {
seq->operating_point_idc[0] = 0;
seq->has_nonzero_operating_point_idc = false;
} else {
// Set operating_point_idc[] such that the i=0 point corresponds to the
// highest quality operating point (all layers), and subsequent
// operarting points (i > 0) are lower quality corresponding to
// skip decoding enhancement layers (temporal first).
int i = 0;
assert(seq->operating_points_cnt_minus_1 ==
(int)(ppi->number_spatial_layers * ppi->number_temporal_layers - 1));
for (unsigned int sl = 0; sl < ppi->number_spatial_layers; sl++) {
for (unsigned int tl = 0; tl < ppi->number_temporal_layers; tl++) {
seq->operating_point_idc[i] =
(~(~0u << (ppi->number_spatial_layers - sl)) << 8) |
~(~0u << (ppi->number_temporal_layers - tl));
assert(seq->operating_point_idc[i] != 0);
i++;
}
}
seq->has_nonzero_operating_point_idc = true;
}
}
static void init_seq_coding_tools(AV1_PRIMARY *const ppi,
const AV1EncoderConfig *oxcf,
int disable_frame_id_numbers) {
SequenceHeader *const seq = &ppi->seq_params;
const FrameDimensionCfg *const frm_dim_cfg = &oxcf->frm_dim_cfg;
const ToolCfg *const tool_cfg = &oxcf->tool_cfg;
seq->still_picture =
!tool_cfg->force_video_mode && (oxcf->input_cfg.limit == 1);
seq->reduced_still_picture_hdr =
seq->still_picture && !tool_cfg->full_still_picture_hdr;
seq->force_screen_content_tools = 2;
seq->force_integer_mv = 2;
seq->order_hint_info.enable_order_hint = tool_cfg->enable_order_hint;
seq->frame_id_numbers_present_flag =
!seq->reduced_still_picture_hdr &&
!oxcf->tile_cfg.enable_large_scale_tile &&
tool_cfg->error_resilient_mode && !disable_frame_id_numbers;
if (seq->reduced_still_picture_hdr) {
seq->order_hint_info.enable_order_hint = 0;
seq->force_screen_content_tools = 2;
seq->force_integer_mv = 2;
}
seq->order_hint_info.order_hint_bits_minus_1 =
seq->order_hint_info.enable_order_hint
? DEFAULT_EXPLICIT_ORDER_HINT_BITS - 1
: -1;
seq->max_frame_width = frm_dim_cfg->forced_max_frame_width
? frm_dim_cfg->forced_max_frame_width
: AOMMAX(seq->max_frame_width, frm_dim_cfg->width);
seq->max_frame_height =
frm_dim_cfg->forced_max_frame_height
? frm_dim_cfg->forced_max_frame_height
: AOMMAX(seq->max_frame_height, frm_dim_cfg->height);
seq->num_bits_width =
(seq->max_frame_width > 1) ? get_msb(seq->max_frame_width - 1) + 1 : 1;
seq->num_bits_height =
(seq->max_frame_height > 1) ? get_msb(seq->max_frame_height - 1) + 1 : 1;
assert(seq->num_bits_width <= 16);
assert(seq->num_bits_height <= 16);
seq->frame_id_length = FRAME_ID_LENGTH;
seq->delta_frame_id_length = DELTA_FRAME_ID_LENGTH;
seq->enable_dual_filter = tool_cfg->enable_dual_filter;
seq->order_hint_info.enable_dist_wtd_comp =
oxcf->comp_type_cfg.enable_dist_wtd_comp;
seq->order_hint_info.enable_dist_wtd_comp &=
seq->order_hint_info.enable_order_hint;
seq->order_hint_info.enable_ref_frame_mvs = tool_cfg->ref_frame_mvs_present;
seq->order_hint_info.enable_ref_frame_mvs &=
seq->order_hint_info.enable_order_hint;
seq->enable_superres = oxcf->superres_cfg.enable_superres;
seq->enable_cdef = tool_cfg->cdef_control != CDEF_NONE ? 1 : 0;
seq->enable_restoration = tool_cfg->enable_restoration;
seq->enable_warped_motion = oxcf->motion_mode_cfg.enable_warped_motion;
seq->enable_interintra_compound = tool_cfg->enable_interintra_comp;
seq->enable_masked_compound = oxcf->comp_type_cfg.enable_masked_comp;
seq->enable_intra_edge_filter = oxcf->intra_mode_cfg.enable_intra_edge_filter;
seq->enable_filter_intra = oxcf->intra_mode_cfg.enable_filter_intra;
set_bitstream_level_tier(ppi, frm_dim_cfg->width, frm_dim_cfg->height,
oxcf->input_cfg.init_framerate);
av1_set_svc_seq_params(ppi);
}
static void init_config_sequence(struct AV1_PRIMARY *ppi,
const AV1EncoderConfig *oxcf) {
SequenceHeader *const seq_params = &ppi->seq_params;
const DecoderModelCfg *const dec_model_cfg = &oxcf->dec_model_cfg;
const ColorCfg *const color_cfg = &oxcf->color_cfg;
ppi->use_svc = 0;
ppi->number_spatial_layers = 1;
ppi->number_temporal_layers = 1;
seq_params->profile = oxcf->profile;
seq_params->bit_depth = oxcf->tool_cfg.bit_depth;
seq_params->use_highbitdepth = oxcf->use_highbitdepth;
seq_params->color_primaries = color_cfg->color_primaries;
seq_params->transfer_characteristics = color_cfg->transfer_characteristics;
seq_params->matrix_coefficients = color_cfg->matrix_coefficients;
seq_params->monochrome = oxcf->tool_cfg.enable_monochrome;
seq_params->chroma_sample_position = color_cfg->chroma_sample_position;
seq_params->color_range = color_cfg->color_range;
seq_params->timing_info_present = dec_model_cfg->timing_info_present;
seq_params->timing_info.num_units_in_display_tick =
dec_model_cfg->timing_info.num_units_in_display_tick;
seq_params->timing_info.time_scale = dec_model_cfg->timing_info.time_scale;
seq_params->timing_info.equal_picture_interval =
dec_model_cfg->timing_info.equal_picture_interval;
seq_params->timing_info.num_ticks_per_picture =
dec_model_cfg->timing_info.num_ticks_per_picture;
seq_params->display_model_info_present_flag =
dec_model_cfg->display_model_info_present_flag;
seq_params->decoder_model_info_present_flag =
dec_model_cfg->decoder_model_info_present_flag;
if (dec_model_cfg->decoder_model_info_present_flag) {
// set the decoder model parameters in schedule mode
seq_params->decoder_model_info.num_units_in_decoding_tick =
dec_model_cfg->num_units_in_decoding_tick;
ppi->buffer_removal_time_present = 1;
av1_set_aom_dec_model_info(&seq_params->decoder_model_info);
av1_set_dec_model_op_parameters(&seq_params->op_params[0]);
} else if (seq_params->timing_info_present &&
seq_params->timing_info.equal_picture_interval &&
!seq_params->decoder_model_info_present_flag) {
// set the decoder model parameters in resource availability mode
av1_set_resource_availability_parameters(&seq_params->op_params[0]);
} else {
seq_params->op_params[0].initial_display_delay =
10; // Default value (not signaled)
}
if (seq_params->monochrome) {
seq_params->subsampling_x = 1;
seq_params->subsampling_y = 1;
} else if (seq_params->color_primaries == AOM_CICP_CP_BT_709 &&
seq_params->transfer_characteristics == AOM_CICP_TC_SRGB &&
seq_params->matrix_coefficients == AOM_CICP_MC_IDENTITY) {
seq_params->subsampling_x = 0;
seq_params->subsampling_y = 0;
} else {
if (seq_params->profile == 0) {
seq_params->subsampling_x = 1;
seq_params->subsampling_y = 1;
} else if (seq_params->profile == 1) {
seq_params->subsampling_x = 0;
seq_params->subsampling_y = 0;
} else {
if (seq_params->bit_depth == AOM_BITS_12) {
seq_params->subsampling_x = oxcf->input_cfg.chroma_subsampling_x;
seq_params->subsampling_y = oxcf->input_cfg.chroma_subsampling_y;
} else {
seq_params->subsampling_x = 1;
seq_params->subsampling_y = 0;
}
}
}
av1_change_config_seq(ppi, oxcf, NULL);
}
static void init_config(struct AV1_COMP *cpi, const AV1EncoderConfig *oxcf) {
AV1_COMMON *const cm = &cpi->common;
ResizePendingParams *resize_pending_params = &cpi->resize_pending_params;
cpi->oxcf = *oxcf;
cpi->framerate = oxcf->input_cfg.init_framerate;
cm->width = oxcf->frm_dim_cfg.width;
cm->height = oxcf->frm_dim_cfg.height;
cpi->is_dropped_frame = false;
alloc_compressor_data(cpi);
cpi->data_alloc_width = cm->width;
cpi->data_alloc_height = cm->height;
cpi->frame_size_related_setup_done = false;
// Single thread case: use counts in common.
cpi->td.counts = &cpi->counts;
// Init SVC parameters.
cpi->svc.number_spatial_layers = 1;
cpi->svc.number_temporal_layers = 1;
cm->spatial_layer_id = 0;
cm->temporal_layer_id = 0;
// Init rtc_ref parameters.
cpi->ppi->rtc_ref.set_ref_frame_config = 0;
cpi->ppi->rtc_ref.non_reference_frame = 0;
cpi->ppi->rtc_ref.ref_frame_comp[0] = 0;
cpi->ppi->rtc_ref.ref_frame_comp[1] = 0;
cpi->ppi->rtc_ref.ref_frame_comp[2] = 0;
// change includes all joint functionality
av1_change_config(cpi, oxcf, false);
cpi->ref_frame_flags = 0;
// Reset resize pending flags
resize_pending_params->width = 0;
resize_pending_params->height = 0;
// Setup identity scale factor
av1_setup_scale_factors_for_frame(&cm->sf_identity, 1, 1, 1, 1);
init_buffer_indices(&cpi->force_intpel_info, cm->remapped_ref_idx);
av1_noise_estimate_init(&cpi->noise_estimate, cm->width, cm->height);
}
void av1_change_config_seq(struct AV1_PRIMARY *ppi,
const AV1EncoderConfig *oxcf,
bool *is_sb_size_changed) {
SequenceHeader *const seq_params = &ppi->seq_params;
const FrameDimensionCfg *const frm_dim_cfg = &oxcf->frm_dim_cfg;
const DecoderModelCfg *const dec_model_cfg = &oxcf->dec_model_cfg;
const ColorCfg *const color_cfg = &oxcf->color_cfg;
if (seq_params->profile != oxcf->profile) seq_params->profile = oxcf->profile;
seq_params->bit_depth = oxcf->tool_cfg.bit_depth;
seq_params->color_primaries = color_cfg->color_primaries;
seq_params->transfer_characteristics = color_cfg->transfer_characteristics;
seq_params->matrix_coefficients = color_cfg->matrix_coefficients;
seq_params->monochrome = oxcf->tool_cfg.enable_monochrome;
seq_params->chroma_sample_position = color_cfg->chroma_sample_position;
seq_params->color_range = color_cfg->color_range;
assert(IMPLIES(seq_params->profile <= PROFILE_1,
seq_params->bit_depth <= AOM_BITS_10));
seq_params->timing_info_present = dec_model_cfg->timing_info_present;
seq_params->timing_info.num_units_in_display_tick =
dec_model_cfg->timing_info.num_units_in_display_tick;
seq_params->timing_info.time_scale = dec_model_cfg->timing_info.time_scale;
seq_params->timing_info.equal_picture_interval =
dec_model_cfg->timing_info.equal_picture_interval;
seq_params->timing_info.num_ticks_per_picture =
dec_model_cfg->timing_info.num_ticks_per_picture;
seq_params->display_model_info_present_flag =
dec_model_cfg->display_model_info_present_flag;
seq_params->decoder_model_info_present_flag =
dec_model_cfg->decoder_model_info_present_flag;
if (dec_model_cfg->decoder_model_info_present_flag) {
// set the decoder model parameters in schedule mode
seq_params->decoder_model_info.num_units_in_decoding_tick =
dec_model_cfg->num_units_in_decoding_tick;
ppi->buffer_removal_time_present = 1;
av1_set_aom_dec_model_info(&seq_params->decoder_model_info);
av1_set_dec_model_op_parameters(&seq_params->op_params[0]);
} else if (seq_params->timing_info_present &&
seq_params->timing_info.equal_picture_interval &&
!seq_params->decoder_model_info_present_flag) {
// set the decoder model parameters in resource availability mode
av1_set_resource_availability_parameters(&seq_params->op_params[0]);
} else {
seq_params->op_params[0].initial_display_delay =
10; // Default value (not signaled)
}
#if !CONFIG_REALTIME_ONLY
av1_update_film_grain_parameters_seq(ppi, oxcf);
#endif
int sb_size = seq_params->sb_size;
// Superblock size should not be updated after the first key frame.
if (!ppi->seq_params_locked) {
set_sb_size(seq_params, av1_select_sb_size(oxcf, frm_dim_cfg->width,
frm_dim_cfg->height,
ppi->number_spatial_layers));
for (int i = 0; i < MAX_NUM_OPERATING_POINTS; ++i)
seq_params->tier[i] = (oxcf->tier_mask >> i) & 1;
}
if (is_sb_size_changed != NULL && sb_size != seq_params->sb_size)
*is_sb_size_changed = true;
// Init sequence level coding tools
// This should not be called after the first key frame.
// Note that for SVC encoding the sequence parameters
// (operating_points_cnt_minus_1, operating_point_idc[],
// has_nonzero_operating_point_idc) should be updated whenever the
// number of layers is changed. This is done in the
// ctrl_set_svc_params().
if (!ppi->seq_params_locked) {
seq_params->operating_points_cnt_minus_1 =
(ppi->number_spatial_layers > 1 || ppi->number_temporal_layers > 1)
? ppi->number_spatial_layers * ppi->number_temporal_layers - 1
: 0;
init_seq_coding_tools(ppi, oxcf,
ppi->use_svc || ppi->rtc_ref.set_ref_frame_config);
}
seq_params->timing_info_present &= !seq_params->reduced_still_picture_hdr;
#if CONFIG_AV1_HIGHBITDEPTH
highbd_set_var_fns(ppi);
#endif
set_primary_rc_buffer_sizes(oxcf, ppi);
}
void av1_change_config(struct AV1_COMP *cpi, const AV1EncoderConfig *oxcf,
bool is_sb_size_changed) {
AV1_COMMON *const cm = &cpi->common;
SequenceHeader *const seq_params = cm->seq_params;
RATE_CONTROL *const rc = &cpi->rc;
PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
MACROBLOCK *const x = &cpi->td.mb;
AV1LevelParams *const level_params = &cpi->ppi->level_params;
RefreshFrameInfo *const refresh_frame = &cpi->refresh_frame;
const FrameDimensionCfg *const frm_dim_cfg = &cpi->oxcf.frm_dim_cfg;
const RateControlCfg *const rc_cfg = &oxcf->rc_cfg;
FeatureFlags *const features = &cm->features;
// in case of LAP, lag in frames is set according to number of lap buffers
// calculated at init time. This stores and restores LAP's lag in frames to
// prevent override by new cfg.
int lap_lag_in_frames = -1;
if (cpi->ppi->lap_enabled && cpi->compressor_stage == LAP_STAGE) {
lap_lag_in_frames = cpi->oxcf.gf_cfg.lag_in_frames;
}
cpi->oxcf = *oxcf;
#if !CONFIG_REALTIME_ONLY
av1_update_film_grain_parameters(cpi, oxcf);
#endif
// When user provides superres_mode = AOM_SUPERRES_AUTO, we still initialize
// superres mode for current encoding = AOM_SUPERRES_NONE. This is to ensure
// that any analysis (e.g. TPL) happening outside the main encoding loop still
// happens at full resolution.
// This value will later be set appropriately just before main encoding loop.
cpi->superres_mode = oxcf->superres_cfg.superres_mode == AOM_SUPERRES_AUTO
? AOM_SUPERRES_NONE
: oxcf->superres_cfg.superres_mode; // default
x->e_mbd.bd = (int)seq_params->bit_depth;
x->e_mbd.global_motion = cm->global_motion;
memcpy(level_params->target_seq_level_idx, cpi->oxcf.target_seq_level_idx,
sizeof(level_params->target_seq_level_idx));
level_params->keep_level_stats = 0;
for (int i = 0; i < MAX_NUM_OPERATING_POINTS; ++i) {
if (level_params->target_seq_level_idx[i] < SEQ_LEVELS ||
level_params->target_seq_level_idx[i] == SEQ_LEVEL_KEEP_STATS) {
level_params->keep_level_stats |= 1u << i;
if (!level_params->level_info[i]) {
CHECK_MEM_ERROR(cm, level_params->level_info[i],
aom_calloc(1, sizeof(*level_params->level_info[i])));
}
}
}
// TODO(huisu@): level targeting currently only works for the 0th operating
// point, so scalable coding is not supported yet.
if (level_params->target_seq_level_idx[0] < SEQ_LEVELS) {
// Adjust encoder config in order to meet target level.
config_target_level(cpi, level_params->target_seq_level_idx[0],
seq_params->tier[0]);
}
if (has_no_stats_stage(cpi) && (rc_cfg->mode == AOM_Q)) {
p_rc->baseline_gf_interval = FIXED_GF_INTERVAL;
} else if (!is_one_pass_rt_params(cpi) ||
cm->current_frame.frame_number == 0) {
// For rtc mode: logic for setting the baseline_gf_interval is done
// in av1_get_one_pass_rt_params(), and it should not be reset here in
// change_config(), unless after init_config (first frame).
p_rc->baseline_gf_interval = (MIN_GF_INTERVAL + MAX_GF_INTERVAL) / 2;
}
refresh_frame->golden_frame = false;
refresh_frame->bwd_ref_frame = false;
features->refresh_frame_context =
(oxcf->tool_cfg.frame_parallel_decoding_mode)
? REFRESH_FRAME_CONTEXT_DISABLED
: REFRESH_FRAME_CONTEXT_BACKWARD;
if (oxcf->tile_cfg.enable_large_scale_tile)
features->refresh_frame_context = REFRESH_FRAME_CONTEXT_DISABLED;
if (x->palette_buffer == NULL) {
CHECK_MEM_ERROR(cm, x->palette_buffer,
aom_memalign(16, sizeof(*x->palette_buffer)));
}
if (x->tmp_conv_dst == NULL) {
CHECK_MEM_ERROR(
cm, x->tmp_conv_dst,
aom_memalign(32, MAX_SB_SIZE * MAX_SB_SIZE * sizeof(*x->tmp_conv_dst)));
x->e_mbd.tmp_conv_dst = x->tmp_conv_dst;
}
// The buffers 'tmp_pred_bufs[]' and 'comp_rd_buffer' are used in inter frames
// to store intermediate inter mode prediction results and are not required
// for allintra encoding mode. Hence, the memory allocations for these buffers
// are avoided for allintra encoding mode.
if (cpi->oxcf.kf_cfg.key_freq_max != 0) {
if (x->comp_rd_buffer.pred0 == NULL)
alloc_compound_type_rd_buffers(cm->error, &x->comp_rd_buffer);
for (int i = 0; i < 2; ++i) {
if (x->tmp_pred_bufs[i] == NULL) {
CHECK_MEM_ERROR(cm, x->tmp_pred_bufs[i],
aom_memalign(32, 2 * MAX_MB_PLANE * MAX_SB_SQUARE *
sizeof(*x->tmp_pred_bufs[i])));
x->e_mbd.tmp_obmc_bufs[i] = x->tmp_pred_bufs[i];
}
}
}
av1_reset_segment_features(cm);
av1_set_high_precision_mv(cpi, 1, 0);
// Under a configuration change, where maximum_buffer_size may change,
// keep buffer level clipped to the maximum allowed buffer size.
p_rc->bits_off_target =
AOMMIN(p_rc->bits_off_target, p_rc->maximum_buffer_size);
p_rc->buffer_level = AOMMIN(p_rc->buffer_level, p_rc->maximum_buffer_size);
// Set up frame rate and related parameters rate control values.
av1_new_framerate(cpi, cpi->framerate);
// Set absolute upper and lower quality limits
rc->worst_quality = rc_cfg->worst_allowed_q;
rc->best_quality = rc_cfg->best_allowed_q;
// If lossless has been requested make sure average Q accumulators are reset.
if (is_lossless_requested(&cpi->oxcf.rc_cfg)) {
int i;
for (i = 0; i < FRAME_TYPES; ++i) {
p_rc->avg_frame_qindex[i] = 0;
}
}
features->interp_filter =
oxcf->tile_cfg.enable_large_scale_tile ? EIGHTTAP_REGULAR : SWITCHABLE;
features->switchable_motion_mode = is_switchable_motion_mode_allowed(
features->allow_warped_motion, oxcf->motion_mode_cfg.enable_obmc);
if (frm_dim_cfg->render_width > 0 && frm_dim_cfg->render_height > 0) {
cm->render_width = frm_dim_cfg->render_width;
cm->render_height = frm_dim_cfg->render_height;
} else {
cm->render_width = frm_dim_cfg->width;
cm->render_height = frm_dim_cfg->height;
}
int last_width = cm->width;
int last_height = cm->height;
cm->width = frm_dim_cfg->width;
cm->height = frm_dim_cfg->height;
if (cm->width > cpi->data_alloc_width ||
cm->height > cpi->data_alloc_height || is_sb_size_changed) {
av1_free_context_buffers(cm);
av1_free_shared_coeff_buffer(&cpi->td.shared_coeff_buf);
av1_free_sms_tree(&cpi->td);
av1_free_pmc(cpi->td.firstpass_ctx, av1_num_planes(cm));
cpi->td.firstpass_ctx = NULL;
alloc_compressor_data(cpi);
realloc_segmentation_maps(cpi);
cpi->data_alloc_width = cm->width;
cpi->data_alloc_height = cm->height;
cpi->frame_size_related_setup_done = false;
}
av1_update_frame_size(cpi);
if (cm->width != last_width || cm->height != last_height) {
if (cpi->oxcf.q_cfg.aq_mode == CYCLIC_REFRESH_AQ) {
int mi_rows = cpi->common.mi_params.mi_rows;
int mi_cols = cpi->common.mi_params.mi_cols;
aom_free(cpi->cyclic_refresh->map);
CHECK_MEM_ERROR(
cm, cpi->cyclic_refresh->map,
aom_calloc(mi_rows * mi_cols, sizeof(*cpi->cyclic_refresh->map)));
if (cpi->svc.number_spatial_layers > 1) {
for (int sl = 0; sl < cpi->svc.number_spatial_layers; ++sl) {
const int layer =
LAYER_IDS_TO_IDX(sl, 0, cpi->svc.number_temporal_layers);
LAYER_CONTEXT *const lc = &cpi->svc.layer_context[layer];
lc->sb_index = 0;
lc->actual_num_seg1_blocks = 0;
lc->actual_num_seg2_blocks = 0;
lc->counter_encode_maxq_scene_change = 0;
aom_free(lc->map);
CHECK_MEM_ERROR(cm, lc->map,
aom_calloc(mi_rows * mi_cols, sizeof(*lc->map)));
}
}
}
}
rc->is_src_frame_alt_ref = 0;
if (!cpi->ppi->rtc_ref.set_ref_frame_config)
cpi->ext_flags.refresh_frame.update_pending = 0;
cpi->ext_flags.refresh_frame_context_pending = 0;
if (cpi->ppi->use_svc)
av1_update_layer_context_change_config(cpi, rc_cfg->target_bandwidth);
check_reset_rc_flag(cpi);
// restore the value of lag_in_frame for LAP stage.
if (lap_lag_in_frames != -1) {
cpi->oxcf.gf_cfg.lag_in_frames = lap_lag_in_frames;
}
#if CONFIG_REALTIME_ONLY
assert(!oxcf->tool_cfg.enable_global_motion);
cpi->alloc_pyramid = false;
#else
cpi->alloc_pyramid = oxcf->tool_cfg.enable_global_motion;
#endif // CONFIG_REALTIME_ONLY
}
static inline void init_frame_info(FRAME_INFO *frame_info,
const AV1_COMMON *const cm) {
const CommonModeInfoParams *const mi_params = &cm->mi_params;
const SequenceHeader *const seq_params = cm->seq_params;
frame_info->frame_width = cm->width;
frame_info->frame_height = cm->height;
frame_info->mi_cols = mi_params->mi_cols;
frame_info->mi_rows = mi_params->mi_rows;
frame_info->mb_cols = mi_params->mb_cols;
frame_info->mb_rows = mi_params->mb_rows;
frame_info->num_mbs = mi_params->MBs;
frame_info->bit_depth = seq_params->bit_depth;
frame_info->subsampling_x = seq_params->subsampling_x;
frame_info->subsampling_y = seq_params->subsampling_y;
}
static inline void init_frame_index_set(FRAME_INDEX_SET *frame_index_set) {
frame_index_set->show_frame_count = 0;
}
static inline void update_counters_for_show_frame(AV1_COMP *const cpi) {
assert(cpi->common.show_frame);
cpi->frame_index_set.show_frame_count++;
cpi->common.current_frame.frame_number++;
}
AV1_PRIMARY *av1_create_primary_compressor(
struct aom_codec_pkt_list *pkt_list_head, int num_lap_buffers,
const AV1EncoderConfig *oxcf) {
AV1_PRIMARY *volatile const ppi = aom_memalign(32, sizeof(AV1_PRIMARY));
if (!ppi) return NULL;
av1_zero(*ppi);
// The jmp_buf is valid only for the duration of the function that calls
// setjmp(). Therefore, this function must reset the 'setjmp' field to 0
// before it returns.
if (setjmp(ppi->error.jmp)) {
ppi->error.setjmp = 0;
av1_remove_primary_compressor(ppi);
return 0;
}
ppi->error.setjmp = 1;
ppi->seq_params_locked = 0;
ppi->lap_enabled = num_lap_buffers > 0;
ppi->output_pkt_list = pkt_list_head;
ppi->b_calculate_psnr = CONFIG_INTERNAL_STATS;
ppi->frames_left = oxcf->input_cfg.limit;
ppi->num_fp_contexts = 1;
init_config_sequence(ppi, oxcf);
#if CONFIG_ENTROPY_STATS
av1_zero(ppi->aggregate_fc);
#endif // CONFIG_ENTROPY_STATS
av1_primary_rc_init(oxcf, &ppi->p_rc);
// For two pass and lag_in_frames > 33 in LAP.
ppi->p_rc.enable_scenecut_detection = ENABLE_SCENECUT_MODE_2;
if (ppi->lap_enabled) {
if ((num_lap_buffers <
(MAX_GF_LENGTH_LAP + SCENE_CUT_KEY_TEST_INTERVAL + 1)) &&
num_lap_buffers >= (MAX_GF_LENGTH_LAP + 3)) {
/*
* For lag in frames >= 19 and <33, enable scenecut
* with limited future frame prediction.
*/
ppi->p_rc.enable_scenecut_detection = ENABLE_SCENECUT_MODE_1;
} else if (num_lap_buffers < (MAX_GF_LENGTH_LAP + 3)) {
// Disable scenecut when lag_in_frames < 19.
ppi->p_rc.enable_scenecut_detection = DISABLE_SCENECUT;
}
}
#define BFP(BT, SDF, SDAF, VF, SVF, SVAF, SDX4DF, SDX3DF) \
ppi->fn_ptr[BT].sdf = SDF; \
ppi->fn_ptr[BT].sdaf = SDAF; \
ppi->fn_ptr[BT].vf = VF; \
ppi->fn_ptr[BT].svf = SVF; \
ppi->fn_ptr[BT].svaf = SVAF; \
ppi->fn_ptr[BT].sdx4df = SDX4DF; \
ppi->fn_ptr[BT].sdx3df = SDX3DF;
// Realtime mode doesn't use 4x rectangular blocks.
#if !CONFIG_REALTIME_ONLY
// sdaf (used in compound prediction, get_mvpred_compound_sad()) is unused
// for 4xN and Nx4 blocks.
BFP(BLOCK_4X16, aom_sad4x16, /*SDAF=*/NULL, aom_variance4x16,
aom_sub_pixel_variance4x16, aom_sub_pixel_avg_variance4x16,
aom_sad4x16x4d, aom_sad4x16x3d)
// sdaf (used in compound prediction, get_mvpred_compound_sad()) is unused
// for 4xN and Nx4 blocks.
BFP(BLOCK_16X4, aom_sad16x4, /*SDAF=*/NULL, aom_variance16x4,
aom_sub_pixel_variance16x4, aom_sub_pixel_avg_variance16x4,
aom_sad16x4x4d, aom_sad16x4x3d)
BFP(BLOCK_8X32, aom_sad8x32, aom_sad8x32_avg, aom_variance8x32,
aom_sub_pixel_variance8x32, aom_sub_pixel_avg_variance8x32,
aom_sad8x32x4d, aom_sad8x32x3d)
BFP(BLOCK_32X8, aom_sad32x8, aom_sad32x8_avg, aom_variance32x8,
aom_sub_pixel_variance32x8, aom_sub_pixel_avg_variance32x8,
aom_sad32x8x4d, aom_sad32x8x3d)
BFP(BLOCK_16X64, aom_sad16x64, aom_sad16x64_avg, aom_variance16x64,
aom_sub_pixel_variance16x64, aom_sub_pixel_avg_variance16x64,
aom_sad16x64x4d, aom_sad16x64x3d)
BFP(BLOCK_64X16, aom_sad64x16, aom_sad64x16_avg, aom_variance64x16,
aom_sub_pixel_variance64x16, aom_sub_pixel_avg_variance64x16,
aom_sad64x16x4d, aom_sad64x16x3d)
#endif // !CONFIG_REALTIME_ONLY
BFP(BLOCK_128X128, aom_sad128x128, aom_sad128x128_avg, aom_variance128x128,
aom_sub_pixel_variance128x128, aom_sub_pixel_avg_variance128x128,
aom_sad128x128x4d, aom_sad128x128x3d)
BFP(BLOCK_128X64, aom_sad128x64, aom_sad128x64_avg, aom_variance128x64,
aom_sub_pixel_variance128x64, aom_sub_pixel_avg_variance128x64,
aom_sad128x64x4d, aom_sad128x64x3d)
BFP(BLOCK_64X128, aom_sad64x128, aom_sad64x128_avg, aom_variance64x128,
aom_sub_pixel_variance64x128, aom_sub_pixel_avg_variance64x128,
aom_sad64x128x4d, aom_sad64x128x3d)
BFP(BLOCK_32X16, aom_sad32x16, aom_sad32x16_avg, aom_variance32x16,
aom_sub_pixel_variance32x16, aom_sub_pixel_avg_variance32x16,
aom_sad32x16x4d, aom_sad32x16x3d)
BFP(BLOCK_16X32, aom_sad16x32, aom_sad16x32_avg, aom_variance16x32,
aom_sub_pixel_variance16x32, aom_sub_pixel_avg_variance16x32,
aom_sad16x32x4d, aom_sad16x32x3d)
BFP(BLOCK_64X32, aom_sad64x32, aom_sad64x32_avg, aom_variance64x32,
aom_sub_pixel_variance64x32, aom_sub_pixel_avg_variance64x32,
aom_sad64x32x4d, aom_sad64x32x3d)
BFP(BLOCK_32X64, aom_sad32x64, aom_sad32x64_avg, aom_variance32x64,
aom_sub_pixel_variance32x64, aom_sub_pixel_avg_variance32x64,
aom_sad32x64x4d, aom_sad32x64x3d)
BFP(BLOCK_32X32, aom_sad32x32, aom_sad32x32_avg, aom_variance32x32,
aom_sub_pixel_variance32x32, aom_sub_pixel_avg_variance32x32,
aom_sad32x32x4d, aom_sad32x32x3d)
BFP(BLOCK_64X64, aom_sad64x64, aom_sad64x64_avg, aom_variance64x64,
aom_sub_pixel_variance64x64, aom_sub_pixel_avg_variance64x64,
aom_sad64x64x4d, aom_sad64x64x3d)
BFP(BLOCK_16X16, aom_sad16x16, aom_sad16x16_avg, aom_variance16x16,
aom_sub_pixel_variance16x16, aom_sub_pixel_avg_variance16x16,
aom_sad16x16x4d, aom_sad16x16x3d)
BFP(BLOCK_16X8, aom_sad16x8, aom_sad16x8_avg, aom_variance16x8,
aom_sub_pixel_variance16x8, aom_sub_pixel_avg_variance16x8,
aom_sad16x8x4d, aom_sad16x8x3d)
BFP(BLOCK_8X16, aom_sad8x16, aom_sad8x16_avg, aom_variance8x16,
aom_sub_pixel_variance8x16, aom_sub_pixel_avg_variance8x16,
aom_sad8x16x4d, aom_sad8x16x3d)
BFP(BLOCK_8X8, aom_sad8x8, aom_sad8x8_avg, aom_variance8x8,
aom_sub_pixel_variance8x8, aom_sub_pixel_avg_variance8x8, aom_sad8x8x4d,
aom_sad8x8x3d)
// sdaf (used in compound prediction, get_mvpred_compound_sad()) is unused
// for 4xN and Nx4 blocks.
BFP(BLOCK_8X4, aom_sad8x4, /*SDAF=*/NULL, aom_variance8x4,
aom_sub_pixel_variance8x4, aom_sub_pixel_avg_variance8x4, aom_sad8x4x4d,
aom_sad8x4x3d)
// sdaf (used in compound prediction, get_mvpred_compound_sad()) is unused
// for 4xN and Nx4 blocks.
BFP(BLOCK_4X8, aom_sad4x8, /*SDAF=*/NULL, aom_variance4x8,
aom_sub_pixel_variance4x8, aom_sub_pixel_avg_variance4x8, aom_sad4x8x4d,
aom_sad4x8x3d)
// sdaf (used in compound prediction, get_mvpred_compound_sad()) is unused
// for 4xN and Nx4 blocks.
BFP(BLOCK_4X4, aom_sad4x4, /*SDAF=*/NULL, aom_variance4x4,
aom_sub_pixel_variance4x4, aom_sub_pixel_avg_variance4x4, aom_sad4x4x4d,
aom_sad4x4x3d)
#if !CONFIG_REALTIME_ONLY
#define OBFP(BT, OSDF, OVF, OSVF) \
ppi->fn_ptr[BT].osdf = OSDF; \
ppi->fn_ptr[BT].ovf = OVF; \
ppi->fn_ptr[BT].osvf = OSVF;
OBFP(BLOCK_128X128, aom_obmc_sad128x128, aom_obmc_variance128x128,
aom_obmc_sub_pixel_variance128x128)
OBFP(BLOCK_128X64, aom_obmc_sad128x64, aom_obmc_variance128x64,
aom_obmc_sub_pixel_variance128x64)
OBFP(BLOCK_64X128, aom_obmc_sad64x128, aom_obmc_variance64x128,
aom_obmc_sub_pixel_variance64x128)
OBFP(BLOCK_64X64, aom_obmc_sad64x64, aom_obmc_variance64x64,
aom_obmc_sub_pixel_variance64x64)
OBFP(BLOCK_64X32, aom_obmc_sad64x32, aom_obmc_variance64x32,
aom_obmc_sub_pixel_variance64x32)
OBFP(BLOCK_32X64, aom_obmc_sad32x64, aom_obmc_variance32x64,
aom_obmc_sub_pixel_variance32x64)
OBFP(BLOCK_32X32, aom_obmc_sad32x32, aom_obmc_variance32x32,
aom_obmc_sub_pixel_variance32x32)
OBFP(BLOCK_32X16, aom_obmc_sad32x16, aom_obmc_variance32x16,
aom_obmc_sub_pixel_variance32x16)
OBFP(BLOCK_16X32, aom_obmc_sad16x32, aom_obmc_variance16x32,
aom_obmc_sub_pixel_variance16x32)
OBFP(BLOCK_16X16, aom_obmc_sad16x16, aom_obmc_variance16x16,
aom_obmc_sub_pixel_variance16x16)
OBFP(BLOCK_16X8, aom_obmc_sad16x8, aom_obmc_variance16x8,
aom_obmc_sub_pixel_variance16x8)
OBFP(BLOCK_8X16, aom_obmc_sad8x16, aom_obmc_variance8x16,
aom_obmc_sub_pixel_variance8x16)
OBFP(BLOCK_8X8, aom_obmc_sad8x8, aom_obmc_variance8x8,
aom_obmc_sub_pixel_variance8x8)
OBFP(BLOCK_4X8, aom_obmc_sad4x8, aom_obmc_variance4x8,
aom_obmc_sub_pixel_variance4x8)
OBFP(BLOCK_8X4, aom_obmc_sad8x4, aom_obmc_variance8x4,
aom_obmc_sub_pixel_variance8x4)
OBFP(BLOCK_4X4, aom_obmc_sad4x4, aom_obmc_variance4x4,
aom_obmc_sub_pixel_variance4x4)
OBFP(BLOCK_4X16, aom_obmc_sad4x16, aom_obmc_variance4x16,
aom_obmc_sub_pixel_variance4x16)
OBFP(BLOCK_16X4, aom_obmc_sad16x4, aom_obmc_variance16x4,
aom_obmc_sub_pixel_variance16x4)
OBFP(BLOCK_8X32, aom_obmc_sad8x32, aom_obmc_variance8x32,
aom_obmc_sub_pixel_variance8x32)
OBFP(BLOCK_32X8, aom_obmc_sad32x8, aom_obmc_variance32x8,
aom_obmc_sub_pixel_variance32x8)
OBFP(BLOCK_16X64, aom_obmc_sad16x64, aom_obmc_variance16x64,
aom_obmc_sub_pixel_variance16x64)
OBFP(BLOCK_64X16, aom_obmc_sad64x16, aom_obmc_variance64x16,
aom_obmc_sub_pixel_variance64x16)
#endif // !CONFIG_REALTIME_ONLY
#define MBFP(BT, MCSDF, MCSVF) \
ppi->fn_ptr[BT].msdf = MCSDF; \
ppi->fn_ptr[BT].msvf = MCSVF;
MBFP(BLOCK_128X128, aom_masked_sad128x128,
aom_masked_sub_pixel_variance128x128)
MBFP(BLOCK_128X64, aom_masked_sad128x64, aom_masked_sub_pixel_variance128x64)
MBFP(BLOCK_64X128, aom_masked_sad64x128, aom_masked_sub_pixel_variance64x128)
MBFP(BLOCK_64X64, aom_masked_sad64x64, aom_masked_sub_pixel_variance64x64)
MBFP(BLOCK_64X32, aom_masked_sad64x32, aom_masked_sub_pixel_variance64x32)
MBFP(BLOCK_32X64, aom_masked_sad32x64, aom_masked_sub_pixel_variance32x64)
MBFP(BLOCK_32X32, aom_masked_sad32x32, aom_masked_sub_pixel_variance32x32)
MBFP(BLOCK_32X16, aom_masked_sad32x16, aom_masked_sub_pixel_variance32x16)
MBFP(BLOCK_16X32, aom_masked_sad16x32, aom_masked_sub_pixel_variance16x32)
MBFP(BLOCK_16X16, aom_masked_sad16x16, aom_masked_sub_pixel_variance16x16)
MBFP(BLOCK_16X8, aom_masked_sad16x8, aom_masked_sub_pixel_variance16x8)
MBFP(BLOCK_8X16, aom_masked_sad8x16, aom_masked_sub_pixel_variance8x16)
MBFP(BLOCK_8X8, aom_masked_sad8x8, aom_masked_sub_pixel_variance8x8)
MBFP(BLOCK_4X8, aom_masked_sad4x8, aom_masked_sub_pixel_variance4x8)
MBFP(BLOCK_8X4, aom_masked_sad8x4, aom_masked_sub_pixel_variance8x4)
MBFP(BLOCK_4X4, aom_masked_sad4x4, aom_masked_sub_pixel_variance4x4)
#if !CONFIG_REALTIME_ONLY
MBFP(BLOCK_4X16, aom_masked_sad4x16, aom_masked_sub_pixel_variance4x16)
MBFP(BLOCK_16X4, aom_masked_sad16x4, aom_masked_sub_pixel_variance16x4)
MBFP(BLOCK_8X32, aom_masked_sad8x32, aom_masked_sub_pixel_variance8x32)
MBFP(BLOCK_32X8, aom_masked_sad32x8, aom_masked_sub_pixel_variance32x8)
MBFP(BLOCK_16X64, aom_masked_sad16x64, aom_masked_sub_pixel_variance16x64)
MBFP(BLOCK_64X16, aom_masked_sad64x16, aom_masked_sub_pixel_variance64x16)
#endif
#define SDSFP(BT, SDSF, SDSX4DF) \
ppi->fn_ptr[BT].sdsf = SDSF; \
ppi->fn_ptr[BT].sdsx4df = SDSX4DF;
SDSFP(BLOCK_128X128, aom_sad_skip_128x128, aom_sad_skip_128x128x4d)
SDSFP(BLOCK_128X64, aom_sad_skip_128x64, aom_sad_skip_128x64x4d)
SDSFP(BLOCK_64X128, aom_sad_skip_64x128, aom_sad_skip_64x128x4d)
SDSFP(BLOCK_64X64, aom_sad_skip_64x64, aom_sad_skip_64x64x4d)
SDSFP(BLOCK_64X32, aom_sad_skip_64x32, aom_sad_skip_64x32x4d)
SDSFP(BLOCK_32X64, aom_sad_skip_32x64, aom_sad_skip_32x64x4d)
SDSFP(BLOCK_32X32, aom_sad_skip_32x32, aom_sad_skip_32x32x4d)
SDSFP(BLOCK_32X16, aom_sad_skip_32x16, aom_sad_skip_32x16x4d)
SDSFP(BLOCK_16X32, aom_sad_skip_16x32, aom_sad_skip_16x32x4d)
SDSFP(BLOCK_16X16, aom_sad_skip_16x16, aom_sad_skip_16x16x4d)
SDSFP(BLOCK_8X16, aom_sad_skip_8x16, aom_sad_skip_8x16x4d)
#if !CONFIG_REALTIME_ONLY
SDSFP(BLOCK_64X16, aom_sad_skip_64x16, aom_sad_skip_64x16x4d)
SDSFP(BLOCK_16X64, aom_sad_skip_16x64, aom_sad_skip_16x64x4d)
SDSFP(BLOCK_8X32, aom_sad_skip_8x32, aom_sad_skip_8x32x4d)
SDSFP(BLOCK_4X16, aom_sad_skip_4x16, aom_sad_skip_4x16x4d)
#endif
#undef SDSFP
#if CONFIG_AV1_HIGHBITDEPTH
highbd_set_var_fns(ppi);
#endif
{
// As cm->mi_params is a part of the frame level context (cpi), it is
// unavailable at this point. mi_params is created as a local temporary
// variable, to be passed into the functions used for allocating tpl
// buffers. The values in this variable are populated according to initial
// width and height of the frame.
CommonModeInfoParams mi_params;
enc_set_mb_mi(&mi_params, oxcf->frm_dim_cfg.width, oxcf->frm_dim_cfg.height,
BLOCK_4X4);
const BLOCK_SIZE bsize = BLOCK_16X16;
const int w = mi_size_wide[bsize];
const int h = mi_size_high[bsize];
const int num_cols = (mi_params.mi_cols + w - 1) / w;
const int num_rows = (mi_params.mi_rows + h - 1) / h;
AOM_CHECK_MEM_ERROR(
&ppi->error, ppi->tpl_sb_rdmult_scaling_factors,
aom_calloc(num_rows * num_cols,
sizeof(*ppi->tpl_sb_rdmult_scaling_factors)));
#if CONFIG_INTERNAL_STATS
ppi->b_calculate_blockiness = 1;
ppi->b_calculate_consistency = 1;
for (int i = 0; i <= STAT_ALL; i++) {
ppi->psnr[0].stat[i] = 0;
ppi->psnr[1].stat[i] = 0;
ppi->fastssim.stat[i] = 0;
ppi->psnrhvs.stat[i] = 0;
}
ppi->psnr[0].worst = 100.0;
ppi->psnr[1].worst = 100.0;
ppi->worst_ssim = 100.0;
ppi->worst_ssim_hbd = 100.0;
ppi->count[0] = 0;
ppi->count[1] = 0;
ppi->total_bytes = 0;
if (ppi->b_calculate_psnr) {
ppi->total_sq_error[0] = 0;
ppi->total_samples[0] = 0;
ppi->total_sq_error[1] = 0;
ppi->total_samples[1] = 0;
ppi->total_recode_hits = 0;
ppi->summed_quality = 0;
ppi->summed_weights = 0;
ppi->summed_quality_hbd = 0;
ppi->summed_weights_hbd = 0;
}
ppi->fastssim.worst = 100.0;
ppi->psnrhvs.worst = 100.0;
if (ppi->b_calculate_blockiness) {
ppi->total_blockiness = 0;
ppi->worst_blockiness = 0.0;
}
ppi->total_inconsistency = 0;
ppi->worst_consistency = 100.0;
if (ppi->b_calculate_consistency) {
AOM_CHECK_MEM_ERROR(&ppi->error, ppi->ssim_vars,
aom_malloc(sizeof(*ppi->ssim_vars) * 4 *
mi_params.mi_rows * mi_params.mi_cols));
}
#endif
}
ppi->error.setjmp = 0;
return ppi;
}
AV1_COMP *av1_create_compressor(AV1_PRIMARY *ppi, const AV1EncoderConfig *oxcf,
BufferPool *const pool, COMPRESSOR_STAGE stage,
int lap_lag_in_frames) {
AV1_COMP *volatile const cpi = aom_memalign(32, sizeof(AV1_COMP));
if (!cpi) return NULL;
av1_zero(*cpi);
cpi->ppi = ppi;
AV1_COMMON *volatile const cm = &cpi->common;
cm->seq_params = &ppi->seq_params;
cm->error =
(struct aom_internal_error_info *)aom_calloc(1, sizeof(*cm->error));
if (!cm->error) {
aom_free(cpi);
return NULL;
}
// The jmp_buf is valid only for the duration of the function that calls
// setjmp(). Therefore, this function must reset the 'setjmp' field to 0
// before it returns.
if (setjmp(cm->error->jmp)) {
cm->error->setjmp = 0;
av1_remove_compressor(cpi);
return NULL;
}
cm->error->setjmp = 1;
cpi->compressor_stage = stage;
cpi->do_frame_data_update = true;
CommonModeInfoParams *const mi_params = &cm->mi_params;
mi_params->free_mi = enc_free_mi;
mi_params->setup_mi = enc_setup_mi;
mi_params->set_mb_mi =
(oxcf->pass == AOM_RC_FIRST_PASS || cpi->compressor_stage == LAP_STAGE)
? stat_stage_set_mb_mi
: enc_set_mb_mi;
mi_params->mi_alloc_bsize = BLOCK_4X4;
CHECK_MEM_ERROR(cm, cm->fc,
(FRAME_CONTEXT *)aom_memalign(32, sizeof(*cm->fc)));
CHECK_MEM_ERROR(
cm, cm->default_frame_context,
(FRAME_CONTEXT *)aom_memalign(32, sizeof(*cm->default_frame_context)));
memset(cm->fc, 0, sizeof(*cm->fc));
memset(cm->default_frame_context, 0, sizeof(*cm->default_frame_context));
cpi->common.buffer_pool = pool;
init_config(cpi, oxcf);
if (cpi->compressor_stage == LAP_STAGE) {
cpi->oxcf.gf_cfg.lag_in_frames = lap_lag_in_frames;
}
av1_rc_init(&cpi->oxcf, &cpi->rc);
init_frame_info(&cpi->frame_info, cm);
init_frame_index_set(&cpi->frame_index_set);
cm->current_frame.frame_number = 0;
cpi->rc.frame_number_encoded = 0;
cpi->rc.prev_frame_is_dropped = 0;
cpi->rc.max_consec_drop = INT_MAX;
cpi->rc.drop_count_consec = 0;
cm->current_frame_id = -1;
cpi->tile_data = NULL;
cpi->last_show_frame_buf = NULL;
realloc_segmentation_maps(cpi);
cpi->refresh_frame.alt_ref_frame = false;
#if CONFIG_SPEED_STATS
cpi->tx_search_count = 0;
#endif // CONFIG_SPEED_STATS
cpi->time_stamps.first_ts_start = INT64_MAX;
#ifdef OUTPUT_YUV_REC
yuv_rec_file = fopen("rec.yuv", "wb");
#endif
#ifdef OUTPUT_YUV_DENOISED
yuv_denoised_file = fopen("denoised.yuv", "wb");
#endif
#if !CONFIG_REALTIME_ONLY
if (is_stat_consumption_stage(cpi)) {
const size_t packet_sz = sizeof(FIRSTPASS_STATS);
const int packets = (int)(oxcf->twopass_stats_in.sz / packet_sz);
if (!cpi->ppi->lap_enabled) {
/*Re-initialize to stats buffer, populated by application in the case of
* two pass*/
cpi->ppi->twopass.stats_buf_ctx->stats_in_start =
oxcf->twopass_stats_in.buf;
cpi->twopass_frame.stats_in =
cpi->ppi->twopass.stats_buf_ctx->stats_in_start;
cpi->ppi->twopass.stats_buf_ctx->stats_in_end =
&cpi->ppi->twopass.stats_buf_ctx->stats_in_start[packets - 1];
// The buffer size is packets - 1 because the last packet is total_stats.
av1_firstpass_info_init(&cpi->ppi->twopass.firstpass_info,
oxcf->twopass_stats_in.buf, packets - 1);
av1_init_second_pass(cpi);
} else {
av1_firstpass_info_init(&cpi->ppi->twopass.firstpass_info, NULL, 0);
av1_init_single_pass_lap(cpi);
}
}
#endif
// The buffer "obmc_buffer" is used in inter frames for fast obmc search.
// Hence, the memory allocation for the same is avoided for allintra encoding
// mode.
if (cpi->oxcf.kf_cfg.key_freq_max != 0)
alloc_obmc_buffers(&cpi->td.mb.obmc_buffer, cm->error);
for (int x = 0; x < 2; x++) {
CHECK_MEM_ERROR(
cm, cpi->td.mb.intrabc_hash_info.hash_value_buffer[x],
(uint32_t *)aom_malloc(
AOM_BUFFER_SIZE_FOR_BLOCK_HASH *
sizeof(*cpi->td.mb.intrabc_hash_info.hash_value_buffer[x])));
}
cpi->td.mb.intrabc_hash_info.crc_initialized = 0;
av1_set_speed_features_framesize_independent(cpi, oxcf->speed);
av1_set_speed_features_framesize_dependent(cpi, oxcf->speed);
int max_mi_cols = mi_params->mi_cols;
int max_mi_rows = mi_params->mi_rows;
if (oxcf->frm_dim_cfg.forced_max_frame_width) {
max_mi_cols = size_in_mi(oxcf->frm_dim_cfg.forced_max_frame_width);
}
if (oxcf->frm_dim_cfg.forced_max_frame_height) {
max_mi_rows = size_in_mi(oxcf->frm_dim_cfg.forced_max_frame_height);
}
const int consec_zero_mv_alloc_size = (max_mi_rows * max_mi_cols) >> 2;
CHECK_MEM_ERROR(
cm, cpi->consec_zero_mv,
aom_calloc(consec_zero_mv_alloc_size, sizeof(*cpi->consec_zero_mv)));
cpi->consec_zero_mv_alloc_size = consec_zero_mv_alloc_size;
cpi->mb_weber_stats = NULL;
cpi->mb_delta_q = NULL;
cpi->palette_pixel_num = 0;
cpi->scaled_last_source_available = 0;
{
const BLOCK_SIZE bsize = BLOCK_16X16;
const int w = mi_size_wide[bsize];
const int h = mi_size_high[bsize];
const int num_cols = (max_mi_cols + w - 1) / w;
const int num_rows = (max_mi_rows + h - 1) / h;
CHECK_MEM_ERROR(cm, cpi->ssim_rdmult_scaling_factors,
aom_calloc(num_rows * num_cols,
sizeof(*cpi->ssim_rdmult_scaling_factors)));
CHECK_MEM_ERROR(cm, cpi->tpl_rdmult_scaling_factors,
aom_calloc(num_rows * num_cols,
sizeof(*cpi->tpl_rdmult_scaling_factors)));
}
#if CONFIG_TUNE_VMAF
{
const BLOCK_SIZE bsize = BLOCK_64X64;
const int w = mi_size_wide[bsize];
const int h = mi_size_high[bsize];
const int num_cols = (mi_params->mi_cols + w - 1) / w;
const int num_rows = (mi_params->mi_rows + h - 1) / h;
CHECK_MEM_ERROR(cm, cpi->vmaf_info.rdmult_scaling_factors,
aom_calloc(num_rows * num_cols,
sizeof(*cpi->vmaf_info.rdmult_scaling_factors)));
for (int i = 0; i < MAX_ARF_LAYERS; i++) {
cpi->vmaf_info.last_frame_unsharp_amount[i] = -1.0;
cpi->vmaf_info.last_frame_ysse[i] = -1.0;
cpi->vmaf_info.last_frame_vmaf[i] = -1.0;
}
cpi->vmaf_info.original_qindex = -1;
cpi->vmaf_info.vmaf_model = NULL;
}
#endif
#if CONFIG_TUNE_BUTTERAUGLI
{
const int w = mi_size_wide[butteraugli_rdo_bsize];
const int h = mi_size_high[butteraugli_rdo_bsize];
const int num_cols = (mi_params->mi_cols + w - 1) / w;
const int num_rows = (mi_params->mi_rows + h - 1) / h;
CHECK_MEM_ERROR(
cm, cpi->butteraugli_info.rdmult_scaling_factors,
aom_malloc(num_rows * num_cols *
sizeof(*cpi->butteraugli_info.rdmult_scaling_factors)));
memset(&cpi->butteraugli_info.source, 0,
sizeof(cpi->butteraugli_info.source));
memset(&cpi->butteraugli_info.resized_source, 0,
sizeof(cpi->butteraugli_info.resized_source));
cpi->butteraugli_info.recon_set = false;
}
#endif
#if CONFIG_SALIENCY_MAP
{
CHECK_MEM_ERROR(cm, cpi->saliency_map,
(uint8_t *)aom_calloc(cm->height * cm->width,
sizeof(*cpi->saliency_map)));
// Buffer initialization based on MIN_MIB_SIZE_LOG2 to ensure that
// cpi->sm_scaling_factor buffer is allocated big enough, since we have no
// idea of the actual superblock size we are going to use yet.
const int min_mi_w_sb = (1 << MIN_MIB_SIZE_LOG2);
const int min_mi_h_sb = (1 << MIN_MIB_SIZE_LOG2);
const int max_sb_cols =
(cm->mi_params.mi_cols + min_mi_w_sb - 1) / min_mi_w_sb;
const int max_sb_rows =
(cm->mi_params.mi_rows + min_mi_h_sb - 1) / min_mi_h_sb;
CHECK_MEM_ERROR(cm, cpi->sm_scaling_factor,
(double *)aom_calloc(max_sb_rows * max_sb_cols,
sizeof(*cpi->sm_scaling_factor)));
}
#endif
#if CONFIG_COLLECT_PARTITION_STATS
av1_zero(cpi->partition_stats);
#endif // CONFIG_COLLECT_PARTITION_STATS
// Initialize the members of DeltaQuantParams with INT_MAX to ensure that
// the quantizer tables are correctly initialized using the default deltaq
// parameters when av1_init_quantizer is called for the first time.
DeltaQuantParams *const prev_deltaq_params =
&cpi->enc_quant_dequant_params.prev_deltaq_params;
prev_deltaq_params->y_dc_delta_q = INT_MAX;
prev_deltaq_params->u_dc_delta_q = INT_MAX;
prev_deltaq_params->v_dc_delta_q = INT_MAX;
prev_deltaq_params->u_ac_delta_q = INT_MAX;
prev_deltaq_params->v_ac_delta_q = INT_MAX;
av1_init_quantizer(&cpi->enc_quant_dequant_params, &cm->quant_params,
cm->seq_params->bit_depth, cpi->oxcf.algo_cfg.sharpness);
av1_qm_init(&cm->quant_params, av1_num_planes(cm));
av1_loop_filter_init(cm);
cm->superres_scale_denominator = SCALE_NUMERATOR;
cm->superres_upscaled_width = oxcf->frm_dim_cfg.width;
cm->superres_upscaled_height = oxcf->frm_dim_cfg.height;
#if !CONFIG_REALTIME_ONLY
av1_loop_restoration_precal();
#endif
#if CONFIG_THREE_PASS
cpi->third_pass_ctx = NULL;
if (cpi->oxcf.pass == AOM_RC_THIRD_PASS) {
av1_init_thirdpass_ctx(cm, &cpi->third_pass_ctx, NULL);
}
#endif
cpi->second_pass_log_stream = NULL;
cpi->use_ducky_encode = 0;
cm->error->setjmp = 0;
return cpi;
}
#if CONFIG_INTERNAL_STATS
#define SNPRINT(H, T) snprintf((H) + strlen(H), sizeof(H) - strlen(H), (T))
#define SNPRINT2(H, T, V) \
snprintf((H) + strlen(H), sizeof(H) - strlen(H), (T), (V))
#endif // CONFIG_INTERNAL_STATS
void av1_remove_primary_compressor(AV1_PRIMARY *ppi) {
if (!ppi) return;
#if !CONFIG_REALTIME_ONLY
av1_tf_info_free(&ppi->tf_info);
#endif // !CONFIG_REALTIME_ONLY
for (int i = 0; i < MAX_NUM_OPERATING_POINTS; ++i) {
aom_free(ppi->level_params.level_info[i]);
}
av1_lookahead_destroy(ppi->lookahead);
aom_free(ppi->tpl_sb_rdmult_scaling_factors);
ppi->tpl_sb_rdmult_scaling_factors = NULL;
TplParams *const tpl_data = &ppi->tpl_data;
aom_free(tpl_data->txfm_stats_list);
for (int frame = 0; frame < MAX_LAG_BUFFERS; ++frame) {
aom_free(tpl_data->tpl_stats_pool[frame]);
aom_free_frame_buffer(&tpl_data->tpl_rec_pool[frame]);
tpl_data->tpl_stats_pool[frame] = NULL;
}
#if !CONFIG_REALTIME_ONLY
av1_tpl_dealloc(&tpl_data->tpl_mt_sync);
#endif
av1_terminate_workers(ppi);
free_thread_data(ppi);
aom_free(ppi->p_mt_info.tile_thr_data);
ppi->p_mt_info.tile_thr_data = NULL;
aom_free(ppi->p_mt_info.workers);
ppi->p_mt_info.workers = NULL;
ppi->p_mt_info.num_workers = 0;
aom_free(ppi);
}
void av1_remove_compressor(AV1_COMP *cpi) {
if (!cpi) return;
#if CONFIG_RATECTRL_LOG
if (cpi->oxcf.pass == 3) {
rc_log_show(&cpi->rc_log);
}
#endif // CONFIG_RATECTRL_LOG
AV1_COMMON *cm = &cpi->common;
if (cm->current_frame.frame_number > 0) {
#if CONFIG_SPEED_STATS
if (!is_stat_generation_stage(cpi)) {
fprintf(stdout, "tx_search_count = %d\n", cpi->tx_search_count);
}
#endif // CONFIG_SPEED_STATS
#if CONFIG_COLLECT_PARTITION_STATS == 2
if (!is_stat_generation_stage(cpi)) {
av1_print_fr_partition_timing_stats(&cpi->partition_stats,
"fr_part_timing_data.csv");
}
#endif
}
#if CONFIG_AV1_TEMPORAL_DENOISING
av1_denoiser_free(&(cpi->denoiser));
#endif
if (cm->error) {
// Help detect use after free of the error detail string.
memset(cm->error->detail, 'A', sizeof(cm->error->detail) - 1);
cm->error->detail[sizeof(cm->error->detail) - 1] = '\0';
aom_free(cm->error);
}
aom_free(cpi->td.tctx);
MultiThreadInfo *const mt_info = &cpi->mt_info;
#if CONFIG_MULTITHREAD
pthread_mutex_t *const enc_row_mt_mutex_ = mt_info->enc_row_mt.mutex_;
pthread_cond_t *const enc_row_mt_cond_ = mt_info->enc_row_mt.cond_;
pthread_mutex_t *const gm_mt_mutex_ = mt_info->gm_sync.mutex_;
pthread_mutex_t *const tpl_error_mutex_ = mt_info->tpl_row_mt.mutex_;
pthread_mutex_t *const pack_bs_mt_mutex_ = mt_info->pack_bs_sync.mutex_;
if (enc_row_mt_mutex_ != NULL) {
pthread_mutex_destroy(enc_row_mt_mutex_);
aom_free(enc_row_mt_mutex_);
}
if (enc_row_mt_cond_ != NULL) {
pthread_cond_destroy(enc_row_mt_cond_);
aom_free(enc_row_mt_cond_);
}
if (gm_mt_mutex_ != NULL) {
pthread_mutex_destroy(gm_mt_mutex_);
aom_free(gm_mt_mutex_);
}
if (tpl_error_mutex_ != NULL) {
pthread_mutex_destroy(tpl_error_mutex_);
aom_free(tpl_error_mutex_);
}
if (pack_bs_mt_mutex_ != NULL) {
pthread_mutex_destroy(pack_bs_mt_mutex_);
aom_free(pack_bs_mt_mutex_);
}
#endif
av1_row_mt_mem_dealloc(cpi);
if (mt_info->num_workers > 1) {
av1_row_mt_sync_mem_dealloc(&cpi->ppi->intra_row_mt_sync);
av1_loop_filter_dealloc(&mt_info->lf_row_sync);
av1_cdef_mt_dealloc(&mt_info->cdef_sync);
#if !CONFIG_REALTIME_ONLY
av1_loop_restoration_dealloc(&mt_info->lr_row_sync);
av1_tf_mt_dealloc(&mt_info->tf_sync);
#endif
}
#if CONFIG_THREE_PASS
av1_free_thirdpass_ctx(cpi->third_pass_ctx);
av1_close_second_pass_log(cpi);
#endif
dealloc_compressor_data(cpi);
av1_ext_part_delete(&cpi->ext_part_controller);
av1_remove_common(cm);
aom_free(cpi);
#ifdef OUTPUT_YUV_REC
fclose(yuv_rec_file);
#endif
#ifdef OUTPUT_YUV_DENOISED
fclose(yuv_denoised_file);
#endif
}
static void generate_psnr_packet(AV1_COMP *cpi) {
struct aom_codec_cx_pkt pkt;
int i;
PSNR_STATS psnr;
#if CONFIG_AV1_HIGHBITDEPTH
const uint32_t in_bit_depth = cpi->oxcf.input_cfg.input_bit_depth;
const uint32_t bit_depth = cpi->td.mb.e_mbd.bd;
aom_calc_highbd_psnr(cpi->source, &cpi->common.cur_frame->buf, &psnr,
bit_depth, in_bit_depth);
#else
aom_calc_psnr(cpi->source, &cpi->common.cur_frame->buf, &psnr);
#endif
for (i = 0; i < 4; ++i) {
pkt.data.psnr.samples[i] = psnr.samples[i];
pkt.data.psnr.sse[i] = psnr.sse[i];
pkt.data.psnr.psnr[i] = psnr.psnr[i];
}
#if CONFIG_AV1_HIGHBITDEPTH
if ((cpi->source->flags & YV12_FLAG_HIGHBITDEPTH) &&
(in_bit_depth < bit_depth)) {
for (i = 0; i < 4; ++i) {
pkt.data.psnr.samples_hbd[i] = psnr.samples_hbd[i];
pkt.data.psnr.sse_hbd[i] = psnr.sse_hbd[i];
pkt.data.psnr.psnr_hbd[i] = psnr.psnr_hbd[i];
}
}
#endif
pkt.kind = AOM_CODEC_PSNR_PKT;
aom_codec_pkt_list_add(cpi->ppi->output_pkt_list, &pkt);
}
int av1_use_as_reference(int *ext_ref_frame_flags, int ref_frame_flags) {
if (ref_frame_flags > ((1 << INTER_REFS_PER_FRAME) - 1)) return -1;
*ext_ref_frame_flags = ref_frame_flags;
return 0;
}
int av1_copy_reference_enc(AV1_COMP *cpi, int idx, YV12_BUFFER_CONFIG *sd) {
AV1_COMMON *const cm = &cpi->common;
const int num_planes = av1_num_planes(cm);
YV12_BUFFER_CONFIG *cfg = get_ref_frame(cm, idx);
if (cfg) {
aom_yv12_copy_frame(cfg, sd, num_planes);
return 0;
} else {
return -1;
}
}
int av1_set_reference_enc(AV1_COMP *cpi, int idx, YV12_BUFFER_CONFIG *sd) {
AV1_COMMON *const cm = &cpi->common;
const int num_planes = av1_num_planes(cm);
YV12_BUFFER_CONFIG *cfg = get_ref_frame(cm, idx);
if (cfg) {
aom_yv12_copy_frame(sd, cfg, num_planes);
return 0;
} else {
return -1;
}
}
#ifdef OUTPUT_YUV_REC
static void aom_write_one_yuv_frame(AV1_COMMON *cm, YV12_BUFFER_CONFIG *s) {
uint8_t *src = s->y_buffer;
int h = cm->height;
if (yuv_rec_file == NULL) return;
if (s->flags & YV12_FLAG_HIGHBITDEPTH) {
uint16_t *src16 = CONVERT_TO_SHORTPTR(s->y_buffer);
do {
fwrite(src16, s->y_width, 2, yuv_rec_file);
src16 += s->y_stride;
} while (--h);
src16 = CONVERT_TO_SHORTPTR(s->u_buffer);
h = s->uv_height;
do {
fwrite(src16, s->uv_width, 2, yuv_rec_file);
src16 += s->uv_stride;
} while (--h);
src16 = CONVERT_TO_SHORTPTR(s->v_buffer);
h = s->uv_height;
do {
fwrite(src16, s->uv_width, 2, yuv_rec_file);
src16 += s->uv_stride;
} while (--h);
fflush(yuv_rec_file);
return;
}
do {
fwrite(src, s->y_width, 1, yuv_rec_file);
src += s->y_stride;
} while (--h);
src = s->u_buffer;
h = s->uv_height;
do {
fwrite(src, s->uv_width, 1, yuv_rec_file);
src += s->uv_stride;
} while (--h);
src = s->v_buffer;
h = s->uv_height;
do {
fwrite(src, s->uv_width, 1, yuv_rec_file);
src += s->uv_stride;
} while (--h);
fflush(yuv_rec_file);
}
#endif // OUTPUT_YUV_REC
void av1_set_mv_search_params(AV1_COMP *cpi) {
const AV1_COMMON *const cm = &cpi->common;
MotionVectorSearchParams *const mv_search_params = &cpi->mv_search_params;
const int max_mv_def = AOMMAX(cm->width, cm->height);
// Default based on max resolution.
mv_search_params->mv_step_param = av1_init_search_range(max_mv_def);
if (cpi->sf.mv_sf.auto_mv_step_size) {
if (frame_is_intra_only(cm)) {
// Initialize max_mv_magnitude for use in the first INTER frame
// after a key/intra-only frame.
mv_search_params->max_mv_magnitude = max_mv_def;
} else {
// Use adaptive mv steps based on previous frame stats for show frames and
// internal arfs.
FRAME_UPDATE_TYPE cur_update_type =
cpi->ppi->gf_group.update_type[cpi->gf_frame_index];
int use_auto_mv_step =
(cm->show_frame || cur_update_type == INTNL_ARF_UPDATE) &&
mv_search_params->max_mv_magnitude != -1 &&
cpi->sf.mv_sf.auto_mv_step_size >= 2;
if (use_auto_mv_step) {
// Allow mv_steps to correspond to twice the max mv magnitude found
// in the previous frame, capped by the default max_mv_magnitude based
// on resolution.
mv_search_params->mv_step_param = av1_init_search_range(
AOMMIN(max_mv_def, 2 * mv_search_params->max_mv_magnitude));
}
// Reset max_mv_magnitude based on update flag.
if (cpi->do_frame_data_update) mv_search_params->max_mv_magnitude = -1;
}
}
}
// Estimate if the source frame is screen content, based on the portion of
// blocks that have few luma colors.
static void estimate_screen_content(AV1_COMP *cpi, FeatureFlags *features) {
const AV1_COMMON *const cm = &cpi->common;
const MACROBLOCKD *const xd = &cpi->td.mb.e_mbd;
const uint8_t *src = cpi->unfiltered_source->y_buffer;
assert(src != NULL);
const int use_hbd = cpi->unfiltered_source->flags & YV12_FLAG_HIGHBITDEPTH;
const int stride = cpi->unfiltered_source->y_stride;
const int width = cpi->unfiltered_source->y_width;
const int height = cpi->unfiltered_source->y_height;
const int64_t area = (int64_t)width * height;
const int bd = cm->seq_params->bit_depth;
const int kBlockWidth = 16;
const int kBlockHeight = 16;
const int kBlockArea = kBlockWidth * kBlockHeight;
// These threshold values are selected experimentally.
const int kColorThresh = 4;
const unsigned int kVarThresh = 0;
// Counts of blocks with no more than kColorThresh colors.
int64_t counts_1 = 0;
// Counts of blocks with no more than kColorThresh colors and variance larger
// than kVarThresh.
int64_t counts_2 = 0;
for (int r = 0; r + kBlockHeight <= height; r += kBlockHeight) {
for (int c = 0; c + kBlockWidth <= width; c += kBlockWidth) {
int count_buf[1 << 8]; // Maximum (1 << 8) bins for hbd path.
const uint8_t *const this_src = src + r * stride + c;
int n_colors;
if (use_hbd) {
av1_count_colors_highbd(this_src, stride, /*rows=*/kBlockHeight,
/*cols=*/kBlockWidth, bd, NULL, count_buf,
&n_colors, NULL);
} else {
av1_count_colors(this_src, stride, /*rows=*/kBlockHeight,
/*cols=*/kBlockWidth, count_buf, &n_colors);
}
if (n_colors > 1 && n_colors <= kColorThresh) {
++counts_1;
struct buf_2d buf;
buf.stride = stride;
buf.buf = (uint8_t *)this_src;
const unsigned int var = av1_get_perpixel_variance(
cpi, xd, &buf, BLOCK_16X16, AOM_PLANE_Y, use_hbd);
if (var > kVarThresh) ++counts_2;
}
}
}
// The threshold values are selected experimentally.
features->allow_screen_content_tools = counts_1 * kBlockArea * 10 > area;
// IntraBC would force loop filters off, so we use more strict rules that also
// requires that the block has high variance.
features->allow_intrabc =
features->allow_screen_content_tools && counts_2 * kBlockArea * 12 > area;
cpi->use_screen_content_tools = features->allow_screen_content_tools;
cpi->is_screen_content_type =
features->allow_intrabc || (counts_1 * kBlockArea * 10 > area * 4 &&
counts_2 * kBlockArea * 30 > area);
}
// Macro that helps debug the screen content mode 2 mechanism
// #define OUTPUT_SCR_DET_MODE2_STATS
/*!\brief Helper function that finds the dominant value of a block.
*
* This function builds a histogram of all 256 possible (8 bit) values, and
* returns with the value with the greatest count (i.e. the dominant value).
*/
uint8_t av1_find_dominant_value(const uint8_t *src, int stride, int rows,
int cols) {
uint32_t value_count[1 << 8] = { 0 }; // Maximum (1 << 8) value levels.
uint32_t dominant_value_count = 0;
uint8_t dominant_value = 0;
for (int r = 0; r < rows; ++r) {
for (int c = 0; c < cols; ++c) {
const uint8_t value = src[r * (ptrdiff_t)stride + c];
value_count[value]++;
if (value_count[value] > dominant_value_count) {
dominant_value = value;
dominant_value_count = value_count[value];
}
}
}
return dominant_value;
}
/*!\brief Helper function that performs one round of image dilation on a block.
*
* This function finds the dominant value (i.e. the value that appears most
* often within a block), then performs a round of dilation by "extending" all
* occurrences of the dominant value outwards in all 8 directions (4 sides + 4
* corners).
*
* For a visual example, let:
* - D: the dominant value
* - [a-p]: different non-dominant values (usually anti-aliased pixels)
* - .: the most common non-dominant value
*
* Before dilation: After dilation:
* . . a b D c d . . . . D D D D D . .
* . e f D D D g h . D D D D D D D D D
* . D D D D D D D . D D D D D D D D D
* . D D D D D D D . D D D D D D D D D
* . i j D D D k l . D D D D D D D D D
* . . m n D o p . . . . D D D D D . .
*/
void av1_dilate_block(const uint8_t *src, int src_stride, uint8_t *dilated,
int dilated_stride, int rows, int cols) {
uint8_t dominant_value = av1_find_dominant_value(src, src_stride, rows, cols);
for (int r = 0; r < rows; ++r) {
for (int c = 0; c < cols; ++c) {
const uint8_t value = src[r * (ptrdiff_t)src_stride + c];
dilated[r * (ptrdiff_t)dilated_stride + c] = value;
}
}
for (int r = 0; r < rows; ++r) {
for (int c = 0; c < cols; ++c) {
const uint8_t value = src[r * (ptrdiff_t)src_stride + c];
if (value == dominant_value) {
// Dilate up
if (r != 0) {
dilated[(r - 1) * (ptrdiff_t)dilated_stride + c] = value;
}
// Dilate down
if (r != rows - 1) {
dilated[(r + 1) * (ptrdiff_t)dilated_stride + c] = value;
}
// Dilate left
if (c != 0) {
dilated[r * (ptrdiff_t)dilated_stride + (c - 1)] = value;
}
// Dilate right
if (c != cols - 1) {
dilated[r * (ptrdiff_t)dilated_stride + (c + 1)] = value;
}
// Dilate upper-left corner
if (r != 0 && c != 0) {
dilated[(r - 1) * (ptrdiff_t)dilated_stride + (c - 1)] = value;
}
// Dilate upper-right corner
if (r != 0 && c != cols - 1) {
dilated[(r - 1) * (ptrdiff_t)dilated_stride + (c + 1)] = value;
}
// Dilate lower-left corner
if (r != rows - 1 && c != 0) {
dilated[(r + 1) * (ptrdiff_t)dilated_stride + (c - 1)] = value;
}
// Dilate lower-right corner
if (r != rows - 1 && c != cols - 1) {
dilated[(r + 1) * (ptrdiff_t)dilated_stride + (c + 1)] = value;
}
}
}
}
}
/*!\brief Estimates if the source frame is a candidate to enable palette mode
* and intra block copy, with an accurate detection of anti-aliased text and
* graphics.
*
* Screen content detection is done by dividing frame's luma plane (Y) into
* small blocks, counting how many unique colors each block contains and
* their per-pixel variance, and classifying these blocks into three main
* categories:
* 1. Palettizable blocks, low variance (can use palette mode)
* 2. Palettizable blocks, high variance (can use palette mode and IntraBC)
* 3. Non palettizable, photo-like blocks (can neither use palette mode nor
* IntraBC)
* Finally, this function decides whether the frame could benefit from
* enabling palette mode with or without IntraBC, based on the ratio of the
* three categories mentioned above.
*/
static void estimate_screen_content_antialiasing_aware(AV1_COMP *cpi,
FeatureFlags *features) {
enum {
kBlockWidth = 16,
kBlockHeight = 16,
kBlockArea = kBlockWidth * kBlockHeight
};
const bool fast_detection =
cpi->sf.hl_sf.screen_detection_mode2_fast_detection;
const AV1_COMMON *const cm = &cpi->common;
const MACROBLOCKD *const xd = &cpi->td.mb.e_mbd;
const uint8_t *src = cpi->unfiltered_source->y_buffer;
assert(src != NULL);
const int use_hbd = cpi->unfiltered_source->flags & YV12_FLAG_HIGHBITDEPTH;
const int stride = cpi->unfiltered_source->y_stride;
const int width = cpi->unfiltered_source->y_width;
const int height = cpi->unfiltered_source->y_height;
const int64_t area = (int64_t)width * height;
const int bd = cm->seq_params->bit_depth;
// Holds the down-converted block to 8 bit (if source is HBD)
uint8_t downconv_blk[kBlockArea];
// Holds the block after a round of dilation
uint8_t dilated_blk[kBlockArea];
// These threshold values are selected experimentally
// Detects text and glyphs without anti-aliasing, and graphics with a 4-color
// palette
const int kSimpleColorThresh = 4;
// Detects potential text and glyphs with anti-aliasing, and graphics with a
// more extended color palette
const int kComplexInitialColorThresh = 40;
// Detects text and glyphs with anti-aliasing, and graphics with a more
// extended color palette
const int kComplexFinalColorThresh = 6;
// Threshold used to classify low-variance and high-variance blocks
const int kVarThresh = 5;
// Count of blocks that are candidates for using palette mode
int64_t count_palette = 0;
// Count of blocks that are candidates for using IntraBC
int64_t count_intrabc = 0;
// Count of "photo-like" blocks (i.e. can't use palette mode or IntraBC)
int64_t count_photo = 0;
#ifdef OUTPUT_SCR_DET_MODE2_STATS
FILE *stats_file;
stats_file = fopen("scrdetm2.stt", "a");
fprintf(stats_file, "\n");
fprintf(stats_file, "Screen detection mode 2 image map legend\n");
if (fast_detection) {
fprintf(stats_file, "Fast detection enabled\n");
}
fprintf(stats_file,
"-------------------------------------------------------\n");
fprintf(stats_file,
"S: simple block, high var C: complex block, high var\n");
fprintf(stats_file,
"-: simple block, low var =: complex block, low var \n");
fprintf(stats_file,
"x: photo-like block .: non-palettizable block \n");
fprintf(stats_file,
"(whitespace): solid block \n");
fprintf(stats_file,
"-------------------------------------------------------\n");
#endif
// Skip every other block and weigh each block twice as much when performing
// fast detection
const int multiplier = fast_detection ? 2 : 1;
for (int r = 0; r + kBlockHeight <= height; r += kBlockHeight) {
// Alternate skipping in a "checkerboard" pattern when performing fast
// detection
const int initial_col =
(fast_detection && (r / kBlockHeight) % 2) ? kBlockWidth : 0;
for (int c = initial_col; c + kBlockWidth <= width;
c += kBlockWidth * multiplier) {
const uint8_t *blk_src = src + r * (ptrdiff_t)stride + c;
const uint8_t *blk = blk_src;
int blk_stride = stride;
// Down-convert pixels to 8-bit domain if source is HBD
if (use_hbd) {
const uint16_t *blk_src_hbd = CONVERT_TO_SHORTPTR(blk_src);
for (int blk_r = 0; blk_r < kBlockHeight; ++blk_r) {
for (int blk_c = 0; blk_c < kBlockWidth; ++blk_c) {
const int downconv_val =
(blk_src_hbd[blk_r * (ptrdiff_t)stride + blk_c]) >> (bd - 8);
// Ensure down-converted value is 8-bit
assert(downconv_val < (1 << 8));
downconv_blk[blk_r * (ptrdiff_t)kBlockWidth + blk_c] = downconv_val;
}
}
// Switch block source and stride to down-converted buffer and its width
blk = downconv_blk;
blk_stride = kBlockWidth;
}
// First, find if the block could be palettized
int number_of_colors;
bool under_threshold = av1_count_colors_with_threshold(
blk, blk_stride, /*rows=*/kBlockHeight,
/*cols=*/kBlockWidth, kComplexInitialColorThresh, &number_of_colors);
if (number_of_colors > 1 && under_threshold) {
struct buf_2d buf;
buf.stride = stride;
buf.buf = (uint8_t *)blk_src;
if (number_of_colors <= kSimpleColorThresh) {
// Simple block detected, add to block count with no further
// processing required
++count_palette;
// Variance always comes from the source image with no down-conversion
int var = av1_get_perpixel_variance(cpi, xd, &buf, BLOCK_16X16,
AOM_PLANE_Y, use_hbd);
if (var > kVarThresh) {
++count_intrabc;
#ifdef OUTPUT_SCR_DET_MODE2_STATS
fprintf(stats_file, "S");
} else {
fprintf(stats_file, "-");
#endif
}
} else {
// Complex block detected, try to find if it's palettizable
// Dilate block with dominant color, to exclude anti-aliased pixels
// from final palette count
av1_dilate_block(blk, blk_stride, dilated_blk, kBlockWidth,
/*rows=*/kBlockHeight, /*cols=*/kBlockWidth);
under_threshold = av1_count_colors_with_threshold(
dilated_blk, kBlockWidth, /*rows=*/kBlockHeight,
/*cols=*/kBlockWidth, kComplexFinalColorThresh,
&number_of_colors);
if (under_threshold) {
// Variance always comes from the source image with no
// down-conversion
int var = av1_get_perpixel_variance(cpi, xd, &buf, BLOCK_16X16,
AOM_PLANE_Y, use_hbd);
if (var > kVarThresh) {
++count_palette;
++count_intrabc;
#ifdef OUTPUT_SCR_DET_MODE2_STATS
fprintf(stats_file, "C");
} else {
fprintf(stats_file, "=");
#endif
}
#ifdef OUTPUT_SCR_DET_MODE2_STATS
} else {
fprintf(stats_file, ".");
#endif
}
}
} else {
if (number_of_colors > kComplexInitialColorThresh) {
++count_photo;
#ifdef OUTPUT_SCR_DET_MODE2_STATS
fprintf(stats_file, "x");
} else {
fprintf(stats_file, " "); // Solid block (1 color)
#endif
}
}
}
#ifdef OUTPUT_SCR_DET_MODE2_STATS
fprintf(stats_file, "\n");
#endif
}
// Normalize counts to account for the blocks that were skipped
if (fast_detection) {
count_photo *= multiplier;
count_palette *= multiplier;
count_intrabc *= multiplier;
}
// The threshold values are selected experimentally.
// Penalize presence of photo-like blocks (1/16th the weight of a palettizable
// block)
features->allow_screen_content_tools =
((count_palette - count_photo / 16) * kBlockArea * 10 > area);
// IntraBC would force loop filters off, so we use more strict rules that also
// requires that the block has high variance.
// Penalize presence of photo-like blocks (1/16th the weight of a palettizable
// block)
features->allow_intrabc =
features->allow_screen_content_tools &&
((count_intrabc - count_photo / 16) * kBlockArea * 12 > area);
cpi->use_screen_content_tools = features->allow_screen_content_tools;
cpi->is_screen_content_type =
features->allow_intrabc || (count_palette * kBlockArea * 15 > area * 4 &&
count_intrabc * kBlockArea * 30 > area);
#ifdef OUTPUT_SCR_DET_MODE2_STATS
fprintf(stats_file,
"block count palette: %" PRId64 ", count intrabc: %" PRId64
", count photo: %" PRId64 ", total: %d\n",
count_palette, count_intrabc, count_photo,
(int)(ceil(width / kBlockWidth) * ceil(height / kBlockHeight)));
fprintf(stats_file, "sc palette value: %" PRId64 ", threshold %" PRId64 "\n",
(count_palette - count_photo / 16) * kBlockArea * 10, area);
fprintf(stats_file, "sc ibc value: %" PRId64 ", threshold %" PRId64 "\n",
(count_intrabc - count_photo / 16) * kBlockArea * 12, area);
fprintf(stats_file, "allow sct: %d, allow ibc: %d\n",
features->allow_screen_content_tools, features->allow_intrabc);
#endif
}
void av1_set_screen_content_options(AV1_COMP *cpi, FeatureFlags *features) {
const AV1_COMMON *const cm = &cpi->common;
if (cm->seq_params->force_screen_content_tools != 2) {
features->allow_screen_content_tools = features->allow_intrabc =
cm->seq_params->force_screen_content_tools;
return;
}
if (cpi->oxcf.tune_cfg.content == AOM_CONTENT_SCREEN) {
features->allow_screen_content_tools = 1;
features->allow_intrabc = cpi->oxcf.mode == REALTIME ? 0 : 1;
cpi->is_screen_content_type = 1;
cpi->use_screen_content_tools = 1;
return;
}
if (cpi->oxcf.mode == REALTIME) {
features->allow_screen_content_tools = features->allow_intrabc = 0;
return;
}
// Screen content tools are not evaluated in non-RD encoding mode unless
// content type is not set explicitly, i.e., when
// cpi->oxcf.tune_cfg.content != AOM_CONTENT_SCREEN, use_nonrd_pick_mode = 1
// and hybrid_intra_pickmode = 0. Hence, screen content detection is
// disabled.
if (cpi->sf.rt_sf.use_nonrd_pick_mode &&
!cpi->sf.rt_sf.hybrid_intra_pickmode) {
features->allow_screen_content_tools = features->allow_intrabc = 0;
return;
}
if (cpi->oxcf.algo_cfg.screen_detection_mode ==
AOM_SCREEN_DETECTION_ANTIALIASING_AWARE) {
estimate_screen_content_antialiasing_aware(cpi, features);
} else {
estimate_screen_content(cpi, features);
}
}
static void init_motion_estimation(AV1_COMP *cpi) {
AV1_COMMON *const cm = &cpi->common;
MotionVectorSearchParams *const mv_search_params = &cpi->mv_search_params;
const int aligned_width = (cm->width + 7) & ~7;
const int y_stride =
aom_calc_y_stride(aligned_width, cpi->oxcf.border_in_pixels);
const int y_stride_src = ((cpi->oxcf.frm_dim_cfg.width != cm->width ||
cpi->oxcf.frm_dim_cfg.height != cm->height) ||
av1_superres_scaled(cm))
? y_stride
: cpi->ppi->lookahead->buf->img.y_stride;
int fpf_y_stride =
cm->cur_frame != NULL ? cm->cur_frame->buf.y_stride : y_stride;
// Update if search_site_cfg is uninitialized or the current frame has a new
// stride
const int should_update =
!mv_search_params->search_site_cfg[SS_CFG_SRC][DIAMOND].stride ||
!mv_search_params->search_site_cfg[SS_CFG_LOOKAHEAD][DIAMOND].stride ||
(y_stride !=
mv_search_params->search_site_cfg[SS_CFG_SRC][DIAMOND].stride);
if (!should_update) {
return;
}
// Initialization of search_site_cfg for NUM_DISTINCT_SEARCH_METHODS.
for (SEARCH_METHODS i = DIAMOND; i < NUM_DISTINCT_SEARCH_METHODS; i++) {
const int level = ((i == NSTEP_8PT) || (i == CLAMPED_DIAMOND)) ? 1 : 0;
av1_init_motion_compensation[i](
&mv_search_params->search_site_cfg[SS_CFG_SRC][i], y_stride, level);
av1_init_motion_compensation[i](
&mv_search_params->search_site_cfg[SS_CFG_LOOKAHEAD][i], y_stride_src,
level);
}
// First pass search site config initialization.
av1_init_motion_fpf(&mv_search_params->search_site_cfg[SS_CFG_FPF][DIAMOND],
fpf_y_stride);
for (SEARCH_METHODS i = NSTEP; i < NUM_DISTINCT_SEARCH_METHODS; i++) {
memcpy(&mv_search_params->search_site_cfg[SS_CFG_FPF][i],
&mv_search_params->search_site_cfg[SS_CFG_FPF][DIAMOND],
sizeof(search_site_config));
}
}
static void init_ref_frame_bufs(AV1_COMP *cpi) {
AV1_COMMON *const cm = &cpi->common;
int i;
if (cm->cur_frame) {
cm->cur_frame->ref_count--;
cm->cur_frame = NULL;
}
for (i = 0; i < REF_FRAMES; ++i) {
if (cm->ref_frame_map[i]) {
cm->ref_frame_map[i]->ref_count--;
cm->ref_frame_map[i] = NULL;
}
}
#ifndef NDEBUG
BufferPool *const pool = cm->buffer_pool;
for (i = 0; i < pool->num_frame_bufs; ++i) {
assert(pool->frame_bufs[i].ref_count == 0);
}
#endif
}
// TODO(chengchen): consider renaming this function as it is necessary
// for the encoder to setup critical parameters, and it does not
// deal with initial width any longer.
aom_codec_err_t av1_check_initial_width(AV1_COMP *cpi, int use_highbitdepth,
int subsampling_x, int subsampling_y) {
AV1_COMMON *const cm = &cpi->common;
SequenceHeader *const seq_params = cm->seq_params;
if (!cpi->frame_size_related_setup_done ||
seq_params->use_highbitdepth != use_highbitdepth ||
seq_params->subsampling_x != subsampling_x ||
seq_params->subsampling_y != subsampling_y) {
seq_params->subsampling_x = subsampling_x;
seq_params->subsampling_y = subsampling_y;
seq_params->use_highbitdepth = use_highbitdepth;
av1_set_speed_features_framesize_independent(cpi, cpi->oxcf.speed);
av1_set_speed_features_framesize_dependent(cpi, cpi->oxcf.speed);
if (!is_stat_generation_stage(cpi)) {
#if !CONFIG_REALTIME_ONLY
if (!av1_tf_info_alloc(&cpi->ppi->tf_info, cpi))
return AOM_CODEC_MEM_ERROR;
#endif // !CONFIG_REALTIME_ONLY
}
init_ref_frame_bufs(cpi);
init_motion_estimation(cpi); // TODO(agrange) This can be removed.
cpi->initial_mbs = cm->mi_params.MBs;
cpi->frame_size_related_setup_done = true;
}
return AOM_CODEC_OK;
}
#if CONFIG_AV1_TEMPORAL_DENOISING
static void setup_denoiser_buffer(AV1_COMP *cpi) {
AV1_COMMON *const cm = &cpi->common;
if (cpi->oxcf.noise_sensitivity > 0 &&
!cpi->denoiser.frame_buffer_initialized) {
if (av1_denoiser_alloc(
cm, &cpi->svc, &cpi->denoiser, cpi->ppi->use_svc,
cpi->oxcf.noise_sensitivity, cm->width, cm->height,
cm->seq_params->subsampling_x, cm->seq_params->subsampling_y,
cm->seq_params->use_highbitdepth, AOM_BORDER_IN_PIXELS))
aom_internal_error(cm->error, AOM_CODEC_MEM_ERROR,
"Failed to allocate denoiser");
}
}
#endif
// Returns 1 if the assigned width or height was <= 0.
static int set_size_literal(AV1_COMP *cpi, int width, int height) {
AV1_COMMON *cm = &cpi->common;
aom_codec_err_t err = av1_check_initial_width(
cpi, cm->seq_params->use_highbitdepth, cm->seq_params->subsampling_x,
cm->seq_params->subsampling_y);
if (err != AOM_CODEC_OK) {
aom_internal_error(cm->error, err, "av1_check_initial_width() failed");
}
if (width <= 0 || height <= 0) return 1;
cm->width = width;
cm->height = height;
#if CONFIG_AV1_TEMPORAL_DENOISING
setup_denoiser_buffer(cpi);
#endif
if (cm->width > cpi->data_alloc_width ||
cm->height > cpi->data_alloc_height) {
av1_free_context_buffers(cm);
av1_free_shared_coeff_buffer(&cpi->td.shared_coeff_buf);
av1_free_sms_tree(&cpi->td);
av1_free_pmc(cpi->td.firstpass_ctx, av1_num_planes(cm));
cpi->td.firstpass_ctx = NULL;
alloc_compressor_data(cpi);
realloc_segmentation_maps(cpi);
cpi->data_alloc_width = cm->width;
cpi->data_alloc_height = cm->height;
cpi->frame_size_related_setup_done = false;
}
alloc_mb_mode_info_buffers(cpi);
av1_update_frame_size(cpi);
return 0;
}
void av1_set_frame_size(AV1_COMP *cpi, int width, int height) {
AV1_COMMON *const cm = &cpi->common;
const SequenceHeader *const seq_params = cm->seq_params;
const int num_planes = av1_num_planes(cm);
MACROBLOCKD *const xd = &cpi->td.mb.e_mbd;
int ref_frame;
if (width != cm->width || height != cm->height) {
// There has been a change in the encoded frame size
set_size_literal(cpi, width, height);
// Recalculate 'all_lossless' in case super-resolution was (un)selected.
cm->features.all_lossless =
cm->features.coded_lossless && !av1_superres_scaled(cm);
av1_noise_estimate_init(&cpi->noise_estimate, cm->width, cm->height);
#if CONFIG_AV1_TEMPORAL_DENOISING
// Reset the denoiser on the resized frame.
if (cpi->oxcf.noise_sensitivity > 0) {
av1_denoiser_free(&(cpi->denoiser));
setup_denoiser_buffer(cpi);
}
#endif
}
if (is_stat_consumption_stage(cpi)) {
av1_set_target_rate(cpi, cm->width, cm->height);
}
alloc_frame_mvs(cm, cm->cur_frame);
// Allocate above context buffers
CommonContexts *const above_contexts = &cm->above_contexts;
if (above_contexts->num_planes < av1_num_planes(cm) ||
above_contexts->num_mi_cols < cm->mi_params.mi_cols ||
above_contexts->num_tile_rows < cm->tiles.rows) {
av1_free_above_context_buffers(above_contexts);
if (av1_alloc_above_context_buffers(above_contexts, cm->tiles.rows,
cm->mi_params.mi_cols,
av1_num_planes(cm)))
aom_internal_error(cm->error, AOM_CODEC_MEM_ERROR,
"Failed to allocate context buffers");
}
AV1EncoderConfig *oxcf = &cpi->oxcf;
oxcf->border_in_pixels = av1_get_enc_border_size(
av1_is_resize_needed(oxcf), oxcf->kf_cfg.key_freq_max == 0,
cm->seq_params->sb_size);
// Reset the frame pointers to the current frame size.
if (aom_realloc_frame_buffer(
&cm->cur_frame->buf, cm->width, cm->height, seq_params->subsampling_x,
seq_params->subsampling_y, seq_params->use_highbitdepth,
cpi->oxcf.border_in_pixels, cm->features.byte_alignment, NULL, NULL,
NULL, cpi->alloc_pyramid, 0))
aom_internal_error(cm->error, AOM_CODEC_MEM_ERROR,
"Failed to allocate frame buffer");
if (!is_stat_generation_stage(cpi)) av1_init_cdef_worker(cpi);
#if !CONFIG_REALTIME_ONLY
if (is_restoration_used(cm)) {
for (int i = 0; i < num_planes; ++i)
cm->rst_info[i].frame_restoration_type = RESTORE_NONE;
const bool is_sgr_enabled = !cpi->sf.lpf_sf.disable_sgr_filter;
av1_alloc_restoration_buffers(cm, is_sgr_enabled);
// Store the allocated restoration buffers in MT object.
if (cpi->ppi->p_mt_info.num_workers > 1) {
av1_init_lr_mt_buffers(cpi);
}
}
#endif
init_motion_estimation(cpi);
int has_valid_ref_frame = 0;
for (ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; ++ref_frame) {
RefCntBuffer *const buf = get_ref_frame_buf(cm, ref_frame);
if (buf != NULL) {
struct scale_factors *sf = get_ref_scale_factors(cm, ref_frame);
av1_setup_scale_factors_for_frame(sf, buf->buf.y_crop_width,
buf->buf.y_crop_height, cm->width,
cm->height);
has_valid_ref_frame |= av1_is_valid_scale(sf);
if (av1_is_scaled(sf)) aom_extend_frame_borders(&buf->buf, num_planes);
}
}
// For 1 pass CBR mode: we can skip this check for spatial enhancement
// layer if the target_bandwidth is zero, since it will be dropped.
const bool dropped_frame =
has_no_stats_stage(cpi) && cpi->oxcf.rc_cfg.mode == AOM_CBR &&
cpi->svc.spatial_layer_id > 0 && cpi->oxcf.rc_cfg.target_bandwidth == 0;
if (!frame_is_intra_only(cm) && !has_valid_ref_frame && !dropped_frame) {
aom_internal_error(
cm->error, AOM_CODEC_CORRUPT_FRAME,
"Can't find at least one reference frame with valid size");
}
av1_setup_scale_factors_for_frame(&cm->sf_identity, cm->width, cm->height,
cm->width, cm->height);
set_ref_ptrs(cm, xd, LAST_FRAME, LAST_FRAME);
}
static inline int extend_borders_mt(const AV1_COMP *cpi,
MULTI_THREADED_MODULES stage, int plane) {
const AV1_COMMON *const cm = &cpi->common;
if (cpi->mt_info.num_mod_workers[stage] < 2) return 0;
switch (stage) {
// TODO(deepa.kg@ittiam.com): When cdef and loop-restoration are disabled,
// multi-thread frame border extension along with loop filter frame.
// As loop-filtering of a superblock row modifies the pixels of the
// above superblock row, border extension requires that loop filtering
// of the current and above superblock row is complete.
case MOD_LPF: return 0;
case MOD_CDEF:
return is_cdef_used(cm) && !cpi->ppi->rtc_ref.non_reference_frame &&
!is_restoration_used(cm) && !av1_superres_scaled(cm);
case MOD_LR:
return is_restoration_used(cm) &&
(cm->rst_info[plane].frame_restoration_type != RESTORE_NONE);
default: assert(0);
}
return 0;
}
/*!\brief Select and apply cdef filters and switchable restoration filters
*
* \ingroup high_level_algo
*/
static void cdef_restoration_frame(AV1_COMP *cpi, AV1_COMMON *cm,
MACROBLOCKD *xd, int use_restoration,
int use_cdef,
unsigned int skip_apply_postproc_filters) {
#if !CONFIG_REALTIME_ONLY
if (use_restoration)
av1_loop_restoration_save_boundary_lines(&cm->cur_frame->buf, cm, 0);
#else
(void)use_restoration;
#endif
if (use_cdef) {
#if CONFIG_COLLECT_COMPONENT_TIMING
start_timing(cpi, cdef_time);
#endif
const int num_workers = cpi->mt_info.num_mod_workers[MOD_CDEF];
// Find CDEF parameters
av1_cdef_search(cpi);
// Apply the filter
if ((skip_apply_postproc_filters & SKIP_APPLY_CDEF) == 0) {
assert(!cpi->ppi->rtc_ref.non_reference_frame);
if (num_workers > 1) {
// Extension of frame borders is multi-threaded along with cdef.
const int do_extend_border =
extend_borders_mt(cpi, MOD_CDEF, /* plane */ 0);
av1_cdef_frame_mt(cm, xd, cpi->mt_info.cdef_worker,
cpi->mt_info.workers, &cpi->mt_info.cdef_sync,
num_workers, av1_cdef_init_fb_row_mt,
do_extend_border);
} else {
av1_cdef_frame(&cm->cur_frame->buf, cm, xd, av1_cdef_init_fb_row);
}
}
#if CONFIG_COLLECT_COMPONENT_TIMING
end_timing(cpi, cdef_time);
#endif
}
const int use_superres = av1_superres_scaled(cm);
if (use_superres) {
if ((skip_apply_postproc_filters & SKIP_APPLY_SUPERRES) == 0) {
av1_superres_post_encode(cpi);
}
}
#if !CONFIG_REALTIME_ONLY
#if CONFIG_COLLECT_COMPONENT_TIMING
start_timing(cpi, loop_restoration_time);
#endif
if (use_restoration) {
MultiThreadInfo *const mt_info = &cpi->mt_info;
const int num_workers = mt_info->num_mod_workers[MOD_LR];
av1_loop_restoration_save_boundary_lines(&cm->cur_frame->buf, cm, 1);
av1_pick_filter_restoration(cpi->source, cpi);
if ((skip_apply_postproc_filters & SKIP_APPLY_RESTORATION) == 0 &&
(cm->rst_info[0].frame_restoration_type != RESTORE_NONE ||
cm->rst_info[1].frame_restoration_type != RESTORE_NONE ||
cm->rst_info[2].frame_restoration_type != RESTORE_NONE)) {
if (num_workers > 1) {
// Extension of frame borders is multi-threaded along with loop
// restoration filter.
const int do_extend_border = 1;
av1_loop_restoration_filter_frame_mt(
&cm->cur_frame->buf, cm, 0, mt_info->workers, num_workers,
&mt_info->lr_row_sync, &cpi->lr_ctxt, do_extend_border);
} else {
av1_loop_restoration_filter_frame(&cm->cur_frame->buf, cm, 0,
&cpi->lr_ctxt);
}
}
}
#if CONFIG_COLLECT_COMPONENT_TIMING
end_timing(cpi, loop_restoration_time);
#endif
#endif // !CONFIG_REALTIME_ONLY
}
static void extend_frame_borders(AV1_COMP *cpi) {
const AV1_COMMON *const cm = &cpi->common;
// TODO(debargha): Fix mv search range on encoder side
for (int plane = 0; plane < av1_num_planes(cm); ++plane) {
const bool extend_border_done = extend_borders_mt(cpi, MOD_CDEF, plane) ||
extend_borders_mt(cpi, MOD_LR, plane);
if (!extend_border_done) {
const YV12_BUFFER_CONFIG *const ybf = &cm->cur_frame->buf;
aom_extend_frame_borders_plane_row(ybf, plane, 0,
ybf->crop_heights[plane > 0]);
}
}
}
/*!\brief Select and apply deblocking filters, cdef filters, and restoration
* filters.
*
* \ingroup high_level_algo
*/
static void loopfilter_frame(AV1_COMP *cpi, AV1_COMMON *cm) {
MultiThreadInfo *const mt_info = &cpi->mt_info;
const int num_workers = mt_info->num_mod_workers[MOD_LPF];
const int num_planes = av1_num_planes(cm);
MACROBLOCKD *xd = &cpi->td.mb.e_mbd;
cpi->td.mb.rdmult = cpi->rd.RDMULT;
assert(IMPLIES(is_lossless_requested(&cpi->oxcf.rc_cfg),
cm->features.coded_lossless && cm->features.all_lossless));
const int use_loopfilter =
is_loopfilter_used(cm) && !cpi->mt_info.pipeline_lpf_mt_with_enc;
const int use_cdef = is_cdef_used(cm);
const int use_superres = av1_superres_scaled(cm);
const int use_restoration = is_restoration_used(cm);
const unsigned int skip_apply_postproc_filters =
derive_skip_apply_postproc_filters(cpi, use_loopfilter, use_cdef,
use_superres, use_restoration);
#if CONFIG_COLLECT_COMPONENT_TIMING
start_timing(cpi, loop_filter_time);
#endif
if (use_loopfilter) {
av1_pick_filter_level(cpi->source, cpi, cpi->sf.lpf_sf.lpf_pick);
struct loopfilter *lf = &cm->lf;
if ((lf->filter_level[0] || lf->filter_level[1]) &&
(skip_apply_postproc_filters & SKIP_APPLY_LOOPFILTER) == 0) {
assert(!cpi->ppi->rtc_ref.non_reference_frame);
// lpf_opt_level = 1 : Enables dual/quad loop-filtering.
// lpf_opt_level is set to 1 if transform size search depth in inter
// blocks is limited to one as quad loop filtering assumes that all the
// transform blocks within a 16x8/8x16/16x16 prediction block are of the
// same size. lpf_opt_level = 2 : Filters both chroma planes together, in
// addition to enabling dual/quad loop-filtering. This is enabled when lpf
// pick method is LPF_PICK_FROM_Q as u and v plane filter levels are
// equal.
int lpf_opt_level = get_lpf_opt_level(&cpi->sf);
av1_loop_filter_frame_mt(&cm->cur_frame->buf, cm, xd, 0, num_planes, 0,
mt_info->workers, num_workers,
&mt_info->lf_row_sync, lpf_opt_level);
}
}
#if CONFIG_COLLECT_COMPONENT_TIMING
end_timing(cpi, loop_filter_time);
#endif
cdef_restoration_frame(cpi, cm, xd, use_restoration, use_cdef,
skip_apply_postproc_filters);
}
static void update_motion_stat(AV1_COMP *const cpi) {
AV1_COMMON *const cm = &cpi->common;
const CommonModeInfoParams *const mi_params = &cm->mi_params;
RATE_CONTROL *const rc = &cpi->rc;
SVC *const svc = &cpi->svc;
const int avg_cnt_zeromv =
100 * cpi->rc.cnt_zeromv / (mi_params->mi_rows * mi_params->mi_cols);
if (!cpi->ppi->use_svc ||
(cpi->ppi->use_svc &&
!cpi->svc.layer_context[cpi->svc.temporal_layer_id].is_key_frame &&
cpi->svc.spatial_layer_id == cpi->svc.number_spatial_layers - 1)) {
rc->avg_frame_low_motion =
(rc->avg_frame_low_motion == 0)
? avg_cnt_zeromv
: (3 * rc->avg_frame_low_motion + avg_cnt_zeromv) / 4;
// For SVC: set avg_frame_low_motion (only computed on top spatial layer)
// to all lower spatial layers.
if (cpi->ppi->use_svc &&
svc->spatial_layer_id == svc->number_spatial_layers - 1) {
for (int i = 0; i < svc->number_spatial_layers - 1; ++i) {
const int layer = LAYER_IDS_TO_IDX(i, svc->temporal_layer_id,
svc->number_temporal_layers);
LAYER_CONTEXT *const lc = &svc->layer_context[layer];
RATE_CONTROL *const lrc = &lc->rc;
lrc->avg_frame_low_motion = rc->avg_frame_low_motion;
}
}
}
}
/*!\brief Encode a frame without the recode loop, usually used in one-pass
* encoding and realtime coding.
*
* \ingroup high_level_algo
*
* \param[in] cpi Top-level encoder structure
*
* \return Returns a value to indicate if the encoding is done successfully.
* \retval #AOM_CODEC_OK
* \retval #AOM_CODEC_ERROR
*/
static int encode_without_recode(AV1_COMP *cpi) {
AV1_COMMON *const cm = &cpi->common;
const QuantizationCfg *const q_cfg = &cpi->oxcf.q_cfg;
SVC *const svc = &cpi->svc;
const int resize_pending = is_frame_resize_pending(cpi);
int top_index = 0, bottom_index = 0, q = 0;
YV12_BUFFER_CONFIG *unscaled = cpi->unscaled_source;
InterpFilter filter_scaler =
cpi->ppi->use_svc ? svc->downsample_filter_type[svc->spatial_layer_id]
: EIGHTTAP_SMOOTH;
int phase_scaler = cpi->ppi->use_svc
? svc->downsample_filter_phase[svc->spatial_layer_id]
: 0;
if (cpi->rc.postencode_drop && allow_postencode_drop_rtc(cpi))
av1_save_all_coding_context(cpi);
set_size_independent_vars(cpi);
av1_setup_frame_size(cpi);
cm->prev_frame = get_primary_ref_frame_buf(cm);
av1_set_size_dependent_vars(cpi, &q, &bottom_index, &top_index);
av1_set_mv_search_params(cpi);
if (cm->current_frame.frame_number == 0 &&
(cpi->ppi->use_svc || cpi->oxcf.rc_cfg.drop_frames_water_mark > 0) &&
cpi->svc.temporal_layer_id == 0) {
const SequenceHeader *seq_params = cm->seq_params;
if (aom_alloc_frame_buffer(
&cpi->svc.source_last_TL0, cpi->oxcf.frm_dim_cfg.width,
cpi->oxcf.frm_dim_cfg.height, seq_params->subsampling_x,
seq_params->subsampling_y, seq_params->use_highbitdepth,
cpi->oxcf.border_in_pixels, cm->features.byte_alignment, false,
0)) {
aom_internal_error(cm->error, AOM_CODEC_MEM_ERROR,
"Failed to allocate buffer for source_last_TL0");
}
}
if (!cpi->ppi->use_svc) {
phase_scaler = 8;
// 2:1 scaling.
if ((cm->width << 1) == unscaled->y_crop_width &&
(cm->height << 1) == unscaled->y_crop_height) {
filter_scaler = BILINEAR;
// For lower resolutions use eighttap_smooth.
if (cm->width * cm->height <= 320 * 180) filter_scaler = EIGHTTAP_SMOOTH;
} else if ((cm->width << 2) == unscaled->y_crop_width &&
(cm->height << 2) == unscaled->y_crop_height) {
// 4:1 scaling.
filter_scaler = EIGHTTAP_SMOOTH;
} else if ((cm->width << 2) == 3 * unscaled->y_crop_width &&
(cm->height << 2) == 3 * unscaled->y_crop_height) {
// 4:3 scaling.
filter_scaler = EIGHTTAP_REGULAR;
}
}
allocate_gradient_info_for_hog(cpi);
allocate_src_var_of_4x4_sub_block_buf(cpi);
const SPEED_FEATURES *sf = &cpi->sf;
if (sf->part_sf.partition_search_type == VAR_BASED_PARTITION)
variance_partition_alloc(cpi);
if (cm->current_frame.frame_type == KEY_FRAME ||
((sf->inter_sf.extra_prune_warped && cpi->refresh_frame.golden_frame)))
copy_frame_prob_info(cpi);
#if CONFIG_COLLECT_COMPONENT_TIMING
printf("\n Encoding a frame: \n");
#endif
#if CONFIG_TUNE_BUTTERAUGLI
if (cpi->oxcf.tune_cfg.tuning == AOM_TUNE_BUTTERAUGLI) {
av1_setup_butteraugli_rdmult(cpi);
}
#endif
cpi->source = av1_realloc_and_scale_if_required(
cm, unscaled, &cpi->scaled_source, filter_scaler, phase_scaler, true,
false, cpi->oxcf.border_in_pixels, cpi->alloc_pyramid);
if (frame_is_intra_only(cm) || resize_pending != 0) {
const int current_size =
(cm->mi_params.mi_rows * cm->mi_params.mi_cols) >> 2;
if (cpi->consec_zero_mv &&
(cpi->consec_zero_mv_alloc_size < current_size)) {
aom_free(cpi->consec_zero_mv);
cpi->consec_zero_mv_alloc_size = 0;
CHECK_MEM_ERROR(cm, cpi->consec_zero_mv,
aom_malloc(current_size * sizeof(*cpi->consec_zero_mv)));
cpi->consec_zero_mv_alloc_size = current_size;
}
assert(cpi->consec_zero_mv != NULL);
memset(cpi->consec_zero_mv, 0, current_size * sizeof(*cpi->consec_zero_mv));
}
if (cpi->scaled_last_source_available) {
cpi->last_source = &cpi->scaled_last_source;
cpi->scaled_last_source_available = 0;
} else if (cpi->unscaled_last_source != NULL) {
cpi->last_source = av1_realloc_and_scale_if_required(
cm, cpi->unscaled_last_source, &cpi->scaled_last_source, filter_scaler,
phase_scaler, true, false, cpi->oxcf.border_in_pixels,
cpi->alloc_pyramid);
}
if (cpi->sf.rt_sf.use_temporal_noise_estimate) {
av1_update_noise_estimate(cpi);
}
#if CONFIG_AV1_TEMPORAL_DENOISING
if (cpi->oxcf.noise_sensitivity > 0 && cpi->ppi->use_svc)
av1_denoiser_reset_on_first_frame(cpi);
#endif
// For 1 spatial layer encoding: if the (non-LAST) reference has different
// resolution from the source then disable that reference. This is to avoid
// significant increase in encode time from scaling the references in
// av1_scale_references. Note GOLDEN is forced to update on the (first/tigger)
// resized frame and ALTREF will be refreshed ~4 frames later, so both
// references become available again after few frames.
// For superres: don't disable golden reference.
if (svc->number_spatial_layers == 1) {
if (!cpi->oxcf.superres_cfg.enable_superres) {
if (cpi->ref_frame_flags & av1_ref_frame_flag_list[GOLDEN_FRAME]) {
const YV12_BUFFER_CONFIG *const ref =
get_ref_frame_yv12_buf(cm, GOLDEN_FRAME);
if (ref == NULL || ref->y_crop_width != cm->width ||
ref->y_crop_height != cm->height) {
cpi->ref_frame_flags ^= AOM_GOLD_FLAG;
}
}
}
if (cpi->ref_frame_flags & av1_ref_frame_flag_list[ALTREF_FRAME]) {
const YV12_BUFFER_CONFIG *const ref =
get_ref_frame_yv12_buf(cm, ALTREF_FRAME);
if (ref == NULL || ref->y_crop_width != cm->width ||
ref->y_crop_height != cm->height) {
cpi->ref_frame_flags ^= AOM_ALT_FLAG;
}
}
}
int scale_references = 0;
#if CONFIG_FPMT_TEST
scale_references =
cpi->ppi->fpmt_unit_test_cfg == PARALLEL_SIMULATION_ENCODE ? 1 : 0;
#endif // CONFIG_FPMT_TEST
if (scale_references ||
cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] == 0) {
if (!frame_is_intra_only(cm)) {
av1_scale_references(cpi, filter_scaler, phase_scaler, 1);
}
}
av1_set_quantizer(cm, q_cfg->qm_minlevel, q_cfg->qm_maxlevel, q,
q_cfg->enable_chroma_deltaq, q_cfg->enable_hdr_deltaq,
cpi->oxcf.mode == ALLINTRA, cpi->oxcf.tune_cfg.tuning);
av1_set_speed_features_qindex_dependent(cpi, cpi->oxcf.speed);
av1_init_quantizer(&cpi->enc_quant_dequant_params, &cm->quant_params,
cm->seq_params->bit_depth, cpi->oxcf.algo_cfg.sharpness);
av1_set_variance_partition_thresholds(cpi, q, 0);
av1_setup_frame(cpi);
// Check if this high_source_sad (scene/slide change) frame should be
// encoded at high/max QP, and if so, set the q and adjust some rate
// control parameters.
if (cpi->sf.rt_sf.overshoot_detection_cbr == FAST_DETECTION_MAXQ &&
cpi->rc.high_source_sad) {
if (av1_encodedframe_overshoot_cbr(cpi, &q)) {
av1_set_quantizer(cm, q_cfg->qm_minlevel, q_cfg->qm_maxlevel, q,
q_cfg->enable_chroma_deltaq, q_cfg->enable_hdr_deltaq,
cpi->oxcf.mode == ALLINTRA, cpi->oxcf.tune_cfg.tuning);
av1_set_speed_features_qindex_dependent(cpi, cpi->oxcf.speed);
av1_init_quantizer(&cpi->enc_quant_dequant_params, &cm->quant_params,
cm->seq_params->bit_depth,
cpi->oxcf.algo_cfg.sharpness);
av1_set_variance_partition_thresholds(cpi, q, 0);
if (frame_is_intra_only(cm) || cm->features.error_resilient_mode ||
cm->features.primary_ref_frame == PRIMARY_REF_NONE)
av1_setup_frame(cpi);
}
}
av1_apply_active_map(cpi);
if (cpi->roi.enabled) {
// For now if roi map is used: don't setup cyclic refresh.
av1_apply_roi_map(cpi);
} else if (q_cfg->aq_mode == CYCLIC_REFRESH_AQ) {
av1_cyclic_refresh_setup(cpi);
}
if (cm->seg.enabled) {
if (!cm->seg.update_data && cm->prev_frame) {
segfeatures_copy(&cm->seg, &cm->prev_frame->seg);
cm->seg.enabled = cm->prev_frame->seg.enabled;
} else {
av1_calculate_segdata(&cm->seg);
}
} else {
memset(&cm->seg, 0, sizeof(cm->seg));
}
segfeatures_copy(&cm->cur_frame->seg, &cm->seg);
cm->cur_frame->seg.enabled = cm->seg.enabled;
// This is for rtc temporal filtering case.
if (is_psnr_calc_enabled(cpi) && cpi->sf.rt_sf.use_rtc_tf) {
const SequenceHeader *seq_params = cm->seq_params;
if (cpi->orig_source.buffer_alloc_sz == 0 ||
cpi->rc.prev_coded_width != cpi->oxcf.frm_dim_cfg.width ||
cpi->rc.prev_coded_height != cpi->oxcf.frm_dim_cfg.height) {
// Allocate a source buffer to store the true source for psnr calculation.
if (aom_alloc_frame_buffer(
&cpi->orig_source, cpi->oxcf.frm_dim_cfg.width,
cpi->oxcf.frm_dim_cfg.height, seq_params->subsampling_x,
seq_params->subsampling_y, seq_params->use_highbitdepth,
cpi->oxcf.border_in_pixels, cm->features.byte_alignment, false,
0))
aom_internal_error(cm->error, AOM_CODEC_MEM_ERROR,
"Failed to allocate scaled buffer");
}
aom_yv12_copy_y(cpi->source, &cpi->orig_source, 1);
aom_yv12_copy_u(cpi->source, &cpi->orig_source, 1);
aom_yv12_copy_v(cpi->source, &cpi->orig_source, 1);
}
#if CONFIG_COLLECT_COMPONENT_TIMING
start_timing(cpi, av1_encode_frame_time);
#endif
// Set the motion vector precision based on mv stats from the last coded
// frame.
if (!frame_is_intra_only(cm)) av1_pick_and_set_high_precision_mv(cpi, q);
// transform / motion compensation build reconstruction frame
av1_encode_frame(cpi);
if (!cpi->rc.rtc_external_ratectrl && !frame_is_intra_only(cm))
update_motion_stat(cpi);
// Adjust the refresh of the golden (longer-term) reference based on QP
// selected for this frame. This is for CBR real-time mode, and only
// for single layer without usage of the set_ref_frame_config (so
// reference structure for 1 layer is set internally).
if (!frame_is_intra_only(cm) && cpi->oxcf.rc_cfg.mode == AOM_CBR &&
cpi->oxcf.mode == REALTIME && svc->number_spatial_layers == 1 &&
svc->number_temporal_layers == 1 && !cpi->rc.rtc_external_ratectrl &&
!cpi->ppi->rtc_ref.set_ref_frame_config &&
sf->rt_sf.gf_refresh_based_on_qp)
av1_adjust_gf_refresh_qp_one_pass_rt(cpi);
// For non-svc: if scaling is required, copy scaled_source
// into scaled_last_source.
if (cm->current_frame.frame_number > 1 && !cpi->ppi->use_svc &&
cpi->scaled_source.y_buffer != NULL &&
cpi->scaled_last_source.y_buffer != NULL &&
cpi->scaled_source.y_crop_width == cpi->scaled_last_source.y_crop_width &&
cpi->scaled_source.y_crop_height ==
cpi->scaled_last_source.y_crop_height &&
(cm->width != cpi->unscaled_source->y_crop_width ||
cm->height != cpi->unscaled_source->y_crop_height)) {
cpi->scaled_last_source_available = 1;
aom_yv12_copy_y(&cpi->scaled_source, &cpi->scaled_last_source, 1);
aom_yv12_copy_u(&cpi->scaled_source, &cpi->scaled_last_source, 1);
aom_yv12_copy_v(&cpi->scaled_source, &cpi->scaled_last_source, 1);
}
#if CONFIG_COLLECT_COMPONENT_TIMING
end_timing(cpi, av1_encode_frame_time);
#endif
#if CONFIG_INTERNAL_STATS
++cpi->frame_recode_hits;
#endif
return AOM_CODEC_OK;
}
#if !CONFIG_REALTIME_ONLY
/*!\brief Recode loop for encoding one frame. the purpose of encoding one frame
* for multiple times can be approaching a target bitrate or adjusting the usage
* of global motions.
*
* \ingroup high_level_algo
*
* \param[in] cpi Top-level encoder structure
* \param[in] size Bitstream size
* \param[out] dest Bitstream output buffer
* \param[in] dest_size Bitstream output buffer size
*
* \return Returns a value to indicate if the encoding is done successfully.
* \retval #AOM_CODEC_OK
* \retval -1
* \retval #AOM_CODEC_ERROR
*/
static int encode_with_recode_loop(AV1_COMP *cpi, size_t *size, uint8_t *dest,
size_t dest_size) {
AV1_COMMON *const cm = &cpi->common;
RATE_CONTROL *const rc = &cpi->rc;
GlobalMotionInfo *const gm_info = &cpi->gm_info;
const AV1EncoderConfig *const oxcf = &cpi->oxcf;
const QuantizationCfg *const q_cfg = &oxcf->q_cfg;
const int allow_recode = (cpi->sf.hl_sf.recode_loop != DISALLOW_RECODE);
// Must allow recode if minimum compression ratio is set.
assert(IMPLIES(oxcf->rc_cfg.min_cr > 0, allow_recode));
set_size_independent_vars(cpi);
if (is_stat_consumption_stage_twopass(cpi) &&
cpi->sf.interp_sf.adaptive_interp_filter_search)
cpi->interp_search_flags.interp_filter_search_mask =
av1_setup_interp_filter_search_mask(cpi);
av1_setup_frame_size(cpi);
if (av1_superres_in_recode_allowed(cpi) &&
cpi->superres_mode != AOM_SUPERRES_NONE &&
cm->superres_scale_denominator == SCALE_NUMERATOR) {
// Superres mode is currently enabled, but the denominator selected will
// disable superres. So no need to continue, as we will go through another
// recode loop for full-resolution after this anyway.
return -1;
}
int top_index = 0, bottom_index = 0;
int q = 0, q_low = 0, q_high = 0;
av1_set_size_dependent_vars(cpi, &q, &bottom_index, &top_index);
q_low = bottom_index;
q_high = top_index;
av1_set_mv_search_params(cpi);
allocate_gradient_info_for_hog(cpi);
allocate_src_var_of_4x4_sub_block_buf(cpi);
if (cpi->sf.part_sf.partition_search_type == VAR_BASED_PARTITION)
variance_partition_alloc(cpi);
if (cm->current_frame.frame_type == KEY_FRAME) copy_frame_prob_info(cpi);
#if CONFIG_COLLECT_COMPONENT_TIMING
printf("\n Encoding a frame: \n");
#endif
#if !CONFIG_RD_COMMAND
// Determine whether to use screen content tools using two fast encoding.
if (!cpi->sf.hl_sf.disable_extra_sc_testing && !cpi->use_ducky_encode)
av1_determine_sc_tools_with_encoding(cpi, q);
#endif // !CONFIG_RD_COMMAND
#if CONFIG_TUNE_VMAF
if (oxcf->tune_cfg.tuning == AOM_TUNE_VMAF_NEG_MAX_GAIN) {
av1_vmaf_neg_preprocessing(cpi, cpi->unscaled_source);
}
#endif
#if CONFIG_TUNE_BUTTERAUGLI
cpi->butteraugli_info.recon_set = false;
int original_q = 0;
#endif
cpi->num_frame_recode = 0;
// Loop variables
int loop = 0;
int loop_count = 0;
int overshoot_seen = 0;
int undershoot_seen = 0;
int low_cr_seen = 0;
int last_loop_allow_hp = 0;
do {
loop = 0;
int do_mv_stats_collection = 1;
// if frame was scaled calculate global_motion_search again if already
// done
if (loop_count > 0 && cpi->source && gm_info->search_done) {
if (cpi->source->y_crop_width != cm->width ||
cpi->source->y_crop_height != cm->height) {
gm_info->search_done = 0;
}
}
cpi->source = av1_realloc_and_scale_if_required(
cm, cpi->unscaled_source, &cpi->scaled_source, EIGHTTAP_REGULAR, 0,
false, false, cpi->oxcf.border_in_pixels, cpi->alloc_pyramid);
#if CONFIG_TUNE_BUTTERAUGLI
if (oxcf->tune_cfg.tuning == AOM_TUNE_BUTTERAUGLI) {
if (loop_count == 0) {
original_q = q;
// TODO(sdeng): different q here does not make big difference. Use a
// faster pass instead.
q = 96;
av1_setup_butteraugli_source(cpi);
} else {
q = original_q;
}
}
#endif
if (cpi->unscaled_last_source != NULL) {
cpi->last_source = av1_realloc_and_scale_if_required(
cm, cpi->unscaled_last_source, &cpi->scaled_last_source,
EIGHTTAP_REGULAR, 0, false, false, cpi->oxcf.border_in_pixels,
cpi->alloc_pyramid);
}
int scale_references = 0;
#if CONFIG_FPMT_TEST
scale_references =
cpi->ppi->fpmt_unit_test_cfg == PARALLEL_SIMULATION_ENCODE ? 1 : 0;
#endif // CONFIG_FPMT_TEST
if (scale_references ||
cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] == 0) {
if (!frame_is_intra_only(cm)) {
if (loop_count > 0) {
release_scaled_references(cpi);
}
av1_scale_references(cpi, EIGHTTAP_REGULAR, 0, 0);
}
}
#if CONFIG_TUNE_VMAF
if (oxcf->tune_cfg.tuning >= AOM_TUNE_VMAF_WITH_PREPROCESSING &&
oxcf->tune_cfg.tuning <= AOM_TUNE_VMAF_NEG_MAX_GAIN) {
cpi->vmaf_info.original_qindex = q;
q = av1_get_vmaf_base_qindex(cpi, q);
}
#endif
#if CONFIG_RD_COMMAND
RD_COMMAND *rd_command = &cpi->rd_command;
RD_OPTION option = rd_command->option_ls[rd_command->frame_index];
if (option == RD_OPTION_SET_Q || option == RD_OPTION_SET_Q_RDMULT) {
q = rd_command->q_index_ls[rd_command->frame_index];
}
#endif // CONFIG_RD_COMMAND
#if CONFIG_BITRATE_ACCURACY
#if CONFIG_THREE_PASS
if (oxcf->pass == AOM_RC_THIRD_PASS && cpi->vbr_rc_info.ready == 1) {
int frame_coding_idx =
av1_vbr_rc_frame_coding_idx(&cpi->vbr_rc_info, cpi->gf_frame_index);
if (frame_coding_idx < cpi->vbr_rc_info.total_frame_count) {
q = cpi->vbr_rc_info.q_index_list[frame_coding_idx];
} else {
// TODO(angiebird): Investigate why sometimes there is an extra frame
// after the last GOP.
q = cpi->vbr_rc_info.base_q_index;
}
}
#else
if (cpi->vbr_rc_info.q_index_list_ready) {
q = cpi->vbr_rc_info.q_index_list[cpi->gf_frame_index];
}
#endif // CONFIG_THREE_PASS
#endif // CONFIG_BITRATE_ACCURACY
#if CONFIG_RATECTRL_LOG && CONFIG_THREE_PASS && CONFIG_BITRATE_ACCURACY
// TODO(angiebird): Move this into a function.
if (oxcf->pass == AOM_RC_THIRD_PASS) {
int frame_coding_idx =
av1_vbr_rc_frame_coding_idx(&cpi->vbr_rc_info, cpi->gf_frame_index);
double qstep_ratio = cpi->vbr_rc_info.qstep_ratio_list[frame_coding_idx];
FRAME_UPDATE_TYPE update_type =
cpi->vbr_rc_info.update_type_list[frame_coding_idx];
rc_log_frame_encode_param(&cpi->rc_log, frame_coding_idx, qstep_ratio, q,
update_type);
}
#endif // CONFIG_RATECTRL_LOG && CONFIG_THREE_PASS && CONFIG_BITRATE_ACCURACY
if (cpi->use_ducky_encode) {
const DuckyEncodeFrameInfo *frame_info =
&cpi->ducky_encode_info.frame_info;
if (frame_info->qp_mode == DUCKY_ENCODE_FRAME_MODE_QINDEX) {
q = frame_info->q_index;
cm->delta_q_info.delta_q_present_flag = frame_info->delta_q_enabled;
}
}
av1_set_quantizer(cm, q_cfg->qm_minlevel, q_cfg->qm_maxlevel, q,
q_cfg->enable_chroma_deltaq, q_cfg->enable_hdr_deltaq,
oxcf->mode == ALLINTRA, oxcf->tune_cfg.tuning);
av1_set_speed_features_qindex_dependent(cpi, oxcf->speed);
av1_init_quantizer(&cpi->enc_quant_dequant_params, &cm->quant_params,
cm->seq_params->bit_depth, cpi->oxcf.algo_cfg.sharpness);
av1_set_variance_partition_thresholds(cpi, q, 0);
if (loop_count == 0) {
av1_setup_frame(cpi);
} else if (get_primary_ref_frame_buf(cm) == NULL) {
// Base q-index may have changed, so we need to assign proper default coef
// probs before every iteration.
av1_default_coef_probs(cm);
av1_setup_frame_contexts(cm);
}
if (q_cfg->aq_mode == VARIANCE_AQ) {
av1_vaq_frame_setup(cpi);
} else if (q_cfg->aq_mode == COMPLEXITY_AQ) {
av1_setup_in_frame_q_adj(cpi);
}
if (cm->seg.enabled) {
if (!cm->seg.update_data && cm->prev_frame) {
segfeatures_copy(&cm->seg, &cm->prev_frame->seg);
cm->seg.enabled = cm->prev_frame->seg.enabled;
} else {
av1_calculate_segdata(&cm->seg);
}
} else {
memset(&cm->seg, 0, sizeof(cm->seg));
}
segfeatures_copy(&cm->cur_frame->seg, &cm->seg);
cm->cur_frame->seg.enabled = cm->seg.enabled;
#if CONFIG_COLLECT_COMPONENT_TIMING
start_timing(cpi, av1_encode_frame_time);
#endif
// Set the motion vector precision based on mv stats from the last coded
// frame.
if (!frame_is_intra_only(cm)) {
av1_pick_and_set_high_precision_mv(cpi, q);
// If the precision has changed during different iteration of the loop,
// then we need to reset the global motion vectors
if (loop_count > 0 &&
cm->features.allow_high_precision_mv != last_loop_allow_hp) {
gm_info->search_done = 0;
}
last_loop_allow_hp = cm->features.allow_high_precision_mv;
}
// transform / motion compensation build reconstruction frame
av1_encode_frame(cpi);
// Disable mv_stats collection for parallel frames based on update flag.
if (!cpi->do_frame_data_update) do_mv_stats_collection = 0;
// Reset the mv_stats in case we are interrupted by an intraframe or an
// overlay frame.
if (cpi->mv_stats.valid && do_mv_stats_collection) av1_zero(cpi->mv_stats);
// Gather the mv_stats for the next frame
if (cpi->sf.hl_sf.high_precision_mv_usage == LAST_MV_DATA &&
av1_frame_allows_smart_mv(cpi) && do_mv_stats_collection) {
av1_collect_mv_stats(cpi, q);
}
#if CONFIG_COLLECT_COMPONENT_TIMING
end_timing(cpi, av1_encode_frame_time);
#endif
#if CONFIG_BITRATE_ACCURACY || CONFIG_RD_COMMAND
const int do_dummy_pack = 1;
#else // CONFIG_BITRATE_ACCURACY
// Dummy pack of the bitstream using up to date stats to get an
// accurate estimate of output frame size to determine if we need
// to recode.
const int do_dummy_pack =
(cpi->sf.hl_sf.recode_loop >= ALLOW_RECODE_KFARFGF &&
oxcf->rc_cfg.mode != AOM_Q) ||
oxcf->rc_cfg.min_cr > 0;
#endif // CONFIG_BITRATE_ACCURACY
if (do_dummy_pack) {
av1_finalize_encoded_frame(cpi);
int largest_tile_id = 0; // Output from bitstream: unused here
rc->coefficient_size = 0;
if (av1_pack_bitstream(cpi, dest, dest_size, size, &largest_tile_id) !=
AOM_CODEC_OK) {
return AOM_CODEC_ERROR;
}
// bits used for this frame
rc->projected_frame_size = (int)(*size) << 3;
#if CONFIG_RD_COMMAND
PSNR_STATS psnr;
aom_calc_psnr(cpi->source, &cpi->common.cur_frame->buf, &psnr);
printf("q %d rdmult %d rate %d dist %" PRIu64 "\n", q, cpi->rd.RDMULT,
rc->projected_frame_size, psnr.sse[0]);
++rd_command->frame_index;
if (rd_command->frame_index == rd_command->frame_count) {
return AOM_CODEC_ERROR;
}
#endif // CONFIG_RD_COMMAND
#if CONFIG_RATECTRL_LOG && CONFIG_THREE_PASS && CONFIG_BITRATE_ACCURACY
if (oxcf->pass == AOM_RC_THIRD_PASS) {
int frame_coding_idx =
av1_vbr_rc_frame_coding_idx(&cpi->vbr_rc_info, cpi->gf_frame_index);
rc_log_frame_entropy(&cpi->rc_log, frame_coding_idx,
rc->projected_frame_size, rc->coefficient_size);
}
#endif // CONFIG_RATECTRL_LOG && CONFIG_THREE_PASS && CONFIG_BITRATE_ACCURACY
}
#if CONFIG_TUNE_VMAF
if (oxcf->tune_cfg.tuning >= AOM_TUNE_VMAF_WITH_PREPROCESSING &&
oxcf->tune_cfg.tuning <= AOM_TUNE_VMAF_NEG_MAX_GAIN) {
q = cpi->vmaf_info.original_qindex;
}
#endif
if (allow_recode) {
// Update q and decide whether to do a recode loop
recode_loop_update_q(cpi, &loop, &q, &q_low, &q_high, top_index,
bottom_index, &undershoot_seen, &overshoot_seen,
&low_cr_seen, loop_count);
}
#if CONFIG_TUNE_BUTTERAUGLI
if (loop_count == 0 && oxcf->tune_cfg.tuning == AOM_TUNE_BUTTERAUGLI) {
loop = 1;
av1_setup_butteraugli_rdmult_and_restore_source(cpi, 0.4);
}
#endif
if (cpi->use_ducky_encode) {
// Ducky encode currently does not support recode loop.
loop = 0;
}
#if CONFIG_BITRATE_ACCURACY || CONFIG_RD_COMMAND
loop = 0; // turn off recode loop when CONFIG_BITRATE_ACCURACY is on
#endif // CONFIG_BITRATE_ACCURACY || CONFIG_RD_COMMAND
if (loop) {
++loop_count;
cpi->num_frame_recode =
(cpi->num_frame_recode < (NUM_RECODES_PER_FRAME - 1))
? (cpi->num_frame_recode + 1)
: (NUM_RECODES_PER_FRAME - 1);
#if CONFIG_INTERNAL_STATS
++cpi->frame_recode_hits;
#endif
}
#if CONFIG_COLLECT_COMPONENT_TIMING
if (loop) printf("\n Recoding:");
#endif
} while (loop);
return AOM_CODEC_OK;
}
#endif // !CONFIG_REALTIME_ONLY
// TODO(jingning, paulwilkins): Set up high grain level to test
// hardware decoders. Need to adapt the actual noise variance
// according to the difference between reconstructed frame and the
// source signal.
static void set_grain_syn_params(AV1_COMMON *cm) {
aom_film_grain_t *film_grain_params = &cm->film_grain_params;
film_grain_params->apply_grain = 1;
film_grain_params->update_parameters = 1;
film_grain_params->random_seed = rand() & 0xffff;
film_grain_params->num_y_points = 1;
film_grain_params->scaling_points_y[0][0] = 128;
film_grain_params->scaling_points_y[0][1] = 100;
if (!cm->seq_params->monochrome) {
film_grain_params->num_cb_points = 1;
film_grain_params->scaling_points_cb[0][0] = 128;
film_grain_params->scaling_points_cb[0][1] = 100;
film_grain_params->num_cr_points = 1;
film_grain_params->scaling_points_cr[0][0] = 128;
film_grain_params->scaling_points_cr[0][1] = 100;
} else {
film_grain_params->num_cb_points = 0;
film_grain_params->num_cr_points = 0;
}
film_grain_params->chroma_scaling_from_luma = 0;
film_grain_params->scaling_shift = 1;
film_grain_params->ar_coeff_lag = 0;
film_grain_params->ar_coeff_shift = 1;
film_grain_params->overlap_flag = 1;
film_grain_params->grain_scale_shift = 0;
}
/*!\brief Recode loop or a single loop for encoding one frame, followed by
* in-loop deblocking filters, CDEF filters, and restoration filters.
*
* \ingroup high_level_algo
* \callgraph
* \callergraph
*
* \param[in] cpi Top-level encoder structure
* \param[in] size Bitstream size
* \param[out] dest Bitstream output buffer
* \param[in] dest_size Bitstream output buffer size
* \param[in] sse Total distortion of the frame
* \param[in] rate Total rate of the frame
* \param[in] largest_tile_id Tile id of the last tile
*
* \return Returns a value to indicate if the encoding is done successfully.
* \retval #AOM_CODEC_OK
* \retval #AOM_CODEC_ERROR
*/
static int encode_with_recode_loop_and_filter(AV1_COMP *cpi, size_t *size,
uint8_t *dest, size_t dest_size,
int64_t *sse, int64_t *rate,
int *largest_tile_id) {
#if CONFIG_COLLECT_COMPONENT_TIMING
start_timing(cpi, encode_with_or_without_recode_time);
#endif
for (int i = 0; i < NUM_RECODES_PER_FRAME; i++) {
cpi->do_update_frame_probs_txtype[i] = 0;
cpi->do_update_frame_probs_obmc[i] = 0;
cpi->do_update_frame_probs_warp[i] = 0;
cpi->do_update_frame_probs_interpfilter[i] = 0;
}
cpi->do_update_vbr_bits_off_target_fast = 0;
int err;
#if CONFIG_REALTIME_ONLY
err = encode_without_recode(cpi);
#else
if (cpi->sf.hl_sf.recode_loop == DISALLOW_RECODE)
err = encode_without_recode(cpi);
else
err = encode_with_recode_loop(cpi, size, dest, dest_size);
#endif
#if CONFIG_COLLECT_COMPONENT_TIMING
end_timing(cpi, encode_with_or_without_recode_time);
#endif
if (err != AOM_CODEC_OK) {
if (err == -1) {
// special case as described in encode_with_recode_loop().
// Encoding was skipped.
err = AOM_CODEC_OK;
if (sse != NULL) *sse = INT64_MAX;
if (rate != NULL) *rate = INT64_MAX;
*largest_tile_id = 0;
}
return err;
}
#ifdef OUTPUT_YUV_DENOISED
const AV1EncoderConfig *const oxcf = &cpi->oxcf;
if (oxcf->noise_sensitivity > 0 && denoise_svc(cpi)) {
aom_write_yuv_frame(yuv_denoised_file,
&cpi->denoiser.running_avg_y[INTRA_FRAME]);
}
#endif
AV1_COMMON *const cm = &cpi->common;
SequenceHeader *const seq_params = cm->seq_params;
// Special case code to reduce pulsing when key frames are forced at a
// fixed interval. Note the reconstruction error if it is the frame before
// the force key frame
if (cpi->ppi->p_rc.next_key_frame_forced && cpi->rc.frames_to_key == 1) {
#if CONFIG_AV1_HIGHBITDEPTH
if (seq_params->use_highbitdepth) {
cpi->ambient_err = aom_highbd_get_y_sse(cpi->source, &cm->cur_frame->buf);
} else {
cpi->ambient_err = aom_get_y_sse(cpi->source, &cm->cur_frame->buf);
}
#else
cpi->ambient_err = aom_get_y_sse(cpi->source, &cm->cur_frame->buf);
#endif
}
cm->cur_frame->buf.color_primaries = seq_params->color_primaries;
cm->cur_frame->buf.transfer_characteristics =
seq_params->transfer_characteristics;
cm->cur_frame->buf.matrix_coefficients = seq_params->matrix_coefficients;
cm->cur_frame->buf.monochrome = seq_params->monochrome;
cm->cur_frame->buf.chroma_sample_position =
seq_params->chroma_sample_position;
cm->cur_frame->buf.color_range = seq_params->color_range;
cm->cur_frame->buf.render_width = cm->render_width;
cm->cur_frame->buf.render_height = cm->render_height;
if (!cpi->mt_info.pipeline_lpf_mt_with_enc)
set_postproc_filter_default_params(&cpi->common);
if (!cm->features.allow_intrabc) {
loopfilter_frame(cpi, cm);
}
if (cpi->oxcf.mode != ALLINTRA && !cpi->ppi->rtc_ref.non_reference_frame) {
extend_frame_borders(cpi);
}
#ifdef OUTPUT_YUV_REC
aom_write_one_yuv_frame(cm, &cm->cur_frame->buf);
#endif
if (cpi->oxcf.tune_cfg.content == AOM_CONTENT_FILM) {
set_grain_syn_params(cm);
}
av1_finalize_encoded_frame(cpi);
// Build the bitstream
#if CONFIG_COLLECT_COMPONENT_TIMING
start_timing(cpi, av1_pack_bitstream_final_time);
#endif
cpi->rc.coefficient_size = 0;
if (av1_pack_bitstream(cpi, dest, dest_size, size, largest_tile_id) !=
AOM_CODEC_OK)
return AOM_CODEC_ERROR;
#if CONFIG_COLLECT_COMPONENT_TIMING
end_timing(cpi, av1_pack_bitstream_final_time);
#endif
if (cpi->rc.postencode_drop && allow_postencode_drop_rtc(cpi) &&
av1_postencode_drop_cbr(cpi, size)) {
return AOM_CODEC_OK;
}
// Compute sse and rate.
if (sse != NULL) {
#if CONFIG_AV1_HIGHBITDEPTH
*sse = (seq_params->use_highbitdepth)
? aom_highbd_get_y_sse(cpi->source, &cm->cur_frame->buf)
: aom_get_y_sse(cpi->source, &cm->cur_frame->buf);
#else
*sse = aom_get_y_sse(cpi->source, &cm->cur_frame->buf);
#endif
}
if (rate != NULL) {
const int64_t bits = (*size << 3);
*rate = (bits << 5); // To match scale.
}
#if !CONFIG_REALTIME_ONLY
if (cpi->use_ducky_encode) {
PSNR_STATS psnr;
aom_calc_psnr(cpi->source, &cpi->common.cur_frame->buf, &psnr);
DuckyEncodeFrameResult *frame_result = &cpi->ducky_encode_info.frame_result;
frame_result->global_order_idx = cm->cur_frame->display_order_hint;
frame_result->q_index = cm->quant_params.base_qindex;
frame_result->rdmult = cpi->rd.RDMULT;
frame_result->rate = (int)(*size) * 8;
frame_result->dist = psnr.sse[0];
frame_result->psnr = psnr.psnr[0];
}
#endif // !CONFIG_REALTIME_ONLY
return AOM_CODEC_OK;
}
static int encode_with_and_without_superres(AV1_COMP *cpi, size_t *size,
uint8_t *dest, size_t dest_size,
int *largest_tile_id) {
const AV1_COMMON *const cm = &cpi->common;
assert(cm->seq_params->enable_superres);
assert(av1_superres_in_recode_allowed(cpi));
aom_codec_err_t err = AOM_CODEC_OK;
av1_save_all_coding_context(cpi);
int64_t sse1 = INT64_MAX;
int64_t rate1 = INT64_MAX;
int largest_tile_id1 = 0;
int64_t sse2 = INT64_MAX;
int64_t rate2 = INT64_MAX;
int largest_tile_id2;
double proj_rdcost1 = DBL_MAX;
const GF_GROUP *const gf_group = &cpi->ppi->gf_group;
const FRAME_UPDATE_TYPE update_type =
gf_group->update_type[cpi->gf_frame_index];
const aom_bit_depth_t bit_depth = cm->seq_params->bit_depth;
// Encode with superres.
if (cpi->sf.hl_sf.superres_auto_search_type == SUPERRES_AUTO_ALL) {
SuperResCfg *const superres_cfg = &cpi->oxcf.superres_cfg;
int64_t superres_sses[SCALE_NUMERATOR];
int64_t superres_rates[SCALE_NUMERATOR];
int superres_largest_tile_ids[SCALE_NUMERATOR];
// Use superres for Key-frames and Alt-ref frames only.
if (update_type != OVERLAY_UPDATE && update_type != INTNL_OVERLAY_UPDATE) {
for (int denom = SCALE_NUMERATOR + 1; denom <= 2 * SCALE_NUMERATOR;
++denom) {
superres_cfg->superres_scale_denominator = denom;
superres_cfg->superres_kf_scale_denominator = denom;
const int this_index = denom - (SCALE_NUMERATOR + 1);
cpi->superres_mode = AOM_SUPERRES_AUTO; // Super-res on for this loop.
err = encode_with_recode_loop_and_filter(
cpi, size, dest, dest_size, &superres_sses[this_index],
&superres_rates[this_index],
&superres_largest_tile_ids[this_index]);
cpi->superres_mode = AOM_SUPERRES_NONE; // Reset to default (full-res).
if (err != AOM_CODEC_OK) return err;
restore_all_coding_context(cpi);
}
// Reset.
superres_cfg->superres_scale_denominator = SCALE_NUMERATOR;
superres_cfg->superres_kf_scale_denominator = SCALE_NUMERATOR;
} else {
for (int denom = SCALE_NUMERATOR + 1; denom <= 2 * SCALE_NUMERATOR;
++denom) {
const int this_index = denom - (SCALE_NUMERATOR + 1);
superres_sses[this_index] = INT64_MAX;
superres_rates[this_index] = INT64_MAX;
superres_largest_tile_ids[this_index] = 0;
}
}
// Encode without superres.
assert(cpi->superres_mode == AOM_SUPERRES_NONE);
err = encode_with_recode_loop_and_filter(cpi, size, dest, dest_size, &sse2,
&rate2, &largest_tile_id2);
if (err != AOM_CODEC_OK) return err;
// Note: Both use common rdmult based on base qindex of fullres.
const int64_t rdmult = av1_compute_rd_mult_based_on_qindex(
bit_depth, update_type, cm->quant_params.base_qindex,
cpi->oxcf.tune_cfg.tuning);
// Find the best rdcost among all superres denoms.
int best_denom = -1;
for (int denom = SCALE_NUMERATOR + 1; denom <= 2 * SCALE_NUMERATOR;
++denom) {
const int this_index = denom - (SCALE_NUMERATOR + 1);
const int64_t this_sse = superres_sses[this_index];
const int64_t this_rate = superres_rates[this_index];
const int this_largest_tile_id = superres_largest_tile_ids[this_index];
const double this_rdcost = RDCOST_DBL_WITH_NATIVE_BD_DIST(
rdmult, this_rate, this_sse, bit_depth);
if (this_rdcost < proj_rdcost1) {
sse1 = this_sse;
rate1 = this_rate;
largest_tile_id1 = this_largest_tile_id;
proj_rdcost1 = this_rdcost;
best_denom = denom;
}
}
const double proj_rdcost2 =
RDCOST_DBL_WITH_NATIVE_BD_DIST(rdmult, rate2, sse2, bit_depth);
// Re-encode with superres if it's better.
if (proj_rdcost1 < proj_rdcost2) {
restore_all_coding_context(cpi);
// TODO(urvang): We should avoid rerunning the recode loop by saving
// previous output+state, or running encode only for the selected 'q' in
// previous step.
// Again, temporarily force the best denom.
superres_cfg->superres_scale_denominator = best_denom;
superres_cfg->superres_kf_scale_denominator = best_denom;
int64_t sse3 = INT64_MAX;
int64_t rate3 = INT64_MAX;
cpi->superres_mode =
AOM_SUPERRES_AUTO; // Super-res on for this recode loop.
err = encode_with_recode_loop_and_filter(cpi, size, dest, dest_size,
&sse3, &rate3, largest_tile_id);
cpi->superres_mode = AOM_SUPERRES_NONE; // Reset to default (full-res).
assert(sse1 == sse3);
assert(rate1 == rate3);
assert(largest_tile_id1 == *largest_tile_id);
// Reset.
superres_cfg->superres_scale_denominator = SCALE_NUMERATOR;
superres_cfg->superres_kf_scale_denominator = SCALE_NUMERATOR;
} else {
*largest_tile_id = largest_tile_id2;
}
} else {
assert(cpi->sf.hl_sf.superres_auto_search_type == SUPERRES_AUTO_DUAL);
cpi->superres_mode =
AOM_SUPERRES_AUTO; // Super-res on for this recode loop.
err = encode_with_recode_loop_and_filter(cpi, size, dest, dest_size, &sse1,
&rate1, &largest_tile_id1);
cpi->superres_mode = AOM_SUPERRES_NONE; // Reset to default (full-res).
if (err != AOM_CODEC_OK) return err;
restore_all_coding_context(cpi);
// Encode without superres.
assert(cpi->superres_mode == AOM_SUPERRES_NONE);
err = encode_with_recode_loop_and_filter(cpi, size, dest, dest_size, &sse2,
&rate2, &largest_tile_id2);
if (err != AOM_CODEC_OK) return err;
// Note: Both use common rdmult based on base qindex of fullres.
const int64_t rdmult = av1_compute_rd_mult_based_on_qindex(
bit_depth, update_type, cm->quant_params.base_qindex,
cpi->oxcf.tune_cfg.tuning);
proj_rdcost1 =
RDCOST_DBL_WITH_NATIVE_BD_DIST(rdmult, rate1, sse1, bit_depth);
const double proj_rdcost2 =
RDCOST_DBL_WITH_NATIVE_BD_DIST(rdmult, rate2, sse2, bit_depth);
// Re-encode with superres if it's better.
if (proj_rdcost1 < proj_rdcost2) {
restore_all_coding_context(cpi);
// TODO(urvang): We should avoid rerunning the recode loop by saving
// previous output+state, or running encode only for the selected 'q' in
// previous step.
int64_t sse3 = INT64_MAX;
int64_t rate3 = INT64_MAX;
cpi->superres_mode =
AOM_SUPERRES_AUTO; // Super-res on for this recode loop.
err = encode_with_recode_loop_and_filter(cpi, size, dest, dest_size,
&sse3, &rate3, largest_tile_id);
cpi->superres_mode = AOM_SUPERRES_NONE; // Reset to default (full-res).
assert(sse1 == sse3);
assert(rate1 == rate3);
assert(largest_tile_id1 == *largest_tile_id);
} else {
*largest_tile_id = largest_tile_id2;
}
}
return err;
}
// Conditions to disable cdf_update mode in selective mode for real-time.
// Handle case for layers, scene change, and resizing.
static inline int selective_disable_cdf_rtc(const AV1_COMP *cpi) {
const AV1_COMMON *const cm = &cpi->common;
const RATE_CONTROL *const rc = &cpi->rc;
// For single layer.
if (cpi->svc.number_spatial_layers == 1 &&
cpi->svc.number_temporal_layers == 1) {
// Don't disable on intra_only, scene change (high_source_sad = 1),
// or resized frame. To avoid quality loss force enable at
// for ~30 frames after key or scene/slide change, and
// after 8 frames since last update if frame_source_sad > 0.
if (frame_is_intra_only(cm) || is_frame_resize_pending(cpi) ||
rc->high_source_sad || rc->frames_since_key < 30 ||
(cpi->oxcf.q_cfg.aq_mode == CYCLIC_REFRESH_AQ &&
cpi->cyclic_refresh->counter_encode_maxq_scene_change < 30) ||
(cpi->frames_since_last_update > 8 && cpi->rc.frame_source_sad > 0))
return 0;
else
return 1;
} else if (cpi->svc.number_temporal_layers > 1) {
// Disable only on top temporal enhancement layer for now.
return cpi->svc.temporal_layer_id == cpi->svc.number_temporal_layers - 1;
}
return 1;
}
#if !CONFIG_REALTIME_ONLY
static void subtract_stats(FIRSTPASS_STATS *section,
const FIRSTPASS_STATS *frame) {
section->frame -= frame->frame;
section->weight -= frame->weight;
section->intra_error -= frame->intra_error;
section->frame_avg_wavelet_energy -= frame->frame_avg_wavelet_energy;
section->coded_error -= frame->coded_error;
section->sr_coded_error -= frame->sr_coded_error;
section->pcnt_inter -= frame->pcnt_inter;
section->pcnt_motion -= frame->pcnt_motion;
section->pcnt_second_ref -= frame->pcnt_second_ref;
section->pcnt_neutral -= frame->pcnt_neutral;
section->intra_skip_pct -= frame->intra_skip_pct;
section->inactive_zone_rows -= frame->inactive_zone_rows;
section->inactive_zone_cols -= frame->inactive_zone_cols;
section->MVr -= frame->MVr;
section->mvr_abs -= frame->mvr_abs;
section->MVc -= frame->MVc;
section->mvc_abs -= frame->mvc_abs;
section->MVrv -= frame->MVrv;
section->MVcv -= frame->MVcv;
section->mv_in_out_count -= frame->mv_in_out_count;
section->new_mv_count -= frame->new_mv_count;
section->count -= frame->count;
section->duration -= frame->duration;
}
static void calculate_frame_avg_haar_energy(AV1_COMP *cpi) {
TWO_PASS *const twopass = &cpi->ppi->twopass;
const FIRSTPASS_STATS *const total_stats =
twopass->stats_buf_ctx->total_stats;
if (is_one_pass_rt_params(cpi) ||
(cpi->oxcf.q_cfg.deltaq_mode != DELTA_Q_PERCEPTUAL) ||
(is_fp_wavelet_energy_invalid(total_stats) == 0))
return;
const int num_mbs = (cpi->oxcf.resize_cfg.resize_mode != RESIZE_NONE)
? cpi->initial_mbs
: cpi->common.mi_params.MBs;
const YV12_BUFFER_CONFIG *const unfiltered_source = cpi->unfiltered_source;
const uint8_t *const src = unfiltered_source->y_buffer;
const int hbd = unfiltered_source->flags & YV12_FLAG_HIGHBITDEPTH;
const int stride = unfiltered_source->y_stride;
const BLOCK_SIZE fp_block_size =
get_fp_block_size(cpi->is_screen_content_type);
const int fp_block_size_width = block_size_wide[fp_block_size];
const int fp_block_size_height = block_size_high[fp_block_size];
const int num_unit_cols =
get_num_blocks(unfiltered_source->y_crop_width, fp_block_size_width);
const int num_unit_rows =
get_num_blocks(unfiltered_source->y_crop_height, fp_block_size_height);
const int num_8x8_cols = num_unit_cols * (fp_block_size_width / 8);
const int num_8x8_rows = num_unit_rows * (fp_block_size_height / 8);
int64_t frame_avg_wavelet_energy = av1_haar_ac_sad_mxn_uint8_input(
src, stride, hbd, num_8x8_rows, num_8x8_cols);
cpi->twopass_frame.frame_avg_haar_energy =
log1p((double)frame_avg_wavelet_energy / num_mbs);
}
#endif
/*!\brief Run the final pass encoding for 1-pass/2-pass encoding mode, and pack
* the bitstream
*
* \ingroup high_level_algo
* \callgraph
* \callergraph
*
* \param[in] cpi Top-level encoder structure
* \param[in] size Bitstream size
* \param[out] dest Bitstream output buffer
* \param[in] dest_size Bitstream output buffer size
*
* \return Returns a value to indicate if the encoding is done successfully.
* \retval #AOM_CODEC_OK
* \retval #AOM_CODEC_ERROR
*/
static int encode_frame_to_data_rate(AV1_COMP *cpi, size_t *size, uint8_t *dest,
size_t dest_size) {
AV1_COMMON *const cm = &cpi->common;
SequenceHeader *const seq_params = cm->seq_params;
CurrentFrame *const current_frame = &cm->current_frame;
const AV1EncoderConfig *const oxcf = &cpi->oxcf;
struct segmentation *const seg = &cm->seg;
FeatureFlags *const features = &cm->features;
const TileConfig *const tile_cfg = &oxcf->tile_cfg;
assert(cpi->source != NULL);
cpi->td.mb.e_mbd.cur_buf = cpi->source;
#if CONFIG_COLLECT_COMPONENT_TIMING
start_timing(cpi, encode_frame_to_data_rate_time);
#endif
#if !CONFIG_REALTIME_ONLY
calculate_frame_avg_haar_energy(cpi);
#endif
// frame type has been decided outside of this function call
cm->cur_frame->frame_type = current_frame->frame_type;
cm->tiles.large_scale = tile_cfg->enable_large_scale_tile;
cm->tiles.single_tile_decoding = tile_cfg->enable_single_tile_decoding;
features->allow_ref_frame_mvs &= frame_might_allow_ref_frame_mvs(cm);
// features->allow_ref_frame_mvs needs to be written into the frame header
// while cm->tiles.large_scale is 1, therefore, "cm->tiles.large_scale=1" case
// is separated from frame_might_allow_ref_frame_mvs().
features->allow_ref_frame_mvs &= !cm->tiles.large_scale;
features->allow_warped_motion = oxcf->motion_mode_cfg.allow_warped_motion &&
frame_might_allow_warped_motion(cm);
cpi->last_frame_type = current_frame->frame_type;
if (frame_is_intra_only(cm)) {
cpi->frames_since_last_update = 0;
}
if (frame_is_sframe(cm)) {
GF_GROUP *gf_group = &cpi->ppi->gf_group;
// S frame will wipe out any previously encoded altref so we cannot place
// an overlay frame
gf_group->update_type[gf_group->size] = GF_UPDATE;
}
if (encode_show_existing_frame(cm)) {
#if CONFIG_RATECTRL_LOG && CONFIG_THREE_PASS && CONFIG_BITRATE_ACCURACY
// TODO(angiebird): Move this into a function.
if (oxcf->pass == AOM_RC_THIRD_PASS) {
int frame_coding_idx =
av1_vbr_rc_frame_coding_idx(&cpi->vbr_rc_info, cpi->gf_frame_index);
rc_log_frame_encode_param(
&cpi->rc_log, frame_coding_idx, 1, 255,
cpi->ppi->gf_group.update_type[cpi->gf_frame_index]);
}
#endif
av1_finalize_encoded_frame(cpi);
// Build the bitstream
int largest_tile_id = 0; // Output from bitstream: unused here
cpi->rc.coefficient_size = 0;
if (av1_pack_bitstream(cpi, dest, dest_size, size, &largest_tile_id) !=
AOM_CODEC_OK)
return AOM_CODEC_ERROR;
if (seq_params->frame_id_numbers_present_flag &&
current_frame->frame_type == KEY_FRAME) {
// Displaying a forward key-frame, so reset the ref buffer IDs
int display_frame_id = cm->ref_frame_id[cpi->existing_fb_idx_to_show];
for (int i = 0; i < REF_FRAMES; i++)
cm->ref_frame_id[i] = display_frame_id;
}
#if DUMP_RECON_FRAMES == 1
// NOTE(zoeliu): For debug - Output the filtered reconstructed video.
av1_dump_filtered_recon_frames(cpi);
#endif // DUMP_RECON_FRAMES
// NOTE: Save the new show frame buffer index for --test-code=warn, i.e.,
// for the purpose to verify no mismatch between encoder and decoder.
if (cm->show_frame) cpi->last_show_frame_buf = cm->cur_frame;
#if CONFIG_AV1_TEMPORAL_DENOISING
av1_denoiser_update_ref_frame(cpi);
#endif
// Since we allocate a spot for the OVERLAY frame in the gf group, we need
// to do post-encoding update accordingly.
av1_set_target_rate(cpi, cm->width, cm->height);
if (is_psnr_calc_enabled(cpi)) {
cpi->source =
realloc_and_scale_source(cpi, cm->cur_frame->buf.y_crop_width,
cm->cur_frame->buf.y_crop_height);
}
#if !CONFIG_REALTIME_ONLY
if (cpi->use_ducky_encode) {
PSNR_STATS psnr;
aom_calc_psnr(cpi->source, &cpi->common.cur_frame->buf, &psnr);
DuckyEncodeFrameResult *frame_result =
&cpi->ducky_encode_info.frame_result;
frame_result->global_order_idx = cm->cur_frame->display_order_hint;
frame_result->q_index = cm->quant_params.base_qindex;
frame_result->rdmult = cpi->rd.RDMULT;
frame_result->rate = (int)(*size) * 8;
frame_result->dist = psnr.sse[0];
frame_result->psnr = psnr.psnr[0];
}
#endif // !CONFIG_REALTIME_ONLY
update_counters_for_show_frame(cpi);
return AOM_CODEC_OK;
}
// Work out whether to force_integer_mv this frame
if (!is_stat_generation_stage(cpi) &&
cpi->common.features.allow_screen_content_tools &&
!frame_is_intra_only(cm) && !cpi->sf.rt_sf.use_nonrd_pick_mode) {
if (cpi->common.seq_params->force_integer_mv == 2) {
// Adaptive mode: see what previous frame encoded did
if (cpi->unscaled_last_source != NULL) {
features->cur_frame_force_integer_mv = av1_is_integer_mv(
cpi->source, cpi->unscaled_last_source, &cpi->force_intpel_info);
} else {
cpi->common.features.cur_frame_force_integer_mv = 0;
}
} else {
cpi->common.features.cur_frame_force_integer_mv =
cpi->common.seq_params->force_integer_mv;
}
} else {
cpi->common.features.cur_frame_force_integer_mv = 0;
}
// This is used by av1_pack_bitstream. So this needs to be set in case of
// row-mt where the encoding code will use a temporary structure.
cpi->td.mb.e_mbd.cur_frame_force_integer_mv =
cpi->common.features.cur_frame_force_integer_mv;
// Set default state for segment based loop filter update flags.
cm->lf.mode_ref_delta_update = 0;
// Set various flags etc to special state if it is a key frame.
if (frame_is_intra_only(cm) || frame_is_sframe(cm)) {
// Reset the loop filter deltas and segmentation map.
av1_reset_segment_features(cm);
// If segmentation is enabled force a map update for key frames.
if (seg->enabled) {
seg->update_map = 1;
seg->update_data = 1;
}
}
if (tile_cfg->mtu == 0) {
cpi->num_tg = tile_cfg->num_tile_groups;
} else {
// Use a default value for the purposes of weighting costs in probability
// updates
cpi->num_tg = DEFAULT_MAX_NUM_TG;
}
// For 1 pass CBR mode: check if we are dropping this frame.
if (has_no_stats_stage(cpi) && oxcf->rc_cfg.mode == AOM_CBR) {
// Always drop for spatial enhancement layer if layer bandwidth is 0.
// Otherwise check for frame-dropping based on buffer level in
// av1_rc_drop_frame().
if ((cpi->svc.spatial_layer_id > 0 &&
cpi->oxcf.rc_cfg.target_bandwidth == 0) ||
av1_rc_drop_frame(cpi)) {
cpi->is_dropped_frame = true;
}
if (cpi->is_dropped_frame) {
av1_setup_frame_size(cpi);
av1_set_mv_search_params(cpi);
av1_rc_postencode_update_drop_frame(cpi);
release_scaled_references(cpi);
cpi->ppi->gf_group.is_frame_dropped[cpi->gf_frame_index] = true;
// A dropped frame might not be shown but it always takes a slot in the gf
// group. Therefore, even when it is not shown, we still need to update
// the relevant frame counters.
if (cm->show_frame) {
update_counters_for_show_frame(cpi);
}
return AOM_CODEC_OK;
}
}
if (oxcf->tune_cfg.tuning == AOM_TUNE_SSIM ||
oxcf->tune_cfg.tuning == AOM_TUNE_IQ ||
oxcf->tune_cfg.tuning == AOM_TUNE_SSIMULACRA2) {
av1_set_mb_ssim_rdmult_scaling(cpi);
}
#if CONFIG_SALIENCY_MAP
else if (oxcf->tune_cfg.tuning == AOM_TUNE_VMAF_SALIENCY_MAP &&
!(cpi->source->flags & YV12_FLAG_HIGHBITDEPTH)) {
if (av1_set_saliency_map(cpi) == 0) {
return AOM_CODEC_MEM_ERROR;
}
#if !CONFIG_REALTIME_ONLY
double motion_ratio = av1_setup_motion_ratio(cpi);
#else
double motion_ratio = 1.0;
#endif
if (av1_setup_sm_rdmult_scaling_factor(cpi, motion_ratio) == 0) {
return AOM_CODEC_MEM_ERROR;
}
}
#endif
#if CONFIG_TUNE_VMAF
else if (oxcf->tune_cfg.tuning == AOM_TUNE_VMAF_WITHOUT_PREPROCESSING ||
oxcf->tune_cfg.tuning == AOM_TUNE_VMAF_MAX_GAIN ||
oxcf->tune_cfg.tuning == AOM_TUNE_VMAF_NEG_MAX_GAIN) {
av1_set_mb_vmaf_rdmult_scaling(cpi);
}
#endif
if (cpi->oxcf.q_cfg.deltaq_mode == DELTA_Q_PERCEPTUAL_AI &&
cpi->sf.rt_sf.use_nonrd_pick_mode == 0) {
av1_init_mb_wiener_var_buffer(cpi);
av1_set_mb_wiener_variance(cpi);
}
if (cpi->oxcf.q_cfg.deltaq_mode == DELTA_Q_USER_RATING_BASED) {
av1_init_mb_ur_var_buffer(cpi);
av1_set_mb_ur_variance(cpi);
}
#if CONFIG_INTERNAL_STATS
memset(cpi->mode_chosen_counts, 0,
MAX_MODES * sizeof(*cpi->mode_chosen_counts));
#endif
if (seq_params->frame_id_numbers_present_flag) {
/* Non-normative definition of current_frame_id ("frame counter" with
* wraparound) */
if (cm->current_frame_id == -1) {
int lsb, msb;
/* quasi-random initialization of current_frame_id for a key frame */
if (cpi->source->flags & YV12_FLAG_HIGHBITDEPTH) {
lsb = CONVERT_TO_SHORTPTR(cpi->source->y_buffer)[0] & 0xff;
msb = CONVERT_TO_SHORTPTR(cpi->source->y_buffer)[1] & 0xff;
} else {
lsb = cpi->source->y_buffer[0] & 0xff;
msb = cpi->source->y_buffer[1] & 0xff;
}
cm->current_frame_id =
((msb << 8) + lsb) % (1 << seq_params->frame_id_length);
// S_frame is meant for stitching different streams of different
// resolutions together, so current_frame_id must be the
// same across different streams of the same content current_frame_id
// should be the same and not random. 0x37 is a chosen number as start
// point
if (oxcf->kf_cfg.sframe_dist != 0) cm->current_frame_id = 0x37;
} else {
cm->current_frame_id =
(cm->current_frame_id + 1 + (1 << seq_params->frame_id_length)) %
(1 << seq_params->frame_id_length);
}
}
switch (oxcf->algo_cfg.cdf_update_mode) {
case 0: // No CDF update for any frames(4~6% compression loss).
features->disable_cdf_update = 1;
break;
case 1: // Enable CDF update for all frames.
if (cpi->sf.rt_sf.disable_cdf_update_non_reference_frame &&
cpi->ppi->rtc_ref.non_reference_frame && cpi->rc.frames_since_key > 2)
features->disable_cdf_update = 1;
else if (cpi->sf.rt_sf.selective_cdf_update)
features->disable_cdf_update = selective_disable_cdf_rtc(cpi);
else
features->disable_cdf_update = 0;
break;
case 2:
// Strategically determine at which frames to do CDF update.
// Currently only enable CDF update for all-intra and no-show frames(1.5%
// compression loss) for good qualiy or allintra mode.
if (oxcf->mode == GOOD || oxcf->mode == ALLINTRA) {
features->disable_cdf_update =
(frame_is_intra_only(cm) || !cm->show_frame) ? 0 : 1;
} else {
features->disable_cdf_update = selective_disable_cdf_rtc(cpi);
}
break;
}
// Disable cdf update for the INTNL_ARF_UPDATE frame with
// frame_parallel_level 1.
if (!cpi->do_frame_data_update &&
cpi->ppi->gf_group.update_type[cpi->gf_frame_index] == INTNL_ARF_UPDATE) {
assert(cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] == 1);
features->disable_cdf_update = 1;
}
#if !CONFIG_REALTIME_ONLY
if (cpi->oxcf.tool_cfg.enable_global_motion && !frame_is_intra_only(cm)) {
// Flush any stale global motion information, which may be left over
// from a previous frame
aom_invalidate_pyramid(cpi->source->y_pyramid);
av1_invalidate_corner_list(cpi->source->corners);
}
#endif // !CONFIG_REALTIME_ONLY
int largest_tile_id = 0;
if (av1_superres_in_recode_allowed(cpi)) {
if (encode_with_and_without_superres(cpi, size, dest, dest_size,
&largest_tile_id) != AOM_CODEC_OK) {
return AOM_CODEC_ERROR;
}
} else {
const aom_superres_mode orig_superres_mode = cpi->superres_mode; // save
cpi->superres_mode = cpi->oxcf.superres_cfg.superres_mode;
if (encode_with_recode_loop_and_filter(cpi, size, dest, dest_size, NULL,
NULL,
&largest_tile_id) != AOM_CODEC_OK) {
return AOM_CODEC_ERROR;
}
cpi->superres_mode = orig_superres_mode; // restore
}
// Update reference frame ids for reference frames this frame will overwrite
if (seq_params->frame_id_numbers_present_flag) {
for (int i = 0; i < REF_FRAMES; i++) {
if ((current_frame->refresh_frame_flags >> i) & 1) {
cm->ref_frame_id[i] = cm->current_frame_id;
}
}
}
if (cpi->svc.spatial_layer_id == cpi->svc.number_spatial_layers - 1)
cpi->svc.num_encoded_top_layer++;
#if DUMP_RECON_FRAMES == 1
// NOTE(zoeliu): For debug - Output the filtered reconstructed video.
av1_dump_filtered_recon_frames(cpi);
#endif // DUMP_RECON_FRAMES
if (cm->seg.enabled) {
if (cm->seg.update_map == 0 && cm->last_frame_seg_map) {
memcpy(cm->cur_frame->seg_map, cm->last_frame_seg_map,
cm->cur_frame->mi_cols * cm->cur_frame->mi_rows *
sizeof(*cm->cur_frame->seg_map));
}
}
int release_scaled_refs = 0;
#if CONFIG_FPMT_TEST
release_scaled_refs =
(cpi->ppi->fpmt_unit_test_cfg == PARALLEL_SIMULATION_ENCODE) ? 1 : 0;
#endif // CONFIG_FPMT_TEST
if (release_scaled_refs ||
cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] == 0) {
if (frame_is_intra_only(cm) == 0) {
release_scaled_references(cpi);
}
}
#if CONFIG_AV1_TEMPORAL_DENOISING
av1_denoiser_update_ref_frame(cpi);
#endif
// NOTE: Save the new show frame buffer index for --test-code=warn, i.e.,
// for the purpose to verify no mismatch between encoder and decoder.
if (cm->show_frame) cpi->last_show_frame_buf = cm->cur_frame;
if (features->refresh_frame_context == REFRESH_FRAME_CONTEXT_BACKWARD) {
*cm->fc = cpi->tile_data[largest_tile_id].tctx;
av1_reset_cdf_symbol_counters(cm->fc);
}
if (!cm->tiles.large_scale) {
cm->cur_frame->frame_context = *cm->fc;
}
if (tile_cfg->enable_ext_tile_debug) {
// (yunqing) This test ensures the correctness of large scale tile coding.
if (cm->tiles.large_scale && is_stat_consumption_stage(cpi)) {
char fn[20] = "./fc";
fn[4] = current_frame->frame_number / 100 + '0';
fn[5] = (current_frame->frame_number % 100) / 10 + '0';
fn[6] = (current_frame->frame_number % 10) + '0';
fn[7] = '\0';
av1_print_frame_contexts(cm->fc, fn);
}
}
cpi->last_frame_type = current_frame->frame_type;
if (cm->features.disable_cdf_update) {
cpi->frames_since_last_update++;
} else {
cpi->frames_since_last_update = 1;
}
if (cpi->svc.spatial_layer_id == cpi->svc.number_spatial_layers - 1) {
cpi->svc.prev_number_spatial_layers = cpi->svc.number_spatial_layers;
}
cpi->svc.prev_number_temporal_layers = cpi->svc.number_temporal_layers;
// Clear the one shot update flags for segmentation map and mode/ref loop
// filter deltas.
cm->seg.update_map = 0;
cm->seg.update_data = 0;
cm->lf.mode_ref_delta_update = 0;
if (cm->show_frame) {
update_counters_for_show_frame(cpi);
}
#if CONFIG_COLLECT_COMPONENT_TIMING
end_timing(cpi, encode_frame_to_data_rate_time);
#endif
return AOM_CODEC_OK;
}
int av1_encode(AV1_COMP *const cpi, uint8_t *const dest, size_t dest_size,
const EncodeFrameInput *const frame_input,
const EncodeFrameParams *const frame_params,
size_t *const frame_size) {
AV1_COMMON *const cm = &cpi->common;
CurrentFrame *const current_frame = &cm->current_frame;
cpi->unscaled_source = frame_input->source;
cpi->source = frame_input->source;
cpi->unscaled_last_source = frame_input->last_source;
current_frame->refresh_frame_flags = frame_params->refresh_frame_flags;
cm->features.error_resilient_mode = frame_params->error_resilient_mode;
cm->features.primary_ref_frame = frame_params->primary_ref_frame;
cm->current_frame.frame_type = frame_params->frame_type;
cm->show_frame = frame_params->show_frame;
cpi->ref_frame_flags = frame_params->ref_frame_flags;
cpi->speed = frame_params->speed;
cm->show_existing_frame = frame_params->show_existing_frame;
cpi->existing_fb_idx_to_show = frame_params->existing_fb_idx_to_show;
memcpy(cm->remapped_ref_idx, frame_params->remapped_ref_idx,
REF_FRAMES * sizeof(*cm->remapped_ref_idx));
memcpy(&cpi->refresh_frame, &frame_params->refresh_frame,
sizeof(cpi->refresh_frame));
if (current_frame->frame_type == KEY_FRAME &&
cpi->ppi->gf_group.refbuf_state[cpi->gf_frame_index] == REFBUF_RESET) {
current_frame->frame_number = 0;
}
current_frame->order_hint =
current_frame->frame_number + frame_params->order_offset;
current_frame->display_order_hint = current_frame->order_hint;
current_frame->order_hint %=
(1 << (cm->seq_params->order_hint_info.order_hint_bits_minus_1 + 1));
current_frame->pyramid_level = get_true_pyr_level(
cpi->ppi->gf_group.layer_depth[cpi->gf_frame_index],
current_frame->display_order_hint, cpi->ppi->gf_group.max_layer_depth);
if (is_stat_generation_stage(cpi)) {
#if !CONFIG_REALTIME_ONLY
if (cpi->oxcf.q_cfg.use_fixed_qp_offsets)
av1_noop_first_pass_frame(cpi, frame_input->ts_duration);
else
av1_first_pass(cpi, frame_input->ts_duration);
#endif
} else if (cpi->oxcf.pass == AOM_RC_ONE_PASS ||
cpi->oxcf.pass >= AOM_RC_SECOND_PASS) {
if (encode_frame_to_data_rate(cpi, frame_size, dest, dest_size) !=
AOM_CODEC_OK) {
return AOM_CODEC_ERROR;
}
} else {
return AOM_CODEC_ERROR;
}
return AOM_CODEC_OK;
}
#if CONFIG_DENOISE && !CONFIG_REALTIME_ONLY
static int apply_denoise_2d(AV1_COMP *cpi, const YV12_BUFFER_CONFIG *sd,
int block_size, float noise_level,
int64_t time_stamp, int64_t end_time) {
AV1_COMMON *const cm = &cpi->common;
if (!cpi->denoise_and_model) {
cpi->denoise_and_model = aom_denoise_and_model_alloc(
cm->seq_params->bit_depth, block_size, noise_level);
if (!cpi->denoise_and_model) {
aom_set_error(cm->error, AOM_CODEC_MEM_ERROR,
"Error allocating denoise and model");
return -1;
}
}
if (!cpi->film_grain_table) {
cpi->film_grain_table = aom_malloc(sizeof(*cpi->film_grain_table));
if (!cpi->film_grain_table) {
aom_set_error(cm->error, AOM_CODEC_MEM_ERROR,
"Error allocating grain table");
return -1;
}
memset(cpi->film_grain_table, 0, sizeof(*cpi->film_grain_table));
}
if (aom_denoise_and_model_run(cpi->denoise_and_model, sd,
&cm->film_grain_params,
cpi->oxcf.enable_dnl_denoising)) {
if (cm->film_grain_params.apply_grain) {
aom_film_grain_table_append(cpi->film_grain_table, time_stamp, end_time,
&cm->film_grain_params);
}
}
return 0;
}
#endif
int av1_receive_raw_frame(AV1_COMP *cpi, aom_enc_frame_flags_t frame_flags,
const YV12_BUFFER_CONFIG *sd, int64_t time_stamp,
int64_t end_time) {
AV1_COMMON *const cm = &cpi->common;
const SequenceHeader *const seq_params = cm->seq_params;
int res = 0;
const int subsampling_x = sd->subsampling_x;
const int subsampling_y = sd->subsampling_y;
const int use_highbitdepth = (sd->flags & YV12_FLAG_HIGHBITDEPTH) != 0;
#if CONFIG_TUNE_VMAF
if (!is_stat_generation_stage(cpi) &&
cpi->oxcf.tune_cfg.tuning == AOM_TUNE_VMAF_WITH_PREPROCESSING) {
av1_vmaf_frame_preprocessing(cpi, sd);
}
if (!is_stat_generation_stage(cpi) &&
cpi->oxcf.tune_cfg.tuning == AOM_TUNE_VMAF_MAX_GAIN) {
av1_vmaf_blk_preprocessing(cpi, sd);
}
#endif
#if CONFIG_INTERNAL_STATS
struct aom_usec_timer timer;
aom_usec_timer_start(&timer);
#endif
#if CONFIG_AV1_TEMPORAL_DENOISING
setup_denoiser_buffer(cpi);
#endif
#if CONFIG_DENOISE
// even if denoise_noise_level is > 0, we don't need need to denoise on pass
// 1 of 2 if enable_dnl_denoising is disabled since the 2nd pass will be
// encoding the original (non-denoised) frame
if (cpi->oxcf.noise_level > 0 && !(cpi->oxcf.pass == AOM_RC_FIRST_PASS &&
!cpi->oxcf.enable_dnl_denoising)) {
#if !CONFIG_REALTIME_ONLY
// Choose a synthetic noise level for still images for enhanced perceptual
// quality based on an estimated noise level in the source, but only if
// the noise level is set on the command line to > 0.
if (cpi->oxcf.mode == ALLINTRA) {
// No noise synthesis if source is very clean.
// Uses a low edge threshold to focus on smooth areas.
// Increase output noise setting a little compared to measured value.
double y_noise_level = 0.0;
av1_estimate_noise_level(sd, &y_noise_level, AOM_PLANE_Y, AOM_PLANE_Y,
cm->seq_params->bit_depth, 16);
cpi->oxcf.noise_level = (float)(y_noise_level - 0.1);
cpi->oxcf.noise_level = (float)AOMMAX(0.0, cpi->oxcf.noise_level);
if (cpi->oxcf.noise_level > 0.0) {
cpi->oxcf.noise_level += (float)0.5;
}
cpi->oxcf.noise_level = (float)AOMMIN(5.0, cpi->oxcf.noise_level);
}
if (apply_denoise_2d(cpi, sd, cpi->oxcf.noise_block_size,
cpi->oxcf.noise_level, time_stamp, end_time) < 0)
res = -1;
#endif // !CONFIG_REALTIME_ONLY
}
#endif // CONFIG_DENOISE
if (av1_lookahead_push(cpi->ppi->lookahead, sd, time_stamp, end_time,
use_highbitdepth, cpi->alloc_pyramid, frame_flags)) {
aom_set_error(cm->error, AOM_CODEC_ERROR, "av1_lookahead_push() failed");
res = -1;
}
#if CONFIG_INTERNAL_STATS
aom_usec_timer_mark(&timer);
cpi->ppi->total_time_receive_data += aom_usec_timer_elapsed(&timer);
#endif
// Note: Regarding profile setting, the following checks are added to help
// choose a proper profile for the input video. The criterion is that all
// bitstreams must be designated as the lowest profile that match its content.
// E.G. A bitstream that contains 4:4:4 video must be designated as High
// Profile in the seq header, and likewise a bitstream that contains 4:2:2
// bitstream must be designated as Professional Profile in the sequence
// header.
if ((seq_params->profile == PROFILE_0) && !seq_params->monochrome &&
(subsampling_x != 1 || subsampling_y != 1)) {
aom_set_error(cm->error, AOM_CODEC_INVALID_PARAM,
"Non-4:2:0 color format requires profile 1 or 2");
res = -1;
}
if ((seq_params->profile == PROFILE_1) &&
!(subsampling_x == 0 && subsampling_y == 0)) {
aom_set_error(cm->error, AOM_CODEC_INVALID_PARAM,
"Profile 1 requires 4:4:4 color format");
res = -1;
}
if ((seq_params->profile == PROFILE_2) &&
(seq_params->bit_depth <= AOM_BITS_10) &&
!(subsampling_x == 1 && subsampling_y == 0)) {
aom_set_error(cm->error, AOM_CODEC_INVALID_PARAM,
"Profile 2 bit-depth <= 10 requires 4:2:2 color format");
res = -1;
}
return res;
}
#if CONFIG_ENTROPY_STATS
void print_entropy_stats(AV1_PRIMARY *const ppi) {
if (!ppi->cpi) return;
if (ppi->cpi->oxcf.pass != 1 &&
ppi->cpi->common.current_frame.frame_number > 0) {
fprintf(stderr, "Writing counts.stt\n");
FILE *f = fopen("counts.stt", "wb");
fwrite(&ppi->aggregate_fc, sizeof(ppi->aggregate_fc), 1, f);
fclose(f);
}
}
#endif // CONFIG_ENTROPY_STATS
#if CONFIG_INTERNAL_STATS
static void adjust_image_stat(double y, double u, double v, double all,
ImageStat *s) {
s->stat[STAT_Y] += y;
s->stat[STAT_U] += u;
s->stat[STAT_V] += v;
s->stat[STAT_ALL] += all;
s->worst = AOMMIN(s->worst, all);
}
static void compute_internal_stats(AV1_COMP *cpi, int frame_bytes) {
AV1_PRIMARY *const ppi = cpi->ppi;
AV1_COMMON *const cm = &cpi->common;
double samples = 0.0;
const uint32_t in_bit_depth = cpi->oxcf.input_cfg.input_bit_depth;
const uint32_t bit_depth = cpi->td.mb.e_mbd.bd;
if (cpi->ppi->use_svc &&
cpi->svc.spatial_layer_id < cpi->svc.number_spatial_layers - 1)
return;
#if CONFIG_INTER_STATS_ONLY
if (cm->current_frame.frame_type == KEY_FRAME) return; // skip key frame
#endif
cpi->bytes += frame_bytes;
if (cm->show_frame) {
const YV12_BUFFER_CONFIG *orig = cpi->source;
const YV12_BUFFER_CONFIG *recon = &cpi->common.cur_frame->buf;
double y, u, v, frame_all;
ppi->count[0]++;
ppi->count[1]++;
if (cpi->ppi->b_calculate_psnr) {
PSNR_STATS psnr;
double weight[2] = { 0.0, 0.0 };
double frame_ssim2[2] = { 0.0, 0.0 };
#if CONFIG_AV1_HIGHBITDEPTH
aom_calc_highbd_psnr(orig, recon, &psnr, bit_depth, in_bit_depth);
#else
aom_calc_psnr(orig, recon, &psnr);
#endif
adjust_image_stat(psnr.psnr[1], psnr.psnr[2], psnr.psnr[3], psnr.psnr[0],
&(ppi->psnr[0]));
ppi->total_sq_error[0] += psnr.sse[0];
ppi->total_samples[0] += psnr.samples[0];
samples = psnr.samples[0];
aom_calc_ssim(orig, recon, bit_depth, in_bit_depth,
cm->seq_params->use_highbitdepth, weight, frame_ssim2);
ppi->worst_ssim = AOMMIN(ppi->worst_ssim, frame_ssim2[0]);
ppi->summed_quality += frame_ssim2[0] * weight[0];
ppi->summed_weights += weight[0];
#if CONFIG_AV1_HIGHBITDEPTH
// Compute PSNR based on stream bit depth
if ((cpi->source->flags & YV12_FLAG_HIGHBITDEPTH) &&
(in_bit_depth < bit_depth)) {
adjust_image_stat(psnr.psnr_hbd[1], psnr.psnr_hbd[2], psnr.psnr_hbd[3],
psnr.psnr_hbd[0], &ppi->psnr[1]);
ppi->total_sq_error[1] += psnr.sse_hbd[0];
ppi->total_samples[1] += psnr.samples_hbd[0];
ppi->worst_ssim_hbd = AOMMIN(ppi->worst_ssim_hbd, frame_ssim2[1]);
ppi->summed_quality_hbd += frame_ssim2[1] * weight[1];
ppi->summed_weights_hbd += weight[1];
}
#endif
#if 0
{
FILE *f = fopen("q_used.stt", "a");
double y2 = psnr.psnr[1];
double u2 = psnr.psnr[2];
double v2 = psnr.psnr[3];
double frame_psnr2 = psnr.psnr[0];
fprintf(f, "%5d : Y%f7.3:U%f7.3:V%f7.3:F%f7.3:S%7.3f\n",
cm->current_frame.frame_number, y2, u2, v2,
frame_psnr2, frame_ssim2);
fclose(f);
}
#endif
}
if (ppi->b_calculate_blockiness) {
if (!cm->seq_params->use_highbitdepth) {
const double frame_blockiness =
av1_get_blockiness(orig->y_buffer, orig->y_stride, recon->y_buffer,
recon->y_stride, orig->y_width, orig->y_height);
ppi->worst_blockiness = AOMMAX(ppi->worst_blockiness, frame_blockiness);
ppi->total_blockiness += frame_blockiness;
}
if (ppi->b_calculate_consistency) {
if (!cm->seq_params->use_highbitdepth) {
const double this_inconsistency = aom_get_ssim_metrics(
orig->y_buffer, orig->y_stride, recon->y_buffer, recon->y_stride,
orig->y_width, orig->y_height, ppi->ssim_vars, &ppi->metrics, 1);
const double peak = (double)((1 << in_bit_depth) - 1);
const double consistency =
aom_sse_to_psnr(samples, peak, ppi->total_inconsistency);
if (consistency > 0.0)
ppi->worst_consistency =
AOMMIN(ppi->worst_consistency, consistency);
ppi->total_inconsistency += this_inconsistency;
}
}
}
frame_all =
aom_calc_fastssim(orig, recon, &y, &u, &v, bit_depth, in_bit_depth);
adjust_image_stat(y, u, v, frame_all, &ppi->fastssim);
frame_all = aom_psnrhvs(orig, recon, &y, &u, &v, bit_depth, in_bit_depth);
adjust_image_stat(y, u, v, frame_all, &ppi->psnrhvs);
}
}
void print_internal_stats(AV1_PRIMARY *ppi) {
if (!ppi->cpi) return;
AV1_COMP *const cpi = ppi->cpi;
if (ppi->cpi->oxcf.pass != 1 &&
ppi->cpi->common.current_frame.frame_number > 0) {
char headings[512] = { 0 };
char results[512] = { 0 };
FILE *f = fopen("opsnr.stt", "a");
double time_encoded =
(cpi->time_stamps.prev_ts_end - cpi->time_stamps.first_ts_start) /
10000000.000;
double total_encode_time =
(ppi->total_time_receive_data + ppi->total_time_compress_data) /
1000.000;
const double dr =
(double)ppi->total_bytes * (double)8 / (double)1000 / time_encoded;
const double peak =
(double)((1 << ppi->cpi->oxcf.input_cfg.input_bit_depth) - 1);
const double target_rate =
(double)ppi->cpi->oxcf.rc_cfg.target_bandwidth / 1000;
const double rate_err = ((100.0 * (dr - target_rate)) / target_rate);
if (ppi->b_calculate_psnr) {
const double total_psnr = aom_sse_to_psnr(
(double)ppi->total_samples[0], peak, (double)ppi->total_sq_error[0]);
const double total_ssim =
100 * pow(ppi->summed_quality / ppi->summed_weights, 8.0);
snprintf(headings, sizeof(headings),
"Bitrate\tAVGPsnr\tGLBPsnr\tAVPsnrP\tGLPsnrP\t"
"AOMSSIM\tVPSSIMP\tFASTSIM\tPSNRHVS\t"
"WstPsnr\tWstSsim\tWstFast\tWstHVS\t"
"AVPsrnY\tAPsnrCb\tAPsnrCr");
snprintf(results, sizeof(results),
"%7.2f\t%7.3f\t%7.3f\t%7.3f\t%7.3f\t"
"%7.3f\t%7.3f\t%7.3f\t%7.3f\t"
"%7.3f\t%7.3f\t%7.3f\t%7.3f\t"
"%7.3f\t%7.3f\t%7.3f",
dr, ppi->psnr[0].stat[STAT_ALL] / ppi->count[0], total_psnr,
ppi->psnr[0].stat[STAT_ALL] / ppi->count[0], total_psnr,
total_ssim, total_ssim,
ppi->fastssim.stat[STAT_ALL] / ppi->count[0],
ppi->psnrhvs.stat[STAT_ALL] / ppi->count[0], ppi->psnr[0].worst,
ppi->worst_ssim, ppi->fastssim.worst, ppi->psnrhvs.worst,
ppi->psnr[0].stat[STAT_Y] / ppi->count[0],
ppi->psnr[0].stat[STAT_U] / ppi->count[0],
ppi->psnr[0].stat[STAT_V] / ppi->count[0]);
if (ppi->b_calculate_blockiness) {
SNPRINT(headings, "\t Block\tWstBlck");
SNPRINT2(results, "\t%7.3f", ppi->total_blockiness / ppi->count[0]);
SNPRINT2(results, "\t%7.3f", ppi->worst_blockiness);
}
if (ppi->b_calculate_consistency) {
double consistency =
aom_sse_to_psnr((double)ppi->total_samples[0], peak,
(double)ppi->total_inconsistency);
SNPRINT(headings, "\tConsist\tWstCons");
SNPRINT2(results, "\t%7.3f", consistency);
SNPRINT2(results, "\t%7.3f", ppi->worst_consistency);
}
SNPRINT(headings, "\t Time\tRcErr\tAbsErr");
SNPRINT2(results, "\t%8.0f", total_encode_time);
SNPRINT2(results, " %7.2f", rate_err);
SNPRINT2(results, " %7.2f", fabs(rate_err));
SNPRINT(headings, "\tAPsnr611");
SNPRINT2(results, " %7.3f",
(6 * ppi->psnr[0].stat[STAT_Y] + ppi->psnr[0].stat[STAT_U] +
ppi->psnr[0].stat[STAT_V]) /
(ppi->count[0] * 8));
#if CONFIG_AV1_HIGHBITDEPTH
const uint32_t in_bit_depth = ppi->cpi->oxcf.input_cfg.input_bit_depth;
const uint32_t bit_depth = ppi->seq_params.bit_depth;
// Since cpi->source->flags is not available here, but total_samples[1]
// will be non-zero if cpi->source->flags & YV12_FLAG_HIGHBITDEPTH was
// true in compute_internal_stats
if ((ppi->total_samples[1] > 0) && (in_bit_depth < bit_depth)) {
const double peak_hbd = (double)((1 << bit_depth) - 1);
const double total_psnr_hbd =
aom_sse_to_psnr((double)ppi->total_samples[1], peak_hbd,
(double)ppi->total_sq_error[1]);
const double total_ssim_hbd =
100 * pow(ppi->summed_quality_hbd / ppi->summed_weights_hbd, 8.0);
SNPRINT(headings,
"\t AVGPsnrH GLBPsnrH AVPsnrPH GLPsnrPH"
" AVPsnrYH APsnrCbH APsnrCrH WstPsnrH"
" AOMSSIMH VPSSIMPH WstSsimH");
SNPRINT2(results, "\t%7.3f",
ppi->psnr[1].stat[STAT_ALL] / ppi->count[1]);
SNPRINT2(results, " %7.3f", total_psnr_hbd);
SNPRINT2(results, " %7.3f",
ppi->psnr[1].stat[STAT_ALL] / ppi->count[1]);
SNPRINT2(results, " %7.3f", total_psnr_hbd);
SNPRINT2(results, " %7.3f", ppi->psnr[1].stat[STAT_Y] / ppi->count[1]);
SNPRINT2(results, " %7.3f", ppi->psnr[1].stat[STAT_U] / ppi->count[1]);
SNPRINT2(results, " %7.3f", ppi->psnr[1].stat[STAT_V] / ppi->count[1]);
SNPRINT2(results, " %7.3f", ppi->psnr[1].worst);
SNPRINT2(results, " %7.3f", total_ssim_hbd);
SNPRINT2(results, " %7.3f", total_ssim_hbd);
SNPRINT2(results, " %7.3f", ppi->worst_ssim_hbd);
}
#endif
fprintf(f, "%s\n", headings);
fprintf(f, "%s\n", results);
}
fclose(f);
aom_free(ppi->ssim_vars);
ppi->ssim_vars = NULL;
}
}
#endif // CONFIG_INTERNAL_STATS
static inline void update_keyframe_counters(AV1_COMP *cpi) {
if (cpi->common.show_frame && cpi->rc.frames_to_key) {
#if !CONFIG_REALTIME_ONLY
FIRSTPASS_INFO *firstpass_info = &cpi->ppi->twopass.firstpass_info;
if (firstpass_info->past_stats_count > FIRSTPASS_INFO_STATS_PAST_MIN) {
av1_firstpass_info_move_cur_index_and_pop(firstpass_info);
} else {
// When there is not enough past stats, we move the current
// index without popping the past stats
av1_firstpass_info_move_cur_index(firstpass_info);
}
#endif
if (cpi->svc.spatial_layer_id == cpi->svc.number_spatial_layers - 1) {
cpi->rc.frames_since_key++;
cpi->rc.frames_to_key--;
cpi->rc.frames_to_fwd_kf--;
cpi->rc.frames_since_scene_change++;
}
}
}
static inline void update_frames_till_gf_update(AV1_COMP *cpi) {
// TODO(weitinglin): Updating this counter for is_frame_droppable
// is a work-around to handle the condition when a frame is drop.
// We should fix the cpi->common.show_frame flag
// instead of checking the other condition to update the counter properly.
if (cpi->common.show_frame ||
is_frame_droppable(&cpi->ppi->rtc_ref, &cpi->ext_flags.refresh_frame)) {
// Decrement count down till next gf
if (cpi->rc.frames_till_gf_update_due > 0)
cpi->rc.frames_till_gf_update_due--;
}
}
static inline void update_gf_group_index(AV1_COMP *cpi) {
// Increment the gf group index ready for the next frame.
if (is_one_pass_rt_params(cpi) &&
cpi->svc.spatial_layer_id == cpi->svc.number_spatial_layers - 1) {
++cpi->gf_frame_index;
// Reset gf_frame_index in case it reaches MAX_STATIC_GF_GROUP_LENGTH
// for real time encoding.
if (cpi->gf_frame_index == MAX_STATIC_GF_GROUP_LENGTH)
cpi->gf_frame_index = 0;
} else {
++cpi->gf_frame_index;
}
}
static void update_fb_of_context_type(const AV1_COMP *const cpi,
int *const fb_of_context_type) {
const AV1_COMMON *const cm = &cpi->common;
const int current_frame_ref_type = get_current_frame_ref_type(cpi);
if (frame_is_intra_only(cm) || cm->features.error_resilient_mode ||
cpi->ext_flags.use_primary_ref_none) {
for (int i = 0; i < REF_FRAMES; i++) {
fb_of_context_type[i] = -1;
}
fb_of_context_type[current_frame_ref_type] =
cm->show_frame ? get_ref_frame_map_idx(cm, GOLDEN_FRAME)
: get_ref_frame_map_idx(cm, ALTREF_FRAME);
}
if (!encode_show_existing_frame(cm)) {
// Refresh fb_of_context_type[]: see encoder.h for explanation
if (cm->current_frame.frame_type == KEY_FRAME) {
// All ref frames are refreshed, pick one that will live long enough
fb_of_context_type[current_frame_ref_type] = 0;
} else {
// If more than one frame is refreshed, it doesn't matter which one we
// pick so pick the first. LST sometimes doesn't refresh any: this is ok
for (int i = 0; i < REF_FRAMES; i++) {
if (cm->current_frame.refresh_frame_flags & (1 << i)) {
fb_of_context_type[current_frame_ref_type] = i;
break;
}
}
}
}
}
static void update_rc_counts(AV1_COMP *cpi) {
update_keyframe_counters(cpi);
update_frames_till_gf_update(cpi);
update_gf_group_index(cpi);
}
static void update_end_of_frame_stats(AV1_COMP *cpi) {
if (cpi->do_frame_data_update) {
// Store current frame loopfilter levels in ppi, if update flag is set.
if (!cpi->common.show_existing_frame) {
AV1_COMMON *const cm = &cpi->common;
struct loopfilter *const lf = &cm->lf;
cpi->ppi->filter_level[0] = lf->backup_filter_level[0];
cpi->ppi->filter_level[1] = lf->backup_filter_level[1];
cpi->ppi->filter_level_u = lf->backup_filter_level_u;
cpi->ppi->filter_level_v = lf->backup_filter_level_v;
}
}
// Store frame level mv_stats from cpi to ppi.
cpi->ppi->mv_stats = cpi->mv_stats;
}
// Updates frame level stats related to global motion
static inline void update_gm_stats(AV1_COMP *cpi) {
FRAME_UPDATE_TYPE update_type =
cpi->ppi->gf_group.update_type[cpi->gf_frame_index];
int i, is_gm_present = 0;
// Check if the current frame has any valid global motion model across its
// reference frames
for (i = 0; i < REF_FRAMES; i++) {
if (cpi->common.global_motion[i].wmtype != IDENTITY) {
is_gm_present = 1;
break;
}
}
int update_actual_stats = 1;
#if CONFIG_FPMT_TEST
update_actual_stats =
(cpi->ppi->fpmt_unit_test_cfg == PARALLEL_SIMULATION_ENCODE) ? 0 : 1;
if (!update_actual_stats) {
if (cpi->ppi->temp_valid_gm_model_found[update_type] == INT32_MAX) {
cpi->ppi->temp_valid_gm_model_found[update_type] = is_gm_present;
} else {
cpi->ppi->temp_valid_gm_model_found[update_type] |= is_gm_present;
}
int show_existing_between_parallel_frames =
(cpi->ppi->gf_group.update_type[cpi->gf_frame_index] ==
INTNL_OVERLAY_UPDATE &&
cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index + 1] == 2);
if (cpi->do_frame_data_update == 1 &&
!show_existing_between_parallel_frames) {
for (i = 0; i < FRAME_UPDATE_TYPES; i++) {
cpi->ppi->valid_gm_model_found[i] =
cpi->ppi->temp_valid_gm_model_found[i];
}
}
}
#endif
if (update_actual_stats) {
if (cpi->ppi->valid_gm_model_found[update_type] == INT32_MAX) {
cpi->ppi->valid_gm_model_found[update_type] = is_gm_present;
} else {
cpi->ppi->valid_gm_model_found[update_type] |= is_gm_present;
}
}
}
void av1_post_encode_updates(AV1_COMP *const cpi,
const AV1_COMP_DATA *const cpi_data) {
AV1_PRIMARY *const ppi = cpi->ppi;
AV1_COMMON *const cm = &cpi->common;
update_gm_stats(cpi);
#if !CONFIG_REALTIME_ONLY
// Update the total stats remaining structure.
if (cpi->twopass_frame.this_frame != NULL &&
ppi->twopass.stats_buf_ctx->total_left_stats) {
subtract_stats(ppi->twopass.stats_buf_ctx->total_left_stats,
cpi->twopass_frame.this_frame);
}
#endif
#if CONFIG_OUTPUT_FRAME_SIZE
FILE *f = fopen("frame_sizes.csv", "a");
fprintf(f, "%d,", 8 * (int)cpi_data->frame_size);
fprintf(f, "%d\n", cm->quant_params.base_qindex);
fclose(f);
#endif // CONFIG_OUTPUT_FRAME_SIZE
if (!is_stat_generation_stage(cpi) && !cpi->is_dropped_frame) {
// Before calling refresh_reference_frames(), copy ppi->ref_frame_map_copy
// to cm->ref_frame_map for frame_parallel_level 2 frame in a parallel
// encode set of lower layer frames.
// TODO(Remya): Move ref_frame_map from AV1_COMMON to AV1_PRIMARY to avoid
// copy.
if (ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] == 2 &&
ppi->gf_group.frame_parallel_level[cpi->gf_frame_index - 1] == 1 &&
ppi->gf_group.update_type[cpi->gf_frame_index - 1] ==
INTNL_ARF_UPDATE) {
memcpy(cm->ref_frame_map, ppi->ref_frame_map_copy,
sizeof(cm->ref_frame_map));
}
refresh_reference_frames(cpi);
// For frame_parallel_level 1 frame in a parallel encode set of lower layer
// frames, store the updated cm->ref_frame_map in ppi->ref_frame_map_copy.
if (ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] == 1 &&
ppi->gf_group.update_type[cpi->gf_frame_index] == INTNL_ARF_UPDATE) {
memcpy(ppi->ref_frame_map_copy, cm->ref_frame_map,
sizeof(cm->ref_frame_map));
}
av1_rc_postencode_update(cpi, cpi_data->frame_size);
}
if (cpi_data->pop_lookahead == 1) {
av1_lookahead_pop(cpi->ppi->lookahead, cpi_data->flush,
cpi->compressor_stage);
}
if (cpi->common.show_frame) {
cpi->ppi->ts_start_last_show_frame = cpi_data->ts_frame_start;
cpi->ppi->ts_end_last_show_frame = cpi_data->ts_frame_end;
}
if (ppi->level_params.keep_level_stats && !is_stat_generation_stage(cpi)) {
// Initialize level info. at the beginning of each sequence.
if (cm->current_frame.frame_type == KEY_FRAME &&
ppi->gf_group.refbuf_state[cpi->gf_frame_index] == REFBUF_RESET) {
av1_init_level_info(cpi);
}
av1_update_level_info(cpi, cpi_data->frame_size, cpi_data->ts_frame_start,
cpi_data->ts_frame_end);
}
if (!is_stat_generation_stage(cpi)) {
#if !CONFIG_REALTIME_ONLY
if (!has_no_stats_stage(cpi)) av1_twopass_postencode_update(cpi);
#endif
update_fb_of_context_type(cpi, ppi->fb_of_context_type);
update_rc_counts(cpi);
update_end_of_frame_stats(cpi);
}
#if CONFIG_THREE_PASS
if (cpi->oxcf.pass == AOM_RC_THIRD_PASS && cpi->third_pass_ctx) {
av1_pop_third_pass_info(cpi->third_pass_ctx);
}
#endif
if (ppi->rtc_ref.set_ref_frame_config && !cpi->is_dropped_frame) {
av1_svc_update_buffer_slot_refreshed(cpi);
av1_svc_set_reference_was_previous(cpi);
}
if (ppi->use_svc) av1_save_layer_context(cpi);
// Note *size = 0 indicates a dropped frame for which psnr is not calculated
if (ppi->b_calculate_psnr && cpi_data->frame_size > 0) {
if (cm->show_existing_frame ||
(!is_stat_generation_stage(cpi) && cm->show_frame)) {
generate_psnr_packet(cpi);
}
}
#if CONFIG_INTERNAL_STATS
if (!is_stat_generation_stage(cpi)) {
compute_internal_stats(cpi, (int)cpi_data->frame_size);
}
#endif // CONFIG_INTERNAL_STATS
#if CONFIG_THREE_PASS
// Write frame info. Subtract 1 from frame index since if was incremented in
// update_rc_counts.
av1_write_second_pass_per_frame_info(cpi, cpi->gf_frame_index - 1);
#endif
}
int av1_get_compressed_data(AV1_COMP *cpi, AV1_COMP_DATA *const cpi_data) {
const AV1EncoderConfig *const oxcf = &cpi->oxcf;
AV1_COMMON *const cm = &cpi->common;
// The jmp_buf is valid only for the duration of the function that calls
// setjmp(). Therefore, this function must reset the 'setjmp' field to 0
// before it returns.
if (setjmp(cm->error->jmp)) {
cm->error->setjmp = 0;
return cm->error->error_code;
}
cm->error->setjmp = 1;
#if CONFIG_INTERNAL_STATS
cpi->frame_recode_hits = 0;
cpi->time_compress_data = 0;
cpi->bytes = 0;
#endif
#if CONFIG_ENTROPY_STATS
if (cpi->compressor_stage == ENCODE_STAGE) {
av1_zero(cpi->counts);
}
#endif
#if CONFIG_BITSTREAM_DEBUG
assert(cpi->oxcf.max_threads <= 1 &&
"bitstream debug tool does not support multithreading");
bitstream_queue_record_write();
if (cm->seq_params->order_hint_info.enable_order_hint) {
aom_bitstream_queue_set_frame_write(cm->current_frame.order_hint * 2 +
cm->show_frame);
} else {
// This is currently used in RTC encoding. cm->show_frame is always 1.
aom_bitstream_queue_set_frame_write(cm->current_frame.frame_number);
}
#endif
if (cpi->ppi->use_svc) {
av1_one_pass_cbr_svc_start_layer(cpi);
}
cpi->is_dropped_frame = false;
cm->showable_frame = 0;
cpi_data->frame_size = 0;
cpi->available_bs_size = cpi_data->cx_data_sz;
#if CONFIG_INTERNAL_STATS
struct aom_usec_timer cmptimer;
aom_usec_timer_start(&cmptimer);
#endif
av1_set_high_precision_mv(cpi, 1, 0);
// Normal defaults
cm->features.refresh_frame_context =
oxcf->tool_cfg.frame_parallel_decoding_mode
? REFRESH_FRAME_CONTEXT_DISABLED
: REFRESH_FRAME_CONTEXT_BACKWARD;
if (oxcf->tile_cfg.enable_large_scale_tile)
cm->features.refresh_frame_context = REFRESH_FRAME_CONTEXT_DISABLED;
if (assign_cur_frame_new_fb(cm) == NULL) {
aom_internal_error(cpi->common.error, AOM_CODEC_ERROR,
"Failed to allocate new cur_frame");
}
#if CONFIG_COLLECT_COMPONENT_TIMING
// Accumulate 2nd pass time in 2-pass case or 1 pass time in 1-pass case.
if (cpi->oxcf.pass == 2 || cpi->oxcf.pass == 0)
start_timing(cpi, av1_encode_strategy_time);
#endif
const int result = av1_encode_strategy(
cpi, &cpi_data->frame_size, cpi_data->cx_data, cpi_data->cx_data_sz,
&cpi_data->lib_flags, &cpi_data->ts_frame_start, &cpi_data->ts_frame_end,
cpi_data->timestamp_ratio, &cpi_data->pop_lookahead, cpi_data->flush);
#if CONFIG_COLLECT_COMPONENT_TIMING
if (cpi->oxcf.pass == 2 || cpi->oxcf.pass == 0)
end_timing(cpi, av1_encode_strategy_time);
// Print out timing information.
// Note: Use "cpi->frame_component_time[0] > 100 us" to avoid showing of
// show_existing_frame and lag-in-frames.
if ((cpi->oxcf.pass == 2 || cpi->oxcf.pass == 0) &&
cpi->frame_component_time[0] > 100) {
int i;
uint64_t frame_total = 0, total = 0;
const GF_GROUP *const gf_group = &cpi->ppi->gf_group;
FRAME_UPDATE_TYPE frame_update_type =
get_frame_update_type(gf_group, cpi->gf_frame_index);
fprintf(stderr,
"\n Frame number: %d, Frame type: %s, Show Frame: %d, Frame Update "
"Type: %d, Q: %d\n",
cm->current_frame.frame_number,
get_frame_type_enum(cm->current_frame.frame_type), cm->show_frame,
frame_update_type, cm->quant_params.base_qindex);
for (i = 0; i < kTimingComponents; i++) {
cpi->component_time[i] += cpi->frame_component_time[i];
// Use av1_encode_strategy_time (i = 0) as the total time.
if (i == 0) {
frame_total = cpi->frame_component_time[0];
total = cpi->component_time[0];
}
fprintf(stderr,
" %50s: %15" PRId64 " us [%6.2f%%] (total: %15" PRId64
" us [%6.2f%%])\n",
get_component_name(i), cpi->frame_component_time[i],
(float)((float)cpi->frame_component_time[i] * 100.0 /
(float)frame_total),
cpi->component_time[i],
(float)((float)cpi->component_time[i] * 100.0 / (float)total));
cpi->frame_component_time[i] = 0;
}
}
#endif
// Reset the flag to 0 afer encoding.
cpi->rc.use_external_qp_one_pass = 0;
if (result == -1) {
cm->error->setjmp = 0;
// Returning -1 indicates no frame encoded; more input is required
return -1;
}
if (result != AOM_CODEC_OK) {
aom_internal_error(cpi->common.error, AOM_CODEC_ERROR,
"Failed to encode frame");
}
#if CONFIG_INTERNAL_STATS
aom_usec_timer_mark(&cmptimer);
cpi->time_compress_data += aom_usec_timer_elapsed(&cmptimer);
#endif // CONFIG_INTERNAL_STATS
#if CONFIG_SPEED_STATS
if (!is_stat_generation_stage(cpi) && !cm->show_existing_frame) {
cpi->tx_search_count += cpi->td.mb.txfm_search_info.tx_search_count;
cpi->td.mb.txfm_search_info.tx_search_count = 0;
}
#endif // CONFIG_SPEED_STATS
cm->error->setjmp = 0;
return AOM_CODEC_OK;
}
// Populates cpi->scaled_ref_buf corresponding to frames in a parallel encode
// set. Also sets the bitmask 'ref_buffers_used_map'.
static void scale_references_fpmt(AV1_COMP *cpi, int *ref_buffers_used_map) {
AV1_COMMON *cm = &cpi->common;
MV_REFERENCE_FRAME ref_frame;
for (ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; ++ref_frame) {
// Need to convert from AOM_REFFRAME to index into ref_mask (subtract 1).
if (cpi->ref_frame_flags & av1_ref_frame_flag_list[ref_frame]) {
const YV12_BUFFER_CONFIG *const ref =
get_ref_frame_yv12_buf(cm, ref_frame);
if (ref == NULL) {
cpi->scaled_ref_buf[ref_frame - 1] = NULL;
continue;
}
// FPMT does not support scaling yet.
assert(ref->y_crop_width == cm->width &&
ref->y_crop_height == cm->height);
RefCntBuffer *buf = get_ref_frame_buf(cm, ref_frame);
cpi->scaled_ref_buf[ref_frame - 1] = buf;
for (int i = 0; i < cm->buffer_pool->num_frame_bufs; ++i) {
if (&cm->buffer_pool->frame_bufs[i] == buf) {
*ref_buffers_used_map |= (1 << i);
}
}
} else {
if (!has_no_stats_stage(cpi)) cpi->scaled_ref_buf[ref_frame - 1] = NULL;
}
}
}
// Increments the ref_count of frame buffers referenced by cpi->scaled_ref_buf
// corresponding to frames in a parallel encode set.
static void increment_scaled_ref_counts_fpmt(BufferPool *buffer_pool,
int ref_buffers_used_map) {
for (int i = 0; i < buffer_pool->num_frame_bufs; ++i) {
if (ref_buffers_used_map & (1 << i)) {
++buffer_pool->frame_bufs[i].ref_count;
}
}
}
// Releases cpi->scaled_ref_buf corresponding to frames in a parallel encode
// set.
void av1_release_scaled_references_fpmt(AV1_COMP *cpi) {
// TODO(isbs): only refresh the necessary frames, rather than all of them
for (int i = 0; i < INTER_REFS_PER_FRAME; ++i) {
RefCntBuffer *const buf = cpi->scaled_ref_buf[i];
if (buf != NULL) {
cpi->scaled_ref_buf[i] = NULL;
}
}
}
// Decrements the ref_count of frame buffers referenced by cpi->scaled_ref_buf
// corresponding to frames in a parallel encode set.
void av1_decrement_ref_counts_fpmt(BufferPool *buffer_pool,
int ref_buffers_used_map) {
for (int i = 0; i < buffer_pool->num_frame_bufs; ++i) {
if (ref_buffers_used_map & (1 << i)) {
--buffer_pool->frame_bufs[i].ref_count;
}
}
}
// Initialize parallel frame contexts with screen content decisions.
void av1_init_sc_decisions(AV1_PRIMARY *const ppi) {
AV1_COMP *const first_cpi = ppi->cpi;
for (int i = 1; i < ppi->num_fp_contexts; ++i) {
AV1_COMP *cur_cpi = ppi->parallel_cpi[i];
cur_cpi->common.features.allow_screen_content_tools =
first_cpi->common.features.allow_screen_content_tools;
cur_cpi->common.features.allow_intrabc =
first_cpi->common.features.allow_intrabc;
cur_cpi->use_screen_content_tools = first_cpi->use_screen_content_tools;
cur_cpi->is_screen_content_type = first_cpi->is_screen_content_type;
}
}
AV1_COMP *av1_get_parallel_frame_enc_data(AV1_PRIMARY *const ppi,
AV1_COMP_DATA *const first_cpi_data) {
int cpi_idx = 0;
// Loop over parallel_cpi to find the cpi that processed the current
// gf_frame_index ahead of time.
for (int i = 1; i < ppi->num_fp_contexts; i++) {
if (ppi->cpi->gf_frame_index == ppi->parallel_cpi[i]->gf_frame_index) {
cpi_idx = i;
break;
}
}
assert(cpi_idx > 0);
assert(!ppi->parallel_cpi[cpi_idx]->common.show_existing_frame);
// Release the previously-used frame-buffer.
if (ppi->cpi->common.cur_frame != NULL) {
--ppi->cpi->common.cur_frame->ref_count;
ppi->cpi->common.cur_frame = NULL;
}
// Swap the appropriate parallel_cpi with the parallel_cpi[0].
ppi->cpi = ppi->parallel_cpi[cpi_idx];
ppi->parallel_cpi[cpi_idx] = ppi->parallel_cpi[0];
ppi->parallel_cpi[0] = ppi->cpi;
// Copy appropriate parallel_frames_data to local data.
{
AV1_COMP_DATA *data = &ppi->parallel_frames_data[cpi_idx - 1];
assert(data->frame_size > 0);
if (data->frame_size > first_cpi_data->cx_data_sz) {
aom_internal_error(&ppi->error, AOM_CODEC_ERROR,
"first_cpi_data->cx_data buffer full");
}
first_cpi_data->lib_flags = data->lib_flags;
first_cpi_data->ts_frame_start = data->ts_frame_start;
first_cpi_data->ts_frame_end = data->ts_frame_end;
memcpy(first_cpi_data->cx_data, data->cx_data, data->frame_size);
first_cpi_data->frame_size = data->frame_size;
if (ppi->cpi->common.show_frame) {
first_cpi_data->pop_lookahead = 1;
}
}
return ppi->cpi;
}
// Initialises frames belonging to a parallel encode set.
int av1_init_parallel_frame_context(const AV1_COMP_DATA *const first_cpi_data,
AV1_PRIMARY *const ppi,
int *ref_buffers_used_map) {
AV1_COMP *const first_cpi = ppi->cpi;
GF_GROUP *const gf_group = &ppi->gf_group;
int gf_index_start = first_cpi->gf_frame_index;
assert(gf_group->frame_parallel_level[gf_index_start] == 1);
int parallel_frame_count = 0;
int cur_frame_num = first_cpi->common.current_frame.frame_number;
int show_frame_count = first_cpi->frame_index_set.show_frame_count;
int frames_since_key = first_cpi->rc.frames_since_key;
int frames_to_key = first_cpi->rc.frames_to_key;
int frames_to_fwd_kf = first_cpi->rc.frames_to_fwd_kf;
int cur_frame_disp = cur_frame_num + gf_group->arf_src_offset[gf_index_start];
const FIRSTPASS_STATS *stats_in = first_cpi->twopass_frame.stats_in;
assert(*ref_buffers_used_map == 0);
// Release the previously used frame-buffer by a frame_parallel_level 1 frame.
if (first_cpi->common.cur_frame != NULL) {
--first_cpi->common.cur_frame->ref_count;
first_cpi->common.cur_frame = NULL;
}
RefFrameMapPair ref_frame_map_pairs[REF_FRAMES];
RefFrameMapPair first_ref_frame_map_pairs[REF_FRAMES];
init_ref_map_pair(first_cpi, first_ref_frame_map_pairs);
memcpy(ref_frame_map_pairs, first_ref_frame_map_pairs,
sizeof(RefFrameMapPair) * REF_FRAMES);
// Store the reference refresh index of frame_parallel_level 1 frame in a
// parallel encode set of lower layer frames.
if (gf_group->update_type[gf_index_start] == INTNL_ARF_UPDATE) {
first_cpi->ref_refresh_index = av1_calc_refresh_idx_for_intnl_arf(
first_cpi, ref_frame_map_pairs, gf_index_start);
assert(first_cpi->ref_refresh_index != INVALID_IDX &&
first_cpi->ref_refresh_index < REF_FRAMES);
first_cpi->refresh_idx_available = true;
// Update ref_frame_map_pairs.
ref_frame_map_pairs[first_cpi->ref_refresh_index].disp_order =
gf_group->display_idx[gf_index_start];
ref_frame_map_pairs[first_cpi->ref_refresh_index].pyr_level =
gf_group->layer_depth[gf_index_start];
}
// Set do_frame_data_update flag as false for frame_parallel_level 1 frame.
first_cpi->do_frame_data_update = false;
if (gf_group->arf_src_offset[gf_index_start] == 0) {
first_cpi->time_stamps.prev_ts_start = ppi->ts_start_last_show_frame;
first_cpi->time_stamps.prev_ts_end = ppi->ts_end_last_show_frame;
}
av1_get_ref_frames(first_ref_frame_map_pairs, cur_frame_disp, first_cpi,
gf_index_start, 1, first_cpi->common.remapped_ref_idx);
scale_references_fpmt(first_cpi, ref_buffers_used_map);
parallel_frame_count++;
// Iterate through the GF_GROUP to find the remaining frame_parallel_level 2
// frames which are part of the current parallel encode set and initialize the
// required cpi elements.
for (int i = gf_index_start + 1; i < gf_group->size; i++) {
// Update frame counters if previous frame was show frame or show existing
// frame.
if (gf_group->arf_src_offset[i - 1] == 0) {
cur_frame_num++;
show_frame_count++;
if (frames_to_fwd_kf <= 0)
frames_to_fwd_kf = first_cpi->oxcf.kf_cfg.fwd_kf_dist;
if (frames_to_key) {
frames_since_key++;
frames_to_key--;
frames_to_fwd_kf--;
}
stats_in++;
}
cur_frame_disp = cur_frame_num + gf_group->arf_src_offset[i];
if (gf_group->frame_parallel_level[i] == 2) {
AV1_COMP *cur_cpi = ppi->parallel_cpi[parallel_frame_count];
AV1_COMP_DATA *cur_cpi_data =
&ppi->parallel_frames_data[parallel_frame_count - 1];
cur_cpi->gf_frame_index = i;
cur_cpi->framerate = first_cpi->framerate;
cur_cpi->common.current_frame.frame_number = cur_frame_num;
cur_cpi->common.current_frame.frame_type = gf_group->frame_type[i];
cur_cpi->frame_index_set.show_frame_count = show_frame_count;
cur_cpi->rc.frames_since_key = frames_since_key;
cur_cpi->rc.frames_to_key = frames_to_key;
cur_cpi->rc.frames_to_fwd_kf = frames_to_fwd_kf;
cur_cpi->rc.active_worst_quality = first_cpi->rc.active_worst_quality;
cur_cpi->rc.avg_frame_bandwidth = first_cpi->rc.avg_frame_bandwidth;
cur_cpi->rc.max_frame_bandwidth = first_cpi->rc.max_frame_bandwidth;
cur_cpi->rc.min_frame_bandwidth = first_cpi->rc.min_frame_bandwidth;
cur_cpi->rc.intervals_till_gf_calculate_due =
first_cpi->rc.intervals_till_gf_calculate_due;
cur_cpi->mv_search_params.max_mv_magnitude =
first_cpi->mv_search_params.max_mv_magnitude;
if (gf_group->update_type[cur_cpi->gf_frame_index] == INTNL_ARF_UPDATE) {
cur_cpi->common.lf.mode_ref_delta_enabled = 1;
}
cur_cpi->do_frame_data_update = false;
// Initialize prev_ts_start and prev_ts_end for show frame(s) and show
// existing frame(s).
if (gf_group->arf_src_offset[i] == 0) {
// Choose source of prev frame.
int src_index = gf_group->src_offset[i];
struct lookahead_entry *prev_source = av1_lookahead_peek(
ppi->lookahead, src_index - 1, cur_cpi->compressor_stage);
// Save timestamps of prev frame.
cur_cpi->time_stamps.prev_ts_start = prev_source->ts_start;
cur_cpi->time_stamps.prev_ts_end = prev_source->ts_end;
}
cur_cpi->time_stamps.first_ts_start =
first_cpi->time_stamps.first_ts_start;
memcpy(cur_cpi->common.ref_frame_map, first_cpi->common.ref_frame_map,
sizeof(first_cpi->common.ref_frame_map));
cur_cpi_data->lib_flags = 0;
cur_cpi_data->timestamp_ratio = first_cpi_data->timestamp_ratio;
cur_cpi_data->flush = first_cpi_data->flush;
cur_cpi_data->frame_size = 0;
if (gf_group->update_type[gf_index_start] == INTNL_ARF_UPDATE) {
// If the first frame in a parallel encode set is INTNL_ARF_UPDATE
// frame, initialize lib_flags of frame_parallel_level 2 frame in the
// set with that of frame_parallel_level 1 frame.
cur_cpi_data->lib_flags = first_cpi_data->lib_flags;
// Store the reference refresh index of frame_parallel_level 2 frame in
// a parallel encode set of lower layer frames.
cur_cpi->ref_refresh_index =
av1_calc_refresh_idx_for_intnl_arf(cur_cpi, ref_frame_map_pairs, i);
cur_cpi->refresh_idx_available = true;
// Skip the reference frame which will be refreshed by
// frame_parallel_level 1 frame in a parallel encode set of lower layer
// frames.
cur_cpi->ref_idx_to_skip = first_cpi->ref_refresh_index;
} else {
cur_cpi->ref_idx_to_skip = INVALID_IDX;
cur_cpi->ref_refresh_index = INVALID_IDX;
cur_cpi->refresh_idx_available = false;
}
cur_cpi->twopass_frame.stats_in = stats_in;
av1_get_ref_frames(first_ref_frame_map_pairs, cur_frame_disp, cur_cpi, i,
1, cur_cpi->common.remapped_ref_idx);
scale_references_fpmt(cur_cpi, ref_buffers_used_map);
parallel_frame_count++;
}
// Set do_frame_data_update to true for the last frame_parallel_level 2
// frame in the current parallel encode set.
if (i == (gf_group->size - 1) ||
(gf_group->frame_parallel_level[i + 1] == 0 &&
(gf_group->update_type[i + 1] == ARF_UPDATE ||
gf_group->update_type[i + 1] == INTNL_ARF_UPDATE)) ||
gf_group->frame_parallel_level[i + 1] == 1) {
ppi->parallel_cpi[parallel_frame_count - 1]->do_frame_data_update = true;
break;
}
}
increment_scaled_ref_counts_fpmt(first_cpi->common.buffer_pool,
*ref_buffers_used_map);
// Return the number of frames in the parallel encode set.
return parallel_frame_count;
}
int av1_get_preview_raw_frame(AV1_COMP *cpi, YV12_BUFFER_CONFIG *dest) {
AV1_COMMON *cm = &cpi->common;
if (!cm->show_frame) {
return -1;
} else {
int ret;
if (cm->cur_frame != NULL && !cpi->oxcf.algo_cfg.skip_postproc_filtering) {
*dest = cm->cur_frame->buf;
dest->y_width = cm->width;
dest->y_height = cm->height;
dest->uv_width = cm->width >> cm->seq_params->subsampling_x;
dest->uv_height = cm->height >> cm->seq_params->subsampling_y;
ret = 0;
} else {
ret = -1;
}
return ret;
}
}
int av1_get_last_show_frame(AV1_COMP *cpi, YV12_BUFFER_CONFIG *frame) {
if (cpi->last_show_frame_buf == NULL ||
cpi->oxcf.algo_cfg.skip_postproc_filtering)
return -1;
*frame = cpi->last_show_frame_buf->buf;
return 0;
}
aom_codec_err_t av1_copy_new_frame_enc(AV1_COMMON *cm,
YV12_BUFFER_CONFIG *new_frame,
YV12_BUFFER_CONFIG *sd) {
const int num_planes = av1_num_planes(cm);
if (!equal_dimensions_and_border(new_frame, sd))
aom_internal_error(cm->error, AOM_CODEC_ERROR,
"Incorrect buffer dimensions");
else
aom_yv12_copy_frame(new_frame, sd, num_planes);
return cm->error->error_code;
}
int av1_set_internal_size(AV1EncoderConfig *const oxcf,
ResizePendingParams *resize_pending_params,
AOM_SCALING_MODE horiz_mode,
AOM_SCALING_MODE vert_mode) {
int hr = 0, hs = 0, vr = 0, vs = 0;
// Checks for invalid AOM_SCALING_MODE values.
if (horiz_mode > AOME_ONETHREE || vert_mode > AOME_ONETHREE) return -1;
Scale2Ratio(horiz_mode, &hr, &hs);
Scale2Ratio(vert_mode, &vr, &vs);
// always go to the next whole number
resize_pending_params->width = (hs - 1 + oxcf->frm_dim_cfg.width * hr) / hs;
resize_pending_params->height = (vs - 1 + oxcf->frm_dim_cfg.height * vr) / vs;
if (horiz_mode != AOME_NORMAL || vert_mode != AOME_NORMAL) {
oxcf->resize_cfg.resize_mode = RESIZE_FIXED;
oxcf->algo_cfg.enable_tpl_model = 0;
}
return 0;
}
int av1_get_quantizer(AV1_COMP *cpi) {
return cpi->common.quant_params.base_qindex;
}
int av1_convert_sect5obus_to_annexb(uint8_t *buffer, size_t buffer_size,
size_t *frame_size) {
assert(*frame_size <= buffer_size);
size_t output_size = 0;
size_t remaining_size = *frame_size;
uint8_t *buff_ptr = buffer;
// go through each OBUs
while (remaining_size > 0) {
uint8_t saved_obu_header[2];
uint64_t obu_payload_size;
size_t length_of_payload_size;
size_t length_of_obu_size;
const uint32_t obu_header_size = (buff_ptr[0] >> 2) & 0x1 ? 2 : 1;
size_t obu_bytes_read = obu_header_size; // bytes read for current obu
// save the obu header (1 or 2 bytes)
memcpy(saved_obu_header, buff_ptr, obu_header_size);
// clear the obu_has_size_field
saved_obu_header[0] &= ~0x2;
// get the payload_size and length of payload_size
if (aom_uleb_decode(buff_ptr + obu_header_size,
remaining_size - obu_header_size, &obu_payload_size,
&length_of_payload_size) != 0) {
return AOM_CODEC_ERROR;
}
obu_bytes_read += length_of_payload_size;
// calculate the length of size of the obu header plus payload
const uint64_t obu_size = obu_header_size + obu_payload_size;
length_of_obu_size = aom_uleb_size_in_bytes(obu_size);
if (length_of_obu_size + obu_header_size >
buffer_size - output_size - (remaining_size - obu_bytes_read)) {
return AOM_CODEC_ERROR;
}
// move the rest of data to new location
memmove(buff_ptr + length_of_obu_size + obu_header_size,
buff_ptr + obu_bytes_read, remaining_size - obu_bytes_read);
obu_bytes_read += (size_t)obu_payload_size;
// write the new obu size
size_t coded_obu_size;
if (aom_uleb_encode(obu_size, length_of_obu_size, buff_ptr,
&coded_obu_size) != 0 ||
coded_obu_size != length_of_obu_size) {
return AOM_CODEC_ERROR;
}
// write the saved (modified) obu_header following obu size
memcpy(buff_ptr + length_of_obu_size, saved_obu_header, obu_header_size);
remaining_size -= obu_bytes_read;
buff_ptr += length_of_obu_size + (size_t)obu_size;
output_size += length_of_obu_size + (size_t)obu_size;
}
*frame_size = output_size;
return AOM_CODEC_OK;
}
static void rtc_set_updates_ref_frame_config(
ExtRefreshFrameFlagsInfo *const ext_refresh_frame_flags,
RTC_REF *const rtc_ref) {
ext_refresh_frame_flags->update_pending = 1;
ext_refresh_frame_flags->last_frame = rtc_ref->refresh[rtc_ref->ref_idx[0]];
ext_refresh_frame_flags->golden_frame = rtc_ref->refresh[rtc_ref->ref_idx[3]];
ext_refresh_frame_flags->bwd_ref_frame =
rtc_ref->refresh[rtc_ref->ref_idx[4]];
ext_refresh_frame_flags->alt2_ref_frame =
rtc_ref->refresh[rtc_ref->ref_idx[5]];
ext_refresh_frame_flags->alt_ref_frame =
rtc_ref->refresh[rtc_ref->ref_idx[6]];
rtc_ref->non_reference_frame = 1;
for (int i = 0; i < REF_FRAMES; i++) {
if (rtc_ref->refresh[i] == 1) {
rtc_ref->non_reference_frame = 0;
break;
}
}
}
static int rtc_set_references_external_ref_frame_config(AV1_COMP *cpi) {
// LAST_FRAME (0), LAST2_FRAME(1), LAST3_FRAME(2), GOLDEN_FRAME(3),
// BWDREF_FRAME(4), ALTREF2_FRAME(5), ALTREF_FRAME(6).
int ref = AOM_REFFRAME_ALL;
for (int i = 0; i < INTER_REFS_PER_FRAME; i++) {
if (!cpi->ppi->rtc_ref.reference[i]) ref ^= (1 << i);
}
return ref;
}
void av1_apply_encoding_flags(AV1_COMP *cpi, aom_enc_frame_flags_t flags) {
// TODO(yunqingwang): For what references to use, external encoding flags
// should be consistent with internal reference frame selection. Need to
// ensure that there is not conflict between the two. In AV1 encoder, the
// priority rank for 7 reference frames are: LAST, ALTREF, LAST2, LAST3,
// GOLDEN, BWDREF, ALTREF2.
ExternalFlags *const ext_flags = &cpi->ext_flags;
ExtRefreshFrameFlagsInfo *const ext_refresh_frame_flags =
&ext_flags->refresh_frame;
ext_flags->ref_frame_flags = AOM_REFFRAME_ALL;
if (flags &
(AOM_EFLAG_NO_REF_LAST | AOM_EFLAG_NO_REF_LAST2 | AOM_EFLAG_NO_REF_LAST3 |
AOM_EFLAG_NO_REF_GF | AOM_EFLAG_NO_REF_ARF | AOM_EFLAG_NO_REF_BWD |
AOM_EFLAG_NO_REF_ARF2)) {
int ref = AOM_REFFRAME_ALL;
if (flags & AOM_EFLAG_NO_REF_LAST) ref ^= AOM_LAST_FLAG;
if (flags & AOM_EFLAG_NO_REF_LAST2) ref ^= AOM_LAST2_FLAG;
if (flags & AOM_EFLAG_NO_REF_LAST3) ref ^= AOM_LAST3_FLAG;
if (flags & AOM_EFLAG_NO_REF_GF) ref ^= AOM_GOLD_FLAG;
if (flags & AOM_EFLAG_NO_REF_ARF) {
ref ^= AOM_ALT_FLAG;
ref ^= AOM_BWD_FLAG;
ref ^= AOM_ALT2_FLAG;
} else {
if (flags & AOM_EFLAG_NO_REF_BWD) ref ^= AOM_BWD_FLAG;
if (flags & AOM_EFLAG_NO_REF_ARF2) ref ^= AOM_ALT2_FLAG;
}
av1_use_as_reference(&ext_flags->ref_frame_flags, ref);
} else {
if (cpi->ppi->rtc_ref.set_ref_frame_config) {
int ref = rtc_set_references_external_ref_frame_config(cpi);
av1_use_as_reference(&ext_flags->ref_frame_flags, ref);
}
}
if (flags &
(AOM_EFLAG_NO_UPD_LAST | AOM_EFLAG_NO_UPD_GF | AOM_EFLAG_NO_UPD_ARF)) {
int upd = AOM_REFFRAME_ALL;
// Refreshing LAST/LAST2/LAST3 is handled by 1 common flag.
if (flags & AOM_EFLAG_NO_UPD_LAST) upd ^= AOM_LAST_FLAG;
if (flags & AOM_EFLAG_NO_UPD_GF) upd ^= AOM_GOLD_FLAG;
if (flags & AOM_EFLAG_NO_UPD_ARF) {
upd ^= AOM_ALT_FLAG;
upd ^= AOM_BWD_FLAG;
upd ^= AOM_ALT2_FLAG;
}
ext_refresh_frame_flags->last_frame = (upd & AOM_LAST_FLAG) != 0;
ext_refresh_frame_flags->golden_frame = (upd & AOM_GOLD_FLAG) != 0;
ext_refresh_frame_flags->alt_ref_frame = (upd & AOM_ALT_FLAG) != 0;
ext_refresh_frame_flags->bwd_ref_frame = (upd & AOM_BWD_FLAG) != 0;
ext_refresh_frame_flags->alt2_ref_frame = (upd & AOM_ALT2_FLAG) != 0;
ext_refresh_frame_flags->update_pending = 1;
} else {
if (cpi->ppi->rtc_ref.set_ref_frame_config)
rtc_set_updates_ref_frame_config(ext_refresh_frame_flags,
&cpi->ppi->rtc_ref);
else
ext_refresh_frame_flags->update_pending = 0;
}
ext_flags->use_ref_frame_mvs = cpi->oxcf.tool_cfg.enable_ref_frame_mvs &
((flags & AOM_EFLAG_NO_REF_FRAME_MVS) == 0);
ext_flags->use_error_resilient = cpi->oxcf.tool_cfg.error_resilient_mode |
((flags & AOM_EFLAG_ERROR_RESILIENT) != 0);
ext_flags->use_s_frame =
cpi->oxcf.kf_cfg.enable_sframe | ((flags & AOM_EFLAG_SET_S_FRAME) != 0);
ext_flags->use_primary_ref_none =
(flags & AOM_EFLAG_SET_PRIMARY_REF_NONE) != 0;
if (flags & AOM_EFLAG_NO_UPD_ENTROPY) {
update_entropy(&ext_flags->refresh_frame_context,
&ext_flags->refresh_frame_context_pending, 0);
}
}
aom_fixed_buf_t *av1_get_global_headers(AV1_PRIMARY *ppi) {
if (!ppi) return NULL;
uint8_t header_buf[512] = { 0 };
const uint32_t sequence_header_size = av1_write_sequence_header_obu(
&ppi->seq_params, &header_buf[0], sizeof(header_buf));
assert(sequence_header_size <= sizeof(header_buf));
if (sequence_header_size == 0) return NULL;
const size_t obu_header_size = 1;
const size_t size_field_size = aom_uleb_size_in_bytes(sequence_header_size);
const size_t payload_offset = obu_header_size + size_field_size;
if (payload_offset + sequence_header_size > sizeof(header_buf)) return NULL;
memmove(&header_buf[payload_offset], &header_buf[0], sequence_header_size);
if (av1_write_obu_header(&ppi->level_params, &ppi->cpi->frame_header_count,
OBU_SEQUENCE_HEADER,
ppi->seq_params.has_nonzero_operating_point_idc,
/*is_layer_specific_obu=*/false, 0,
&header_buf[0]) != obu_header_size) {
return NULL;
}
size_t coded_size_field_size = 0;
if (aom_uleb_encode(sequence_header_size, size_field_size,
&header_buf[obu_header_size],
&coded_size_field_size) != 0) {
return NULL;
}
assert(coded_size_field_size == size_field_size);
aom_fixed_buf_t *global_headers =
(aom_fixed_buf_t *)malloc(sizeof(*global_headers));
if (!global_headers) return NULL;
const size_t global_header_buf_size =
obu_header_size + size_field_size + sequence_header_size;
global_headers->buf = malloc(global_header_buf_size);
if (!global_headers->buf) {
free(global_headers);
return NULL;
}
memcpy(global_headers->buf, &header_buf[0], global_header_buf_size);
global_headers->sz = global_header_buf_size;
return global_headers;
}
|