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
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "ImageLogging.h" // Must appear first
#include "nsAVIFDecoder.h"
#include <aom/aomdx.h>
#include "DAV1DDecoder.h"
#include "gfxPlatform.h"
#include "YCbCrUtils.h"
#include "libyuv.h"
#include "SurfacePipeFactory.h"
#include "mozilla/glean/ImageDecodersMetrics.h"
#include "mozilla/UniquePtrExtensions.h"
using namespace mozilla::gfx;
namespace mozilla {
namespace image {
static LazyLogModule sAVIFLog("AVIFDecoder");
static Maybe<IntSize> GetImageSize(const Mp4parseAvifInfo& aInfo) {
// Note this does not take cropping via CleanAperture (clap) into account
const struct Mp4parseImageSpatialExtents* ispe = aInfo.spatial_extents;
if (ispe) {
// Decoder::PostSize takes int32_t, but ispe contains uint32_t
CheckedInt<int32_t> width = ispe->image_width;
CheckedInt<int32_t> height = ispe->image_height;
if (width.isValid() && height.isValid()) {
return Some(IntSize{width.value(), height.value()});
}
}
return Nothing();
}
// Translate the MIAF/HEIF-based orientation transforms (imir, irot) into
// ImageLib's representation. Note that the interpretation of imir was reversed
// Between HEIF (ISO 23008-12:2017) and ISO/IEC 23008-12:2017/DAmd 2. This is
// handled by mp4parse. See mp4parse::read_imir for details.
Orientation GetImageOrientation(const Mp4parseAvifInfo& aInfo) {
// Per MIAF (ISO/IEC 23000-22:2019) § 7.3.6.7
// These properties, if used, shall be indicated to be applied in the
// following order: clean aperture first, then rotation, then mirror.
// The Orientation type does the same order, but opposite rotation direction
const Mp4parseIrot heifRot = aInfo.image_rotation;
const Mp4parseImir* heifMir = aInfo.image_mirror;
Angle mozRot;
Flip mozFlip;
if (!heifMir) { // No mirroring
mozFlip = Flip::Unflipped;
switch (heifRot) {
case MP4PARSE_IROT_D0:
// ⥠ UPWARDS HARPOON WITH BARB LEFT FROM BAR
mozRot = Angle::D0;
break;
case MP4PARSE_IROT_D90:
// ⥞ LEFTWARDS HARPOON WITH BARB DOWN FROM BAR
mozRot = Angle::D270;
break;
case MP4PARSE_IROT_D180:
// ⥝ DOWNWARDS HARPOON WITH BARB RIGHT FROM BAR
mozRot = Angle::D180;
break;
case MP4PARSE_IROT_D270:
// ⥛ RIGHTWARDS HARPOON WITH BARB UP FROM BAR
mozRot = Angle::D90;
break;
default:
MOZ_ASSERT_UNREACHABLE();
}
} else {
MOZ_ASSERT(heifMir);
mozFlip = Flip::Horizontal;
enum class HeifFlippedOrientation : uint8_t {
IROT_D0_IMIR_V = (MP4PARSE_IROT_D0 << 1) | MP4PARSE_IMIR_LEFT_RIGHT,
IROT_D0_IMIR_H = (MP4PARSE_IROT_D0 << 1) | MP4PARSE_IMIR_TOP_BOTTOM,
IROT_D90_IMIR_V = (MP4PARSE_IROT_D90 << 1) | MP4PARSE_IMIR_LEFT_RIGHT,
IROT_D90_IMIR_H = (MP4PARSE_IROT_D90 << 1) | MP4PARSE_IMIR_TOP_BOTTOM,
IROT_D180_IMIR_V = (MP4PARSE_IROT_D180 << 1) | MP4PARSE_IMIR_LEFT_RIGHT,
IROT_D180_IMIR_H = (MP4PARSE_IROT_D180 << 1) | MP4PARSE_IMIR_TOP_BOTTOM,
IROT_D270_IMIR_V = (MP4PARSE_IROT_D270 << 1) | MP4PARSE_IMIR_LEFT_RIGHT,
IROT_D270_IMIR_H = (MP4PARSE_IROT_D270 << 1) | MP4PARSE_IMIR_TOP_BOTTOM,
};
HeifFlippedOrientation heifO =
HeifFlippedOrientation((heifRot << 1) | *heifMir);
switch (heifO) {
case HeifFlippedOrientation::IROT_D0_IMIR_V:
case HeifFlippedOrientation::IROT_D180_IMIR_H:
// ⥜ UPWARDS HARPOON WITH BARB RIGHT FROM BAR
mozRot = Angle::D0;
break;
case HeifFlippedOrientation::IROT_D270_IMIR_V:
case HeifFlippedOrientation::IROT_D90_IMIR_H:
// ⥚ LEFTWARDS HARPOON WITH BARB UP FROM BAR
mozRot = Angle::D90;
break;
case HeifFlippedOrientation::IROT_D180_IMIR_V:
case HeifFlippedOrientation::IROT_D0_IMIR_H:
// ⥡ DOWNWARDS HARPOON WITH BARB LEFT FROM BAR
mozRot = Angle::D180;
break;
case HeifFlippedOrientation::IROT_D90_IMIR_V:
case HeifFlippedOrientation::IROT_D270_IMIR_H:
// ⥟ RIGHTWARDS HARPOON WITH BARB DOWN FROM BAR
mozRot = Angle::D270;
break;
default:
MOZ_ASSERT_UNREACHABLE();
}
}
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("GetImageOrientation: (rot%d, imir(%s)) -> (Angle%d, "
"Flip%d)",
static_cast<int>(heifRot),
heifMir ? (*heifMir == MP4PARSE_IMIR_LEFT_RIGHT ? "left-right"
: "top-bottom")
: "none",
static_cast<int>(mozRot), static_cast<int>(mozFlip)));
return Orientation{mozRot, mozFlip};
}
nsresult AVIFDecoderStream::ReadAt(int64_t offset, void* data, size_t size,
size_t* bytes_read) {
size = std::min(size, size_t(mBuffer->length() - offset));
if (size <= 0) {
return NS_ERROR_DOM_MEDIA_RANGE_ERR;
}
memcpy(data, mBuffer->begin() + offset, size);
*bytes_read = size;
return NS_OK;
}
bool AVIFDecoderStream::Length(int64_t* size) {
*size =
static_cast<int64_t>(std::min<uint64_t>(mBuffer->length(), INT64_MAX));
return true;
}
const uint8_t* AVIFDecoderStream::GetContiguousAccess(int64_t aOffset,
size_t aSize) {
if (aOffset + aSize >= mBuffer->length()) {
return nullptr;
}
return mBuffer->begin() + aOffset;
}
AVIFParser::~AVIFParser() {
MOZ_LOG(sAVIFLog, LogLevel::Debug, ("Destroy AVIFParser=%p", this));
}
Mp4parseStatus AVIFParser::Create(const Mp4parseIo* aIo, ByteStream* aBuffer,
UniquePtr<AVIFParser>& aParserOut,
bool aAllowSequences,
bool aAnimateAVIFMajor) {
MOZ_ASSERT(aIo);
MOZ_ASSERT(!aParserOut);
UniquePtr<AVIFParser> p(new AVIFParser(aIo));
Mp4parseStatus status = p->Init(aBuffer, aAllowSequences, aAnimateAVIFMajor);
if (status == MP4PARSE_STATUS_OK) {
MOZ_ASSERT(p->mParser);
aParserOut = std::move(p);
}
return status;
}
uint32_t AVIFParser::GetFrameCount() {
MOZ_ASSERT(mParser);
// Note that because this consumes the frame iterators, this can only be
// requested for metadata decodes. Since we had to partially decode the
// first frame to determine the size, we need to add one to the result.
// This means we return 0 for 1 frame, 1 for 2 frames, etc.
if (!IsAnimated()) {
return 0;
}
uint32_t frameCount = 0;
while (true) {
RefPtr<MediaRawData> header = mColorSampleIter->GetNextHeader();
if (!header) {
break;
}
if (mAlphaSampleIter) {
header = mAlphaSampleIter->GetNextHeader();
if (!header) {
break;
}
}
++frameCount;
}
return frameCount;
}
nsAVIFDecoder::DecodeResult AVIFParser::GetImage(AVIFImage& aImage) {
MOZ_ASSERT(mParser);
// If the AVIF is animated, get next frame and yield if sequence is not done.
if (IsAnimated()) {
aImage.mColorImage = mColorSampleIter->GetNext().unwrapOr(nullptr);
if (!aImage.mColorImage) {
return AsVariant(nsAVIFDecoder::NonDecoderResult::NoSamples);
}
aImage.mFrameNum = mFrameNum++;
int64_t durationMs = aImage.mColorImage->mDuration.ToMilliseconds();
aImage.mDuration = FrameTimeout::FromRawMilliseconds(
static_cast<int32_t>(std::min<int64_t>(durationMs, INT32_MAX)));
if (mAlphaSampleIter) {
aImage.mAlphaImage = mAlphaSampleIter->GetNext().unwrapOr(nullptr);
if (!aImage.mAlphaImage) {
return AsVariant(nsAVIFDecoder::NonDecoderResult::NoSamples);
}
}
bool hasNext = mColorSampleIter->HasNext();
if (mAlphaSampleIter && (hasNext != mAlphaSampleIter->HasNext())) {
MOZ_LOG(
sAVIFLog, LogLevel::Warning,
("[this=%p] The %s sequence ends before frame %d, aborting decode.",
this, hasNext ? "alpha" : "color", mFrameNum));
return AsVariant(nsAVIFDecoder::NonDecoderResult::NoSamples);
}
if (!hasNext) {
return AsVariant(nsAVIFDecoder::NonDecoderResult::Complete);
}
return AsVariant(nsAVIFDecoder::NonDecoderResult::OutputAvailable);
}
if (!mInfo.has_primary_item) {
return AsVariant(nsAVIFDecoder::NonDecoderResult::NoSamples);
}
// If the AVIF is not animated, get the pitm image and return Complete.
Mp4parseAvifImage image = {};
Mp4parseStatus status = mp4parse_avif_get_image(mParser.get(), &image);
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] mp4parse_avif_get_image -> %d; primary_item length: "
"%zu, alpha_item length: %zu",
this, status, image.primary_image.length, image.alpha_image.length));
if (status != MP4PARSE_STATUS_OK) {
return AsVariant(status);
}
// Ideally has_primary_item and no errors would guarantee primary_image.data
// exists but it doesn't so we check it too.
if (!image.primary_image.data) {
return AsVariant(nsAVIFDecoder::NonDecoderResult::NoSamples);
}
RefPtr<MediaRawData> colorImage =
new MediaRawData(image.primary_image.data, image.primary_image.length);
RefPtr<MediaRawData> alphaImage = nullptr;
if (image.alpha_image.length) {
alphaImage =
new MediaRawData(image.alpha_image.data, image.alpha_image.length);
}
aImage.mFrameNum = 0;
aImage.mDuration = FrameTimeout::Forever();
aImage.mColorImage = colorImage;
aImage.mAlphaImage = alphaImage;
return AsVariant(nsAVIFDecoder::NonDecoderResult::Complete);
}
AVIFParser::AVIFParser(const Mp4parseIo* aIo) : mIo(aIo) {
MOZ_ASSERT(mIo);
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("Create AVIFParser=%p, image.avif.compliance_strictness: %d", this,
StaticPrefs::image_avif_compliance_strictness()));
}
static Mp4parseStatus CreateSampleIterator(
Mp4parseAvifParser* aParser, ByteStream* aBuffer, uint32_t trackID,
UniquePtr<SampleIterator>& aIteratorOut) {
Mp4parseByteData data;
uint64_t timescale;
Mp4parseStatus rv =
mp4parse_avif_get_indice_table(aParser, trackID, &data, ×cale);
if (rv != MP4PARSE_STATUS_OK) {
return rv;
}
UniquePtr<IndiceWrapper> wrapper = MakeUnique<IndiceWrapper>(data);
RefPtr<MP4SampleIndex> index = new MP4SampleIndex(
*wrapper, aBuffer, trackID, false, AssertedCast<int32_t>(timescale));
aIteratorOut = MakeUnique<SampleIterator>(index);
return MP4PARSE_STATUS_OK;
}
Mp4parseStatus AVIFParser::Init(ByteStream* aBuffer, bool aAllowSequences,
bool aAnimateAVIFMajor) {
#define CHECK_MP4PARSE_STATUS(v) \
do { \
if ((v) != MP4PARSE_STATUS_OK) { \
return v; \
} \
} while (false)
MOZ_ASSERT(!mParser);
Mp4parseAvifParser* parser = nullptr;
Mp4parseStatus status =
mp4parse_avif_new(mIo,
static_cast<enum Mp4parseStrictness>(
StaticPrefs::image_avif_compliance_strictness()),
&parser);
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] mp4parse_avif_new status: %d", this, status));
CHECK_MP4PARSE_STATUS(status);
MOZ_ASSERT(parser);
mParser.reset(parser);
status = mp4parse_avif_get_info(mParser.get(), &mInfo);
CHECK_MP4PARSE_STATUS(status);
bool useSequence = mInfo.has_sequence;
if (useSequence) {
if (!aAllowSequences) {
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] AVIF sequences disabled", this));
useSequence = false;
} else if (!aAnimateAVIFMajor &&
!!memcmp(mInfo.major_brand, "avis", sizeof(mInfo.major_brand))) {
useSequence = false;
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] AVIF prefers still image", this));
}
}
if (useSequence) {
status = CreateSampleIterator(parser, aBuffer, mInfo.color_track_id,
mColorSampleIter);
CHECK_MP4PARSE_STATUS(status);
MOZ_ASSERT(mColorSampleIter);
if (mInfo.alpha_track_id) {
status = CreateSampleIterator(parser, aBuffer, mInfo.alpha_track_id,
mAlphaSampleIter);
CHECK_MP4PARSE_STATUS(status);
MOZ_ASSERT(mAlphaSampleIter);
}
}
return status;
}
bool AVIFParser::IsAnimated() const { return !!mColorSampleIter; }
// The gfx::YUVColorSpace value is only used in the conversion from YUV -> RGB.
// Typically this comes directly from the CICP matrix_coefficients value, but
// certain values require additionally considering the colour_primaries value.
// See `gfxUtils::CicpToColorSpace` for details. We return a gfx::YUVColorSpace
// rather than CICP::MatrixCoefficients, since that's what
// `gfx::ConvertYCbCrATo[A]RGB` uses. `aBitstreamColorSpaceFunc` abstracts the
// fact that different decoder libraries require different methods for
// extracting the CICP values from the AV1 bitstream and we don't want to do
// that work unnecessarily because in addition to wasted effort, it would make
// the logging more confusing.
template <typename F>
static gfx::YUVColorSpace GetAVIFColorSpace(
const Mp4parseNclxColourInformation* aNclx, F&& aBitstreamColorSpaceFunc) {
return ToMaybe(aNclx)
.map([=](const auto& nclx) {
return gfxUtils::CicpToColorSpace(
static_cast<CICP::MatrixCoefficients>(nclx.matrix_coefficients),
static_cast<CICP::ColourPrimaries>(nclx.colour_primaries),
sAVIFLog);
})
.valueOrFrom(aBitstreamColorSpaceFunc)
.valueOr(gfx::YUVColorSpace::BT601);
}
static gfx::ColorRange GetAVIFColorRange(
const Mp4parseNclxColourInformation* aNclx,
const gfx::ColorRange av1ColorRange) {
return ToMaybe(aNclx)
.map([=](const auto& nclx) {
return aNclx->full_range_flag ? gfx::ColorRange::FULL
: gfx::ColorRange::LIMITED;
})
.valueOr(av1ColorRange);
}
void AVIFDecodedData::SetCicpValues(
const Mp4parseNclxColourInformation* aNclx,
const gfx::CICP::ColourPrimaries aAv1ColourPrimaries,
const gfx::CICP::TransferCharacteristics aAv1TransferCharacteristics,
const gfx::CICP::MatrixCoefficients aAv1MatrixCoefficients) {
auto cp = CICP::ColourPrimaries::CP_UNSPECIFIED;
auto tc = CICP::TransferCharacteristics::TC_UNSPECIFIED;
auto mc = CICP::MatrixCoefficients::MC_UNSPECIFIED;
if (aNclx) {
cp = static_cast<CICP::ColourPrimaries>(aNclx->colour_primaries);
tc = static_cast<CICP::TransferCharacteristics>(
aNclx->transfer_characteristics);
mc = static_cast<CICP::MatrixCoefficients>(aNclx->matrix_coefficients);
}
if (cp == CICP::ColourPrimaries::CP_UNSPECIFIED) {
if (aAv1ColourPrimaries != CICP::ColourPrimaries::CP_UNSPECIFIED) {
cp = aAv1ColourPrimaries;
MOZ_LOG(sAVIFLog, LogLevel::Info,
("Unspecified colour_primaries value specified in colr box, "
"using AV1 sequence header (%hhu)",
cp));
} else {
cp = CICP::ColourPrimaries::CP_BT709;
MOZ_LOG(sAVIFLog, LogLevel::Warning,
("Unspecified colour_primaries value specified in colr box "
"or AV1 sequence header, using fallback value (%hhu)",
cp));
}
} else if (cp != aAv1ColourPrimaries) {
MOZ_LOG(sAVIFLog, LogLevel::Warning,
("colour_primaries mismatch: colr box = %hhu, AV1 "
"sequence header = %hhu, using colr box",
cp, aAv1ColourPrimaries));
}
if (tc == CICP::TransferCharacteristics::TC_UNSPECIFIED) {
if (aAv1TransferCharacteristics !=
CICP::TransferCharacteristics::TC_UNSPECIFIED) {
tc = aAv1TransferCharacteristics;
MOZ_LOG(sAVIFLog, LogLevel::Info,
("Unspecified transfer_characteristics value specified in "
"colr box, using AV1 sequence header (%hhu)",
tc));
} else {
tc = CICP::TransferCharacteristics::TC_SRGB;
MOZ_LOG(sAVIFLog, LogLevel::Warning,
("Unspecified transfer_characteristics value specified in "
"colr box or AV1 sequence header, using fallback value (%hhu)",
tc));
}
} else if (tc != aAv1TransferCharacteristics) {
MOZ_LOG(sAVIFLog, LogLevel::Warning,
("transfer_characteristics mismatch: colr box = %hhu, "
"AV1 sequence header = %hhu, using colr box",
tc, aAv1TransferCharacteristics));
}
if (mc == CICP::MatrixCoefficients::MC_UNSPECIFIED) {
if (aAv1MatrixCoefficients != CICP::MatrixCoefficients::MC_UNSPECIFIED) {
mc = aAv1MatrixCoefficients;
MOZ_LOG(sAVIFLog, LogLevel::Info,
("Unspecified matrix_coefficients value specified in "
"colr box, using AV1 sequence header (%hhu)",
mc));
} else {
mc = CICP::MatrixCoefficients::MC_BT601;
MOZ_LOG(sAVIFLog, LogLevel::Warning,
("Unspecified matrix_coefficients value specified in "
"colr box or AV1 sequence header, using fallback value (%hhu)",
mc));
}
} else if (mc != aAv1MatrixCoefficients) {
MOZ_LOG(sAVIFLog, LogLevel::Warning,
("matrix_coefficients mismatch: colr box = %hhu, "
"AV1 sequence header = %hhu, using colr box",
mc, aAv1TransferCharacteristics));
}
mColourPrimaries = cp;
mTransferCharacteristics = tc;
mMatrixCoefficients = mc;
}
class Dav1dDecoder final : AVIFDecoderInterface {
public:
~Dav1dDecoder() {
MOZ_LOG(sAVIFLog, LogLevel::Verbose, ("Destroy Dav1dDecoder=%p", this));
if (mColorContext) {
dav1d_close(&mColorContext);
MOZ_ASSERT(!mColorContext);
}
if (mAlphaContext) {
dav1d_close(&mAlphaContext);
MOZ_ASSERT(!mAlphaContext);
}
}
static DecodeResult Create(UniquePtr<AVIFDecoderInterface>& aDecoder,
bool aHasAlpha) {
UniquePtr<Dav1dDecoder> d(new Dav1dDecoder());
Dav1dResult r = d->Init(aHasAlpha);
if (r == 0) {
aDecoder.reset(d.release());
}
return AsVariant(r);
}
DecodeResult Decode(bool aShouldSendTelemetry,
const Mp4parseAvifInfo& aAVIFInfo,
const AVIFImage& aSamples) override {
MOZ_ASSERT(mColorContext);
MOZ_ASSERT(!mDecodedData);
MOZ_ASSERT(aSamples.mColorImage);
MOZ_LOG(sAVIFLog, LogLevel::Verbose, ("[this=%p] Decoding color", this));
OwnedDav1dPicture colorPic = OwnedDav1dPicture(new Dav1dPicture());
OwnedDav1dPicture alphaPic = nullptr;
Dav1dResult r = GetPicture(*mColorContext, *aSamples.mColorImage,
colorPic.get(), aShouldSendTelemetry);
if (r != 0) {
return AsVariant(r);
}
if (aSamples.mAlphaImage) {
MOZ_ASSERT(mAlphaContext);
MOZ_LOG(sAVIFLog, LogLevel::Verbose, ("[this=%p] Decoding alpha", this));
alphaPic = OwnedDav1dPicture(new Dav1dPicture());
r = GetPicture(*mAlphaContext, *aSamples.mAlphaImage, alphaPic.get(),
aShouldSendTelemetry);
if (r != 0) {
return AsVariant(r);
}
// Per § 4 of the AVIF spec
// https://aomediacodec.github.io/av1-avif/#auxiliary-images: An AV1
// Alpha Image Item […] shall be encoded with the same bit depth as the
// associated master AV1 Image Item
if (colorPic->p.bpc != alphaPic->p.bpc) {
return AsVariant(NonDecoderResult::AlphaYColorDepthMismatch);
}
if (colorPic->stride[0] != alphaPic->stride[0]) {
return AsVariant(NonDecoderResult::AlphaYSizeMismatch);
}
}
MOZ_ASSERT_IF(!alphaPic, !aAVIFInfo.premultiplied_alpha);
mDecodedData = Dav1dPictureToDecodedData(
aAVIFInfo.nclx_colour_information, std::move(colorPic),
std::move(alphaPic), aAVIFInfo.premultiplied_alpha);
return AsVariant(r);
}
private:
explicit Dav1dDecoder() {
MOZ_LOG(sAVIFLog, LogLevel::Verbose, ("Create Dav1dDecoder=%p", this));
}
Dav1dResult Init(bool aHasAlpha) {
MOZ_ASSERT(!mColorContext);
MOZ_ASSERT(!mAlphaContext);
Dav1dSettings settings;
dav1d_default_settings(&settings);
settings.all_layers = 0;
settings.max_frame_delay = 1;
// TODO: tune settings a la DAV1DDecoder for AV1 (Bug 1681816)
Dav1dResult r = dav1d_open(&mColorContext, &settings);
if (r != 0) {
return r;
}
MOZ_ASSERT(mColorContext);
if (aHasAlpha) {
r = dav1d_open(&mAlphaContext, &settings);
if (r != 0) {
return r;
}
MOZ_ASSERT(mAlphaContext);
}
return 0;
}
static Dav1dResult GetPicture(Dav1dContext& aContext,
const MediaRawData& aBytes,
Dav1dPicture* aPicture,
bool aShouldSendTelemetry) {
MOZ_ASSERT(aPicture);
Dav1dData dav1dData;
Dav1dResult r = dav1d_data_wrap(&dav1dData, aBytes.Data(), aBytes.Size(),
Dav1dFreeCallback_s, nullptr);
MOZ_LOG(
sAVIFLog, r == 0 ? LogLevel::Verbose : LogLevel::Error,
("dav1d_data_wrap(%p, %zu) -> %d", dav1dData.data, dav1dData.sz, r));
if (r != 0) {
return r;
}
r = dav1d_send_data(&aContext, &dav1dData);
MOZ_LOG(sAVIFLog, r == 0 ? LogLevel::Debug : LogLevel::Error,
("dav1d_send_data -> %d", r));
if (r != 0) {
return r;
}
r = dav1d_get_picture(&aContext, aPicture);
MOZ_LOG(sAVIFLog, r == 0 ? LogLevel::Debug : LogLevel::Error,
("dav1d_get_picture -> %d", r));
// We already have the avif::decode_result metric to record all the
// successful calls, so only bother recording what type of errors we see
// via events. Unlike AOM, dav1d returns an int, not an enum, so this is
// the easiest way to see if we're getting unexpected behavior to
// investigate.
if (aShouldSendTelemetry && r != 0) {
mozilla::glean::avif::Dav1dGetPictureReturnValueExtra extra = {
.value = Some(nsPrintfCString("%d", r)),
};
mozilla::glean::avif::dav1d_get_picture_return_value.Record(Some(extra));
}
return r;
}
// A dummy callback for dav1d_data_wrap
static void Dav1dFreeCallback_s(const uint8_t* aBuf, void* aCookie) {
// The buf is managed by the mParser inside Dav1dDecoder itself. Do
// nothing here.
}
static UniquePtr<AVIFDecodedData> Dav1dPictureToDecodedData(
const Mp4parseNclxColourInformation* aNclx, OwnedDav1dPicture aPicture,
OwnedDav1dPicture aAlphaPlane, bool aPremultipliedAlpha);
Dav1dContext* mColorContext = nullptr;
Dav1dContext* mAlphaContext = nullptr;
};
OwnedAOMImage::OwnedAOMImage() {
MOZ_LOG(sAVIFLog, LogLevel::Verbose, ("Create OwnedAOMImage=%p", this));
}
OwnedAOMImage::~OwnedAOMImage() {
MOZ_LOG(sAVIFLog, LogLevel::Verbose, ("Destroy OwnedAOMImage=%p", this));
}
bool OwnedAOMImage::CloneFrom(aom_image_t* aImage, bool aIsAlpha) {
MOZ_ASSERT(aImage);
MOZ_ASSERT(!mImage);
MOZ_ASSERT(!mBuffer);
uint8_t* srcY = aImage->planes[AOM_PLANE_Y];
int yStride = aImage->stride[AOM_PLANE_Y];
int yHeight = aom_img_plane_height(aImage, AOM_PLANE_Y);
size_t yBufSize = yStride * yHeight;
// If aImage is alpha plane. The data is located in Y channel.
if (aIsAlpha) {
mBuffer = MakeUniqueFallible<uint8_t[]>(yBufSize);
if (!mBuffer) {
return false;
}
uint8_t* destY = mBuffer.get();
memcpy(destY, srcY, yBufSize);
mImage.emplace(*aImage);
mImage->planes[AOM_PLANE_Y] = destY;
return true;
}
uint8_t* srcCb = aImage->planes[AOM_PLANE_U];
int cbStride = aImage->stride[AOM_PLANE_U];
int cbHeight = aom_img_plane_height(aImage, AOM_PLANE_U);
size_t cbBufSize = cbStride * cbHeight;
uint8_t* srcCr = aImage->planes[AOM_PLANE_V];
int crStride = aImage->stride[AOM_PLANE_V];
int crHeight = aom_img_plane_height(aImage, AOM_PLANE_V);
size_t crBufSize = crStride * crHeight;
mBuffer = MakeUniqueFallible<uint8_t[]>(yBufSize + cbBufSize + crBufSize);
if (!mBuffer) {
return false;
}
uint8_t* destY = mBuffer.get();
uint8_t* destCb = destY + yBufSize;
uint8_t* destCr = destCb + cbBufSize;
memcpy(destY, srcY, yBufSize);
memcpy(destCb, srcCb, cbBufSize);
memcpy(destCr, srcCr, crBufSize);
mImage.emplace(*aImage);
mImage->planes[AOM_PLANE_Y] = destY;
mImage->planes[AOM_PLANE_U] = destCb;
mImage->planes[AOM_PLANE_V] = destCr;
return true;
}
/* static */
OwnedAOMImage* OwnedAOMImage::CopyFrom(aom_image_t* aImage, bool aIsAlpha) {
MOZ_ASSERT(aImage);
UniquePtr<OwnedAOMImage> img(new OwnedAOMImage());
if (!img->CloneFrom(aImage, aIsAlpha)) {
return nullptr;
}
return img.release();
}
class AOMDecoder final : AVIFDecoderInterface {
public:
~AOMDecoder() {
MOZ_LOG(sAVIFLog, LogLevel::Verbose, ("Destroy AOMDecoder=%p", this));
if (mColorContext.isSome()) {
aom_codec_err_t r = aom_codec_destroy(mColorContext.ptr());
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] aom_codec_destroy -> %d", this, r));
}
if (mAlphaContext.isSome()) {
aom_codec_err_t r = aom_codec_destroy(mAlphaContext.ptr());
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] aom_codec_destroy -> %d", this, r));
}
}
static DecodeResult Create(UniquePtr<AVIFDecoderInterface>& aDecoder,
bool aHasAlpha) {
UniquePtr<AOMDecoder> d(new AOMDecoder());
aom_codec_err_t e = d->Init(aHasAlpha);
if (e == AOM_CODEC_OK) {
aDecoder.reset(d.release());
}
return AsVariant(AOMResult(e));
}
DecodeResult Decode(bool aShouldSendTelemetry,
const Mp4parseAvifInfo& aAVIFInfo,
const AVIFImage& aSamples) override {
MOZ_ASSERT(mColorContext.isSome());
MOZ_ASSERT(!mDecodedData);
MOZ_ASSERT(aSamples.mColorImage);
aom_image_t* aomImg = nullptr;
DecodeResult r = GetImage(*mColorContext, *aSamples.mColorImage, &aomImg,
aShouldSendTelemetry);
if (!IsDecodeSuccess(r)) {
return r;
}
MOZ_ASSERT(aomImg);
// The aomImg will be released in next GetImage call (aom_codec_decode
// actually). The GetImage could be called again immediately if parsedImg
// contains alpha data. Therefore, we need to copy the image and manage it
// by AOMDecoder itself.
OwnedAOMImage* clonedImg = OwnedAOMImage::CopyFrom(aomImg, false);
if (!clonedImg) {
return AsVariant(NonDecoderResult::OutOfMemory);
}
mOwnedImage.reset(clonedImg);
if (aSamples.mAlphaImage) {
MOZ_ASSERT(mAlphaContext.isSome());
aom_image_t* alphaImg = nullptr;
r = GetImage(*mAlphaContext, *aSamples.mAlphaImage, &alphaImg,
aShouldSendTelemetry);
if (!IsDecodeSuccess(r)) {
return r;
}
MOZ_ASSERT(alphaImg);
OwnedAOMImage* clonedAlphaImg = OwnedAOMImage::CopyFrom(alphaImg, true);
if (!clonedAlphaImg) {
return AsVariant(NonDecoderResult::OutOfMemory);
}
mOwnedAlphaPlane.reset(clonedAlphaImg);
// Per § 4 of the AVIF spec
// https://aomediacodec.github.io/av1-avif/#auxiliary-images: An AV1
// Alpha Image Item […] shall be encoded with the same bit depth as the
// associated master AV1 Image Item
MOZ_ASSERT(mOwnedImage->GetImage() && mOwnedAlphaPlane->GetImage());
if (mOwnedImage->GetImage()->bit_depth !=
mOwnedAlphaPlane->GetImage()->bit_depth) {
return AsVariant(NonDecoderResult::AlphaYColorDepthMismatch);
}
if (mOwnedImage->GetImage()->stride[AOM_PLANE_Y] !=
mOwnedAlphaPlane->GetImage()->stride[AOM_PLANE_Y]) {
return AsVariant(NonDecoderResult::AlphaYSizeMismatch);
}
}
MOZ_ASSERT_IF(!mOwnedAlphaPlane, !aAVIFInfo.premultiplied_alpha);
mDecodedData = AOMImageToToDecodedData(
aAVIFInfo.nclx_colour_information, std::move(mOwnedImage),
std::move(mOwnedAlphaPlane), aAVIFInfo.premultiplied_alpha);
return r;
}
private:
explicit AOMDecoder() {
MOZ_LOG(sAVIFLog, LogLevel::Verbose, ("Create AOMDecoder=%p", this));
}
aom_codec_err_t Init(bool aHasAlpha) {
MOZ_ASSERT(mColorContext.isNothing());
MOZ_ASSERT(mAlphaContext.isNothing());
aom_codec_iface_t* iface = aom_codec_av1_dx();
// Init color decoder context
mColorContext.emplace();
aom_codec_err_t r = aom_codec_dec_init(
mColorContext.ptr(), iface, /* cfg = */ nullptr, /* flags = */ 0);
MOZ_LOG(sAVIFLog, r == AOM_CODEC_OK ? LogLevel::Verbose : LogLevel::Error,
("[this=%p] color decoder: aom_codec_dec_init -> %d, name = %s",
this, r, mColorContext->name));
if (r != AOM_CODEC_OK) {
mColorContext.reset();
return r;
}
if (aHasAlpha) {
// Init alpha decoder context
mAlphaContext.emplace();
r = aom_codec_dec_init(mAlphaContext.ptr(), iface, /* cfg = */ nullptr,
/* flags = */ 0);
MOZ_LOG(sAVIFLog, r == AOM_CODEC_OK ? LogLevel::Verbose : LogLevel::Error,
("[this=%p] color decoder: aom_codec_dec_init -> %d, name = %s",
this, r, mAlphaContext->name));
if (r != AOM_CODEC_OK) {
mAlphaContext.reset();
return r;
}
}
return r;
}
static DecodeResult GetImage(aom_codec_ctx_t& aContext,
const MediaRawData& aData, aom_image_t** aImage,
bool aShouldSendTelemetry) {
aom_codec_err_t r =
aom_codec_decode(&aContext, aData.Data(), aData.Size(), nullptr);
MOZ_LOG(sAVIFLog, r == AOM_CODEC_OK ? LogLevel::Verbose : LogLevel::Error,
("aom_codec_decode -> %d", r));
if (aShouldSendTelemetry) {
switch (r) {
case AOM_CODEC_OK:
// No need to record any telemetry for the common case
break;
case AOM_CODEC_ERROR:
mozilla::glean::avif::aom_decode_error
.EnumGet(glean::avif::AomDecodeErrorLabel::eError)
.Add();
break;
case AOM_CODEC_MEM_ERROR:
mozilla::glean::avif::aom_decode_error
.EnumGet(glean::avif::AomDecodeErrorLabel::eMemError)
.Add();
break;
case AOM_CODEC_ABI_MISMATCH:
mozilla::glean::avif::aom_decode_error
.EnumGet(glean::avif::AomDecodeErrorLabel::eAbiMismatch)
.Add();
break;
case AOM_CODEC_INCAPABLE:
mozilla::glean::avif::aom_decode_error
.EnumGet(glean::avif::AomDecodeErrorLabel::eIncapable)
.Add();
break;
case AOM_CODEC_UNSUP_BITSTREAM:
mozilla::glean::avif::aom_decode_error
.EnumGet(glean::avif::AomDecodeErrorLabel::eUnsupBitstream)
.Add();
break;
case AOM_CODEC_UNSUP_FEATURE:
mozilla::glean::avif::aom_decode_error
.EnumGet(glean::avif::AomDecodeErrorLabel::eUnsupFeature)
.Add();
break;
case AOM_CODEC_CORRUPT_FRAME:
mozilla::glean::avif::aom_decode_error
.EnumGet(glean::avif::AomDecodeErrorLabel::eCorruptFrame)
.Add();
break;
case AOM_CODEC_INVALID_PARAM:
mozilla::glean::avif::aom_decode_error
.EnumGet(glean::avif::AomDecodeErrorLabel::eInvalidParam)
.Add();
break;
default:
MOZ_ASSERT_UNREACHABLE(
"Unknown aom_codec_err_t value from aom_codec_decode");
}
}
if (r != AOM_CODEC_OK) {
return AsVariant(AOMResult(r));
}
aom_codec_iter_t iter = nullptr;
aom_image_t* img = aom_codec_get_frame(&aContext, &iter);
MOZ_LOG(sAVIFLog, img == nullptr ? LogLevel::Error : LogLevel::Verbose,
("aom_codec_get_frame -> %p", img));
if (img == nullptr) {
return AsVariant(AOMResult(NonAOMCodecError::NoFrame));
}
const CheckedInt<int> decoded_width = img->d_w;
const CheckedInt<int> decoded_height = img->d_h;
if (!decoded_height.isValid() || !decoded_width.isValid()) {
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("image dimensions can't be stored in int: d_w: %u, "
"d_h: %u",
img->d_w, img->d_h));
return AsVariant(AOMResult(NonAOMCodecError::SizeOverflow));
}
*aImage = img;
return AsVariant(AOMResult(r));
}
static UniquePtr<AVIFDecodedData> AOMImageToToDecodedData(
const Mp4parseNclxColourInformation* aNclx,
UniquePtr<OwnedAOMImage> aImage, UniquePtr<OwnedAOMImage> aAlphaPlane,
bool aPremultipliedAlpha);
Maybe<aom_codec_ctx_t> mColorContext;
Maybe<aom_codec_ctx_t> mAlphaContext;
UniquePtr<OwnedAOMImage> mOwnedImage;
UniquePtr<OwnedAOMImage> mOwnedAlphaPlane;
};
/* static */
UniquePtr<AVIFDecodedData> Dav1dDecoder::Dav1dPictureToDecodedData(
const Mp4parseNclxColourInformation* aNclx, OwnedDav1dPicture aPicture,
OwnedDav1dPicture aAlphaPlane, bool aPremultipliedAlpha) {
MOZ_ASSERT(aPicture);
static_assert(std::is_same<int, decltype(aPicture->p.w)>::value);
static_assert(std::is_same<int, decltype(aPicture->p.h)>::value);
UniquePtr<AVIFDecodedData> data = MakeUnique<AVIFDecodedData>();
data->mRenderSize.emplace(aPicture->frame_hdr->render_width,
aPicture->frame_hdr->render_height);
data->mYChannel = static_cast<uint8_t*>(aPicture->data[0]);
data->mYStride = aPicture->stride[0];
data->mYSkip = aPicture->stride[0] - aPicture->p.w;
data->mCbChannel = static_cast<uint8_t*>(aPicture->data[1]);
data->mCrChannel = static_cast<uint8_t*>(aPicture->data[2]);
data->mCbCrStride = aPicture->stride[1];
switch (aPicture->p.layout) {
case DAV1D_PIXEL_LAYOUT_I400: // Monochrome, so no Cb or Cr channels
break;
case DAV1D_PIXEL_LAYOUT_I420:
data->mChromaSubsampling = ChromaSubsampling::HALF_WIDTH_AND_HEIGHT;
break;
case DAV1D_PIXEL_LAYOUT_I422:
data->mChromaSubsampling = ChromaSubsampling::HALF_WIDTH;
break;
case DAV1D_PIXEL_LAYOUT_I444:
break;
default:
MOZ_ASSERT_UNREACHABLE("Unknown pixel layout");
}
data->mCbSkip = aPicture->stride[1] - aPicture->p.w;
data->mCrSkip = aPicture->stride[1] - aPicture->p.w;
data->mPictureRect = IntRect(0, 0, aPicture->p.w, aPicture->p.h);
data->mStereoMode = StereoMode::MONO;
data->mColorDepth = ColorDepthForBitDepth(aPicture->p.bpc);
MOZ_ASSERT(aPicture->p.bpc == BitDepthForColorDepth(data->mColorDepth));
data->mYUVColorSpace = GetAVIFColorSpace(aNclx, [&]() {
MOZ_LOG(sAVIFLog, LogLevel::Info,
("YUVColorSpace cannot be determined from colr box, using AV1 "
"sequence header"));
return DAV1DDecoder::GetColorSpace(*aPicture, sAVIFLog);
});
auto av1ColourPrimaries = CICP::ColourPrimaries::CP_UNSPECIFIED;
auto av1TransferCharacteristics =
CICP::TransferCharacteristics::TC_UNSPECIFIED;
auto av1MatrixCoefficients = CICP::MatrixCoefficients::MC_UNSPECIFIED;
MOZ_ASSERT(aPicture->seq_hdr);
auto& seq_hdr = *aPicture->seq_hdr;
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("seq_hdr.color_description_present: %d",
seq_hdr.color_description_present));
if (seq_hdr.color_description_present) {
av1ColourPrimaries = static_cast<CICP::ColourPrimaries>(seq_hdr.pri);
av1TransferCharacteristics =
static_cast<CICP::TransferCharacteristics>(seq_hdr.trc);
av1MatrixCoefficients = static_cast<CICP::MatrixCoefficients>(seq_hdr.mtrx);
}
data->SetCicpValues(aNclx, av1ColourPrimaries, av1TransferCharacteristics,
av1MatrixCoefficients);
gfx::ColorRange av1ColorRange =
seq_hdr.color_range ? gfx::ColorRange::FULL : gfx::ColorRange::LIMITED;
data->mColorRange = GetAVIFColorRange(aNclx, av1ColorRange);
auto colorPrimaries =
gfxUtils::CicpToColorPrimaries(data->mColourPrimaries, sAVIFLog);
if (colorPrimaries.isSome()) {
data->mColorPrimaries = *colorPrimaries;
}
if (aAlphaPlane) {
MOZ_ASSERT(aAlphaPlane->stride[0] == data->mYStride);
data->mAlpha.emplace();
data->mAlpha->mChannel = static_cast<uint8_t*>(aAlphaPlane->data[0]);
data->mAlpha->mSize = gfx::IntSize(aAlphaPlane->p.w, aAlphaPlane->p.h);
data->mAlpha->mPremultiplied = aPremultipliedAlpha;
}
data->mColorDav1d = std::move(aPicture);
data->mAlphaDav1d = std::move(aAlphaPlane);
return data;
}
/* static */
UniquePtr<AVIFDecodedData> AOMDecoder::AOMImageToToDecodedData(
const Mp4parseNclxColourInformation* aNclx, UniquePtr<OwnedAOMImage> aImage,
UniquePtr<OwnedAOMImage> aAlphaPlane, bool aPremultipliedAlpha) {
aom_image_t* colorImage = aImage->GetImage();
aom_image_t* alphaImage = aAlphaPlane ? aAlphaPlane->GetImage() : nullptr;
MOZ_ASSERT(colorImage);
MOZ_ASSERT(colorImage->stride[AOM_PLANE_Y] >=
aom_img_plane_width(colorImage, AOM_PLANE_Y));
MOZ_ASSERT(colorImage->stride[AOM_PLANE_U] ==
colorImage->stride[AOM_PLANE_V]);
MOZ_ASSERT(colorImage->stride[AOM_PLANE_U] >=
aom_img_plane_width(colorImage, AOM_PLANE_U));
MOZ_ASSERT(colorImage->stride[AOM_PLANE_V] >=
aom_img_plane_width(colorImage, AOM_PLANE_V));
MOZ_ASSERT(aom_img_plane_width(colorImage, AOM_PLANE_U) ==
aom_img_plane_width(colorImage, AOM_PLANE_V));
MOZ_ASSERT(aom_img_plane_height(colorImage, AOM_PLANE_U) ==
aom_img_plane_height(colorImage, AOM_PLANE_V));
UniquePtr<AVIFDecodedData> data = MakeUnique<AVIFDecodedData>();
data->mRenderSize.emplace(colorImage->r_w, colorImage->r_h);
data->mYChannel = colorImage->planes[AOM_PLANE_Y];
data->mYStride = colorImage->stride[AOM_PLANE_Y];
data->mYSkip = colorImage->stride[AOM_PLANE_Y] -
aom_img_plane_width(colorImage, AOM_PLANE_Y);
data->mCbChannel = colorImage->planes[AOM_PLANE_U];
data->mCrChannel = colorImage->planes[AOM_PLANE_V];
data->mCbCrStride = colorImage->stride[AOM_PLANE_U];
data->mCbSkip = colorImage->stride[AOM_PLANE_U] -
aom_img_plane_width(colorImage, AOM_PLANE_U);
data->mCrSkip = colorImage->stride[AOM_PLANE_V] -
aom_img_plane_width(colorImage, AOM_PLANE_V);
data->mPictureRect = gfx::IntRect(0, 0, colorImage->d_w, colorImage->d_h);
data->mStereoMode = StereoMode::MONO;
data->mColorDepth = ColorDepthForBitDepth(colorImage->bit_depth);
if (colorImage->x_chroma_shift == 1 && colorImage->y_chroma_shift == 1) {
data->mChromaSubsampling = gfx::ChromaSubsampling::HALF_WIDTH_AND_HEIGHT;
} else if (colorImage->x_chroma_shift == 1 &&
colorImage->y_chroma_shift == 0) {
data->mChromaSubsampling = gfx::ChromaSubsampling::HALF_WIDTH;
} else if (colorImage->x_chroma_shift != 0 ||
colorImage->y_chroma_shift != 0) {
MOZ_ASSERT_UNREACHABLE("unexpected chroma shifts");
}
MOZ_ASSERT(colorImage->bit_depth == BitDepthForColorDepth(data->mColorDepth));
auto av1ColourPrimaries = static_cast<CICP::ColourPrimaries>(colorImage->cp);
auto av1TransferCharacteristics =
static_cast<CICP::TransferCharacteristics>(colorImage->tc);
auto av1MatrixCoefficients =
static_cast<CICP::MatrixCoefficients>(colorImage->mc);
data->mYUVColorSpace = GetAVIFColorSpace(aNclx, [=]() {
MOZ_LOG(sAVIFLog, LogLevel::Info,
("YUVColorSpace cannot be determined from colr box, using AV1 "
"sequence header"));
return gfxUtils::CicpToColorSpace(av1MatrixCoefficients, av1ColourPrimaries,
sAVIFLog);
});
gfx::ColorRange av1ColorRange;
if (colorImage->range == AOM_CR_STUDIO_RANGE) {
av1ColorRange = gfx::ColorRange::LIMITED;
} else {
MOZ_ASSERT(colorImage->range == AOM_CR_FULL_RANGE);
av1ColorRange = gfx::ColorRange::FULL;
}
data->mColorRange = GetAVIFColorRange(aNclx, av1ColorRange);
data->SetCicpValues(aNclx, av1ColourPrimaries, av1TransferCharacteristics,
av1MatrixCoefficients);
auto colorPrimaries =
gfxUtils::CicpToColorPrimaries(data->mColourPrimaries, sAVIFLog);
if (colorPrimaries.isSome()) {
data->mColorPrimaries = *colorPrimaries;
}
if (alphaImage) {
MOZ_ASSERT(alphaImage->stride[AOM_PLANE_Y] == data->mYStride);
data->mAlpha.emplace();
data->mAlpha->mChannel = alphaImage->planes[AOM_PLANE_Y];
data->mAlpha->mSize = gfx::IntSize(alphaImage->d_w, alphaImage->d_h);
data->mAlpha->mPremultiplied = aPremultipliedAlpha;
}
data->mColorAOM = std::move(aImage);
data->mAlphaAOM = std::move(aAlphaPlane);
return data;
}
// Wrapper to allow rust to call our read adaptor.
intptr_t nsAVIFDecoder::ReadSource(uint8_t* aDestBuf, uintptr_t aDestBufSize,
void* aUserData) {
MOZ_ASSERT(aDestBuf);
MOZ_ASSERT(aUserData);
MOZ_LOG(sAVIFLog, LogLevel::Verbose,
("AVIF ReadSource, aDestBufSize: %zu", aDestBufSize));
auto* decoder = reinterpret_cast<nsAVIFDecoder*>(aUserData);
MOZ_ASSERT(decoder->mReadCursor);
size_t bufferLength = decoder->mBufferedData.end() - decoder->mReadCursor;
size_t n_bytes = std::min(aDestBufSize, bufferLength);
MOZ_LOG(
sAVIFLog, LogLevel::Verbose,
("AVIF ReadSource, %zu bytes ready, copying %zu", bufferLength, n_bytes));
memcpy(aDestBuf, decoder->mReadCursor, n_bytes);
decoder->mReadCursor += n_bytes;
return n_bytes;
}
nsAVIFDecoder::nsAVIFDecoder(RasterImage* aImage) : Decoder(aImage) {
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] nsAVIFDecoder::nsAVIFDecoder", this));
}
nsAVIFDecoder::~nsAVIFDecoder() {
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] nsAVIFDecoder::~nsAVIFDecoder", this));
}
LexerResult nsAVIFDecoder::DoDecode(SourceBufferIterator& aIterator,
IResumable* aOnResume) {
MOZ_LOG(sAVIFLog, LogLevel::Info,
("[this=%p] nsAVIFDecoder::DoDecode start", this));
DecodeResult result = DoDecodeInternal(aIterator, aOnResume);
RecordDecodeResultTelemetry(result);
if (result.is<NonDecoderResult>()) {
NonDecoderResult r = result.as<NonDecoderResult>();
if (r == NonDecoderResult::NeedMoreData) {
return LexerResult(Yield::NEED_MORE_DATA);
}
if (r == NonDecoderResult::OutputAvailable) {
MOZ_ASSERT(HasSize());
return LexerResult(Yield::OUTPUT_AVAILABLE);
}
if (r == NonDecoderResult::Complete) {
MOZ_ASSERT(HasSize());
return LexerResult(TerminalState::SUCCESS);
}
return LexerResult(TerminalState::FAILURE);
}
MOZ_ASSERT(result.is<Dav1dResult>() || result.is<AOMResult>() ||
result.is<Mp4parseStatus>());
// If IsMetadataDecode(), a successful parse should return
// NonDecoderResult::MetadataOk or else continue to the decode stage
MOZ_ASSERT_IF(result.is<Mp4parseStatus>(),
result.as<Mp4parseStatus>() != MP4PARSE_STATUS_OK);
auto rv = LexerResult(IsDecodeSuccess(result) ? TerminalState::SUCCESS
: TerminalState::FAILURE);
MOZ_LOG(sAVIFLog, LogLevel::Info,
("[this=%p] nsAVIFDecoder::DoDecode end", this));
return rv;
}
Mp4parseStatus nsAVIFDecoder::CreateParser() {
if (!mParser) {
Mp4parseIo io = {nsAVIFDecoder::ReadSource, this};
mBufferStream = new AVIFDecoderStream(&mBufferedData);
Mp4parseStatus status = AVIFParser::Create(
&io, mBufferStream.get(), mParser,
bool(GetDecoderFlags() & DecoderFlags::AVIF_SEQUENCES_ENABLED),
bool(GetDecoderFlags() & DecoderFlags::AVIF_ANIMATE_AVIF_MAJOR));
if (status != MP4PARSE_STATUS_OK) {
return status;
}
const Mp4parseAvifInfo& info = mParser->GetInfo();
mIsAnimated = mParser->IsAnimated();
mHasAlpha = mIsAnimated ? !!info.alpha_track_id : info.has_alpha_item;
}
return MP4PARSE_STATUS_OK;
}
nsAVIFDecoder::DecodeResult nsAVIFDecoder::CreateDecoder() {
if (!mDecoder) {
DecodeResult r = StaticPrefs::image_avif_use_dav1d()
? Dav1dDecoder::Create(mDecoder, mHasAlpha)
: AOMDecoder::Create(mDecoder, mHasAlpha);
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] Create %sDecoder %ssuccessfully", this,
StaticPrefs::image_avif_use_dav1d() ? "Dav1d" : "AOM",
IsDecodeSuccess(r) ? "" : "un"));
return r;
}
return StaticPrefs::image_avif_use_dav1d()
? DecodeResult(Dav1dResult(0))
: DecodeResult(AOMResult(AOM_CODEC_OK));
}
// Records all telemetry available in the AVIF metadata, called only once during
// the metadata decode to avoid multiple counts.
static void RecordMetadataTelem(const Mp4parseAvifInfo& aInfo) {
if (aInfo.pixel_aspect_ratio) {
const uint32_t& h_spacing = aInfo.pixel_aspect_ratio->h_spacing;
const uint32_t& v_spacing = aInfo.pixel_aspect_ratio->v_spacing;
if (h_spacing == 0 || v_spacing == 0) {
mozilla::glean::avif::pasp
.EnumGet(mozilla::glean::avif::PaspLabel::eInvalid)
.Add();
} else if (h_spacing == v_spacing) {
mozilla::glean::avif::pasp
.EnumGet(mozilla::glean::avif::PaspLabel::eSquare)
.Add();
} else {
mozilla::glean::avif::pasp
.EnumGet(mozilla::glean::avif::PaspLabel::eNonsquare)
.Add();
}
} else {
mozilla::glean::avif::pasp.EnumGet(mozilla::glean::avif::PaspLabel::eAbsent)
.Add();
}
const auto& major_brand = aInfo.major_brand;
if (!memcmp(major_brand, "avif", sizeof(major_brand))) {
glean::avif::major_brand.EnumGet(glean::avif::MajorBrandLabel::eAvif).Add();
} else if (!memcmp(major_brand, "avis", sizeof(major_brand))) {
glean::avif::major_brand.EnumGet(glean::avif::MajorBrandLabel::eAvis).Add();
} else {
glean::avif::major_brand.EnumGet(glean::avif::MajorBrandLabel::eOther)
.Add();
}
glean::avif::sequence
.EnumGet(aInfo.has_sequence ? glean::avif::SequenceLabel::ePresent
: glean::avif::SequenceLabel::eAbsent)
.Add();
#define FEATURE_RECORD_GLEAN(metric, metricLabel, fourcc) \
mozilla::glean::avif::metric \
.EnumGet(aInfo.unsupported_features_bitfield & \
(1 << MP4PARSE_FEATURE_##fourcc) \
? mozilla::glean::avif::metricLabel::ePresent \
: mozilla::glean::avif::metricLabel::eAbsent) \
.Add()
FEATURE_RECORD_GLEAN(a1lx, A1lxLabel, A1LX);
FEATURE_RECORD_GLEAN(a1op, A1opLabel, A1OP);
FEATURE_RECORD_GLEAN(clap, ClapLabel, CLAP);
FEATURE_RECORD_GLEAN(grid, GridLabel, GRID);
FEATURE_RECORD_GLEAN(ipro, IproLabel, IPRO);
FEATURE_RECORD_GLEAN(lsel, LselLabel, LSEL);
if (aInfo.nclx_colour_information && aInfo.icc_colour_information.data) {
mozilla::glean::avif::colr.EnumGet(mozilla::glean::avif::ColrLabel::eBoth)
.Add();
} else if (aInfo.nclx_colour_information) {
mozilla::glean::avif::colr.EnumGet(mozilla::glean::avif::ColrLabel::eNclx)
.Add();
} else if (aInfo.icc_colour_information.data) {
mozilla::glean::avif::colr.EnumGet(mozilla::glean::avif::ColrLabel::eIcc)
.Add();
} else {
mozilla::glean::avif::colr.EnumGet(mozilla::glean::avif::ColrLabel::eAbsent)
.Add();
}
}
static void RecordPixiTelemetry(uint8_t aPixiBitDepth,
uint8_t aBitstreamBitDepth,
const char* aItemName) {
if (aPixiBitDepth == 0) {
mozilla::glean::avif::pixi.EnumGet(mozilla::glean::avif::PixiLabel::eAbsent)
.Add();
} else if (aPixiBitDepth == aBitstreamBitDepth) {
mozilla::glean::avif::pixi.EnumGet(mozilla::glean::avif::PixiLabel::eValid)
.Add();
} else {
MOZ_LOG(sAVIFLog, LogLevel::Error,
("%s item pixi bit depth (%hhu) doesn't match "
"bitstream (%hhu)",
aItemName, aPixiBitDepth, aBitstreamBitDepth));
mozilla::glean::avif::pixi
.EnumGet(mozilla::glean::avif::PixiLabel::eBitstreamMismatch)
.Add();
}
}
// This telemetry depends on the results of decoding.
// These data must be recorded only on the first frame decoded after metadata
// decode finishes.
static void RecordFrameTelem(bool aAnimated, const Mp4parseAvifInfo& aInfo,
const AVIFDecodedData& aData) {
mozilla::glean::avif::yuv_color_space
.EnumGet(static_cast<mozilla::glean::avif::YuvColorSpaceLabel>(
aData.mYUVColorSpace))
.Add();
mozilla::glean::avif::bit_depth
.EnumGet(
static_cast<mozilla::glean::avif::BitDepthLabel>(aData.mColorDepth))
.Add();
RecordPixiTelemetry(
aAnimated ? aInfo.color_track_bit_depth : aInfo.primary_item_bit_depth,
BitDepthForColorDepth(aData.mColorDepth), "color");
if (aData.mAlpha) {
mozilla::glean::avif::alpha
.EnumGet(mozilla::glean::avif::AlphaLabel::ePresent)
.Add();
RecordPixiTelemetry(
aAnimated ? aInfo.alpha_track_bit_depth : aInfo.alpha_item_bit_depth,
BitDepthForColorDepth(aData.mColorDepth), "alpha");
} else {
mozilla::glean::avif::alpha
.EnumGet(mozilla::glean::avif::AlphaLabel::eAbsent)
.Add();
}
if (CICP::IsReserved(aData.mColourPrimaries)) {
mozilla::glean::avif::cicp_cp
.EnumGet(mozilla::glean::avif::CicpCpLabel::eReservedRest)
.Add();
} else {
mozilla::glean::avif::cicp_cp.EnumGet(
static_cast<mozilla::glean::avif::CicpCpLabel>(aData.mColourPrimaries));
}
if (CICP::IsReserved(aData.mTransferCharacteristics)) {
mozilla::glean::avif::cicp_tc
.EnumGet(mozilla::glean::avif::CicpTcLabel::eReserved)
.Add();
} else {
mozilla::glean::avif::cicp_tc.EnumGet(
static_cast<mozilla::glean::avif::CicpTcLabel>(
aData.mTransferCharacteristics));
}
if (CICP::IsReserved(aData.mMatrixCoefficients)) {
mozilla::glean::avif::cicp_mc
.EnumGet(mozilla::glean::avif::CicpMcLabel::eReserved)
.Add();
} else {
mozilla::glean::avif::cicp_mc.EnumGet(
static_cast<mozilla::glean::avif::CicpMcLabel>(
aData.mMatrixCoefficients));
}
}
nsAVIFDecoder::DecodeResult nsAVIFDecoder::DoDecodeInternal(
SourceBufferIterator& aIterator, IResumable* aOnResume) {
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] nsAVIFDecoder::DoDecodeInternal", this));
// Since the SourceBufferIterator doesn't guarantee a contiguous buffer,
// but the current mp4parse-rust implementation requires it, always buffer
// locally. This keeps the code simpler at the cost of some performance, but
// this implementation is only experimental, so we don't want to spend time
// optimizing it prematurely.
while (!mReadCursor) {
SourceBufferIterator::State state =
aIterator.AdvanceOrScheduleResume(SIZE_MAX, aOnResume);
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] After advance, iterator state is %d", this, state));
switch (state) {
case SourceBufferIterator::WAITING:
return AsVariant(NonDecoderResult::NeedMoreData);
case SourceBufferIterator::COMPLETE:
mReadCursor = mBufferedData.begin();
break;
case SourceBufferIterator::READY: { // copy new data to buffer
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] SourceBufferIterator ready, %zu bytes available",
this, aIterator.Length()));
bool appendSuccess =
mBufferedData.append(aIterator.Data(), aIterator.Length());
if (!appendSuccess) {
MOZ_LOG(sAVIFLog, LogLevel::Error,
("[this=%p] Failed to append %zu bytes to buffer", this,
aIterator.Length()));
}
break;
}
default:
MOZ_ASSERT_UNREACHABLE("unexpected SourceBufferIterator state");
}
}
Mp4parseStatus parserStatus = CreateParser();
if (parserStatus != MP4PARSE_STATUS_OK) {
return AsVariant(parserStatus);
}
const Mp4parseAvifInfo& parsedInfo = mParser->GetInfo();
if (parsedInfo.icc_colour_information.data) {
const auto& icc = parsedInfo.icc_colour_information;
MOZ_LOG(
sAVIFLog, LogLevel::Debug,
("[this=%p] colr type ICC: %zu bytes %p", this, icc.length, icc.data));
}
if (IsMetadataDecode()) {
RecordMetadataTelem(parsedInfo);
}
if (parsedInfo.nclx_colour_information) {
const auto& nclx = *parsedInfo.nclx_colour_information;
MOZ_LOG(
sAVIFLog, LogLevel::Debug,
("[this=%p] colr type CICP: cp/tc/mc/full-range %u/%u/%u/%s", this,
nclx.colour_primaries, nclx.transfer_characteristics,
nclx.matrix_coefficients, nclx.full_range_flag ? "true" : "false"));
}
if (!parsedInfo.icc_colour_information.data &&
!parsedInfo.nclx_colour_information) {
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] colr box not present", this));
}
AVIFImage parsedImage;
DecodeResult r = mParser->GetImage(parsedImage);
if (!IsDecodeSuccess(r)) {
return r;
}
bool isDone =
!IsMetadataDecode() && r == DecodeResult(NonDecoderResult::Complete);
if (mIsAnimated) {
PostIsAnimated(parsedImage.mDuration);
switch (mParser->GetInfo().loop_mode) {
case MP4PARSE_AVIF_LOOP_MODE_LOOP_BY_COUNT: {
auto loopCount = mParser->GetInfo().loop_count;
PostLoopCount(loopCount > INT32_MAX ? -1
: static_cast<int32_t>(loopCount));
break;
}
case MP4PARSE_AVIF_LOOP_MODE_LOOP_INFINITELY:
case MP4PARSE_AVIF_LOOP_MODE_NO_EDITS:
default:
PostLoopCount(-1);
break;
}
}
if (mHasAlpha) {
PostHasTransparency();
}
Orientation orientation = StaticPrefs::image_avif_apply_transforms()
? GetImageOrientation(parsedInfo)
: Orientation{};
// TODO: Orientation should probably also apply to animated AVIFs.
if (mIsAnimated) {
orientation = Orientation{};
}
Maybe<IntSize> ispeImageSize = GetImageSize(parsedInfo);
bool sendDecodeTelemetry = IsMetadataDecode();
if (ispeImageSize.isSome()) {
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] Parser returned image size %d x %d (%d/%d bit)", this,
ispeImageSize->width, ispeImageSize->height,
mIsAnimated ? parsedInfo.color_track_bit_depth
: parsedInfo.primary_item_bit_depth,
mIsAnimated ? parsedInfo.alpha_track_bit_depth
: parsedInfo.alpha_item_bit_depth));
PostSize(ispeImageSize->width, ispeImageSize->height, orientation);
if (WantsFrameCount()) {
// Note that this consumes the frame iterators, so this can only be
// requested for metadata decodes. Since we had to partially decode the
// first frame to determine the size, we need to add one to the result.
PostFrameCount(mParser->GetFrameCount() + 1);
}
if (IsMetadataDecode()) {
MOZ_LOG(
sAVIFLog, LogLevel::Debug,
("[this=%p] Finishing metadata decode without image decode", this));
return AsVariant(NonDecoderResult::Complete);
}
// If we're continuing to decode here, this means we skipped decode
// telemetry for the metadata decode pass. Send it this time.
sendDecodeTelemetry = true;
} else {
MOZ_LOG(sAVIFLog, LogLevel::Error,
("[this=%p] Parser returned no image size, decoding...", this));
}
r = CreateDecoder();
if (!IsDecodeSuccess(r)) {
return r;
}
MOZ_ASSERT(mDecoder);
r = mDecoder->Decode(sendDecodeTelemetry, parsedInfo, parsedImage);
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] Decoder%s->Decode() %s", this,
StaticPrefs::image_avif_use_dav1d() ? "Dav1d" : "AOM",
IsDecodeSuccess(r) ? "succeeds" : "fails"));
if (!IsDecodeSuccess(r)) {
return r;
}
UniquePtr<AVIFDecodedData> decodedData = mDecoder->GetDecodedData();
MOZ_ASSERT_IF(mHasAlpha, decodedData->mAlpha.isSome());
MOZ_ASSERT(decodedData->mColourPrimaries !=
CICP::ColourPrimaries::CP_UNSPECIFIED);
MOZ_ASSERT(decodedData->mTransferCharacteristics !=
CICP::TransferCharacteristics::TC_UNSPECIFIED);
MOZ_ASSERT(decodedData->mColorRange <= gfx::ColorRange::_Last);
MOZ_ASSERT(decodedData->mYUVColorSpace <= gfx::YUVColorSpace::_Last);
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] decodedData.mColorRange: %hhd", this,
static_cast<uint8_t>(decodedData->mColorRange)));
// Technically it's valid but we don't handle it now (Bug 1682318).
if (decodedData->mAlpha &&
decodedData->mAlpha->mSize != decodedData->YDataSize()) {
return AsVariant(NonDecoderResult::AlphaYSizeMismatch);
}
bool isFirstFrame = GetFrameCount() == 0;
if (!HasSize()) {
MOZ_ASSERT(isFirstFrame);
MOZ_LOG(
sAVIFLog, LogLevel::Error,
("[this=%p] Using decoded image size: %d x %d", this,
decodedData->mPictureRect.width, decodedData->mPictureRect.height));
PostSize(decodedData->mPictureRect.width, decodedData->mPictureRect.height,
orientation);
if (WantsFrameCount()) {
// Note that this consumes the frame iterators, so this can only be
// requested for metadata decodes. Since we had to partially decode the
// first frame to determine the size, we need to add one to the result.
PostFrameCount(mParser->GetFrameCount() + 1);
}
mozilla::glean::avif::ispe.EnumGet(mozilla::glean::avif::IspeLabel::eAbsent)
.Add();
} else {
// Verify that the bitstream hasn't changed the image size compared to
// either the ispe box or the previous frames.
IntSize expectedSize = GetImageMetadata()
.GetOrientation()
.ToUnoriented(Size())
.ToUnknownSize();
if (decodedData->mPictureRect.width != expectedSize.width ||
decodedData->mPictureRect.height != expectedSize.height) {
if (isFirstFrame) {
MOZ_LOG(
sAVIFLog, LogLevel::Error,
("[this=%p] Metadata image size doesn't match decoded image size: "
"(%d x %d) != (%d x %d)",
this, ispeImageSize->width, ispeImageSize->height,
decodedData->mPictureRect.width,
decodedData->mPictureRect.height));
mozilla::glean::avif::ispe
.EnumGet(mozilla::glean::avif::IspeLabel::eBitstreamMismatch)
.Add();
return AsVariant(NonDecoderResult::MetadataImageSizeMismatch);
}
MOZ_LOG(
sAVIFLog, LogLevel::Error,
("[this=%p] Frame size has changed in the bitstream: "
"(%d x %d) != (%d x %d)",
this, expectedSize.width, expectedSize.height,
decodedData->mPictureRect.width, decodedData->mPictureRect.height));
return AsVariant(NonDecoderResult::FrameSizeChanged);
}
if (isFirstFrame) {
mozilla::glean::avif::ispe
.EnumGet(mozilla::glean::avif::IspeLabel::eValid)
.Add();
}
}
if (IsMetadataDecode()) {
return AsVariant(NonDecoderResult::Complete);
}
IntSize rgbSize = decodedData->mPictureRect.Size();
if (parsedImage.mFrameNum == 0) {
RecordFrameTelem(mIsAnimated, parsedInfo, *decodedData);
}
if (decodedData->mRenderSize &&
decodedData->mRenderSize->ToUnknownSize() != rgbSize) {
// This may be supported by allowing all metadata decodes to decode a frame
// and get the render size from the bitstream. However it's unlikely to be
// used often.
return AsVariant(NonDecoderResult::RenderSizeMismatch);
}
// Read color profile
if (mCMSMode != CMSMode::Off) {
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] Processing color profile", this));
// See comment on AVIFDecodedData
if (parsedInfo.icc_colour_information.data) {
// same profile for every frame of image, only create it once
if (!mInProfile) {
const auto& icc = parsedInfo.icc_colour_information;
mInProfile = qcms_profile_from_memory(icc.data, icc.length);
}
} else {
// potentially different profile every frame, destroy the old one
if (mInProfile) {
if (mTransform) {
qcms_transform_release(mTransform);
mTransform = nullptr;
}
qcms_profile_release(mInProfile);
mInProfile = nullptr;
}
const auto& cp = decodedData->mColourPrimaries;
const auto& tc = decodedData->mTransferCharacteristics;
if (CICP::IsReserved(cp)) {
MOZ_LOG(sAVIFLog, LogLevel::Error,
("[this=%p] colour_primaries reserved value (%hhu) is invalid; "
"failing",
this, cp));
return AsVariant(NonDecoderResult::InvalidCICP);
}
if (CICP::IsReserved(tc)) {
MOZ_LOG(sAVIFLog, LogLevel::Error,
("[this=%p] transfer_characteristics reserved value (%hhu) is "
"invalid; failing",
this, tc));
return AsVariant(NonDecoderResult::InvalidCICP);
}
MOZ_ASSERT(cp != CICP::ColourPrimaries::CP_UNSPECIFIED &&
!CICP::IsReserved(cp));
MOZ_ASSERT(tc != CICP::TransferCharacteristics::TC_UNSPECIFIED &&
!CICP::IsReserved(tc));
mInProfile =
qcms_profile_create_cicp(cp, ChooseTransferCharacteristics(tc));
}
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] mInProfile %p", this, mInProfile));
} else {
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] CMSMode::Off, skipping color profile", this));
}
if (mInProfile && GetCMSOutputProfile() && !mTransform) {
auto intent = static_cast<qcms_intent>(gfxPlatform::GetRenderingIntent());
qcms_data_type inType;
qcms_data_type outType;
// If we're not mandating an intent, use the one from the image.
if (gfxPlatform::GetRenderingIntent() == -1) {
intent = qcms_profile_get_rendering_intent(mInProfile);
}
uint32_t profileSpace = qcms_profile_get_color_space(mInProfile);
if (profileSpace != icSigGrayData) {
mUsePipeTransform = true;
// When we convert the data to rgb we always pass either B8G8R8A8 or
// B8G8R8X8 to ConvertYCbCrToRGB32. After that we input the data to the
// surface pipe where qcms happens in the pipeline. So when the data gets
// to qcms it will always be in our preferred format and so
// gfxPlatform::GetCMSOSRGBAType is the correct type.
inType = gfxPlatform::GetCMSOSRGBAType();
outType = inType;
} else {
// We can't use SurfacePipe to do the color management (it can't handle
// grayscale data), we have to do it ourselves on the grayscale data
// before passing the now RGB data to SurfacePipe.
mUsePipeTransform = false;
if (mHasAlpha) {
inType = QCMS_DATA_GRAYA_8;
outType = gfxPlatform::GetCMSOSRGBAType();
} else {
inType = QCMS_DATA_GRAY_8;
outType = gfxPlatform::GetCMSOSRGBAType();
}
}
mTransform = qcms_transform_create(mInProfile, inType,
GetCMSOutputProfile(), outType, intent);
}
// Get suggested format and size. Note that GetYCbCrToRGBDestFormatAndSize
// force format to be B8G8R8X8 if it's not.
gfx::SurfaceFormat format = SurfaceFormat::OS_RGBX;
gfx::GetYCbCrToRGBDestFormatAndSize(*decodedData, format, rgbSize);
if (mHasAlpha) {
// We would use libyuv to do the YCbCrA -> ARGB convertion, which only
// works for B8G8R8A8.
format = SurfaceFormat::B8G8R8A8;
}
const int bytesPerPixel = BytesPerPixel(format);
const CheckedInt rgbStride = CheckedInt<int>(rgbSize.width) * bytesPerPixel;
const CheckedInt rgbBufLength = rgbStride * rgbSize.height;
if (!rgbStride.isValid() || !rgbBufLength.isValid()) {
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] overflow calculating rgbBufLength: rbgSize.width: %d, "
"rgbSize.height: %d, "
"bytesPerPixel: %u",
this, rgbSize.width, rgbSize.height, bytesPerPixel));
return AsVariant(NonDecoderResult::SizeOverflow);
}
UniquePtr<uint8_t[]> rgbBuf =
MakeUniqueFallible<uint8_t[]>(rgbBufLength.value());
if (!rgbBuf) {
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] allocation of %u-byte rgbBuf failed", this,
rgbBufLength.value()));
return AsVariant(NonDecoderResult::OutOfMemory);
}
PremultFunc premultOp = nullptr;
const auto wantPremultiply =
!bool(GetSurfaceFlags() & SurfaceFlags::NO_PREMULTIPLY_ALPHA);
if (decodedData->mAlpha) {
const bool& hasPremultiply = decodedData->mAlpha->mPremultiplied;
if (mTransform) {
// Color management needs to be done on non-premult data, so
// ConvertYCbCrToRGB32 needs to produce non-premult data, then color
// management can happen (either here for grayscale data, or in surface
// pipe otherwise) and then later in the surface pipe we will convert to
// premult if needed.
if (hasPremultiply) {
premultOp = libyuv::ARGBUnattenuate;
}
} else {
// no color management, so premult conversion (if needed) can be done by
// ConvertYCbCrToRGB32 before surface pipe
if (wantPremultiply && !hasPremultiply) {
premultOp = libyuv::ARGBAttenuate;
} else if (!wantPremultiply && hasPremultiply) {
premultOp = libyuv::ARGBUnattenuate;
}
}
}
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] calling gfx::ConvertYCbCrToRGB32 premultOp: %p", this,
premultOp));
nsresult result = gfx::ConvertYCbCrToRGB32(*decodedData, format, rgbBuf.get(),
rgbStride.value(), premultOp);
if (!NS_SUCCEEDED(result)) {
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] ConvertYCbCrToRGB32 failure", this));
return AsVariant(NonDecoderResult::ConvertYCbCrFailure);
}
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] calling SurfacePipeFactory::CreateSurfacePipe", this));
SurfacePipeFlags pipeFlags = SurfacePipeFlags();
if (decodedData->mAlpha && mTransform) {
// we know data is non-premult in this case, see above, so if we
// wantPremultiply then we have to ask the surface pipe to convert for us
if (wantPremultiply) {
pipeFlags |= SurfacePipeFlags::PREMULTIPLY_ALPHA;
}
}
Maybe<SurfacePipe> pipe = Nothing();
auto* transform = mUsePipeTransform ? mTransform : nullptr;
if (mIsAnimated) {
SurfaceFormat outFormat =
decodedData->mAlpha ? SurfaceFormat::OS_RGBA : SurfaceFormat::OS_RGBX;
Maybe<AnimationParams> animParams;
if (!IsFirstFrameDecode()) {
animParams.emplace(FullFrame().ToUnknownRect(), parsedImage.mDuration,
parsedImage.mFrameNum, BlendMethod::SOURCE,
DisposalMethod::CLEAR_ALL);
}
pipe = SurfacePipeFactory::CreateSurfacePipe(
this, Size(), OutputSize(), FullFrame(), format, outFormat, animParams,
transform, pipeFlags);
} else {
pipe = SurfacePipeFactory::CreateReorientSurfacePipe(
this, Size(), OutputSize(), format, format, transform, GetOrientation(),
pipeFlags);
}
if (pipe.isNothing()) {
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] could not initialize surface pipe", this));
return AsVariant(NonDecoderResult::PipeInitError);
}
MOZ_LOG(sAVIFLog, LogLevel::Debug, ("[this=%p] writing to surface", this));
const uint8_t* endOfRgbBuf = {rgbBuf.get() + rgbBufLength.value()};
WriteState writeBufferResult = WriteState::NEED_MORE_DATA;
uint8_t* grayLine = nullptr;
int32_t multiplier = 1;
if (mTransform && !mUsePipeTransform) {
if (mHasAlpha) {
multiplier = 2;
}
// We know this calculation doesn't overflow because rgbStride is a larger
// value and is valid here.
grayLine = new uint8_t[multiplier * rgbSize.width];
}
for (uint8_t* rowPtr = rgbBuf.get(); rowPtr < endOfRgbBuf;
rowPtr += rgbStride.value()) {
if (mTransform && !mUsePipeTransform) {
// format is B8G8R8A8 or B8G8R8X8, so 1 offset picks G
for (int32_t i = 0; i < rgbSize.width; i++) {
grayLine[multiplier * i] = rowPtr[i * bytesPerPixel + 1];
if (mHasAlpha) {
grayLine[multiplier * i + 1] = rowPtr[i * bytesPerPixel + 3];
}
}
qcms_transform_data(mTransform, grayLine, rowPtr, rgbSize.width);
}
writeBufferResult = pipe->WriteBuffer(reinterpret_cast<uint32_t*>(rowPtr));
Maybe<SurfaceInvalidRect> invalidRect = pipe->TakeInvalidRect();
if (invalidRect) {
PostInvalidation(invalidRect->mInputSpaceRect,
Some(invalidRect->mOutputSpaceRect));
}
if (writeBufferResult == WriteState::FAILURE) {
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] error writing rowPtr to surface pipe", this));
} else if (writeBufferResult == WriteState::FINISHED) {
MOZ_ASSERT(rowPtr + rgbStride.value() == endOfRgbBuf);
}
}
if (mTransform && !mUsePipeTransform) {
delete[] grayLine;
}
MOZ_LOG(sAVIFLog, LogLevel::Debug,
("[this=%p] writing to surface complete", this));
if (writeBufferResult == WriteState::FINISHED) {
PostFrameStop(mHasAlpha ? Opacity::SOME_TRANSPARENCY
: Opacity::FULLY_OPAQUE);
if (!mIsAnimated || IsFirstFrameDecode()) {
PostDecodeDone();
return DecodeResult(NonDecoderResult::Complete);
}
if (isDone) {
PostDecodeDone();
return DecodeResult(NonDecoderResult::Complete);
}
return DecodeResult(NonDecoderResult::OutputAvailable);
}
return AsVariant(NonDecoderResult::WriteBufferError);
}
/* static */
bool nsAVIFDecoder::IsDecodeSuccess(const DecodeResult& aResult) {
return aResult == DecodeResult(NonDecoderResult::OutputAvailable) ||
aResult == DecodeResult(NonDecoderResult::Complete) ||
aResult == DecodeResult(Dav1dResult(0)) ||
aResult == DecodeResult(AOMResult(AOM_CODEC_OK));
}
void nsAVIFDecoder::RecordDecodeResultTelemetry(
const nsAVIFDecoder::DecodeResult& aResult) {
if (aResult.is<Mp4parseStatus>()) {
switch (aResult.as<Mp4parseStatus>()) {
case MP4PARSE_STATUS_OK:
MOZ_ASSERT_UNREACHABLE(
"Expect NonDecoderResult, Dav1dResult or AOMResult");
return;
case MP4PARSE_STATUS_BAD_ARG:
case MP4PARSE_STATUS_INVALID:
case MP4PARSE_STATUS_UNSUPPORTED:
case MP4PARSE_STATUS_EOF:
case MP4PARSE_STATUS_IO:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eParseError)
.Add();
return;
case MP4PARSE_STATUS_OOM:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eOutOfMemory)
.Add();
return;
case MP4PARSE_STATUS_MISSING_AVIF_OR_AVIS_BRAND:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eMissingBrand)
.Add();
return;
case MP4PARSE_STATUS_FTYP_NOT_FIRST:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eFtypNotFirst)
.Add();
return;
case MP4PARSE_STATUS_NO_IMAGE:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eNoImage)
.Add();
return;
case MP4PARSE_STATUS_MOOV_BAD_QUANTITY:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eMultipleMoov)
.Add();
return;
case MP4PARSE_STATUS_MOOV_MISSING:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eNoMoov)
.Add();
return;
case MP4PARSE_STATUS_LSEL_NO_ESSENTIAL:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eLselNoEssential)
.Add();
return;
case MP4PARSE_STATUS_A1OP_NO_ESSENTIAL:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eA1opNoEssential)
.Add();
return;
case MP4PARSE_STATUS_A1LX_ESSENTIAL:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eA1lxEssential)
.Add();
return;
case MP4PARSE_STATUS_TXFORM_NO_ESSENTIAL:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eTxformNoEssential)
.Add();
return;
case MP4PARSE_STATUS_PITM_MISSING:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eNoPrimaryItem)
.Add();
return;
case MP4PARSE_STATUS_IMAGE_ITEM_TYPE:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eImageItemType)
.Add();
return;
case MP4PARSE_STATUS_ITEM_TYPE_MISSING:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eItemTypeMissing)
.Add();
return;
case MP4PARSE_STATUS_CONSTRUCTION_METHOD:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eConstructionMethod)
.Add();
return;
case MP4PARSE_STATUS_PITM_NOT_FOUND:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eItemLocNotFound)
.Add();
return;
case MP4PARSE_STATUS_IDAT_MISSING:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eNoItemDataBox)
.Add();
return;
default:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eUncategorized)
.Add();
return;
}
MOZ_LOG(sAVIFLog, LogLevel::Error,
("[this=%p] unexpected Mp4parseStatus value: %d", this,
aResult.as<Mp4parseStatus>()));
MOZ_ASSERT(false, "unexpected Mp4parseStatus value");
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eInvalidParseStatus)
.Add();
} else if (aResult.is<NonDecoderResult>()) {
switch (aResult.as<NonDecoderResult>()) {
case NonDecoderResult::NeedMoreData:
return;
case NonDecoderResult::OutputAvailable:
return;
case NonDecoderResult::Complete:
return;
case NonDecoderResult::SizeOverflow:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eSizeOverflow)
.Add();
return;
case NonDecoderResult::OutOfMemory:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eOutOfMemory)
.Add();
return;
case NonDecoderResult::PipeInitError:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::ePipeInitError)
.Add();
return;
case NonDecoderResult::WriteBufferError:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eWriteBufferError)
.Add();
return;
case NonDecoderResult::AlphaYSizeMismatch:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eAlphaYSzMismatch)
.Add();
return;
case NonDecoderResult::AlphaYColorDepthMismatch:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eAlphaYBpcMismatch)
.Add();
return;
case NonDecoderResult::MetadataImageSizeMismatch:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eIspeMismatch)
.Add();
return;
case NonDecoderResult::RenderSizeMismatch:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eRenderSizeMismatch)
.Add();
return;
case NonDecoderResult::FrameSizeChanged:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eFrameSizeChanged)
.Add();
return;
case NonDecoderResult::InvalidCICP:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eInvalidCicp)
.Add();
return;
case NonDecoderResult::NoSamples:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eNoSamples)
.Add();
return;
case NonDecoderResult::ConvertYCbCrFailure:
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eConvertycbcrFailure)
.Add();
return;
}
MOZ_ASSERT_UNREACHABLE("unknown NonDecoderResult");
} else {
MOZ_ASSERT(aResult.is<Dav1dResult>() || aResult.is<AOMResult>());
if (aResult.is<Dav1dResult>()) {
mozilla::glean::avif::decoder.EnumGet(glean::avif::DecoderLabel::eDav1d)
.Add();
} else {
mozilla::glean::avif::decoder.EnumGet(glean::avif::DecoderLabel::eAom)
.Add();
}
if (IsDecodeSuccess(aResult)) {
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eSuccess)
.Add();
} else {
mozilla::glean::avif::decode_result
.EnumGet(glean::avif::DecodeResultLabel::eDecodeError)
.Add();
}
}
}
Maybe<glean::impl::MemoryDistributionMetric> nsAVIFDecoder::SpeedMetric()
const {
return Some(glean::image_decode::speed_avif);
}
} // namespace image
} // namespace mozilla
|