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
|
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include "system.h"
#include "AMLCodec.h"
#include "DynamicDll.h"
#include "cores/VideoPlayer/DVDClock.h"
#include "cores/VideoPlayer/VideoRenderers/RenderFlags.h"
#include "cores/VideoPlayer/VideoRenderers/RenderManager.h"
#include "guilib/GraphicContext.h"
#include "settings/DisplaySettings.h"
#include "settings/MediaSettings.h"
#include "settings/Settings.h"
#include "utils/AMLUtils.h"
#include "utils/log.h"
#include "utils/StringUtils.h"
#include "utils/SysfsUtils.h"
#include "utils/TimeUtils.h"
#if defined(TARGET_ANDROID)
#include "platform/android/activity/AndroidFeatures.h"
#include "utils/BitstreamConverter.h"
#endif
extern "C" {
#include "libavutil/avutil.h"
} // extern "C"
#include <unistd.h>
#include <queue>
#include <vector>
#include <signal.h>
#include <semaphore.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include <linux/videodev2.h>
// amcodec include
extern "C" {
#include <amcodec/codec.h>
} // extern "C"
class PosixFile
{
public:
PosixFile() :
m_fd(-1)
{
}
PosixFile(int fd) :
m_fd(fd)
{
}
~PosixFile()
{
if (m_fd >= 0)
close(m_fd);
}
bool Open(const std::string &pathName, int flags)
{
m_fd = open(pathName.c_str(), flags);
return m_fd >= 0;
}
int GetDescriptor() const { return m_fd; }
int IOControl(unsigned long request, void *param)
{
return ioctl(m_fd, request, param);
}
private:
int m_fd;
};
typedef struct {
bool noblock;
int video_pid;
int video_type;
stream_type_t stream_type;
unsigned int format;
unsigned int width;
unsigned int height;
unsigned int rate;
unsigned int extra;
unsigned int status;
unsigned int ratio;
unsigned long long ratio64;
void *param;
} aml_generic_param;
class DllLibamCodecInterface
{
public:
virtual ~DllLibamCodecInterface() {};
virtual int codec_init(codec_para_t *pcodec)=0;
virtual int codec_close(codec_para_t *pcodec)=0;
virtual int codec_reset(codec_para_t *pcodec)=0;
virtual int codec_pause(codec_para_t *pcodec)=0;
virtual int codec_resume(codec_para_t *pcodec)=0;
virtual int codec_write(codec_para_t *pcodec, void *buffer, int len)=0;
virtual int codec_checkin_pts(codec_para_t *pcodec, unsigned long pts)=0;
virtual int codec_get_vbuf_state(codec_para_t *pcodec, struct buf_status *buf)=0;
virtual int codec_get_vdec_state(codec_para_t *pcodec, struct vdec_status *vdec)=0;
virtual int codec_init_cntl(codec_para_t *pcodec)=0;
virtual int codec_poll_cntl(codec_para_t *pcodec)=0;
virtual int codec_set_cntl_mode(codec_para_t *pcodec, unsigned int mode)=0;
virtual int codec_set_cntl_avthresh(codec_para_t *pcodec, unsigned int avthresh)=0;
virtual int codec_set_cntl_syncthresh(codec_para_t *pcodec, unsigned int syncthresh)=0;
};
class DllLibAmCodec : public DllDynamic, DllLibamCodecInterface
{
// libamcodec is static linked into libamplayer.so or libamcodec.so
DECLARE_DLL_WRAPPER(DllLibAmCodec, "libamplayer.so")
DEFINE_METHOD1(int, codec_init, (codec_para_t *p1))
DEFINE_METHOD1(int, codec_close, (codec_para_t *p1))
DEFINE_METHOD1(int, codec_reset, (codec_para_t *p1))
DEFINE_METHOD1(int, codec_pause, (codec_para_t *p1))
DEFINE_METHOD1(int, codec_resume, (codec_para_t *p1))
DEFINE_METHOD3(int, codec_write, (codec_para_t *p1, void *p2, int p3))
DEFINE_METHOD2(int, codec_checkin_pts, (codec_para_t *p1, unsigned long p2))
DEFINE_METHOD2(int, codec_get_vbuf_state, (codec_para_t *p1, struct buf_status * p2))
DEFINE_METHOD2(int, codec_get_vdec_state, (codec_para_t *p1, struct vdec_status * p2))
DEFINE_METHOD1(int, codec_init_cntl, (codec_para_t *p1))
DEFINE_METHOD1(int, codec_poll_cntl, (codec_para_t *p1))
DEFINE_METHOD2(int, codec_set_cntl_mode, (codec_para_t *p1, unsigned int p2))
DEFINE_METHOD2(int, codec_set_cntl_avthresh, (codec_para_t *p1, unsigned int p2))
DEFINE_METHOD2(int, codec_set_cntl_syncthresh,(codec_para_t *p1, unsigned int p2))
BEGIN_METHOD_RESOLVE()
RESOLVE_METHOD(codec_init)
RESOLVE_METHOD(codec_close)
RESOLVE_METHOD(codec_reset)
RESOLVE_METHOD(codec_pause)
RESOLVE_METHOD(codec_resume)
RESOLVE_METHOD(codec_write)
RESOLVE_METHOD(codec_checkin_pts)
RESOLVE_METHOD(codec_get_vbuf_state)
RESOLVE_METHOD(codec_get_vdec_state)
RESOLVE_METHOD(codec_init_cntl)
RESOLVE_METHOD(codec_poll_cntl)
RESOLVE_METHOD(codec_set_cntl_mode)
RESOLVE_METHOD(codec_set_cntl_avthresh)
RESOLVE_METHOD(codec_set_cntl_syncthresh)
END_METHOD_RESOLVE()
public:
void codec_init_para(aml_generic_param *p_in, codec_para_t *p_out)
{
memset(p_out, 0x00, sizeof(codec_para_t));
#ifdef TARGET_ANDROID
bits_writer_t bs = {0};
// we are always as large as codec_para_t from headers.
CBitstreamConverter::init_bits_writer(&bs, (uint8_t*)p_out, sizeof(codec_para_t), 1);
// order matters, so pay attention
// to codec_para_t in codec_types.h
CBitstreamConverter::write_bits(&bs, 32, -1); // CODEC_HANDLE handle, init to invalid
CBitstreamConverter::write_bits(&bs, 32, -1); // CODEC_HANDLE cntl_handle
CBitstreamConverter::write_bits(&bs, 32, -1); // CODEC_HANDLE sub_handle
CBitstreamConverter::write_bits(&bs, 32, -1); // CODEC_HANDLE audio_utils_handle
CBitstreamConverter::write_bits(&bs, 32, p_in->stream_type); // stream_type_t stream_type
// watch these, using bit fields (which is stupid)
CBitstreamConverter::write_bits(&bs, 1, 1); // unsigned int has_video:1
CBitstreamConverter::write_bits(&bs, 1, 0); // unsigned int has_audio:1
CBitstreamConverter::write_bits(&bs, 1, 0); // unsigned int has_sub:1
unsigned int value = p_in->noblock > 0 ? 1:0;
CBitstreamConverter::write_bits(&bs, 1, value); // unsigned int noblock:1
CBitstreamConverter::write_bits(&bs, 28, 0); // align back to next word boundary
CBitstreamConverter::write_bits(&bs, 32, p_in->video_type); // int video_type
CBitstreamConverter::write_bits(&bs, 32, 0); // int audio_type
CBitstreamConverter::write_bits(&bs, 32, 0); // int sub_type
CBitstreamConverter::write_bits(&bs, 32, p_in->video_pid); // int video_pid
CBitstreamConverter::write_bits(&bs, 32, 0); // int audio_pid
CBitstreamConverter::write_bits(&bs, 32, 0); // int sub_pid
CBitstreamConverter::write_bits(&bs, 32, 0); // int audio_channels
CBitstreamConverter::write_bits(&bs, 32, 0); // int audio_samplerate
CBitstreamConverter::write_bits(&bs, 32, 0); // int vbuf_size
CBitstreamConverter::write_bits(&bs, 32, 0); // int abuf_size
CBitstreamConverter::write_bits(&bs, 32, p_in->format); // am_sysinfo, unsigned int format
CBitstreamConverter::write_bits(&bs, 32, p_in->width); // am_sysinfo, unsigned int width
CBitstreamConverter::write_bits(&bs, 32, p_in->height); // am_sysinfo, unsigned int height
CBitstreamConverter::write_bits(&bs, 32, p_in->rate); // am_sysinfo, unsigned int rate
CBitstreamConverter::write_bits(&bs, 32, p_in->extra); // am_sysinfo, unsigned int extra
CBitstreamConverter::write_bits(&bs, 32, p_in->status); // am_sysinfo, unsigned int status
CBitstreamConverter::write_bits(&bs, 32, p_in->ratio); // am_sysinfo, unsigned int ratio
CBitstreamConverter::write_bits(&bs, 32, (unsigned int)p_in->param); // am_sysinfo, unsigned int param
unsigned int lo = 0x00000000ffffffff & p_in->ratio64;
unsigned int hi = p_in->ratio64 >> 32;
CBitstreamConverter::write_bits(&bs, 32, lo); // am_sysinfo, unsigned long long ratio64
CBitstreamConverter::write_bits(&bs, 32, hi); // am_sysinfo, unsigned long long ratio64
// we do not care about the rest, flush and go.
// FYI there are 4.0 to 4.1 differences here.
CBitstreamConverter::flush_bits(&bs);
//CLog::MemDump((char*)p_out, 0xFF);
#else
// direct struct usage, we do not know which flavor
// so just use what we get from headers and pray.
p_out->handle = -1; //init to invalid
p_out->cntl_handle = -1;
p_out->sub_handle = -1;
p_out->audio_utils_handle = -1;
p_out->has_video = 1;
p_out->noblock = p_in->noblock;
p_out->video_pid = p_in->video_pid;
p_out->video_type = p_in->video_type;
p_out->stream_type = p_in->stream_type;
p_out->am_sysinfo.format = p_in->format;
p_out->am_sysinfo.width = p_in->width;
p_out->am_sysinfo.height = p_in->height;
p_out->am_sysinfo.rate = p_in->rate;
p_out->am_sysinfo.extra = p_in->extra;
p_out->am_sysinfo.status = p_in->status;
p_out->am_sysinfo.ratio = p_in->ratio;
p_out->am_sysinfo.ratio64 = p_in->ratio64;
p_out->am_sysinfo.param = p_in->param;
#endif
}
};
//-----------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------
// AppContext - Application state
#define MODE_3D_DISABLE 0x00000000
#define MODE_3D_LR 0x00000101
#define MODE_3D_LR_SWITCH 0x00000501
#define MODE_3D_BT 0x00000201
#define MODE_3D_BT_SWITCH 0x00000601
#define MODE_3D_TO_2D_L 0x00000102
#define MODE_3D_TO_2D_R 0x00000902
#define MODE_3D_TO_2D_T 0x00000202
#define MODE_3D_TO_2D_B 0x00000a02
#define PTS_FREQ 90000
#define UNIT_FREQ 96000
#define AV_SYNC_THRESH PTS_FREQ*30
#define TRICKMODE_NONE 0x00
#define TRICKMODE_I 0x01
#define TRICKMODE_FFFB 0x02
// same as AV_NOPTS_VALUE
#define INT64_0 INT64_C(0x8000000000000000)
#define EXTERNAL_PTS (1)
#define SYNC_OUTSIDE (2)
// missing tags
#define CODEC_TAG_VC_1 (0x312D4356)
#define CODEC_TAG_RV30 (0x30335652)
#define CODEC_TAG_RV40 (0x30345652)
#define CODEC_TAG_MJPEG (0x47504a4d)
#define CODEC_TAG_mjpeg (0x47504a4c)
#define CODEC_TAG_jpeg (0x6765706a)
#define CODEC_TAG_mjpa (0x61706a6d)
#define RW_WAIT_TIME (20 * 1000) // 20ms
#define P_PRE (0x02000000)
#define F_PRE (0x03000000)
#define PLAYER_SUCCESS (0)
#define PLAYER_FAILED (-(P_PRE|0x01))
#define PLAYER_NOMEM (-(P_PRE|0x02))
#define PLAYER_EMPTY_P (-(P_PRE|0x03))
#define PLAYER_WR_FAILED (-(P_PRE|0x21))
#define PLAYER_WR_EMPTYP (-(P_PRE|0x22))
#define PLAYER_WR_FINISH (P_PRE|0x1)
#define PLAYER_PTS_ERROR (-(P_PRE|0x31))
#define PLAYER_UNSUPPORT (-(P_PRE|0x35))
#define PLAYER_CHECK_CODEC_ERROR (-(P_PRE|0x39))
#define HDR_BUF_SIZE 1024
typedef struct hdr_buf {
char *data;
int size;
} hdr_buf_t;
typedef struct am_packet {
AVPacket avpkt;
int64_t avpts;
int64_t avdts;
int avduration;
int isvalid;
int newflag;
int64_t lastpts;
unsigned char *data;
unsigned char *buf;
int data_size;
int buf_size;
hdr_buf_t *hdr;
codec_para_t *codec;
} am_packet_t;
typedef enum {
AM_STREAM_UNKNOWN = 0,
AM_STREAM_TS,
AM_STREAM_PS,
AM_STREAM_ES,
AM_STREAM_RM,
AM_STREAM_AUDIO,
AM_STREAM_VIDEO,
} pstream_type;
typedef struct am_private_t
{
am_packet_t am_pkt;
aml_generic_param gcodec;
codec_para_t vcodec;
pstream_type stream_type;
int check_first_pts;
vformat_t video_format;
int video_pid;
unsigned int video_codec_id;
unsigned int video_codec_tag;
vdec_type_t video_codec_type;
unsigned int video_width;
unsigned int video_height;
unsigned int video_ratio;
unsigned int video_ratio64;
unsigned int video_rate;
unsigned int video_rotation_degree;
int extrasize;
uint8_t *extradata;
DllLibAmCodec *m_dll;
int dumpfile;
bool dumpdemux;
} am_private_t;
/*************************************************************************/
/*************************************************************************/
void dumpfile_open(am_private_t *para)
{
if (para->dumpdemux)
{
static int amcodec_dumpid = 0;
char dump_path[128] = {0};
sprintf(dump_path, "/temp/dump_amcodec-%d.dat", amcodec_dumpid++);
para->dumpfile = open(dump_path, O_CREAT | O_RDWR, 0666);
}
}
void dumpfile_close(am_private_t *para)
{
if (para->dumpdemux && para->dumpfile != -1)
close(para->dumpfile), para->dumpfile = -1;
}
void dumpfile_write(am_private_t *para, void* buf, int bufsiz)
{
if (!buf)
{
CLog::Log(LOGERROR, "dumpfile_write: wtf ? buf is null, bufsiz(%d)", bufsiz);
return;
}
if (para->dumpdemux && para->dumpfile != -1)
write(para->dumpfile, buf, bufsiz);
}
static vformat_t codecid_to_vformat(enum AVCodecID id)
{
vformat_t format;
switch (id)
{
case AV_CODEC_ID_MPEG1VIDEO:
case AV_CODEC_ID_MPEG2VIDEO:
format = VFORMAT_MPEG12;
break;
case AV_CODEC_ID_H263:
case AV_CODEC_ID_MPEG4:
case AV_CODEC_ID_H263P:
case AV_CODEC_ID_H263I:
case AV_CODEC_ID_MSMPEG4V2:
case AV_CODEC_ID_MSMPEG4V3:
case AV_CODEC_ID_FLV1:
format = VFORMAT_MPEG4;
break;
case AV_CODEC_ID_RV10:
case AV_CODEC_ID_RV20:
case AV_CODEC_ID_RV30:
case AV_CODEC_ID_RV40:
format = VFORMAT_REAL;
break;
case AV_CODEC_ID_H264:
format = VFORMAT_H264;
break;
/*
case AV_CODEC_ID_H264MVC:
// H264 Multiview Video Coding (3d blurays)
format = VFORMAT_H264MVC;
break;
*/
case AV_CODEC_ID_MJPEG:
format = VFORMAT_MJPEG;
break;
case AV_CODEC_ID_VC1:
case AV_CODEC_ID_WMV3:
format = VFORMAT_VC1;
break;
case AV_CODEC_ID_AVS:
case AV_CODEC_ID_CAVS:
format = VFORMAT_AVS;
break;
case AV_CODEC_ID_HEVC:
format = VFORMAT_HEVC;
break;
default:
format = VFORMAT_UNSUPPORT;
break;
}
CLog::Log(LOGDEBUG, "codecid_to_vformat, id(%d) -> vformat(%d)", (int)id, format);
return format;
}
static vdec_type_t codec_tag_to_vdec_type(unsigned int codec_tag)
{
vdec_type_t dec_type;
switch (codec_tag)
{
case CODEC_TAG_MJPEG:
case CODEC_TAG_mjpeg:
case CODEC_TAG_jpeg:
case CODEC_TAG_mjpa:
// mjpeg
dec_type = VIDEO_DEC_FORMAT_MJPEG;
break;
case CODEC_TAG_XVID:
case CODEC_TAG_xvid:
case CODEC_TAG_XVIX:
// xvid
dec_type = VIDEO_DEC_FORMAT_MPEG4_5;
break;
case CODEC_TAG_COL1:
case CODEC_TAG_DIV3:
case CODEC_TAG_MP43:
// divx3.11
dec_type = VIDEO_DEC_FORMAT_MPEG4_3;
break;
case CODEC_TAG_DIV4:
case CODEC_TAG_DIVX:
// divx4
dec_type = VIDEO_DEC_FORMAT_MPEG4_4;
break;
case CODEC_TAG_DIV5:
case CODEC_TAG_DX50:
case CODEC_TAG_M4S2:
case CODEC_TAG_FMP4:
// divx5
dec_type = VIDEO_DEC_FORMAT_MPEG4_5;
break;
case CODEC_TAG_DIV6:
// divx6
dec_type = VIDEO_DEC_FORMAT_MPEG4_5;
break;
case CODEC_TAG_MP4V:
case CODEC_TAG_RMP4:
case CODEC_TAG_MPG4:
case CODEC_TAG_mp4v:
case AV_CODEC_ID_MPEG4:
// mp4
dec_type = VIDEO_DEC_FORMAT_MPEG4_5;
break;
case AV_CODEC_ID_H263:
case CODEC_TAG_H263:
case CODEC_TAG_h263:
case CODEC_TAG_s263:
case CODEC_TAG_F263:
// h263
dec_type = VIDEO_DEC_FORMAT_H263;
break;
case CODEC_TAG_AVC1:
case CODEC_TAG_avc1:
case CODEC_TAG_H264:
case CODEC_TAG_h264:
case AV_CODEC_ID_H264:
// h264
dec_type = VIDEO_DEC_FORMAT_H264;
break;
/*
case AV_CODEC_ID_H264MVC:
dec_type = VIDEO_DEC_FORMAT_H264;
break;
*/
case AV_CODEC_ID_RV30:
case CODEC_TAG_RV30:
// realmedia 3
dec_type = VIDEO_DEC_FORMAT_REAL_8;
break;
case AV_CODEC_ID_RV40:
case CODEC_TAG_RV40:
// realmedia 4
dec_type = VIDEO_DEC_FORMAT_REAL_9;
break;
case CODEC_TAG_WMV3:
// wmv3
dec_type = VIDEO_DEC_FORMAT_WMV3;
break;
case AV_CODEC_ID_VC1:
case CODEC_TAG_VC_1:
case CODEC_TAG_WVC1:
case CODEC_TAG_WMVA:
// vc1
dec_type = VIDEO_DEC_FORMAT_WVC1;
break;
case AV_CODEC_ID_VP6F:
// vp6
dec_type = VIDEO_DEC_FORMAT_SW;
break;
case AV_CODEC_ID_CAVS:
case AV_CODEC_ID_AVS:
// avs
dec_type = VIDEO_DEC_FORMAT_AVS;
break;
case AV_CODEC_ID_HEVC:
// h265
dec_type = VIDEO_DEC_FORMAT_HEVC;
break;
default:
dec_type = VIDEO_DEC_FORMAT_UNKNOW;
break;
}
CLog::Log(LOGDEBUG, "codec_tag_to_vdec_type, codec_tag(%d) -> vdec_type(%d)", codec_tag, dec_type);
return dec_type;
}
static void am_packet_init(am_packet_t *pkt)
{
memset(&pkt->avpkt, 0, sizeof(AVPacket));
pkt->avpts = 0;
pkt->avdts = 0;
pkt->avduration = 0;
pkt->isvalid = 0;
pkt->newflag = 0;
pkt->lastpts = 0;
pkt->data = NULL;
pkt->buf = NULL;
pkt->data_size = 0;
pkt->buf_size = 0;
pkt->hdr = NULL;
pkt->codec = NULL;
}
void am_packet_release(am_packet_t *pkt)
{
if (pkt->buf != NULL)
free(pkt->buf), pkt->buf= NULL;
if (pkt->hdr != NULL)
{
if (pkt->hdr->data != NULL)
free(pkt->hdr->data), pkt->hdr->data = NULL;
free(pkt->hdr), pkt->hdr = NULL;
}
pkt->codec = NULL;
}
int check_in_pts(am_private_t *para, am_packet_t *pkt)
{
int last_duration = 0;
static int last_v_duration = 0;
int64_t pts = 0;
last_duration = last_v_duration;
if (para->stream_type == AM_STREAM_ES) {
if ((int64_t)INT64_0 != pkt->avpts) {
pts = pkt->avpts;
if (para->m_dll->codec_checkin_pts(pkt->codec, pts) != 0) {
CLog::Log(LOGDEBUG, "ERROR check in pts error!");
return PLAYER_PTS_ERROR;
}
} else if ((int64_t)INT64_0 != pkt->avdts) {
pts = pkt->avdts * last_duration;
if (para->m_dll->codec_checkin_pts(pkt->codec, pts) != 0) {
CLog::Log(LOGDEBUG, "ERROR check in dts error!");
return PLAYER_PTS_ERROR;
}
last_v_duration = pkt->avduration ? pkt->avduration : 1;
} else {
if (!para->check_first_pts) {
if (para->m_dll->codec_checkin_pts(pkt->codec, 0) != 0) {
CLog::Log(LOGDEBUG, "ERROR check in 0 to video pts error!");
return PLAYER_PTS_ERROR;
}
}
}
if (!para->check_first_pts) {
para->check_first_pts = 1;
}
}
if (pts > 0)
pkt->lastpts = pts;
return PLAYER_SUCCESS;
}
static int write_header(am_private_t *para, am_packet_t *pkt)
{
int write_bytes = 0, len = 0;
if (pkt->hdr && pkt->hdr->size > 0) {
if ((NULL == pkt->codec) || (NULL == pkt->hdr->data)) {
CLog::Log(LOGDEBUG, "[write_header]codec null!");
return PLAYER_EMPTY_P;
}
//some wvc1 es data not need to add header
if (para->video_format == VFORMAT_VC1 && para->video_codec_type == VIDEO_DEC_FORMAT_WVC1) {
if ((pkt->data) && (pkt->data_size >= 4)
&& (pkt->data[0] == 0) && (pkt->data[1] == 0)
&& (pkt->data[2] == 1) && (pkt->data[3] == 0xd || pkt->data[3] == 0xf)) {
return PLAYER_SUCCESS;
}
}
while (1) {
write_bytes = para->m_dll->codec_write(pkt->codec, pkt->hdr->data + len, pkt->hdr->size - len);
if (write_bytes < 0 || write_bytes > (pkt->hdr->size - len)) {
if (-errno != AVERROR(EAGAIN)) {
CLog::Log(LOGDEBUG, "ERROR:write header failed!");
return PLAYER_WR_FAILED;
} else {
continue;
}
} else {
dumpfile_write(para, pkt->hdr->data, write_bytes);
len += write_bytes;
if (len == pkt->hdr->size) {
break;
}
}
}
}
return PLAYER_SUCCESS;
}
int check_avbuffer_enough(am_private_t *para, am_packet_t *pkt)
{
return 1;
}
int write_av_packet(am_private_t *para, am_packet_t *pkt)
{
//CLog::Log(LOGDEBUG, "write_av_packet, pkt->isvalid(%d), pkt->data(%p), pkt->data_size(%d)",
// pkt->isvalid, pkt->data, pkt->data_size);
int write_bytes = 0, len = 0, ret;
unsigned char *buf;
int size;
// do we need to check in pts or write the header ?
if (pkt->newflag) {
if (pkt->isvalid) {
ret = check_in_pts(para, pkt);
if (ret != PLAYER_SUCCESS) {
CLog::Log(LOGDEBUG, "check in pts failed");
return PLAYER_WR_FAILED;
}
}
if (write_header(para, pkt) == PLAYER_WR_FAILED) {
CLog::Log(LOGDEBUG, "[%s]write header failed!", __FUNCTION__);
return PLAYER_WR_FAILED;
}
pkt->newflag = 0;
}
buf = pkt->data;
size = pkt->data_size ;
if (size == 0 && pkt->isvalid) {
pkt->isvalid = 0;
pkt->data_size = 0;
}
while (size > 0 && pkt->isvalid) {
write_bytes = para->m_dll->codec_write(pkt->codec, buf, size);
if (write_bytes < 0 || write_bytes > size) {
CLog::Log(LOGDEBUG, "write codec data failed, write_bytes(%d), errno(%d), size(%d)", write_bytes, errno, size);
if (-errno != AVERROR(EAGAIN)) {
CLog::Log(LOGDEBUG, "write codec data failed!");
return PLAYER_WR_FAILED;
} else {
// adjust for any data we already wrote into codec.
// we sleep a bit then exit as we will get called again
// with the same pkt because pkt->isvalid has not been cleared.
pkt->data += len;
pkt->data_size -= len;
usleep(RW_WAIT_TIME);
CLog::Log(LOGDEBUG, "usleep(RW_WAIT_TIME), len(%d)", len);
return PLAYER_SUCCESS;
}
} else {
dumpfile_write(para, buf, write_bytes);
// keep track of what we write into codec from this pkt
// in case we get hit with EAGAIN.
len += write_bytes;
if (len == pkt->data_size) {
pkt->isvalid = 0;
pkt->data_size = 0;
break;
} else if (len < pkt->data_size) {
buf += write_bytes;
size -= write_bytes;
} else {
// writing more that we should is a failure.
return PLAYER_WR_FAILED;
}
}
}
return PLAYER_SUCCESS;
}
/*************************************************************************/
static int m4s2_dx50_mp4v_add_header(unsigned char *buf, int size, am_packet_t *pkt)
{
if (size > pkt->hdr->size) {
free(pkt->hdr->data), pkt->hdr->data = NULL;
pkt->hdr->size = 0;
pkt->hdr->data = (char*)malloc(size);
if (!pkt->hdr->data) {
CLog::Log(LOGDEBUG, "[m4s2_dx50_add_header] NOMEM!");
return PLAYER_FAILED;
}
}
pkt->hdr->size = size;
memcpy(pkt->hdr->data, buf, size);
return PLAYER_SUCCESS;
}
static int m4s2_dx50_mp4v_write_header(am_private_t *para, am_packet_t *pkt)
{
CLog::Log(LOGDEBUG, "m4s2_dx50_mp4v_write_header");
int ret = m4s2_dx50_mp4v_add_header(para->extradata, para->extrasize, pkt);
if (ret == PLAYER_SUCCESS) {
if (1) {
pkt->codec = ¶->vcodec;
} else {
CLog::Log(LOGDEBUG, "[m4s2_dx50_mp4v_add_header]invalid video codec!");
return PLAYER_EMPTY_P;
}
pkt->newflag = 1;
ret = write_av_packet(para, pkt);
}
return ret;
}
static int mjpeg_data_prefeeding(am_packet_t *pkt)
{
const unsigned char mjpeg_addon_data[] = {
0xff, 0xd8, 0xff, 0xc4, 0x01, 0xa2, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01,
0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02,
0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x01, 0x00, 0x03, 0x01,
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x10,
0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, 0x04, 0x04, 0x00,
0x00, 0x01, 0x7d, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12, 0x21, 0x31,
0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xa1,
0x08, 0x23, 0x42, 0xb1, 0xc1, 0x15, 0x52, 0xd1, 0xf0, 0x24, 0x33, 0x62, 0x72,
0x82, 0x09, 0x0a, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x25, 0x26, 0x27, 0x28, 0x29,
0x2a, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47,
0x48, 0x49, 0x4a, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64,
0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79,
0x7a, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95,
0x96, 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9,
0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, 0xc4,
0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8,
0xd9, 0xda, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xf1,
0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, 0x11, 0x00, 0x02, 0x01,
0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, 0x04, 0x04, 0x00, 0x01, 0x02, 0x77,
0x00, 0x01, 0x02, 0x03, 0x11, 0x04, 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51,
0x07, 0x61, 0x71, 0x13, 0x22, 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xa1, 0xb1,
0xc1, 0x09, 0x23, 0x33, 0x52, 0xf0, 0x15, 0x62, 0x72, 0xd1, 0x0a, 0x16, 0x24,
0x34, 0xe1, 0x25, 0xf1, 0x17, 0x18, 0x19, 0x1a, 0x26, 0x27, 0x28, 0x29, 0x2a,
0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49,
0x4a, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66,
0x67, 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x82,
0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96,
0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa,
0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, 0xc4, 0xc5,
0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9,
0xda, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xf2, 0xf3, 0xf4,
0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa
};
if (pkt->hdr->data) {
memcpy(pkt->hdr->data, &mjpeg_addon_data, sizeof(mjpeg_addon_data));
pkt->hdr->size = sizeof(mjpeg_addon_data);
} else {
CLog::Log(LOGDEBUG, "[mjpeg_data_prefeeding]No enough memory!");
return PLAYER_FAILED;
}
return PLAYER_SUCCESS;
}
static int mjpeg_write_header(am_private_t *para, am_packet_t *pkt)
{
mjpeg_data_prefeeding(pkt);
if (1) {
pkt->codec = ¶->vcodec;
} else {
CLog::Log(LOGDEBUG, "[mjpeg_write_header]invalid codec!");
return PLAYER_EMPTY_P;
}
pkt->newflag = 1;
write_av_packet(para, pkt);
return PLAYER_SUCCESS;
}
static int divx3_data_prefeeding(am_packet_t *pkt, unsigned w, unsigned h)
{
unsigned i = (w << 12) | (h & 0xfff);
unsigned char divx311_add[10] = {
0x00, 0x00, 0x00, 0x01,
0x20, 0x00, 0x00, 0x00,
0x00, 0x00
};
divx311_add[5] = (i >> 16) & 0xff;
divx311_add[6] = (i >> 8) & 0xff;
divx311_add[7] = i & 0xff;
if (pkt->hdr->data) {
memcpy(pkt->hdr->data, divx311_add, sizeof(divx311_add));
pkt->hdr->size = sizeof(divx311_add);
} else {
CLog::Log(LOGDEBUG, "[divx3_data_prefeeding]No enough memory!");
return PLAYER_FAILED;
}
return PLAYER_SUCCESS;
}
static int divx3_write_header(am_private_t *para, am_packet_t *pkt)
{
CLog::Log(LOGDEBUG, "divx3_write_header");
divx3_data_prefeeding(pkt, para->video_width, para->video_height);
if (1) {
pkt->codec = ¶->vcodec;
} else {
CLog::Log(LOGDEBUG, "[divx3_write_header]invalid codec!");
return PLAYER_EMPTY_P;
}
pkt->newflag = 1;
write_av_packet(para, pkt);
return PLAYER_SUCCESS;
}
static int h264_add_header(unsigned char *buf, int size, am_packet_t *pkt)
{
if (size > HDR_BUF_SIZE)
{
free(pkt->hdr->data);
pkt->hdr->data = (char *)malloc(size);
if (!pkt->hdr->data)
return PLAYER_NOMEM;
}
memcpy(pkt->hdr->data, buf, size);
pkt->hdr->size = size;
return PLAYER_SUCCESS;
}
static int h264_write_header(am_private_t *para, am_packet_t *pkt)
{
// CLog::Log(LOGDEBUG, "h264_write_header");
int ret = h264_add_header(para->extradata, para->extrasize, pkt);
if (ret == PLAYER_SUCCESS) {
//if (ctx->vcodec) {
if (1) {
pkt->codec = ¶->vcodec;
} else {
//CLog::Log(LOGDEBUG, "[pre_header_feeding]invalid video codec!");
return PLAYER_EMPTY_P;
}
pkt->newflag = 1;
ret = write_av_packet(para, pkt);
}
return ret;
}
static int hevc_add_header(unsigned char *buf, int size, am_packet_t *pkt)
{
if (size > HDR_BUF_SIZE)
{
free(pkt->hdr->data);
pkt->hdr->data = (char *)malloc(size);
if (!pkt->hdr->data)
return PLAYER_NOMEM;
}
memcpy(pkt->hdr->data, buf, size);
pkt->hdr->size = size;
return PLAYER_SUCCESS;
}
static int hevc_write_header(am_private_t *para, am_packet_t *pkt)
{
int ret = -1;
if (para->extradata) {
ret = hevc_add_header(para->extradata, para->extrasize, pkt);
}
if (ret == PLAYER_SUCCESS) {
pkt->codec = ¶->vcodec;
pkt->newflag = 1;
ret = write_av_packet(para, pkt);
}
return ret;
}
static int wmv3_write_header(am_private_t *para, am_packet_t *pkt)
{
CLog::Log(LOGDEBUG, "wmv3_write_header");
unsigned i, check_sum = 0;
unsigned data_len = para->extrasize + 4;
pkt->hdr->data[0] = 0;
pkt->hdr->data[1] = 0;
pkt->hdr->data[2] = 1;
pkt->hdr->data[3] = 0x10;
pkt->hdr->data[4] = 0;
pkt->hdr->data[5] = (data_len >> 16) & 0xff;
pkt->hdr->data[6] = 0x88;
pkt->hdr->data[7] = (data_len >> 8) & 0xff;
pkt->hdr->data[8] = data_len & 0xff;
pkt->hdr->data[9] = 0x88;
pkt->hdr->data[10] = 0xff;
pkt->hdr->data[11] = 0xff;
pkt->hdr->data[12] = 0x88;
pkt->hdr->data[13] = 0xff;
pkt->hdr->data[14] = 0xff;
pkt->hdr->data[15] = 0x88;
for (i = 4 ; i < 16 ; i++) {
check_sum += pkt->hdr->data[i];
}
pkt->hdr->data[16] = (check_sum >> 8) & 0xff;
pkt->hdr->data[17] = check_sum & 0xff;
pkt->hdr->data[18] = 0x88;
pkt->hdr->data[19] = (check_sum >> 8) & 0xff;
pkt->hdr->data[20] = check_sum & 0xff;
pkt->hdr->data[21] = 0x88;
pkt->hdr->data[22] = (para->video_width >> 8) & 0xff;
pkt->hdr->data[23] = para->video_width & 0xff;
pkt->hdr->data[24] = (para->video_height >> 8) & 0xff;
pkt->hdr->data[25] = para->video_height & 0xff;
memcpy(pkt->hdr->data + 26, para->extradata, para->extrasize);
pkt->hdr->size = para->extrasize + 26;
if (1) {
pkt->codec = ¶->vcodec;
} else {
CLog::Log(LOGDEBUG, "[wmv3_write_header]invalid codec!");
return PLAYER_EMPTY_P;
}
pkt->newflag = 1;
return write_av_packet(para, pkt);
}
static int wvc1_write_header(am_private_t *para, am_packet_t *pkt)
{
CLog::Log(LOGDEBUG, "wvc1_write_header");
memcpy(pkt->hdr->data, para->extradata + 1, para->extrasize - 1);
pkt->hdr->size = para->extrasize - 1;
if (1) {
pkt->codec = ¶->vcodec;
} else {
CLog::Log(LOGDEBUG, "[wvc1_write_header]invalid codec!");
return PLAYER_EMPTY_P;
}
pkt->newflag = 1;
return write_av_packet(para, pkt);
}
static int mpeg_add_header(am_private_t *para, am_packet_t *pkt)
{
CLog::Log(LOGDEBUG, "mpeg_add_header");
#define STUFF_BYTES_LENGTH (256)
int size;
unsigned char packet_wrapper[] = {
0x00, 0x00, 0x01, 0xe0,
0x00, 0x00, /* pes packet length */
0x81, 0xc0, 0x0d,
0x20, 0x00, 0x00, 0x00, 0x00, /* PTS */
0x1f, 0xff, 0xff, 0xff, 0xff, /* DTS */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff
};
size = para->extrasize + sizeof(packet_wrapper);
packet_wrapper[4] = size >> 8 ;
packet_wrapper[5] = size & 0xff ;
memcpy(pkt->hdr->data, packet_wrapper, sizeof(packet_wrapper));
size = sizeof(packet_wrapper);
//CLog::Log(LOGDEBUG, "[mpeg_add_header:%d]wrapper size=%d\n",__LINE__,size);
memcpy(pkt->hdr->data + size, para->extradata, para->extrasize);
size += para->extrasize;
//CLog::Log(LOGDEBUG, "[mpeg_add_header:%d]wrapper+seq size=%d\n",__LINE__,size);
memset(pkt->hdr->data + size, 0xff, STUFF_BYTES_LENGTH);
size += STUFF_BYTES_LENGTH;
pkt->hdr->size = size;
//CLog::Log(LOGDEBUG, "[mpeg_add_header:%d]hdr_size=%d\n",__LINE__,size);
if (1) {
pkt->codec = ¶->vcodec;
} else {
CLog::Log(LOGDEBUG, "[mpeg_add_header]invalid codec!");
return PLAYER_EMPTY_P;
}
pkt->newflag = 1;
return write_av_packet(para, pkt);
}
int pre_header_feeding(am_private_t *para, am_packet_t *pkt)
{
int ret;
if (para->stream_type == AM_STREAM_ES) {
if (pkt->hdr == NULL) {
pkt->hdr = (hdr_buf_t*)malloc(sizeof(hdr_buf_t));
pkt->hdr->data = (char *)malloc(HDR_BUF_SIZE);
if (!pkt->hdr->data) {
//CLog::Log(LOGDEBUG, "[pre_header_feeding] NOMEM!");
return PLAYER_NOMEM;
}
}
if (VFORMAT_H264 == para->video_format || VFORMAT_H264_4K2K == para->video_format) {
ret = h264_write_header(para, pkt);
if (ret != PLAYER_SUCCESS) {
return ret;
}
} else if ((VFORMAT_MPEG4 == para->video_format) && (VIDEO_DEC_FORMAT_MPEG4_3 == para->video_codec_type)) {
ret = divx3_write_header(para, pkt);
if (ret != PLAYER_SUCCESS) {
return ret;
}
} else if ((CODEC_TAG_M4S2 == para->video_codec_tag)
|| (CODEC_TAG_DX50 == para->video_codec_tag)
|| (CODEC_TAG_mp4v == para->video_codec_tag)) {
ret = m4s2_dx50_mp4v_write_header(para, pkt);
if (ret != PLAYER_SUCCESS) {
return ret;
}
/*
} else if ((AVI_FILE == para->file_type)
&& (VIDEO_DEC_FORMAT_MPEG4_3 != para->vstream_info.video_codec_type)
&& (VFORMAT_H264 != para->vstream_info.video_format)
&& (VFORMAT_VC1 != para->vstream_info.video_format)) {
ret = avi_write_header(para);
if (ret != PLAYER_SUCCESS) {
return ret;
}
*/
} else if (CODEC_TAG_WMV3 == para->video_codec_tag) {
CLog::Log(LOGDEBUG, "CODEC_TAG_WMV3 == para->video_codec_tag");
ret = wmv3_write_header(para, pkt);
if (ret != PLAYER_SUCCESS) {
return ret;
}
} else if ((CODEC_TAG_WVC1 == para->video_codec_tag)
|| (CODEC_TAG_VC_1 == para->video_codec_tag)
|| (CODEC_TAG_WMVA == para->video_codec_tag)) {
CLog::Log(LOGDEBUG, "CODEC_TAG_WVC1 == para->video_codec_tag");
ret = wvc1_write_header(para, pkt);
if (ret != PLAYER_SUCCESS) {
return ret;
}
/*
} else if ((MKV_FILE == para->file_type) &&
((VFORMAT_MPEG4 == para->vstream_info.video_format)
|| (VFORMAT_MPEG12 == para->vstream_info.video_format))) {
ret = mkv_write_header(para, pkt);
if (ret != PLAYER_SUCCESS) {
return ret;
}
*/
} else if (VFORMAT_MJPEG == para->video_format) {
ret = mjpeg_write_header(para, pkt);
if (ret != PLAYER_SUCCESS) {
return ret;
}
} else if (VFORMAT_HEVC == para->video_format) {
ret = hevc_write_header(para, pkt);
if (ret != PLAYER_SUCCESS) {
return ret;
}
}
if (pkt->hdr) {
if (pkt->hdr->data) {
free(pkt->hdr->data);
pkt->hdr->data = NULL;
}
free(pkt->hdr);
pkt->hdr = NULL;
}
}
else if (para->stream_type == AM_STREAM_PS) {
if (pkt->hdr == NULL) {
pkt->hdr = (hdr_buf_t*)malloc(sizeof(hdr_buf_t));
pkt->hdr->data = (char*)malloc(HDR_BUF_SIZE);
if (!pkt->hdr->data) {
CLog::Log(LOGDEBUG, "[pre_header_feeding] NOMEM!");
return PLAYER_NOMEM;
}
}
if (( AV_CODEC_ID_MPEG1VIDEO == para->video_codec_id)
|| (AV_CODEC_ID_MPEG2VIDEO == para->video_codec_id)) {
ret = mpeg_add_header(para, pkt);
if (ret != PLAYER_SUCCESS) {
return ret;
}
}
if (pkt->hdr) {
if (pkt->hdr->data) {
free(pkt->hdr->data);
pkt->hdr->data = NULL;
}
free(pkt->hdr);
pkt->hdr = NULL;
}
}
return PLAYER_SUCCESS;
}
int divx3_prefix(am_packet_t *pkt)
{
#define DIVX311_CHUNK_HEAD_SIZE 13
const unsigned char divx311_chunk_prefix[DIVX311_CHUNK_HEAD_SIZE] = {
0x00, 0x00, 0x00, 0x01, 0xb6, 'D', 'I', 'V', 'X', '3', '.', '1', '1'
};
if ((pkt->hdr != NULL) && (pkt->hdr->data != NULL)) {
free(pkt->hdr->data);
pkt->hdr->data = NULL;
}
if (pkt->hdr == NULL) {
pkt->hdr = (hdr_buf_t*)malloc(sizeof(hdr_buf_t));
if (!pkt->hdr) {
CLog::Log(LOGDEBUG, "[divx3_prefix] NOMEM!");
return PLAYER_FAILED;
}
pkt->hdr->data = NULL;
pkt->hdr->size = 0;
}
pkt->hdr->data = (char*)malloc(DIVX311_CHUNK_HEAD_SIZE + 4);
if (pkt->hdr->data == NULL) {
CLog::Log(LOGDEBUG, "[divx3_prefix] NOMEM!");
return PLAYER_FAILED;
}
memcpy(pkt->hdr->data, divx311_chunk_prefix, DIVX311_CHUNK_HEAD_SIZE);
pkt->hdr->data[DIVX311_CHUNK_HEAD_SIZE + 0] = (pkt->data_size >> 24) & 0xff;
pkt->hdr->data[DIVX311_CHUNK_HEAD_SIZE + 1] = (pkt->data_size >> 16) & 0xff;
pkt->hdr->data[DIVX311_CHUNK_HEAD_SIZE + 2] = (pkt->data_size >> 8) & 0xff;
pkt->hdr->data[DIVX311_CHUNK_HEAD_SIZE + 3] = pkt->data_size & 0xff;
pkt->hdr->size = DIVX311_CHUNK_HEAD_SIZE + 4;
pkt->newflag = 1;
return PLAYER_SUCCESS;
}
int set_header_info(am_private_t *para)
{
am_packet_t *pkt = ¶->am_pkt;
//if (pkt->newflag)
{
//if (pkt->hdr)
// pkt->hdr->size = 0;
if (para->video_format == VFORMAT_MPEG4)
{
if (para->video_codec_type == VIDEO_DEC_FORMAT_MPEG4_3)
{
return divx3_prefix(pkt);
}
else if (para->video_codec_type == VIDEO_DEC_FORMAT_H263)
{
return PLAYER_UNSUPPORT;
}
} else if (para->video_format == VFORMAT_VC1) {
if (para->video_codec_type == VIDEO_DEC_FORMAT_WMV3) {
unsigned i, check_sum = 0, data_len = 0;
if ((pkt->hdr != NULL) && (pkt->hdr->data != NULL)) {
free(pkt->hdr->data);
pkt->hdr->data = NULL;
}
if (pkt->hdr == NULL) {
pkt->hdr = (hdr_buf_t*)malloc(sizeof(hdr_buf_t));
if (!pkt->hdr) {
return PLAYER_FAILED;
}
pkt->hdr->data = NULL;
pkt->hdr->size = 0;
}
if (pkt->avpkt.flags) {
pkt->hdr->data = (char*)malloc(para->extrasize + 26 + 22);
if (pkt->hdr->data == NULL) {
return PLAYER_FAILED;
}
pkt->hdr->data[0] = 0;
pkt->hdr->data[1] = 0;
pkt->hdr->data[2] = 1;
pkt->hdr->data[3] = 0x10;
data_len = para->extrasize + 4;
pkt->hdr->data[4] = 0;
pkt->hdr->data[5] = (data_len >> 16) & 0xff;
pkt->hdr->data[6] = 0x88;
pkt->hdr->data[7] = (data_len >> 8) & 0xff;
pkt->hdr->data[8] = data_len & 0xff;
pkt->hdr->data[9] = 0x88;
pkt->hdr->data[10] = 0xff;
pkt->hdr->data[11] = 0xff;
pkt->hdr->data[12] = 0x88;
pkt->hdr->data[13] = 0xff;
pkt->hdr->data[14] = 0xff;
pkt->hdr->data[15] = 0x88;
for (i = 4 ; i < 16 ; i++) {
check_sum += pkt->hdr->data[i];
}
pkt->hdr->data[16] = (check_sum >> 8) & 0xff;
pkt->hdr->data[17] = check_sum & 0xff;
pkt->hdr->data[18] = 0x88;
pkt->hdr->data[19] = (check_sum >> 8) & 0xff;
pkt->hdr->data[20] = check_sum & 0xff;
pkt->hdr->data[21] = 0x88;
pkt->hdr->data[22] = (para->video_width >> 8) & 0xff;
pkt->hdr->data[23] = para->video_width & 0xff;
pkt->hdr->data[24] = (para->video_height >> 8) & 0xff;
pkt->hdr->data[25] = para->video_height & 0xff;
memcpy(pkt->hdr->data + 26, para->extradata, para->extrasize);
check_sum = 0;
data_len = para->extrasize + 26;
} else {
pkt->hdr->data = (char*)malloc(22);
if (pkt->hdr->data == NULL) {
return PLAYER_FAILED;
}
}
pkt->hdr->data[data_len + 0] = 0;
pkt->hdr->data[data_len + 1] = 0;
pkt->hdr->data[data_len + 2] = 1;
pkt->hdr->data[data_len + 3] = 0xd;
pkt->hdr->data[data_len + 4] = 0;
pkt->hdr->data[data_len + 5] = (pkt->data_size >> 16) & 0xff;
pkt->hdr->data[data_len + 6] = 0x88;
pkt->hdr->data[data_len + 7] = (pkt->data_size >> 8) & 0xff;
pkt->hdr->data[data_len + 8] = pkt->data_size & 0xff;
pkt->hdr->data[data_len + 9] = 0x88;
pkt->hdr->data[data_len + 10] = 0xff;
pkt->hdr->data[data_len + 11] = 0xff;
pkt->hdr->data[data_len + 12] = 0x88;
pkt->hdr->data[data_len + 13] = 0xff;
pkt->hdr->data[data_len + 14] = 0xff;
pkt->hdr->data[data_len + 15] = 0x88;
for (i = data_len + 4 ; i < data_len + 16 ; i++) {
check_sum += pkt->hdr->data[i];
}
pkt->hdr->data[data_len + 16] = (check_sum >> 8) & 0xff;
pkt->hdr->data[data_len + 17] = check_sum & 0xff;
pkt->hdr->data[data_len + 18] = 0x88;
pkt->hdr->data[data_len + 19] = (check_sum >> 8) & 0xff;
pkt->hdr->data[data_len + 20] = check_sum & 0xff;
pkt->hdr->data[data_len + 21] = 0x88;
pkt->hdr->size = data_len + 22;
pkt->newflag = 1;
} else if (para->video_codec_type == VIDEO_DEC_FORMAT_WVC1) {
if ((pkt->hdr != NULL) && (pkt->hdr->data != NULL)) {
free(pkt->hdr->data);
pkt->hdr->data = NULL;
}
if (pkt->hdr == NULL) {
pkt->hdr = (hdr_buf_t*)malloc(sizeof(hdr_buf_t));
if (!pkt->hdr) {
CLog::Log(LOGDEBUG, "[wvc1_prefix] NOMEM!");
return PLAYER_FAILED;
}
pkt->hdr->data = NULL;
pkt->hdr->size = 0;
}
pkt->hdr->data = (char*)malloc(4);
if (pkt->hdr->data == NULL) {
CLog::Log(LOGDEBUG, "[wvc1_prefix] NOMEM!");
return PLAYER_FAILED;
}
pkt->hdr->data[0] = 0;
pkt->hdr->data[1] = 0;
pkt->hdr->data[2] = 1;
pkt->hdr->data[3] = 0xd;
pkt->hdr->size = 4;
pkt->newflag = 1;
}
}
}
return PLAYER_SUCCESS;
}
/*************************************************************************/
CAMLCodec::CAMLCodec()
: CThread("CAMLCodec")
{
m_opened = false;
am_private = new am_private_t;
memset(am_private, 0, sizeof(am_private_t));
m_dll = new DllLibAmCodec;
if(!m_dll->Load())
{
CLog::Log(LOGWARNING, "CAMLCodec::CAMLCodec libamplayer.so not found, trying libamcodec.so instead");
m_dll->SetFile("libamcodec.so");
m_dll->Load();
}
am_private->m_dll = m_dll;
am_private->vcodec.handle = -1; //init to invalid
am_private->vcodec.cntl_handle = -1;
am_private->vcodec.sub_handle = -1;
am_private->vcodec.audio_utils_handle = -1;
}
CAMLCodec::~CAMLCodec()
{
StopThread();
delete am_private;
am_private = NULL;
delete m_dll, m_dll = NULL;
}
bool CAMLCodec::OpenDecoder(CDVDStreamInfo &hints)
{
#ifdef TARGET_ANDROID
CLog::Log(LOGDEBUG, "CAMLCodec::OpenDecoder, android version %d", CAndroidFeatures::GetVersion());
#endif
m_speed = DVD_PLAYSPEED_NORMAL;
m_1st_pts = 0;
m_cur_pts = 0;
m_dst_rect.SetRect(0, 0, 0, 0);
m_zoom = -1;
m_contrast = -1;
m_brightness = -1;
m_vbufsize = 500000 * 2;
m_start_dts = 0;
m_start_pts = 0;
m_hints = hints;
if (!OpenAmlVideo(hints))
{
CLog::Log(LOGERROR, "CAMLCodec::OpenDecoder - cannot open amlvideo device");
return false;
}
ShowMainVideo(false);
am_packet_init(&am_private->am_pkt);
// default stream type
am_private->stream_type = AM_STREAM_ES;
// handle hints.
am_private->video_width = hints.width;
am_private->video_height = hints.height;
am_private->video_codec_id = hints.codec;
am_private->video_codec_tag = hints.codec_tag;
// FIXME
// am_private->video_pid = hints.pid;
// handle video ratio
AVRational video_ratio = av_d2q(1, SHRT_MAX);
//if (!hints.forced_aspect)
// video_ratio = av_d2q(hints.aspect, SHRT_MAX);
am_private->video_ratio = ((int32_t)video_ratio.num << 16) | video_ratio.den;
am_private->video_ratio64 = ((int64_t)video_ratio.num << 32) | video_ratio.den;
// handle video rate
if (hints.fpsrate > 0 && hints.fpsscale != 0)
{
// then ffmpeg avg_frame_rate next
am_private->video_rate = 0.5 + (float)UNIT_FREQ * hints.fpsscale / hints.fpsrate;
}
// check for 1920x1080, interlaced, 25 fps
// incorrectly reported as 50 fps (yes, video_rate == 1920)
if (hints.width == 1920 && am_private->video_rate == 1920)
{
CLog::Log(LOGDEBUG, "CAMLCodec::OpenDecoder video_rate exception");
am_private->video_rate = 0.5 + (float)UNIT_FREQ * 1001 / 25000;
}
// check for SD h264 content incorrectly reported as 60 fsp
// mp4/avi containers :(
if (hints.codec == AV_CODEC_ID_H264 && hints.width <= 720 && am_private->video_rate == 1602)
{
CLog::Log(LOGDEBUG, "CAMLCodec::OpenDecoder video_rate exception");
am_private->video_rate = 0.5 + (float)UNIT_FREQ * 1001 / 24000;
}
// check for SD h264 content incorrectly reported as some form of 30 fsp
// mp4/avi containers :(
if (hints.codec == AV_CODEC_ID_H264 && hints.width <= 720)
{
if (am_private->video_rate >= 3200 && am_private->video_rate <= 3210)
{
CLog::Log(LOGDEBUG, "CAMLCodec::OpenDecoder video_rate exception");
am_private->video_rate = 0.5 + (float)UNIT_FREQ * 1001 / 24000;
}
}
// handle orientation
am_private->video_rotation_degree = 0;
if (hints.orientation == 90)
am_private->video_rotation_degree = 1;
else if (hints.orientation == 180)
am_private->video_rotation_degree = 2;
else if (hints.orientation == 270)
am_private->video_rotation_degree = 3;
// handle extradata
am_private->video_format = codecid_to_vformat(hints.codec);
if ((am_private->video_format == VFORMAT_H264)
&& (hints.width > 1920 || hints.height > 1088)
&& (aml_support_h264_4k2k() == AML_HAS_H264_4K2K))
{
am_private->video_format = VFORMAT_H264_4K2K;
}
switch (am_private->video_format)
{
default:
am_private->extrasize = hints.extrasize;
am_private->extradata = (uint8_t*)malloc(hints.extrasize);
memcpy(am_private->extradata, hints.extradata, hints.extrasize);
break;
case VFORMAT_REAL:
case VFORMAT_MPEG12:
break;
}
if (am_private->stream_type == AM_STREAM_ES && am_private->video_codec_tag != 0)
am_private->video_codec_type = codec_tag_to_vdec_type(am_private->video_codec_tag);
if (am_private->video_codec_type == VIDEO_DEC_FORMAT_UNKNOW)
am_private->video_codec_type = codec_tag_to_vdec_type(am_private->video_codec_id);
CLog::Log(LOGDEBUG, "CAMLCodec::OpenDecoder "
"hints.width(%d), hints.height(%d), hints.codec(%d), hints.codec_tag(%d)",
hints.width, hints.height, hints.codec, hints.codec_tag);
CLog::Log(LOGDEBUG, "CAMLCodec::OpenDecoder hints.fpsrate(%d), hints.fpsscale(%d), video_rate(%d)",
hints.fpsrate, hints.fpsscale, am_private->video_rate);
CLog::Log(LOGDEBUG, "CAMLCodec::OpenDecoder hints.aspect(%f), video_ratio.num(%d), video_ratio.den(%d)",
hints.aspect, video_ratio.num, video_ratio.den);
CLog::Log(LOGDEBUG, "CAMLCodec::OpenDecoder hints.orientation(%d), hints.forced_aspect(%d), hints.extrasize(%d)",
hints.orientation, hints.forced_aspect, hints.extrasize);
// default video codec params
am_private->gcodec.noblock = 0;
am_private->gcodec.video_pid = am_private->video_pid;
am_private->gcodec.video_type = am_private->video_format;
am_private->gcodec.stream_type = STREAM_TYPE_ES_VIDEO;
am_private->gcodec.format = am_private->video_codec_type;
am_private->gcodec.width = am_private->video_width;
am_private->gcodec.height = am_private->video_height;
am_private->gcodec.rate = am_private->video_rate;
am_private->gcodec.ratio = am_private->video_ratio;
am_private->gcodec.ratio64 = am_private->video_ratio64;
am_private->gcodec.param = NULL;
switch(am_private->video_format)
{
default:
break;
case VFORMAT_MPEG4:
am_private->gcodec.param = (void*)EXTERNAL_PTS;
break;
case VFORMAT_H264:
case VFORMAT_H264MVC:
am_private->gcodec.format = VIDEO_DEC_FORMAT_H264;
am_private->gcodec.param = (void*)EXTERNAL_PTS;
// h264 in an avi file
if (m_hints.ptsinvalid)
am_private->gcodec.param = (void*)(EXTERNAL_PTS | SYNC_OUTSIDE);
break;
case VFORMAT_H264_4K2K:
am_private->gcodec.format = VIDEO_DEC_FORMAT_H264_4K2K;
am_private->gcodec.param = (void*)EXTERNAL_PTS;
// h264 in an avi file
if (m_hints.ptsinvalid)
am_private->gcodec.param = (void*)(EXTERNAL_PTS | SYNC_OUTSIDE);
break;
case VFORMAT_REAL:
am_private->stream_type = AM_STREAM_RM;
am_private->vcodec.noblock = 1;
am_private->vcodec.stream_type = STREAM_TYPE_RM;
am_private->vcodec.am_sysinfo.ratio = 0x100;
am_private->vcodec.am_sysinfo.ratio64 = 0;
{
static unsigned short tbl[9] = {0};
if (VIDEO_DEC_FORMAT_REAL_8 == am_private->video_codec_type)
{
am_private->gcodec.extra = am_private->extradata[1] & 7;
tbl[0] = (((am_private->gcodec.width >> 2) - 1) << 8)
| (((am_private->gcodec.height >> 2) - 1) & 0xff);
unsigned int j;
for (unsigned int i = 1; i <= am_private->gcodec.extra; i++)
{
j = 2 * (i - 1);
tbl[i] = ((am_private->extradata[8 + j] - 1) << 8) | ((am_private->extradata[8 + j + 1] - 1) & 0xff);
}
}
am_private->gcodec.param = &tbl;
}
break;
case VFORMAT_VC1:
// vc1 in an avi file
if (m_hints.ptsinvalid)
am_private->gcodec.param = (void*)EXTERNAL_PTS;
break;
case VFORMAT_HEVC:
am_private->gcodec.format = VIDEO_DEC_FORMAT_HEVC;
am_private->gcodec.param = (void*)EXTERNAL_PTS;
if (m_hints.ptsinvalid)
am_private->gcodec.param = (void*)(EXTERNAL_PTS | SYNC_OUTSIDE);
break;
}
am_private->gcodec.param = (void *)((std::uintptr_t)am_private->gcodec.param | (am_private->video_rotation_degree << 16));
// translate from generic to firemware version dependent
m_dll->codec_init_para(&am_private->gcodec, &am_private->vcodec);
int ret = m_dll->codec_init(&am_private->vcodec);
if (ret != CODEC_ERROR_NONE)
{
CLog::Log(LOGDEBUG, "CAMLCodec::OpenDecoder codec init failed, ret=0x%x", -ret);
return false;
}
am_private->dumpdemux = false;
dumpfile_open(am_private);
//! @bug make sure we are not stuck in pause (amcodec bug)
m_dll->codec_resume(&am_private->vcodec);
m_dll->codec_set_cntl_mode(&am_private->vcodec, TRICKMODE_NONE);
m_dll->codec_set_cntl_avthresh(&am_private->vcodec, AV_SYNC_THRESH);
m_dll->codec_set_cntl_syncthresh(&am_private->vcodec, 0);
// disable tsync, we are playing video disconnected from audio.
SysfsUtils::SetInt("/sys/class/tsync/enable", 0);
am_private->am_pkt.codec = &am_private->vcodec;
pre_header_feeding(am_private, &am_private->am_pkt);
Create();
m_display_rect = CRect(0, 0, CDisplaySettings::GetInstance().GetCurrentResolutionInfo().iWidth, CDisplaySettings::GetInstance().GetCurrentResolutionInfo().iHeight);
std::string strScaler;
SysfsUtils::GetString("/sys/class/ppmgr/ppscaler", strScaler);
if (strScaler.find("enabled") == std::string::npos) // Scaler not enabled, use screen size
m_display_rect = CRect(0, 0, CDisplaySettings::GetInstance().GetCurrentResolutionInfo().iScreenWidth, CDisplaySettings::GetInstance().GetCurrentResolutionInfo().iScreenHeight);
/*
// if display is set to 1080xxx, then disable deinterlacer for HD content
// else bandwidth usage is too heavy and it will slow down video decoder.
char display_mode[256] = {0};
SysfsUtils::GetString("/sys/class/display/mode", display_mode, 255);
if (strstr(display_mode,"1080"))
SysfsUtils::SetInt("/sys/module/di/parameters/bypass_all", 1);
else
SysfsUtils::SetInt("/sys/module/di/parameters/bypass_all", 0);
*/
m_opened = true;
// vcodec is open, update speed if it was
// changed before VideoPlayer called OpenDecoder.
SetSpeed(m_speed);
return true;
}
bool CAMLCodec::OpenAmlVideo(const CDVDStreamInfo &hints)
{
PosixFilePtr amlVideoFile = std::make_shared<PosixFile>();
if (!amlVideoFile->Open("/dev/video10", O_RDONLY | O_NONBLOCK))
{
CLog::Log(LOGERROR, "CAMLCodec::OpenAmlVideo - cannot open V4L amlvideo device /dev/video10: %s", strerror(errno));
return false;
}
m_amlVideoFile = amlVideoFile;
m_defaultVfmMap = GetVfmMap("default");
SetVfmMap("default", "decoder ppmgr deinterlace amlvideo amvideo");
SysfsUtils::SetInt("/sys/module/amlvideodri/parameters/freerun_mode", 1);
return true;
}
std::string CAMLCodec::GetVfmMap(const std::string &name)
{
std::string vfmMap;
SysfsUtils::GetString("/sys/class/vfm/map", vfmMap);
std::vector<std::string> sections = StringUtils::Split(vfmMap, '\n');
std::string sectionMap;
for (size_t i = 0; i < sections.size(); ++i)
{
if (StringUtils::StartsWith(sections[i], name + " {"))
{
sectionMap = sections[i];
break;
}
}
int openingBracePos = sectionMap.find('{') + 1;
sectionMap = sectionMap.substr(openingBracePos, sectionMap.size() - openingBracePos - 1);
StringUtils::Replace(sectionMap, "(0)", "");
return sectionMap;
}
void CAMLCodec::SetVfmMap(const std::string &name, const std::string &map)
{
SysfsUtils::SetString("/sys/class/vfm/map", "rm " + name);
SysfsUtils::SetString("/sys/class/vfm/map", "add " + name + " " + map);
}
void CAMLCodec::CloseDecoder()
{
CLog::Log(LOGDEBUG, "CAMLCodec::CloseDecoder");
StopThread();
// never leave vcodec ff/rw or paused.
if (m_speed != DVD_PLAYSPEED_NORMAL)
{
m_dll->codec_resume(&am_private->vcodec);
m_dll->codec_set_cntl_mode(&am_private->vcodec, TRICKMODE_NONE);
}
m_dll->codec_close(&am_private->vcodec);
dumpfile_close(am_private);
m_opened = false;
am_packet_release(&am_private->am_pkt);
free(am_private->extradata);
am_private->extradata = NULL;
// return tsync to default so external apps work
SysfsUtils::SetInt("/sys/class/tsync/enable", 1);
ShowMainVideo(false);
CloseAmlVideo();
}
void CAMLCodec::CloseAmlVideo()
{
m_amlVideoFile.reset();
SetVfmMap("default", m_defaultVfmMap);
}
void CAMLCodec::Reset()
{
CLog::Log(LOGDEBUG, "CAMLCodec::Reset");
if (!m_opened)
return;
// set the system blackout_policy to leave the last frame showing
int blackout_policy;
SysfsUtils::GetInt("/sys/class/video/blackout_policy", blackout_policy);
SysfsUtils::SetInt("/sys/class/video/blackout_policy", 0);
// restore the speed (some amcodec versions require this)
if (m_speed != DVD_PLAYSPEED_NORMAL)
{
m_dll->codec_resume(&am_private->vcodec);
m_dll->codec_set_cntl_mode(&am_private->vcodec, TRICKMODE_NONE);
}
// reset the decoder
m_dll->codec_reset(&am_private->vcodec);
dumpfile_close(am_private);
dumpfile_open(am_private);
// re-init our am_pkt
am_packet_release(&am_private->am_pkt);
am_packet_init(&am_private->am_pkt);
am_private->am_pkt.codec = &am_private->vcodec;
pre_header_feeding(am_private, &am_private->am_pkt);
// restore the saved system blackout_policy value
SysfsUtils::SetInt("/sys/class/video/blackout_policy", blackout_policy);
// reset some interal vars
m_1st_pts = 0;
m_cur_pts = 0;
m_ptsQueue.clear();
SetSpeed(m_speed);
}
int CAMLCodec::Decode(uint8_t *pData, size_t iSize, double dts, double pts)
{
if (!m_opened)
return VC_BUFFER;
if (pData)
{
am_private->am_pkt.data = pData;
am_private->am_pkt.data_size = iSize;
am_private->am_pkt.newflag = 1;
am_private->am_pkt.isvalid = 1;
am_private->am_pkt.avduration = 0;
// handle pts, including 31bit wrap, aml can only handle 31
// bit pts as it uses an int in kernel.
if (m_hints.ptsinvalid || pts == DVD_NOPTS_VALUE)
am_private->am_pkt.avpts = AV_NOPTS_VALUE;
else
{
am_private->am_pkt.avpts = 0.5 + (pts * PTS_FREQ) / DVD_TIME_BASE;\
if (!m_start_pts && am_private->am_pkt.avpts >= 0x7fffffff)
m_start_pts = am_private->am_pkt.avpts & ~0x0000ffff;
}
if (am_private->am_pkt.avpts != (int64_t)AV_NOPTS_VALUE)
am_private->am_pkt.avpts -= m_start_pts;
// handle dts, including 31bit wrap, aml can only handle 31
// bit dts as it uses an int in kernel.
if (dts == DVD_NOPTS_VALUE)
am_private->am_pkt.avdts = AV_NOPTS_VALUE;
else
{
am_private->am_pkt.avdts = 0.5 + (dts * PTS_FREQ) / DVD_TIME_BASE;
if (!m_start_dts && am_private->am_pkt.avdts >= 0x7fffffff)
m_start_dts = am_private->am_pkt.avdts & ~0x0000ffff;
}
if (am_private->am_pkt.avdts != (int64_t)AV_NOPTS_VALUE)
am_private->am_pkt.avdts -= m_start_dts;
//CLog::Log(LOGDEBUG, "CAMLCodec::Decode: iSize(%d), dts(%f), pts(%f), avdts(%llx), avpts(%llx)",
// iSize, dts, pts, am_private->am_pkt.avdts, am_private->am_pkt.avpts);
// some formats need header/data tweaks.
// the actual write occurs once in write_av_packet
// and is controlled by am_pkt.newflag.
set_header_info(am_private);
// loop until we write all into codec, am_pkt.isvalid
// will get set to zero once everything is consumed.
// PLAYER_SUCCESS means all is ok, not all bytes were written.
int loop = 0;
while (am_private->am_pkt.isvalid && loop < 100)
{
// abort on any errors.
if (write_av_packet(am_private, &am_private->am_pkt) != PLAYER_SUCCESS)
break;
if (am_private->am_pkt.isvalid)
CLog::Log(LOGDEBUG, "CAMLCodec::Decode: write_av_packet looping");
loop++;
}
if (loop == 100)
{
// Decoder got stuck; Reset
Reset();
}
// if we seek, then GetTimeSize is wrong as
// reports lastpts - cur_pts and hw decoder has
// not started outputing new pts values yet.
// so we grab the 1st pts sent into driver and
// use that to calc GetTimeSize.
if (m_1st_pts == 0)
m_1st_pts = am_private->am_pkt.lastpts;
}
// if we have still frames, demux size will be small
// and we need to pre-buffer more.
double target_timesize = 1.0;
if (iSize < 20)
target_timesize = 2.0;
int rtn = 0;
// keep hw buffered demux above 1 second
if (GetTimeSize() < target_timesize)
rtn |= VC_BUFFER;
// wait until we get a new frame or 25ms,
if (m_ptsQueue.size() == 0)
m_ready_event.WaitMSec(25);
if (m_ptsQueue.size() > 0)
{
CSingleLock lock(m_ptsQueueMutex);
m_cur_pts = m_ptsQueue.front();
m_ptsQueue.pop_front();
rtn |= VC_PICTURE;
}
/*
CLog::Log(LOGDEBUG, "CAMLCodec::Decode: "
"rtn(%d), m_cur_pictcnt(%lld), m_cur_pts(%f), lastpts(%f), GetTimeSize(%f), GetDataSize(%d)",
rtn, m_cur_pictcnt, (float)m_cur_pts/PTS_FREQ, (float)am_private->am_pkt.lastpts/PTS_FREQ, GetTimeSize(), GetDataSize());
*/
return rtn;
}
int CAMLCodec::DequeueBuffer(int64_t &pts)
{
v4l2_buffer vbuf = { 0 };
vbuf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
if (m_amlVideoFile->IOControl(VIDIOC_DQBUF, &vbuf) < 0)
{
if (errno != EAGAIN)
CLog::Log(LOGERROR, "CAMLCodec::DequeueBuffer - VIDIOC_DQBUF failed: %s", strerror(errno));
return -errno;
}
// Since kernel 3.14 Amlogic changed length and units of PTS values reported here.
// To differentiate such PTS values we check for existence of omx_pts_interval_lower
// parameter, because it was introduced since kernel 3.14.
if (access("/sys/module/amvideo/parameters/omx_pts_interval_lower", F_OK) != -1)
{
pts = vbuf.timestamp.tv_sec & 0xFFFFFFFF;
pts <<= 32;
pts += vbuf.timestamp.tv_usec & 0xFFFFFFFF;
pts = (pts * PTS_FREQ) / DVD_TIME_BASE;
}
else
{
pts = vbuf.timestamp.tv_usec;
}
return 0;
}
bool CAMLCodec::GetPicture(DVDVideoPicture *pDvdVideoPicture)
{
if (!m_opened)
return false;
pDvdVideoPicture->iFlags = DVP_FLAG_ALLOCATED;
pDvdVideoPicture->format = RENDER_FMT_AML;
pDvdVideoPicture->iDuration = (double)(am_private->video_rate * DVD_TIME_BASE) / UNIT_FREQ;
pDvdVideoPicture->dts = DVD_NOPTS_VALUE;
if (m_speed == DVD_PLAYSPEED_NORMAL)
pDvdVideoPicture->pts = (double)m_cur_pts / PTS_FREQ * DVD_TIME_BASE;
else
{
if (m_cur_pts == 0)
pDvdVideoPicture->pts = (double)m_1st_pts / PTS_FREQ * DVD_TIME_BASE;
else
pDvdVideoPicture->pts = (double)m_cur_pts / PTS_FREQ * DVD_TIME_BASE;
}
return true;
}
void CAMLCodec::SetSpeed(int speed)
{
CLog::Log(LOGDEBUG, "CAMLCodec::SetSpeed, speed(%d)", speed);
// update internal vars regardless
// of if we are open or not.
m_speed = speed;
if (!m_opened)
return;
switch(speed)
{
case DVD_PLAYSPEED_PAUSE:
m_dll->codec_pause(&am_private->vcodec);
m_dll->codec_set_cntl_mode(&am_private->vcodec, TRICKMODE_NONE);
break;
case DVD_PLAYSPEED_NORMAL:
m_dll->codec_resume(&am_private->vcodec);
m_dll->codec_set_cntl_mode(&am_private->vcodec, TRICKMODE_NONE);
break;
default:
m_dll->codec_resume(&am_private->vcodec);
if ((am_private->video_format == VFORMAT_H264) || (am_private->video_format == VFORMAT_H264_4K2K))
m_dll->codec_set_cntl_mode(&am_private->vcodec, TRICKMODE_FFFB);
else
m_dll->codec_set_cntl_mode(&am_private->vcodec, TRICKMODE_I);
break;
}
}
int CAMLCodec::GetDataSize()
{
if (!m_opened)
return 0;
struct buf_status vbuf ={0};
if (m_dll->codec_get_vbuf_state(&am_private->vcodec, &vbuf) >= 0)
m_vbufsize = vbuf.size;
return vbuf.data_len;
}
double CAMLCodec::GetTimeSize()
{
if (!m_opened)
return 0;
// if m_cur_pts is zero, hw decoder was not started yet
// so we use the pts of the 1st demux packet that was send
// to hw decoder to calc timesize.
if (m_cur_pts == 0)
m_timesize = (double)(am_private->am_pkt.lastpts - m_1st_pts) / PTS_FREQ;
else
m_timesize = (double)(am_private->am_pkt.lastpts - GetOMXPts()) / PTS_FREQ;
// lie to VideoPlayer, it is hardcoded to a max of 8 seconds,
// if you buffer more than 8 seconds, it goes nuts.
double timesize = m_timesize;
if (timesize < 0.0)
timesize = 0.0;
else if (timesize > 7.0)
timesize = 7.0;
return timesize;
}
void CAMLCodec::Process()
{
CLog::Log(LOGDEBUG, "CAMLCodec::Process Started");
while (!m_bStop)
{
if (m_dll->codec_poll_cntl(&am_private->vcodec) < 0)
{
CLog::Log(LOGDEBUG, "CAMLCodec::Process: codec_poll_cntl failed");
Sleep(10);
}
{
CSingleLock lock(m_ptsQueueMutex);
int64_t pts = 0;
if (DequeueBuffer(pts) == 0)
{
m_ptsQueue.push_back(pts + m_start_pts);
m_ready_event.Set();
}
}
}
CLog::Log(LOGDEBUG, "CAMLCodec::Process Stopped");
}
void CAMLCodec::ShowMainVideo(const bool show)
{
static int saved_disable_video = -1;
int disable_video = show ? 0:1;
if (saved_disable_video == disable_video)
return;
SysfsUtils::SetInt("/sys/class/video/disable_video", disable_video);
saved_disable_video = disable_video;
}
void CAMLCodec::SetVideoZoom(const float zoom)
{
// input zoom range is 0.5 to 2.0 with a default of 1.0.
// output zoom range is 2 to 300 with default of 100.
// we limit that to a range of 50 to 200 with default of 100.
SysfsUtils::SetInt("/sys/class/video/zoom", (int)(100 * zoom));
}
void CAMLCodec::SetVideoContrast(const int contrast)
{
// input contrast range is 0 to 100 with default of 50.
// output contrast range is -255 to 255 with default of 0.
int aml_contrast = (255 * (contrast - 50)) / 50;
SysfsUtils::SetInt("/sys/class/video/contrast", aml_contrast);
}
void CAMLCodec::SetVideoBrightness(const int brightness)
{
// input brightness range is 0 to 100 with default of 50.
// output brightness range is -127 to 127 with default of 0.
int aml_brightness = (127 * (brightness - 50)) / 50;
SysfsUtils::SetInt("/sys/class/video/brightness", aml_brightness);
}
void CAMLCodec::SetVideoSaturation(const int saturation)
{
// output saturation range is -127 to 127 with default of 127.
SysfsUtils::SetInt("/sys/class/video/saturation", saturation);
}
bool CAMLCodec::SetVideo3dMode(const int mode3d)
{
bool result = true;
if (SysfsUtils::Has("/sys/class/ppmgr/ppmgr_3d_mode"))
{
CLog::Log(LOGDEBUG, "CAMLCodec::SetVideo3dMode:mode3d(0x%x)", mode3d);
SysfsUtils::SetInt("/sys/class/ppmgr/ppmgr_3d_mode", mode3d);
}
else
{
CLog::Log(LOGINFO, "CAMLCodec::SetVideo3dMode: ppmgr_3d support not found in kernel.");
result = false;
}
return result;
}
std::string CAMLCodec::GetStereoMode()
{
std::string stereo_mode;
switch(CMediaSettings::GetInstance().GetCurrentVideoSettings().m_StereoMode)
{
case RENDER_STEREO_MODE_SPLIT_VERTICAL: stereo_mode = "left_right"; break;
case RENDER_STEREO_MODE_SPLIT_HORIZONTAL: stereo_mode = "top_bottom"; break;
default: stereo_mode = m_hints.stereo_mode; break;
}
if(CMediaSettings::GetInstance().GetCurrentVideoSettings().m_StereoInvert)
stereo_mode = RenderManager::GetStereoModeInvert(stereo_mode);
return stereo_mode;
}
void CAMLCodec::SetVideoRect(const CRect &SrcRect, const CRect &DestRect)
{
// this routine gets called every video frame
// and is in the context of the renderer thread so
// do not do anything stupid here.
bool update = false;
// video zoom adjustment.
float zoom = CMediaSettings::GetInstance().GetCurrentVideoSettings().m_CustomZoomAmount;
if ((int)(zoom * 1000) != (int)(m_zoom * 1000))
{
m_zoom = zoom;
}
// video contrast adjustment.
int contrast = CMediaSettings::GetInstance().GetCurrentVideoSettings().m_Contrast;
if (contrast != m_contrast)
{
SetVideoContrast(contrast);
m_contrast = contrast;
}
// video brightness adjustment.
int brightness = CMediaSettings::GetInstance().GetCurrentVideoSettings().m_Brightness;
if (brightness != m_brightness)
{
SetVideoBrightness(brightness);
m_brightness = brightness;
}
// video view mode
int view_mode = CMediaSettings::GetInstance().GetCurrentVideoSettings().m_ViewMode;
if (m_view_mode != view_mode)
{
m_view_mode = view_mode;
update = true;
}
// video stereo mode/view.
RENDER_STEREO_MODE stereo_mode = g_graphicsContext.GetStereoMode();
if (m_stereo_mode != stereo_mode)
{
m_stereo_mode = stereo_mode;
update = true;
}
RENDER_STEREO_VIEW stereo_view = g_graphicsContext.GetStereoView();
if (m_stereo_view != stereo_view)
{
// left/right/top/bottom eye,
// this might change every other frame.
// we do not care but just track it.
m_stereo_view = stereo_view;
}
// dest_rect
CRect dst_rect = DestRect;
// handle orientation
switch (am_private->video_rotation_degree)
{
case 0:
case 2:
break;
case 1:
case 3:
{
int diff = (int) ((dst_rect.Height() - dst_rect.Width()) / 2);
dst_rect = CRect(DestRect.x1 - diff, DestRect.y1, DestRect.x2 + diff, DestRect.y2);
}
}
if (m_dst_rect != dst_rect)
{
m_dst_rect = dst_rect;
update = true;
}
if (!update)
{
// mainvideo 'should' be showing already if we get here, make sure.
ShowMainVideo(true);
return;
}
CRect gui, display;
gui = CRect(0, 0, CDisplaySettings::GetInstance().GetCurrentResolutionInfo().iWidth, CDisplaySettings::GetInstance().GetCurrentResolutionInfo().iHeight);
#ifdef TARGET_ANDROID
display = m_display_rect;
#else
display = gui;
#endif
if (gui != display)
{
float xscale = display.Width() / gui.Width();
float yscale = display.Height() / gui.Height();
if (m_stereo_mode == RENDER_STEREO_MODE_SPLIT_VERTICAL)
xscale /= 2.0;
else if (m_stereo_mode == RENDER_STEREO_MODE_SPLIT_HORIZONTAL)
yscale /= 2.0;
dst_rect.x1 *= xscale;
dst_rect.x2 *= xscale;
dst_rect.y1 *= yscale;
dst_rect.y2 *= yscale;
}
if (m_stereo_mode == RENDER_STEREO_MODE_MONO)
{
std::string mode = GetStereoMode();
if (mode == "left_right")
{
if (!SetVideo3dMode(MODE_3D_TO_2D_L))
{
// fall back to software scaling if no hw support
// was found
dst_rect.x2 *= 2.0;
}
}
else if (mode == "right_left")
{
if (!SetVideo3dMode(MODE_3D_TO_2D_R))
{
// fall back to software scaling if no hw support
// was found
dst_rect.x2 *= 2.0;
}
}
else if (mode == "top_bottom")
{
if (!SetVideo3dMode(MODE_3D_TO_2D_T))
{
// fall back to software scaling if no hw support
// was found
dst_rect.y2 *= 2.0;
}
}
else if (mode == "bottom_top")
{
if (!SetVideo3dMode(MODE_3D_TO_2D_B))
{
// fall back to software scaling if no hw support
// was found
dst_rect.y2 *= 2.0;
}
}
else
SetVideo3dMode(MODE_3D_DISABLE);
}
else if (m_stereo_mode == RENDER_STEREO_MODE_SPLIT_VERTICAL)
{
dst_rect.x2 *= 2.0;
SetVideo3dMode(MODE_3D_DISABLE);
}
else if (m_stereo_mode == RENDER_STEREO_MODE_SPLIT_HORIZONTAL)
{
dst_rect.y2 *= 2.0;
SetVideo3dMode(MODE_3D_DISABLE);
}
else if (m_stereo_mode == RENDER_STEREO_MODE_INTERLACED)
{
std::string mode = GetStereoMode();
if (mode == "left_right")
SetVideo3dMode(MODE_3D_LR);
else if (mode == "right_left")
SetVideo3dMode(MODE_3D_LR_SWITCH);
else if (mode == "row_interleaved_lr")
SetVideo3dMode(MODE_3D_LR);
else if (mode == "row_interleaved_rl")
SetVideo3dMode(MODE_3D_LR_SWITCH);
else
SetVideo3dMode(MODE_3D_DISABLE);
}
else
{
SetVideo3dMode(MODE_3D_DISABLE);
}
#if 1
std::string s_dst_rect = StringUtils::Format("%i,%i,%i,%i",
(int)dst_rect.x1, (int)dst_rect.y1,
(int)dst_rect.Width(), (int)dst_rect.Height());
std::string s_m_dst_rect = StringUtils::Format("%i,%i,%i,%i",
(int)m_dst_rect.x1, (int)m_dst_rect.y1,
(int)m_dst_rect.Width(), (int)m_dst_rect.Height());
std::string s_display = StringUtils::Format("%i,%i,%i,%i",
(int)m_display_rect.x1, (int)m_display_rect.y1,
(int)m_display_rect.Width(), (int)m_display_rect.Height());
std::string s_gui = StringUtils::Format("%i,%i,%i,%i",
(int)gui.x1, (int)gui.y1,
(int)gui.Width(), (int)gui.Height());
CLog::Log(LOGDEBUG, "CAMLCodec::SetVideoRect:display(%s)", s_display.c_str());
CLog::Log(LOGDEBUG, "CAMLCodec::SetVideoRect:gui(%s)", s_gui.c_str());
CLog::Log(LOGDEBUG, "CAMLCodec::SetVideoRect:m_dst_rect(%s)", s_m_dst_rect.c_str());
CLog::Log(LOGDEBUG, "CAMLCodec::SetVideoRect:dst_rect(%s)", s_dst_rect.c_str());
CLog::Log(LOGDEBUG, "CAMLCodec::SetVideoRect:m_stereo_mode(%d)", m_stereo_mode);
CLog::Log(LOGDEBUG, "CAMLCodec::SetVideoRect:m_stereo_view(%d)", m_stereo_view);
#endif
// goofy 0/1 based difference in aml axis coordinates.
// fix them.
dst_rect.x2--;
dst_rect.y2--;
char video_axis[256] = {};
sprintf(video_axis, "%d %d %d %d", (int)dst_rect.x1, (int)dst_rect.y1, (int)dst_rect.x2, (int)dst_rect.y2);
SysfsUtils::SetString("/sys/class/video/axis", video_axis);
// make sure we are in 'full stretch' so we can stretch
SysfsUtils::SetInt("/sys/class/video/screen_mode", 1);
// we only get called once gui has changed to something
// that would show video playback, so show it.
ShowMainVideo(true);
}
|