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
|
/*****************************************************************
* gmerlin-avdecoder - a general purpose multimedia decoding library
*
* Copyright (c) 2001 - 2012 Members of the Gmerlin project
* gmerlin-general@lists.sourceforge.net
* http://gmerlin.sourceforge.net
*
* 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 of the License, 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 this program. If not, see <http://www.gnu.org/licenses/>.
* *****************************************************************/
#include "config.h"
#include <avdec.h>
#include <libavcodec/version.h>
#include <gavl/gavf.h>
#include <gavl/log.h>
#include <stdio.h> /* Needed for fileindex stuff */
#include <libintl.h>
#include <os.h>
#include <gavl/metatags.h>
#include <gavl/compression.h>
#include <gavl/numptr.h>
#include <gavl/utils.h>
#include <gavl/trackinfo.h>
#define BGAV_MK_FOURCC(a, b, c, d) ((a<<24)|(b<<16)|(c<<8)|d)
#define BGAV_VORBIS BGAV_MK_FOURCC('V','B','I','S')
// typedef struct bgav_edl_dec_s bgav_edl_dec_t;
typedef struct bgav_demuxer_s bgav_demuxer_t;
typedef struct bgav_demuxer_context_s bgav_demuxer_context_t;
typedef struct bgav_redirector_s bgav_redirector_t;
typedef struct bgav_packet_s bgav_packet_t;
typedef struct bgav_file_index_s bgav_file_index_t;
typedef struct bgav_video_parser_s bgav_video_parser_t;
typedef struct bgav_audio_parser_s bgav_audio_parser_t;
typedef struct bgav_bsf_s bgav_bsf_t;
typedef struct bgav_input_s bgav_input_t;
typedef struct bgav_input_context_s bgav_input_context_t;
typedef struct bgav_audio_decoder_s bgav_audio_decoder_t;
typedef struct bgav_video_decoder_s bgav_video_decoder_t;
// typedef struct bgav_subtitle_overlay_decoder_s bgav_subtitle_overlay_decoder_t;
typedef struct bgav_subtitle_reader_s bgav_subtitle_reader_t;
typedef struct bgav_subtitle_reader_context_s bgav_subtitle_reader_context_t;
typedef struct bgav_subtitle_converter_s bgav_subtitle_converter_t;
// typedef struct bgav_subtitle_overlay_decoder_context_s
// bgav_subtitle_overlay_decoder_context_t;
typedef struct bgav_stream_s bgav_stream_t;
typedef struct bgav_packet_buffer_s bgav_packet_buffer_t;
typedef struct bgav_charset_converter_s bgav_charset_converter_t;
typedef struct bgav_track_s bgav_track_t;
typedef struct bgav_timecode_table_s bgav_timecode_table_t;
typedef struct bgav_keyframe_table_s bgav_keyframe_table_t;
typedef struct bgav_packet_pool_s bgav_packet_pool_t;
typedef struct bgav_video_format_tracker_s bgav_video_format_tracker_t;
#include <id3.h>
#include <yml.h>
#include <packettimer.h>
#include <frametype.h>
/* subsequent calls of read() or peek() will return the next packet */
typedef gavl_source_status_t
(*bgav_get_packet_callback)(void * data, bgav_packet_t ** ret);
/* Subsequent calls of read() or peek() will return the same packet */
typedef gavl_source_status_t
(*bgav_peek_packet_callback)(void * data, bgav_packet_t ** ret, int force);
typedef struct
{
bgav_peek_packet_callback peek_func; /* Peek for a packet */
bgav_get_packet_callback get_func; /* Get a packet */
void * data; /* Private data for callbacks */
} bgav_packet_source_t;
void bgav_packet_source_copy(bgav_packet_source_t * dst,
const bgav_packet_source_t * src);
/* Decoder structures */
struct bgav_audio_decoder_s
{
const uint32_t * fourccs;
const char * name;
int (*init)(bgav_stream_t*);
gavl_source_status_t (*decode_frame)(bgav_stream_t*);
void (*close)(bgav_stream_t*);
void (*resync)(bgav_stream_t*);
bgav_audio_decoder_t * next;
};
struct bgav_video_decoder_s
{
const uint32_t * fourccs;
const char * name;
int flags;
int (*init)(bgav_stream_t*);
/*
* Decodes one frame. If frame is NULL;
* the frame is skipped.
* If this function is NULL, the codec must create a
* video source for the stream
*/
gavl_source_status_t (*decode)(bgav_stream_t*, gavl_video_frame_t*);
void (*close)(bgav_stream_t*);
void (*resync)(bgav_stream_t*);
/* Skip to a specified time. Only needed for
decoders which are not synchronous
(not one packet in, one frame out) */
int (*skipto)(bgav_stream_t*, int64_t dest);
bgav_video_decoder_t * next;
};
/* Palette support */
typedef struct
{
uint16_t r;
uint16_t g;
uint16_t b;
uint16_t a;
} bgav_palette_entry_t;
/* These map a palette entry to a gavl format frame */
#define BGAV_PALETTE_2_RGB24(pal, dst) \
dst[0] = pal.r >> 8;\
dst[1] = pal.g >> 8;\
dst[2] = pal.b >> 8;
#define BGAV_PALETTE_2_RGBA32(pal, dst) \
dst[0] = pal.r >> 8;\
dst[1] = pal.g >> 8;\
dst[2] = pal.b >> 8;\
dst[3] = pal.a >> 8;
#define BGAV_PALETTE_2_BGR24(pal, dst) \
dst[2] = pal.r >> 8;\
dst[1] = pal.g >> 8;\
dst[0] = pal.b >> 8;
/* Packet */
#define BGAV_CODING_TYPE_I GAVL_PACKET_TYPE_I
#define BGAV_CODING_TYPE_P GAVL_PACKET_TYPE_P
#define BGAV_CODING_TYPE_B GAVL_PACKET_TYPE_B
// #define BGAV_CODING_TYPE_D 'D' /* Unsupported */
/* Put private flags into the higher bits */
#define PACKET_FLAG_SKIP (GAVL_PACKET_FLAG_PRIV<<0)
#define PACKET_FLAG_FIELD_PIC (GAVL_PACKET_FLAG_PRIV<<1)
/* If these flags are changed, the flags of the superindex must be
changed as well */
#define PACKET_SET_CODING_TYPE(p, t) (p)->flags |= t
#define PACKET_SET_KEYFRAME(p) (p)->flags |= GAVL_PACKET_KEYFRAME
#define PACKET_SET_SKIP(p) (p)->flags |= PACKET_FLAG_SKIP
#define PACKET_SET_LAST(p) (p)->flags |= GAVL_PACKET_LAST
#define PACKET_SET_REF(p) (p)->flags |= GAVL_PACKET_REF
#define PACKET_SET_FIELD_PIC(p) (p)->flags |= PACKET_FLAG_FIELD_PIC
#define PACKET_GET_CODING_TYPE(p) ((p)->flags & GAVL_PACKET_TYPE_MASK)
#define PACKET_GET_KEYFRAME(p) ((p)->flags & GAVL_PACKET_KEYFRAME)
#define PACKET_GET_SKIP(p) ((p)->flags & PACKET_FLAG_SKIP)
#define PACKET_GET_LAST(p) ((p)->flags & GAVL_PACKET_LAST)
#define PACKET_GET_REF(p) ((p)->flags & GAVL_PACKET_REF)
#define PACKET_GET_FIELD_PIC(p) ((p)->flags & PACKET_FLAG_FIELD_PIC)
struct bgav_packet_s
{
/* For superindex files, it's the index position, for all other files,
it's the file position */
int64_t position;
uint32_t data_size;
uint32_t data_alloc;
uint8_t * data;
gavl_timecode_t tc;
gavl_interlace_mode_t ilace;
int field2_offset; /* Offset of 2nd field if 2 field pictures are in the
packet (0 else) */
uint32_t header_size; /* Size of a repeated global header */
uint32_t sequence_end_pos; /* Position of sequence end code (if any) */
int64_t pts; /* In stream timescale tics */
int64_t dts; /* In stream timescale tics */
int64_t end_pts; /* For Ogg demuxer: Store the granulepos here so that
subsequent stages can obtain the true duration */
int64_t duration;
// bgav_stream_t * stream; /* The stream this packet belongs to */
gavl_audio_frame_t * audio_frame; /* For demuxers, which deliver audio
frames directly */
gavl_video_frame_t * video_frame; /* For demuxers, which deliver video
frames directly */
struct bgav_packet_s * next;
uint32_t flags;
/* Palette data */
int palette_size;
bgav_palette_entry_t * palette;
/* For overlay streams: Save coordinates out-of-band so we can
use any alpha capable I-frame format */
int dst_x;
int dst_y;
gavl_rectangle_i_t src_rect;
};
/* packet.c */
bgav_packet_t * bgav_packet_create();
void bgav_packet_destroy(bgav_packet_t*);
void bgav_packet_free(bgav_packet_t*);
void bgav_packet_alloc(bgav_packet_t*, int size);
void bgav_packet_dump(const bgav_packet_t*);
void bgav_packet_dump_data(bgav_packet_t * p, int bytes);
void bgav_packet_swap_data(bgav_packet_t * p1, bgav_packet_t * p2);
void bgav_packet_pad(bgav_packet_t * p);
void bgav_packet_reset(bgav_packet_t * p);
void bgav_packet_alloc_palette(bgav_packet_t * p, int size);
void bgav_packet_free_palette(bgav_packet_t * p);
void bgav_packet_copy_metadata(bgav_packet_t * dst,
const bgav_packet_t * src);
void bgav_packet_copy(bgav_packet_t * dst,
const bgav_packet_t * src);
void bgav_packet_merge_field2(bgav_packet_t * p,
const bgav_packet_t * field2);
void bgav_packet_2_gavl(bgav_packet_t * src,
gavl_packet_t * dst);
void bgav_packet_from_gavl(gavl_packet_t * src,
bgav_packet_t * dst);
void bgav_packet_save(bgav_packet_t * p, const char * filename);
/* packetbuffer.c */
bgav_packet_buffer_t * bgav_packet_buffer_create(bgav_packet_pool_t * pp);
void bgav_packet_buffer_destroy(bgav_packet_buffer_t*);
bgav_packet_t *
bgav_packet_buffer_get_packet_read(bgav_packet_buffer_t*);
bgav_packet_t *
bgav_packet_buffer_peek_packet_read(bgav_packet_buffer_t*);
void bgav_packet_buffer_append(bgav_packet_buffer_t * b,
bgav_packet_t * p);
void bgav_packet_buffer_clear(bgav_packet_buffer_t*);
int bgav_packet_buffer_is_empty(bgav_packet_buffer_t * b);
/* packetpool.c */
bgav_packet_pool_t * bgav_packet_pool_create();
bgav_packet_t * bgav_packet_pool_get(bgav_packet_pool_t *);
void bgav_packet_pool_put(bgav_packet_pool_t * pp,
bgav_packet_t * p);
void bgav_packet_pool_destroy(bgav_packet_pool_t*);
/* Stream types
(changing numeric values alters the index file format) */
#if 0
typedef enum
{
GAVF_STREAM_NONE = 0,
GAVF_STREAM_AUDIO = 1,
GAVF_STREAM_VIDEO = 2,
GAVF_STREAM_TEXT = 3,
GAVF_STREAM_OVERLAY = 4,
} bgav_stream_type_t;
#endif
/* Stream structure */
#define BGAV_ENDIANESS_NONE 0 // Unspecified
#define BGAV_ENDIANESS_BIG 1
#define BGAV_ENDIANESS_LITTLE 2
#define STREAM_PARSE_FULL (1<<0) /* Not frame aligned */
#define STREAM_PARSE_FRAME (1<<1) /* Frame aligned but no keyframes */
#define STREAM_DTS_ONLY (1<<2)
#define STREAM_STILL_SHOWN (1<<3) /* Still image already shown */
#define STREAM_EOF_D (1<<4) /* End of file at demuxer */
#define STREAM_EOF_C (1<<5) /* End of file at codec */
#define STREAM_NEED_FRAMETYPES (1<<6) /* Need frame types */
/* Picture is available for immediate output */
#define STREAM_HAVE_FRAME (1<<7)
/* Already got the format from the parser */
#define STREAM_PARSE_HAVE_FORMAT (1<<8)
#define STREAM_RAW_PACKETS (1<<9)
#define STREAM_FILTER_PACKETS (1<<10)
#define STREAM_NO_DURATIONS (1<<11)
#define STREAM_HAS_DTS (1<<12)
#define STREAM_B_PYRAMID (1<<13)
#define STREAM_GOT_CI (1<<14) // Compression info present
#define STREAM_GOT_NO_CI (1<<15) // Compression info tested but not present
#define STREAM_DISCONT (1<<16) // Stream is discontinuous
#define STREAM_HAS_SUBREADER (1<<17) // External subtitle file
#define STREAM_STANDALONE (1<<18) // Standalone decoder
#define STREAM_EXTERN (1<<19) // Exteral to the demultiplexer (subtitle file, message stream)
/* Stream could not get extract compression info from the
* demuxer
*/
#define STREAM_SET_SYNC(s, t) (s)->sync_time = t
#define STREAM_GET_SYNC(s) (s)->sync_time
#define STREAM_UNSET_SYNC(s) (s)->sync_time = GAVL_TIME_UNDEFINED
#define STREAM_HAS_SYNC(s) ((s)->sync_time != GAVL_TIME_UNDEFINED)
#define STREAM_SET_STILL(s) \
s->data.video.format->framerate_mode = GAVL_FRAMERATE_STILL; \
s->ci.flags &= ~(GAVL_COMPRESSION_HAS_P_FRAMES|GAVL_COMPRESSION_HAS_B_FRAMES);
#define STREAM_IS_STILL(s) \
((s->type == GAVL_STREAM_VIDEO) && (s->data.video.format->framerate_mode == GAVL_FRAMERATE_STILL))
typedef struct
{
int depth;
int planes; /* For M$ formats only */
int image_size; /* For M$ formats only */
bgav_video_decoder_t * decoder;
gavl_video_format_t * format;
// int palette_changed;
bgav_video_parser_t * parser;
bgav_keyframe_table_t * kft;
// int max_ref_frames; /* Needed for VDPAU */
bgav_video_format_tracker_t * ft;
struct
{
bgav_palette_entry_t * entries;
int size;
int sent;
} pal;
gavl_video_source_t * vsrc;
gavl_video_source_t * vsrc_priv;
} bgav_stream_video_t;
struct bgav_stream_s
{
gavl_dictionary_t * info;
uint32_t max_packet_size_tmp; // Incremented during parsing
void * priv;
void * decoder_priv;
int initialized; /* Mostly means, that the format is valid */
int64_t dts; // Auxillary variable for generating timestamps on the fly
const bgav_options_t * opt;
bgav_stream_action_t action;
int stream_id; /* Format specific stream id */
gavl_stream_type_t type;
bgav_packet_buffer_t * packet_buffer;
uint32_t fourcc;
uint32_t subformat; /* Real flavors, sub_ids.... */
int64_t in_position; /* In packets */
/*
* Support for custom timescales
* Default timescales are the samplerate for audio
* streams and the timescale from the format for video streams.
* Demuxers can, however, define other timescales.
*/
int timescale;
/*
* Sync time:
*
* - *Only* valid for resynchronization during seeking
*
* - If the demuxer seeks, it sets the sync_time in
* *stream* timescale
*
* - If we seek sample accurately, it's the output time
* in *codec* timescale
*/
int64_t sync_time;
int64_t out_time; /* In codec timescale */
/* Positions in the superindex */
int first_index_position;
int last_index_position;
int index_position;
/* Where to get data */
bgav_demuxer_context_t * demuxer;
/* Some demuxers can only read incomplete packets at once,
so they can store the packets here */
bgav_packet_t * packet;
int packet_seq;
gavl_dictionary_t * m;
/*
* Sometimes, the bitrates important for codecs
* and the bitrates set in the container format
* differ, so we save both here
*/
int container_bitrate;
int codec_bitrate;
/*
* See STREAM_ defines above
*/
int flags;
/* Passed to gavl_[audio|video]_source_create() */
int src_flags;
gavl_stream_stats_t stats;
/*
* Timestamp of the first frame in *output* timescale
* must be set by bgav_start()
*/
/* The track, where this stream belongs */
bgav_track_t * track;
bgav_file_index_t * file_index;
void (*process_packet)(bgav_stream_t * s, bgav_packet_t * p);
/* Cleanup function (can be set by demuxers) */
void (*cleanup)(bgav_stream_t * s);
/* Set for INDEX_MODE_SI_PARSE for all streams, which need parsing */
int index_mode;
/* timecode table (for video streams only for now) */
bgav_timecode_table_t * timecode_table;
bgav_bsf_t * bsf;
bgav_packet_source_t src; /* Where to get packets */
bgav_packet_pool_t * pp; /* Where to put consumed
packets for later use */
bgav_packet_t * out_packet_b;
gavl_packet_t out_packet_g;
gavl_packet_source_t * psrc; /* Output packets for the public API */
/* Correct timestamps from broken containers */
bgav_packet_timer_t * pt;
/* Detect frametypes from broken containers */
bgav_frametype_detector_t * fd;
/* Compression info */
gavl_compression_info_t ci;
/* If this is set, we will pass this to the
source */
gavl_video_frame_t * vframe;
union
{
struct
{
gavl_audio_format_t * format;
bgav_audio_decoder_t * decoder;
int bits_per_sample; /* In some cases, this must be set from the
Container to distinguish between 8 and 16 bit
PCM codecs. For compressed codecs like mp3, this
field is nonsense*/
/* The following ones are mainly for Microsoft formats and codecs */
int block_align;
/* This is ONLY used for codecs, which can be both little-
and big-endian. In this case, the endianess is set by
the demuxer */
int endianess;
/* Number of *samples* which must be decoded before
the next frame after seeking. Codecs set this, demuxers
can honour it when seeking. */
int preroll;
bgav_audio_parser_t * parser;
gavl_audio_frame_t * frame;
gavl_audio_source_t * source;
} audio;
bgav_stream_video_t video;
struct
{
bgav_stream_video_t video; // Must be first element
// bgav_video_parser_t * parser;
/* Charset converter for text subtitles */
bgav_subtitle_converter_t * cnv;
bgav_subtitle_reader_context_t * subreader;
char * charset;
/* The video stream, onto which the subtitles will be
displayed */
// bgav_stream_t * vs;
// int vs_index;
} subtitle;
struct
{
gavl_handle_msg_func msg_callback;
void * msg_callback_data;
} msg;
} data;
};
/* stream.c */
int bgav_stream_start(bgav_stream_t * stream);
void bgav_stream_stop(bgav_stream_t * stream);
void bgav_stream_create_packet_buffer(bgav_stream_t * stream);
void bgav_stream_create_packet_pool(bgav_stream_t * stream);
void bgav_stream_init(bgav_stream_t * stream, const bgav_options_t * opt);
void bgav_stream_free(bgav_stream_t * stream);
void bgav_stream_dump(bgav_stream_t * s);
void bgav_stream_set_extradata(bgav_stream_t * s, const uint8_t * data, int len);
void bgav_stream_set_from_gavl(bgav_stream_t * s,
gavl_dictionary_t * dict);
int bgav_streams_foreach(bgav_stream_t * s, int num,
int (*action)(void * priv, bgav_stream_t * s), void * priv);
int64_t bgav_stream_get_duration(bgav_stream_t * s);
/* Read for a packet source */
gavl_source_status_t
bgav_stream_read_packet_func(void * sp, gavl_packet_t ** p);
/* Top level packet functions */
bgav_packet_t * bgav_stream_get_packet_write(bgav_stream_t * s);
void bgav_stream_done_packet_write(bgav_stream_t * s, bgav_packet_t * p);
/* Callbacks for packet sources */
gavl_source_status_t
bgav_stream_read_func_continuous(bgav_stream_t * s, gavl_packet_t ** p);
/* Read one packet from a discontinuous (e.g. subtitle-) stream */
gavl_source_status_t
bgav_stream_read_func_discontinuous(bgav_stream_t * s, gavl_packet_t ** p);
/* TODO */
gavl_source_status_t
bgav_stream_get_packet_read(bgav_stream_t * s, bgav_packet_t ** ret);
gavl_source_status_t
bgav_stream_peek_packet_read(bgav_stream_t * s, bgav_packet_t ** ret, int force);
void bgav_stream_done_packet_read(bgav_stream_t * s, bgav_packet_t * p);
int bgav_stream_get_index(bgav_stream_t * s);
/* Which timestamp would come if we would decode right now? */
gavl_time_t bgav_stream_next_timestamp(bgav_stream_t *);
/* Clear the packet buffer, called before seeking */
void bgav_stream_clear(bgav_stream_t * s);
/*
* Skip to a specific point which must be larger than the current stream time
*/
int bgav_stream_skipto(bgav_stream_t * s, int64_t * time, int scale);
#define TRACK_SAMPLE_ACCURATE (1<<0)
#define TRACK_HAS_FILE_INDEX (1<<1)
#define TRACK_HAS_COMPRESSION (1<<2)
struct bgav_track_s
{
// char * name;
bgav_metadata_t * metadata;
int num_streams;
bgav_stream_t * streams;
int num_audio_streams;
int num_video_streams;
int num_text_streams;
int num_overlay_streams;
int num_msg_streams;
int streams_alloc;
void * priv; /* For storing private data */
int flags;
gavl_dictionary_t * info;
};
/* track.c */
void bgav_track_set_format(bgav_track_t * track, const char * format, const char * mimetype);
int bgav_track_set_stream_action(bgav_track_t * track, gavl_stream_type_t type, int stream,
bgav_stream_action_t action);
bgav_stream_t *
bgav_track_add_audio_stream(bgav_track_t * t, const bgav_options_t * opt);
bgav_stream_t *
bgav_track_add_video_stream(bgav_track_t * t, const bgav_options_t * opt);
bgav_stream_t *
bgav_track_add_msg_stream(bgav_track_t * t, const bgav_options_t * opt, int id);
void
bgav_track_remove_stream(bgav_track_t * track, int stream);
void
bgav_track_remove_audio_stream(bgav_track_t * track, int stream);
void
bgav_track_remove_video_stream(bgav_track_t * track, int stream);
void
bgav_track_remove_text_stream(bgav_track_t * track, int stream);
void
bgav_track_remove_overlay_stream(bgav_track_t * track, int stream);
bgav_stream_t * bgav_track_get_stream(bgav_track_t * track, gavl_stream_type_t type,
int stream);
bgav_stream_t * bgav_track_get_audio_stream(bgav_track_t * track, int stream);
bgav_stream_t * bgav_track_get_video_stream(bgav_track_t * track, int stream);
bgav_stream_t * bgav_track_get_text_stream(bgav_track_t * track, int stream);
bgav_stream_t * bgav_track_get_overlay_stream(bgav_track_t * track, int stream);
bgav_stream_t * bgav_track_get_msg_stream(bgav_track_t * track, int stream);
bgav_stream_t * bgav_track_get_msg_stream_by_id(bgav_track_t * track, int id);
bgav_stream_t *
bgav_track_add_text_stream(bgav_track_t * t, const bgav_options_t * opt,
const char * encoding);
bgav_stream_t *
bgav_track_add_overlay_stream(bgav_track_t * t, const bgav_options_t * opt);
bgav_stream_t *
bgav_track_attach_subtitle_reader(bgav_track_t * t,
const bgav_options_t * opt,
bgav_subtitle_reader_context_t * r);
bgav_stream_t *
bgav_track_find_stream(bgav_demuxer_context_t * t, int stream_id);
bgav_stream_t * bgav_track_get_subtitle_stream(bgav_track_t * t, int index);
int bgav_track_foreach(bgav_track_t * t,
int (*action)(void * priv, bgav_stream_t * s), void * priv);
void bgav_track_compute_info(bgav_track_t * t);
/* Clear all buffers (call BEFORE seeking) */
void bgav_track_clear(bgav_track_t * track);
/* Call after the track becomes current */
void bgav_track_mute(bgav_track_t * t);
/* Resync the decoders, update output times */
void bgav_track_resync(bgav_track_t*);
/* Skip to a specific point */
int bgav_track_skipto(bgav_track_t*, int64_t * time, int scale);
/* Find stream among ALL streams, also switched off ones */
bgav_stream_t *
bgav_track_find_stream_all(bgav_track_t * t, int stream_id);
int bgav_track_start(bgav_track_t * t, bgav_demuxer_context_t * demuxer);
void bgav_track_stop(bgav_track_t * t);
int64_t bgav_track_sync_time(bgav_track_t * t, int scale);
int64_t bgav_track_out_time(bgav_track_t * t, int scale);
void bgav_track_set_eof_d(bgav_track_t * t);
void bgav_track_clear_eof_d(bgav_track_t * t);
int bgav_track_eof_d(bgav_track_t * t);
void bgav_track_get_compression(bgav_track_t * t);
/* Remove unsupported streams */
void bgav_track_remove_unsupported(bgav_track_t * t);
void bgav_track_free(bgav_track_t * t);
void bgav_track_dump(bgav_t * b, bgav_track_t * t);
int bgav_track_has_sync(bgav_track_t * t);
void bgav_track_reset_index_positions(bgav_track_t * t);
/* Tracktable */
typedef struct
{
int num_tracks;
bgav_track_t ** tracks;
bgav_track_t * cur;
int refcount;
gavl_dictionary_t info;
} bgav_track_table_t;
bgav_track_table_t * bgav_track_table_create(int num_tracks);
bgav_track_t * bgav_track_table_append_track(bgav_track_table_t * t);
void bgav_track_table_remove_track(bgav_track_table_t * t, int idx);
void bgav_track_table_unref(bgav_track_table_t*);
void bgav_track_table_ref(bgav_track_table_t*);
void bgav_track_table_select_track(bgav_track_table_t*,int);
void bgav_track_table_dump(bgav_track_table_t*);
void bgav_track_table_merge_metadata(bgav_track_table_t*,
bgav_metadata_t * m);
void bgav_track_table_remove_unsupported(bgav_track_table_t * t);
void bgav_track_table_compute_info(bgav_track_table_t * t);
void bgav_track_table_create_message_streams(bgav_track_table_t * t, const bgav_options_t * opt);
/* Options (shared between inputs, demuxers and decoders) */
struct bgav_options_s
{
/* Try sample accurate processing */
int sample_accurate;
int cache_time;
int cache_size;
/* Generic network options */
int connect_timeout;
int read_timeout;
int network_bandwidth;
// int network_buffer_size;
/* 0..1024: Randomize */
/* 1025..65536: Fixed port base */
int rtp_port_base;
int rtp_try_tcp; /* try TCP before falling back to UDP */
/* http options */
int http_use_proxy;
char * http_proxy_host;
int http_proxy_port;
int http_proxy_auth;
char * http_proxy_user;
char * http_proxy_pass;
int http_shoutcast_metadata;
/* ftp options */
char * ftp_anonymous_password;
int ftp_anonymous;
/* Default character set for text subtitles */
char * default_subtitle_encoding;
int audio_dynrange;
int seamless;
int seek_subtitles;
/* Postprocessing level (0.0 .. 1.0) */
float pp_level;
char * dvb_channels_file;
/* Prefer ffmpeg demuxers over native demuxers */
int prefer_ffmpeg_demuxers;
int dv_datetime;
int shrink;
int vdpau;
int vaapi;
int threads;
int log_level;
int dump_headers;
int dump_indices;
int dump_packets;
/* Callbacks */
bgav_metadata_change_callback metadata_callback;
void * metadata_callback_data;
bgav_buffer_callback buffer_callback;
void * buffer_callback_data;
bgav_user_pass_callback user_pass_callback;
void * user_pass_callback_data;
bgav_aspect_callback aspect_callback;
void * aspect_callback_data;
bgav_index_callback index_callback;
void * index_callback_data;
};
BGAV_PUBLIC void bgav_options_set_defaults(bgav_options_t*opt);
void bgav_options_free(bgav_options_t*opt);
#if 0
void bgav_options_metadata_changed(const bgav_options_t * opt,
const gavl_dictionary_t * new_metadata,
gavl_time_t pts);
#endif
/* Overloadable input module */
struct bgav_input_s
{
const char * name;
int (*open)(bgav_input_context_t*, const char * url, char ** redirect_url);
int (*read)(bgav_input_context_t*, uint8_t * buffer, int len);
/* Attempts to read data but returns immediately if there is nothing
available */
int64_t (*seek_byte)(bgav_input_context_t*, int64_t pos, int whence);
void (*close)(bgav_input_context_t*);
/* Some inputs support multiple tracks */
int (*select_track)(bgav_input_context_t*, int);
/* Alternate API: Sector based read and seek access */
int (*read_sector)(bgav_input_context_t*,uint8_t* buffer);
int64_t (*seek_sector)(bgav_input_context_t*, int64_t sector);
/* Time based seek function for media, which are not stored
stricktly linear. Time is changed to the actual seeked time */
void (*seek_time)(bgav_input_context_t*, int64_t time, int scale);
/* Some inputs autoscan the available devices */
bgav_device_info_t (*find_devices)();
void (*pause)(bgav_input_context_t*);
void (*resume)(bgav_input_context_t*);
/* Finalize input (called at the very end of bgav_input_open() */
int (*finalize)(bgav_input_context_t*);
};
// #define BGAV_INPUT_DO_BUFFER (1<<0)
#define BGAV_INPUT_CAN_PAUSE (1<<1)
#define BGAV_INPUT_CAN_SEEK_BYTE (1<<2)
#define BGAV_INPUT_CAN_SEEK_TIME (1<<3)
#define BGAV_INPUT_SEEK_SLOW (1<<4)
struct bgav_input_context_s
{
gavl_buffer_t buf;
/* ID3V2 tags can be prepended to many types of files,
so we read them globally */
bgav_id3v2_tag_t * id3v2;
void * priv;
int64_t total_bytes; /* Maybe 0 for non seekable streams */
int64_t position; /* Updated also for non seekable streams */
const bgav_input_t * input;
/* Some input modules already fire up a demuxer */
bgav_demuxer_context_t * demuxer;
/*
* These can be NULL. If not, they might be used to
* choose the right demultiplexer for sources, which
* don't support format detection by content
*/
char * filename;
char * url;
/* For reading textfiles */
char * charset;
bgav_charset_converter_t * cnv;
/* For multiple track support */
bgav_track_table_t * tt;
bgav_metadata_t m;
/* This is set by the modules to signal that we
need to prebuffer data */
int flags;
/* For sector based access */
int sector_size;
int sector_size_raw;
int sector_header_size;
int64_t total_sectors;
int64_t sector_position;
const bgav_options_t * opt;
// Stream ID, which will be used for syncing (for DVB)
int sync_id;
/* Inputs set this, if indexing is supported */
char * index_file;
bgav_yml_node_t * yml;
bgav_t * b;
bgav_options_t opt_priv;
};
/* input.c */
/* Read functions return FALSE on error */
BGAV_PUBLIC int bgav_input_read_data(bgav_input_context_t*, uint8_t*, int);
int bgav_input_read_string_pascal(bgav_input_context_t*, char*);
int bgav_input_read_8(bgav_input_context_t*,uint8_t*);
int bgav_input_read_16_le(bgav_input_context_t*,uint16_t*);
int bgav_input_read_24_le(bgav_input_context_t*,uint32_t*);
int bgav_input_read_32_le(bgav_input_context_t*,uint32_t*);
int bgav_input_read_64_le(bgav_input_context_t*,uint64_t*);
int bgav_input_read_16_be(bgav_input_context_t*,uint16_t*);
int bgav_input_read_24_be(bgav_input_context_t*,uint32_t*);
int bgav_input_read_32_be(bgav_input_context_t*,uint32_t*);
int bgav_input_read_64_be(bgav_input_context_t*,uint64_t*);
int bgav_input_read_float_32_be(bgav_input_context_t * ctx, float * ret);
int bgav_input_read_float_32_le(bgav_input_context_t * ctx, float * ret);
int bgav_input_read_double_64_be(bgav_input_context_t * ctx, double * ret);
int bgav_input_read_double_64_le(bgav_input_context_t * ctx, double * ret);
int bgav_input_get_data(bgav_input_context_t*, uint8_t*,int);
int bgav_input_get_8(bgav_input_context_t*,uint8_t*);
int bgav_input_get_16_le(bgav_input_context_t*,uint16_t*);
int bgav_input_get_24_le(bgav_input_context_t*,uint32_t*);
int bgav_input_get_32_le(bgav_input_context_t*,uint32_t*);
int bgav_input_get_64_le(bgav_input_context_t*,uint64_t*);
int bgav_input_get_16_be(bgav_input_context_t*,uint16_t*);
int bgav_input_get_32_be(bgav_input_context_t*,uint32_t*);
int bgav_input_get_64_be(bgav_input_context_t*,uint64_t*);
int bgav_input_get_float_32_be(bgav_input_context_t * ctx, float * ret);
int bgav_input_get_float_32_le(bgav_input_context_t * ctx, float * ret);
int bgav_input_get_double_64_be(bgav_input_context_t * ctx, double * ret);
int bgav_input_get_double_64_le(bgav_input_context_t * ctx, double * ret);
bgav_yml_node_t * bgav_input_get_yml(bgav_input_context_t * ctx);
#define bgav_input_read_fourcc(a,b) bgav_input_read_32_be(a,b)
#define bgav_input_get_fourcc(a,b) bgav_input_get_32_be(a,b)
char * bgav_input_absolute_url(bgav_input_context_t * ctx, const char * rel_url);
/*
* Read one line from the input. Linebreak characters
* (\r, \n) are NOT stored in the buffer, return values is
* the number of characters in the line
*/
int bgav_input_read_line(bgav_input_context_t*,
char ** buffer, uint32_t * buffer_alloc,
int buffer_offset, uint32_t * len);
void bgav_input_detect_charset(bgav_input_context_t*);
int bgav_utf8_validate(const uint8_t * str, const uint8_t * end);
int bgav_input_read_convert_line(bgav_input_context_t*,
char ** buffer, uint32_t * buffer_alloc,
uint32_t * len);
int bgav_input_read_sector(bgav_input_context_t*, uint8_t*);
BGAV_PUBLIC int bgav_input_open(bgav_input_context_t *, const char * url);
BGAV_PUBLIC void bgav_input_close(bgav_input_context_t * ctx);
void bgav_input_destroy(bgav_input_context_t * ctx);
void bgav_input_skip(bgav_input_context_t *, int64_t);
/* Reopen the input. Not all inputs can do this */
int bgav_input_reopen(bgav_input_context_t*);
BGAV_PUBLIC bgav_input_context_t * bgav_input_create(bgav_t * b, const bgav_options_t *);
/* For debugging purposes only: if you encounter data,
hexdump them to stderr and skip them */
void bgav_input_skip_dump(bgav_input_context_t *, int);
void bgav_input_get_dump(bgav_input_context_t *, int);
void bgav_input_seek(bgav_input_context_t * ctx,
int64_t position,
int whence);
void bgav_input_seek_sector(bgav_input_context_t * ctx,
int64_t sector);
// void bgav_input_buffer(bgav_input_context_t * ctx);
void bgav_input_ensure_buffer_size(bgav_input_context_t * ctx, int len);
/* Input module to read from memory */
bgav_input_context_t * bgav_input_open_memory(uint8_t * data,
uint32_t data_size,
const bgav_options_t * opt);
/* Reopen a memory input with new data and minimal CPU overhead */
bgav_input_context_t * bgav_input_open_as_buffer(bgav_input_context_t * input);
void bgav_input_reopen_memory(bgav_input_context_t * ctx,
uint8_t * data,
uint32_t data_size);
/* Input module to read from a filedescriptor */
bgav_input_context_t *
bgav_input_open_fd(int fd, int64_t total_bytes, const char * mimetype);
/*
* Some demuxer will create a superindex. If this is the case,
* generic next_packet() and seek() functions will be used
*/
typedef struct
{
int num_entries;
int entries_alloc;
int current_position;
struct
{
int64_t offset;
uint32_t size;
int stream_id;
int flags;
int64_t pts; /* Time is scaled with the timescale of the stream */
int duration; /* In timescale tics, can be 0 if unknown */
} * entries;
} bgav_superindex_t;
/* Create superindex, nothing will be allocated if size == 0 */
bgav_superindex_t * bgav_superindex_create(int size);
void bgav_superindex_destroy(bgav_superindex_t *);
void bgav_superindex_set_sbr(bgav_superindex_t * si,
bgav_stream_t * s);
void bgav_superindex_add_packet(bgav_superindex_t * idx,
bgav_stream_t * s,
int64_t offset,
uint32_t size,
int stream_id,
int64_t timestamp,
int keyframe, int duration);
void bgav_superindex_seek(bgav_superindex_t * idx,
bgav_stream_t * s,
int64_t * time, int scale);
BGAV_PUBLIC void bgav_superindex_dump(bgav_superindex_t * idx);
void bgav_superindex_set_durations(bgav_superindex_t * idx, bgav_stream_t * s);
void bgav_superindex_merge_fileindex(bgav_superindex_t * idx, bgav_stream_t * s);
void bgav_superindex_set_size(bgav_superindex_t * ret, int size);
void bgav_superindex_set_coding_types(bgav_superindex_t * idx,
bgav_stream_t * s);
void bgav_superindex_set_stream_stats(bgav_superindex_t * idx,
bgav_stream_t * s);
/* timecode.c */
typedef struct
{
int64_t pts;
gavl_timecode_t timecode;
} bgav_timecode_table_entry_t;
struct bgav_timecode_table_s
{
int num_entries;
int entries_alloc;
bgav_timecode_table_entry_t * entries;
};
bgav_timecode_table_t *
bgav_timecode_table_create(int num);
void
bgav_timecode_table_append_entry(bgav_timecode_table_t *,
int64_t pts,
gavl_timecode_t timecode);
void
bgav_timecode_table_destroy(bgav_timecode_table_t *);
gavl_timecode_t
bgav_timecode_table_get_timecode(bgav_timecode_table_t * table,
int64_t pts);
/*
* File index
*
* fileindex.c
*/
typedef struct
{
uint32_t flags; /* Packet flags */
/*
* Seek positon:
*
* For 1-layer muxed files, it's the
* fseek() position, where the demuxer
* can start to parse the packet header.
*
* For 2-layer muxed files, it's the
* fseek() position of the lowest level
* paket inside which the subpacket *starts*
*
* For superindex formats, it's the position
* inside the superindex
*/
uint64_t position;
/*
* Presentation time of the frame in
* format-based timescale (*not* in
* stream timescale)
*/
int64_t pts;
} bgav_file_index_entry_t;
/* Per stream structure */
struct bgav_file_index_s
{
/* Infos stored to speed up loading */
uint32_t stream_id;
uint32_t fourcc;
uint32_t max_packet_size;
/* Video infos stored by the format tracker */
uint32_t interlace_mode;
uint32_t framerate_mode;
uint32_t num_entries;
uint32_t entries_alloc;
bgav_file_index_entry_t * entries;
bgav_timecode_table_t tt;
};
bgav_file_index_t * bgav_file_index_create();
void bgav_file_index_destroy(bgav_file_index_t *);
int bgav_demuxer_next_packet_fileindex(bgav_demuxer_context_t * ctx);
int bgav_demuxer_next_packet_interleaved(bgav_demuxer_context_t * ctx);
BGAV_PUBLIC void bgav_file_index_dump(bgav_t * b);
void
bgav_file_index_append_packet(bgav_file_index_t * idx,
int64_t position,
int64_t time,
int keyframe, gavl_timecode_t tc);
int bgav_file_index_read_header(const char * filename,
bgav_input_context_t * input,
int * num_tracks);
void bgav_file_index_write_header(const char * filename,
FILE * output,
int num_tracks);
int bgav_read_file_index(bgav_t*);
void bgav_write_file_index(bgav_t*);
int bgav_build_file_index(bgav_t * b, gavl_time_t * time_needed);
/* Demuxer class */
struct bgav_demuxer_s
{
int (*probe)(bgav_input_context_t*);
int (*open)(bgav_demuxer_context_t * ctx);
int (*next_packet)(bgav_demuxer_context_t*);
/*
* Seeking sets either the position- or the time
* member of the stream
*/
void (*seek)(bgav_demuxer_context_t*, int64_t time, int scale);
void (*close)(bgav_demuxer_context_t*);
/* Some demuxers support multiple tracks. This can fail e.g.
if the input must be seekable but isn't */
int (*select_track)(bgav_demuxer_context_t*, int track);
/* Some demuxers have their own magic to build a file index */
// void (*build_index)(bgav_demuxer_context_t*);
/* Demuxers might need this function to update the internal state
after seeking with the fileindex */
void (*resync)(bgav_demuxer_context_t*, bgav_stream_t * s);
};
/* Demuxer flags */
#define BGAV_DEMUXER_CAN_SEEK (1<<0)
#define BGAV_DEMUXER_SEEK_ITERATIVE (1<<1) /* If 1, perform iterative seeking */
#define BGAV_DEMUXER_PEEK_FORCES_READ (1<<2) /* This is set if only subtitle streams are read */
#define BGAV_DEMUXER_SI_SEEKING (1<<3) /* Demuxer is seeking */
#define BGAV_DEMUXER_SI_PRIVATE_FUNCS (1<<4) /* We have a suprindex but use private seek/demux funcs */
#define BGAV_DEMUXER_HAS_TIMESTAMP_OFFSET (1<<5) /* Timestamp offset (from input) is valid */
#define BGAV_DEMUXER_HAS_DATA_START (1<<7) /* Has data start */
#define BGAV_DEMUXER_BUILD_INDEX (1<<8) /* We're just building
an index */
#define BGAV_DEMUXER_SUBREAD_ONLY (1<<9) /*
* True if we have just one active subtitle stream with attached subreader
*/
#define INDEX_MODE_NONE 0 /* Default: No sample accuracy */
/* Packets have precise timestamps and durations and are adjacent in the file */
#define INDEX_MODE_SIMPLE 1
/* Packets have precise timestamps (but no durations) and are adjacent in the file */
// #define INDEX_MODE_PTS 2
/* MPEG Program/transport stream: Needs complete parsing */
// #define INDEX_MODE_MPEG 3
/* For PCM soundfiles: Sample accuracy is already there */
#define INDEX_MODE_PCM 4
/* File has a global index and codecs, which allow sample accuracy */
#define INDEX_MODE_SI_SA 5
/* File has a global index but codecs, which need complete parsing */
#define INDEX_MODE_SI_PARSE 6
/* Stream must be completely parsed, streams can have
INDEX_MODE_SIMPLE, INDEX_MODE_MPEG or INDEX_MODE_PTS */
#define INDEX_MODE_MIXED 7
// #define INDEX_MODE_CUSTOM 4 /* Demuxer builds index */
#define DEMUX_MODE_STREAM 0
#define DEMUX_MODE_SI_I 1 /* Interleaved with superindex */
#define DEMUX_MODE_SI_NI 2 /* Non-interleaved with superindex */
#define DEMUX_MODE_FI 3 /* Non-interleaved with file-index */
struct bgav_demuxer_context_s
{
const bgav_options_t * opt;
void * priv;
const bgav_demuxer_t * demuxer;
bgav_input_context_t * input;
bgav_track_table_t * tt;
int packet_size; /* Optional, if it's fixed */
int index_mode;
int demux_mode;
uint32_t flags;
/*
* The stream, which requested the next_packet function.
* Can come handy sometimes
*/
bgav_stream_t * request_stream;
/*
* If demuxer creates a superindex, generic get_packet() and
* seek() functions will be used
*/
bgav_superindex_t * si;
/* Timestamp offset: By definition, timestamps for a track
start at 0. The offset can be set either by the demuxer or
by some inputs (DVD). */
int64_t timestamp_offset;
/* Data start (set in intially to -1, maybe set to
other values by demuxers). It can be used by the core to
seek to the position, where the demuxer can start working
*/
int64_t data_start;
/* Data size for simple formats */
// int64_t data_size;
/* Used by MPEG style fileindex for catching
packets, inside which no frame starts */
int64_t next_packet_pos;
bgav_t * b;
};
/* demuxer.c */
/*
* Create a demuxer.
*/
bgav_demuxer_context_t *
bgav_demuxer_create(bgav_t * b,
const bgav_demuxer_t * demuxer,
bgav_input_context_t * input);
const bgav_demuxer_t * bgav_demuxer_probe(bgav_input_context_t * input);
void bgav_demuxer_create_buffers(bgav_demuxer_context_t * demuxer);
void bgav_demuxer_destroy(bgav_demuxer_context_t * demuxer);
gavl_source_status_t
bgav_demuxer_get_packet_read(void * stream, bgav_packet_t **);
gavl_source_status_t
bgav_demuxer_peek_packet_read(void * stream, bgav_packet_t **,
int force);
/* Generic get/peek functions */
void
bgav_demuxer_seek(bgav_demuxer_context_t * demuxer,
int64_t time, int scale);
int
bgav_demuxer_next_packet(bgav_demuxer_context_t * demuxer);
/*
* Start a demuxer. Some demuxers (most notably quicktime)
* can contain nothing but urls for the real streams.
* In this case, redir (if not NULL) will contain the
* redirector context
*/
int bgav_demuxer_start(bgav_demuxer_context_t * ctx);
void bgav_demuxer_stop(bgav_demuxer_context_t * ctx);
// bgav_packet_t *
// bgav_demuxer_get_packet_write(bgav_demuxer_context_t * demuxer, int stream);
// bgav_stream_t * bgav_track_find_stream(bgav_track_t * ctx, int stream_id);
/* Redirector */
struct bgav_redirector_s
{
const char * name;
int (*probe)(bgav_input_context_t*);
bgav_track_table_t * (*parse)(bgav_input_context_t*);
};
const bgav_redirector_t * bgav_redirector_probe(bgav_input_context_t * input);
int bgav_is_redirector(bgav_t * bgav);
/* Actual decoder */
#define BGAV_FLAG_EOF (1<<0)
#define BGAV_FLAG_IS_RUNNING (1<<1)
#define BGAV_FLAG_METADATA_CHANGED (1<<2)
struct bgav_s
{
char * location;
/* Configuration parameters */
bgav_options_t opt;
bgav_input_context_t * input;
bgav_demuxer_context_t * demuxer;
bgav_track_table_t * tt;
bgav_metadata_t metadata;
/* Set by the seek function */
int flags;
};
/* bgav.c */
void bgav_stop(bgav_t * b);
int bgav_init(bgav_t * b);
void bgav_metadata_changed(bgav_t * b,
const gavl_dictionary_t * new_metadata,
gavl_time_t time);
/* Bytestream utilities */
/* ptr -> integer */
#if 0
#define BGAV_PTR_2_16LE(p) GAVL_PTR_2_16LE(p)
#define BGAV_PTR_2_24LE(p) GAVL_PTR_2_24LE(p)
#define BGAV_PTR_2_32LE(p) GAVL_PTR_2_32LE(p)
#define BGAV_PTR_2_64LE(p) GAVL_PTR_2_64LE(p)
#define BGAV_PTR_2_16BE(p) GAVL_PTR_2_16BE(p)
#define BGAV_PTR_2_32BE(p) GAVL_PTR_2_32BE(p)
#define BGAV_PTR_2_24BE(p) GAVL_PTR_2_24BE(p)
#define BGAV_PTR_2_64BE(p) GAVL_PTR_2_64BE(p)
/* integer -> ptr */
#define BGAV_16LE_2_PTR(i, p) GAVL_16LE_2_PTR(i, p)
#define BGAV_24LE_2_PTR(i, p) GAVL_24LE_2_PTR(i, p)
#define BGAV_32LE_2_PTR(i, p) GAVL_32LE_2_PTR(i, p)
#define BGAV_64LE_2_PTR(i, p) GAVL_64LE_2_PTR(i, p)
#define BGAV_16BE_2_PTR(i, p) GAVL_16BE_2_PTR(i, p)
#define BGAV_32BE_2_PTR(i, p) GAVL_32BE_2_PTR(i, p)
#define BGAV_24BE_2_PTR(i, p) GAVL_24BE_2_PTR(i, p)
#define BGAV_64BE_2_PTR(i, p) GAVL_64BE_2_PTR(i, p)
#endif
#define BGAV_PTR_2_FOURCC(p) GAVL_PTR_2_32BE(p)
#define BGAV_WAVID_2_FOURCC(id) BGAV_MK_FOURCC(0x00, 0x00, (id>>8), (id&0xff))
#define BGAV_FOURCC_2_WAVID(f) (f & 0xffff)
/* utils.c */
void bgav_dump_fourcc(uint32_t fourcc);
int bgav_check_fourcc(uint32_t fourcc, const uint32_t * fourccs);
char * bgav_sprintf(const char * format,...) __attribute__ ((format (printf, 1, 2)));
// char * bgav_strncat(char * old, const char * start, const char * end);
void bgav_dprintf(const char * format, ...) __attribute__ ((format (printf, 1, 2)));
void bgav_diprintf(int indent, const char * format, ...)
__attribute__ ((format (printf, 2, 3)));
int bgav_url_split(const char * url,
char ** protocol,
char ** user,
char ** password,
char ** hostname,
int * port,
char ** path);
// char ** bgav_stringbreak(const char * str, char sep);
// void bgav_stringbreak_free(char ** str);
int bgav_slurp_file(const char * location,
bgav_packet_t * p,
const bgav_options_t * opt);
char * bgav_search_file_write(const bgav_options_t * opt,
const char * directory, const char * file);
char * bgav_search_file_read(const bgav_options_t * opt,
const char * directory, const char * file);
int bgav_match_regexp(const char * str, const char * regexp);
// char * bgav_escape_string(char * old_string, const char * escape_chars);
uint32_t bgav_compression_id_2_fourcc(gavl_codec_id_t id);
/* Check if file exist and is readable */
int bgav_check_file_read(const char * filename);
/* Read a single line from a filedescriptor */
int bgav_read_line_fd(const bgav_options_t * opt, int fd,
char ** ret, int * ret_alloc, int milliseconds);
int bgav_read_data_fd(const bgav_options_t * opt, int fd,
uint8_t * ret, int size, int milliseconds);
const char * bgav_coding_type_to_string(int type);
uint32_t * bgav_get_vobsub_palette(const char * str);
/* tcp.c */
int bgav_tcp_connect(const bgav_options_t * opt,
const char * host, int port);
int bgav_tcp_send(const bgav_options_t * opt,
int fd, uint8_t * data, int len);
struct addrinfo * bgav_hostbyname(const bgav_options_t * opt,
const char * hostname,
int port, int socktype, int flags);
/* udp.c */
int bgav_udp_open(const bgav_options_t * opt, int port);
int bgav_udp_read(int fd, uint8_t * data, int len);
int bgav_udp_write(const bgav_options_t * opt,
int fd, uint8_t * data, int len,
struct addrinfo * addr);
/* Charset utilities (charset.c) */
#define BGAV_UTF8 "UTF-8" // iconf string for UTF-8
bgav_charset_converter_t *
bgav_charset_converter_create(const bgav_options_t * opt,
const char * in_charset,
const char * out_charset);
void bgav_charset_converter_destroy(bgav_charset_converter_t *);
char * bgav_convert_string(bgav_charset_converter_t *,
const char * in_string, int in_len,
uint32_t * out_len);
int bgav_convert_string_realloc(bgav_charset_converter_t * cnv,
const char * str, int len,
uint32_t * out_len,
char ** ret, uint32_t * ret_alloc);
/* subtitleconverter.c */
/* Subtitle converter (converts character sets and removes \r */
bgav_subtitle_converter_t * bgav_subtitle_converter_create(bgav_stream_t * s);
void bgav_subtitle_converter_destroy(bgav_subtitle_converter_t* cnv);
void bgav_subtitle_converter_reset(bgav_subtitle_converter_t * cnv);
/* audio.c */
void bgav_audio_dump(bgav_stream_t * s);
int bgav_audio_start(bgav_stream_t * s);
void bgav_audio_stop(bgav_stream_t * s);
/* Resynchronize the stream to the next point
* where decoding can start again.
* After calling this, the out_time *must* be valid
* Called AFTER seeking
*/
void bgav_audio_resync(bgav_stream_t * stream);
/* Skip to a point in the stream, return 0 on EOF */
int bgav_audio_skipto(bgav_stream_t * stream, int64_t * t, int scale);
/* video.c */
extern const uint32_t bgav_dv_fourccs[];
extern const uint32_t bgav_png_fourccs[];
void bgav_set_video_frame_from_packet(const bgav_packet_t * p,
gavl_video_frame_t * f);
void bgav_video_dump(bgav_stream_t * s);
int bgav_video_start(bgav_stream_t * s);
void bgav_video_stop(bgav_stream_t * s);
/* Resynchronize the stream to the next point
* where decoding can start again.
* After calling this, the out_time *must* be valid
* Called AFTER seeking
*/
void bgav_video_resync(bgav_stream_t * s);
// void bgav_video_clear(bgav_stream_t * s);
int bgav_video_skipto(bgav_stream_t * stream, int64_t * t, int scale);
void bgav_video_set_still(bgav_stream_t * stream);
/* subtitle.c */
void bgav_subtitle_dump(bgav_stream_t * s);
int bgav_text_start(bgav_stream_t * s);
int bgav_overlay_start(bgav_stream_t * s);
void bgav_subtitle_stop(bgav_stream_t * s);
void bgav_subtitle_resync(bgav_stream_t * stream);
int bgav_subtitle_skipto(bgav_stream_t * stream, int64_t * t, int scale);
extern const uint32_t bgav_dvdsub_fourccs[];
/* codecs.c */
void bgav_codecs_init(bgav_options_t * opt);
bgav_audio_decoder_t * bgav_find_audio_decoder(uint32_t fourcc);
bgav_video_decoder_t * bgav_find_video_decoder(uint32_t fourcc);
void bgav_audio_decoder_register(bgav_audio_decoder_t * dec);
void bgav_video_decoder_register(bgav_video_decoder_t * dec);
/* base64.c */
int bgav_base64encode(const unsigned char *input, int input_length,
unsigned char *output, int output_length);
int bgav_base64decode(const char *input,
int input_length,
unsigned char *output, int output_length);
/* device.c */
/*
* Append device info to an existing array and return the new array.
* arr can be NULL
*/
bgav_device_info_t * bgav_device_info_append(bgav_device_info_t * arr,
const char * device,
const char * name);
/* For debugging only */
void bgav_device_info_dump(bgav_device_info_t * arr);
/* languages.c */
const char * bgav_lang_from_name(const char * name);
const char * bgav_lang_from_twocc(const char * twocc);
const char * bgav_lang_name(const char * lang);
void bgav_correct_language(char * lang);
/* subreader.c */
struct bgav_subtitle_reader_context_s
{
bgav_input_context_t * input;
const bgav_subtitle_reader_t * reader;
char * charset;
int stream;
bgav_stream_t * s;
bgav_packet_t * out_packet;
char * info; /* Derived from filename difference */
char * filename; /* Name of the subtitle file */
int64_t time_offset;
/* Timestamps are scaled with out_pts = pts * scale_num / scale_den */
int scale_num;
int scale_den;
char * line;
uint32_t line_alloc;
/* Some formats have a header... */
int64_t data_start;
/* bgav_subtitle_reader_open returns a chained list */
bgav_subtitle_reader_context_t * next;
/* Private data */
void * priv;
};
struct bgav_subtitle_reader_s
{
gavl_stream_type_t type;
char * extensions;
char * name;
/* Probe for the subtitle format, return the number of streams */
int (*probe)(char * line, bgav_input_context_t * ctx);
int (*setup_stream)(bgav_stream_t*);
int (*init)(bgav_stream_t*);
void (*close)(bgav_stream_t*);
void (*seek)(bgav_stream_t*,int64_t time, int scale);
gavl_source_status_t (*read_packet)(bgav_stream_t*, bgav_packet_t * p);
};
bgav_subtitle_reader_context_t *
bgav_subtitle_reader_open(bgav_input_context_t * input_ctx);
int bgav_subtitle_reader_start(bgav_stream_t *);
void bgav_subtitle_reader_stop(bgav_stream_t *);
void bgav_subtitle_reader_destroy(bgav_stream_t *);
void bgav_subtitle_reader_seek(bgav_stream_t *,
int64_t time, int scale);
/* Packet source functions */
gavl_source_status_t
bgav_subtitle_reader_read_packet(void * subreader,
bgav_packet_t ** p);
gavl_source_status_t
bgav_subtitle_reader_peek_packet(void * subreader,
bgav_packet_t ** p, int force);
/* log.c */
#if 0
#define GAVL_LOG_INFO GAVL_LOG_INFO
#define GAVL_LOG_WARNING GAVL_LOG_WARNING
#define GAVL_LOG_ERROR GAVL_LOG_ERROR
#define GAVL_LOG_DEBUG GAVL_LOG_DEBUG
#define bgav_log(opt, level, domain, ...) gavl_log(level, domain, __VA_ARGS__)
#endif
/* bytebuffer.c */
typedef struct
{
uint8_t * buffer;
int size;
int alloc;
} bgav_bytebuffer_t;
void bgav_bytebuffer_append(bgav_bytebuffer_t * b, bgav_packet_t * p, int padding);
void bgav_bytebuffer_append_data(bgav_bytebuffer_t * b, uint8_t * data, int len, int padding);
int bgav_bytebuffer_append_read(bgav_bytebuffer_t * b, bgav_input_context_t * input, int len, int padding);
void bgav_bytebuffer_remove(bgav_bytebuffer_t * b, int bytes);
void bgav_bytebuffer_free(bgav_bytebuffer_t * b);
void bgav_bytebuffer_flush(bgav_bytebuffer_t * b);
/* sampleseek.c */
int bgav_set_sample_accurate(bgav_t * b);
void bgav_check_sample_accurate(bgav_t * b);
int64_t bgav_video_stream_keyframe_after(bgav_stream_t * s, int64_t time);
int64_t bgav_video_stream_keyframe_before(bgav_stream_t * s, int64_t time);
/* Translation specific stuff */
void bgav_translation_init();
/* For dynamic strings */
#define TRD(s) dgettext(PACKAGE, (s))
/* For static strings */
#define TRS(s) (s)
/* keyframetable.c */
/*
* A keyframe table is always associated with
* either a file index or a superindex.
*/
struct bgav_keyframe_table_s
{
int num_entries;
struct
{
int pos;
int64_t pts;
} * entries;
};
bgav_keyframe_table_t * bgav_keyframe_table_create_fi(bgav_file_index_t * fi);
bgav_keyframe_table_t * bgav_keyframe_table_create_si(bgav_superindex_t * si,
bgav_stream_t * s);
void bgav_keyframe_table_destroy(bgav_keyframe_table_t *);
/* formattracker.c */
bgav_video_format_tracker_t *
bgav_video_format_tracker_create(bgav_stream_t * s);
void bgav_video_format_tracker_destroy(bgav_video_format_tracker_t *);
/* Returns the index position */
int bgav_keyframe_table_seek(bgav_keyframe_table_t *,
int64_t seek_pts,
int64_t * kf_pts);
/* parse_dca.c */
#ifdef HAVE_DCA
void bgav_dca_flags_2_channel_setup(int flags, gavl_audio_format_t * format);
#endif
/* videoparser.c */
int bgav_video_is_divx4(uint32_t fourcc);
/* Global locking around avcodec_[open|close]()
Defined in video_ffmpeg.c, used from audio_ffmpeg.c as well
*/
void bgav_ffmpeg_lock();
void bgav_ffmpeg_unlock();
#if __GNUC__ >= 3
#define BGAV_UNLIKELY(exp) __builtin_expect((exp),0)
#define BGAV_LIKELY(exp) __builtin_expect((exp),1)
#else
#define BGAV_UNLIKELY(exp) exp
#define BGAV_LIKELY(exp) exp
#endif
|