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
|
/********************************************************************
* *
* THIS FILE IS PART OF THE OggTheora SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE Theora SOURCE CODE IS COPYRIGHT (C) 2002-2009,2025 *
* by the Xiph.Org Foundation and contributors *
* https://www.xiph.org/ *
* *
********************************************************************
function: example encoder application; makes an Ogg Theora/Vorbis
file from YUV4MPEG2 and WAV input
********************************************************************/
#if !defined(_REENTRANT)
#define _REENTRANT
#endif
#if !defined(_GNU_SOURCE)
#define _GNU_SOURCE
#endif
#if !defined(_LARGEFILE_SOURCE)
#define _LARGEFILE_SOURCE
#endif
#if !defined(_LARGEFILE64_SOURCE)
#define _LARGEFILE64_SOURCE
#endif
#if !defined(_FILE_OFFSET_BITS)
#define _FILE_OFFSET_BITS 64
#endif
/*#define OC_COLLECT_METRICS*/
#include <stdio.h>
#if !defined(_WIN32)
#include <getopt.h>
#include <unistd.h>
#else
#include "getopt.h"
#endif
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <math.h>
#include "theora/theoraenc.h"
#include "vorbis/codec.h"
#include "vorbis/vorbisenc.h"
#ifdef _WIN32
/*supply missing headers and functions to Win32. going to hell, I know*/
#include <fcntl.h>
#include <io.h>
static double rint(double x)
{
if (x < 0.0)
return (double)(int)(x - 0.5);
else
return (double)(int)(x + 0.5);
}
#endif
#if defined(OC_COLLECT_METRICS)
# define TH_ENCCTL_SET_METRICS_FILE (0x8000)
#endif
const char *optstring = "b:e:o:a:A:v:V:s:S:f:F:qck:d:z:\1\2\3\4"
#if defined(OC_COLLECT_METRICS)
"m:"
#endif
;
struct option options [] = {
{"begin-time",required_argument,NULL,'b'},
{"end-time",required_argument,NULL,'e'},
{"output",required_argument,NULL,'o'},
{"audio-rate-target",required_argument,NULL,'A'},
{"video-rate-target",required_argument,NULL,'V'},
{"audio-quality",required_argument,NULL,'a'},
{"video-quality",required_argument,NULL,'v'},
{"aspect-numerator",required_argument,NULL,'s'},
{"aspect-denominator",required_argument,NULL,'S'},
{"framerate-numerator",required_argument,NULL,'f'},
{"framerate-denominator",required_argument,NULL,'F'},
{"quiet",no_argument,NULL,'q'},
{"vp3-compatible",no_argument,NULL,'c'},
{"speed",required_argument,NULL,'z'},
{"soft-target",no_argument,NULL,'\1'},
{"keyframe-freq",required_argument,NULL,'k'},
{"buf-delay",required_argument,NULL,'d'},
{"two-pass",no_argument,NULL,'\2'},
{"first-pass",required_argument,NULL,'\3'},
{"second-pass",required_argument,NULL,'\4'},
#if defined(OC_COLLECT_METRICS)
{"metrics-file",required_argument,NULL,'m'},
#endif
{NULL,0,NULL,0}
};
/* You'll go to Hell for using globals. */
FILE *audio=NULL;
FILE *video=NULL;
int audio_ch=0;
int audio_hz=0;
float audio_q=.1f;
int audio_r=-1;
int vp3_compatible=0;
int quiet=0;
int frame_w=0;
int frame_h=0;
int pic_w=0;
int pic_h=0;
int pic_x=0;
int pic_y=0;
int video_fps_n=-1;
int video_fps_d=-1;
int video_par_n=-1;
int video_par_d=-1;
char interlace;
int src_c_dec_h=2;
int src_c_dec_v=2;
int dst_c_dec_h=2;
int dst_c_dec_v=2;
char chroma_type[16];
/*The size of each converted frame buffer.*/
size_t y4m_dst_buf_sz;
/*The amount to read directly into the converted frame buffer.*/
size_t y4m_dst_buf_read_sz;
/*The size of the auxiliary buffer.*/
size_t y4m_aux_buf_sz;
/*The amount to read into the auxiliary buffer.*/
size_t y4m_aux_buf_read_sz;
/*The function used to perform chroma conversion.*/
typedef void (*y4m_convert_func)(unsigned char *_dst,unsigned char *_aux);
y4m_convert_func y4m_convert=NULL;
int video_r=-1;
int video_q=-1;
ogg_uint32_t keyframe_frequency=0;
int buf_delay=-1;
long begin_sec=-1;
long begin_usec=0;
long end_sec=-1;
long end_usec=0;
static void usage(void){
fprintf(stderr,
"Usage: encoder_example [options] [audio_file] video_file\n\n"
"Options: \n\n"
" -o --output <filename.ogv> file name for encoded output;\n"
" If this option is not given, the\n"
" compressed data is sent to stdout.\n\n"
" -A --audio-rate-target <n> bitrate target for Vorbis audio;\n"
" use -a and not -A if at all possible,\n"
" as -a gives higher quality for a given\n"
" bitrate.\n\n"
" -V --video-rate-target <n> bitrate target for Theora video\n\n"
" --soft-target Use a large reservoir and treat the rate\n"
" as a soft target; rate control is less\n"
" strict but resulting quality is usually\n"
" higher/smoother overall. Soft target also\n"
" allows an optional -v setting to specify\n"
" a minimum allowed quality.\n\n"
" --two-pass Compress input using two-pass rate control\n"
" This option requires that the input to the\n"
" encoder is seekable and performs both\n"
" passes automatically.\n\n"
" --first-pass <filename> Perform first-pass of a two-pass rate\n"
" controlled encoding, saving pass data to\n"
" <filename> for a later second pass\n\n"
" --second-pass <filename> Perform second-pass of a two-pass rate\n"
" controlled encoding, reading first-pass\n"
" data from <filename>. The first pass\n"
" data must come from a first encoding pass\n"
" using identical input video to work\n"
" properly.\n\n"
" -a --audio-quality <n> Vorbis quality selector from -1 to 10\n"
" (-1 yields smallest files but lowest\n"
" fidelity; 10 yields highest fidelity\n"
" but large files. '2' is a reasonable\n"
" default).\n\n"
" -v --video-quality <n> Theora quality selector from 0 to 10\n"
" (0 yields smallest files but lowest\n"
" video quality. 10 yields highest\n"
" fidelity but large files).\n\n"
" -s --aspect-numerator <n> Aspect ratio numerator, default is 0\n"
" or extracted from YUV input file\n"
" -S --aspect-denominator <n> Aspect ratio denominator, default is 0\n"
" or extracted from YUV input file\n"
" -f --framerate-numerator <n> Frame rate numerator, can be extracted\n"
" from YUV input file. ex: 30000000\n"
" -F --framerate-denominator <n> Frame rate denominator, can be extracted\n"
" from YUV input file. ex: 1000000\n"
" The frame rate nominator divided by this\n"
" determinates the frame rate in units per tick\n"
" -k --keyframe-freq <n> Keyframe frequency\n"
" -z --speed <n> Sets the encoder speed level. Higher speed\n"
" levels favor quicker encoding over better\n"
" quality per bit. Depending on the encoding\n"
" mode, and the internal algorithms used,\n"
" quality may actually improve with higher\n"
" speeds, but in this case bitrate will also\n"
" likely increase. The maximum value, and the\n"
" meaning of each value, are implementation-\n"
" specific and may change depending on the\n"
" current encoding mode (rate constrained,\n"
" two-pass, etc.).\n"
" -d --buf-delay <n> Buffer delay (in frames). Longer delays\n"
" allow smoother rate adaptation and provide\n"
" better overall quality, but require more\n"
" client side buffering and add latency. The\n"
" default value is the keyframe interval for\n"
" one-pass encoding (or somewhat larger if\n"
" --soft-target is used) and infinite for\n"
" two-pass encoding.\n"
" -b --begin-time <h:m:s.d> Begin encoding at offset into input\n"
" -e --end-time <h:m:s.d> End encoding at offset into input\n\n"
" -q --quiet Don't print progress information.\n\n"
#if defined(OC_COLLECT_METRICS)
" -m --metrics-filename File in which to accumulate mode decision\n"
" metrics. Statistics from the current\n"
" encode will be merged with those already\n"
" in the file if it exists.\n\n"
#endif
"encoder_example accepts only uncompressed RIFF WAV format audio and\n"
"YUV4MPEG2 uncompressed video.\n\n");
exit(1);
}
static int y4m_parse_tags(char *_tags){
int got_w;
int got_h;
int got_fps;
int got_interlace;
int got_par;
int got_chroma;
int tmp_video_fps_n;
int tmp_video_fps_d;
int tmp_video_par_n;
int tmp_video_par_d;
char *p;
char *q;
got_w=got_h=got_fps=got_interlace=got_par=got_chroma=0;
for(p=_tags;;p=q){
/*Skip any leading spaces.*/
while(*p==' ')p++;
/*If that's all we have, stop.*/
if(p[0]=='\0')break;
/*Find the end of this tag.*/
for(q=p+1;*q!='\0'&&*q!=' ';q++);
/*Process the tag.*/
switch(p[0]){
case 'W':{
if(sscanf(p+1,"%d",&pic_w)!=1)return -1;
got_w=1;
}break;
case 'H':{
if(sscanf(p+1,"%d",&pic_h)!=1)return -1;
got_h=1;
}break;
case 'F':{
if(sscanf(p+1,"%d:%d",&tmp_video_fps_n,&tmp_video_fps_d)!=2)return -1;
got_fps=1;
}break;
case 'I':{
interlace=p[1];
got_interlace=1;
}break;
case 'A':{
if(sscanf(p+1,"%d:%d",&tmp_video_par_n,&tmp_video_par_d)!=2)return -1;
got_par=1;
}break;
case 'C':{
if(q-p>16)return -1;
memcpy(chroma_type,p+1,q-p-1);
chroma_type[q-p-1]='\0';
got_chroma=1;
}break;
/*Ignore unknown tags.*/
}
}
if(!got_w||!got_h||!got_fps||!got_interlace||!got_par)return -1;
/*Chroma-type is not specified in older files, e.g., those generated by
mplayer.*/
if(!got_chroma)strcpy(chroma_type,"420");
/*Update fps and aspect ratio globals if not specified in the command line.*/
if(video_fps_n==-1)video_fps_n=tmp_video_fps_n;
if(video_fps_d==-1)video_fps_d=tmp_video_fps_d;
if(video_par_n==-1)video_par_n=tmp_video_par_n;
if(video_par_d==-1)video_par_d=tmp_video_par_d;
return 0;
}
/*All anti-aliasing filters in the following conversion functions are based on
one of two window functions:
The 6-tap Lanczos window (for down-sampling and shifts):
sinc(\pi*t)*sinc(\pi*t/3), |t|<3 (sinc(t)==sin(t)/t)
0, |t|>=3
The 4-tap Mitchell window (for up-sampling):
7|t|^3-12|t|^2+16/3, |t|<1
-(7/3)|x|^3+12|x|^2-20|x|+32/3, |t|<2
0, |t|>=2
The number of taps is intentionally kept small to reduce computational
overhead and limit ringing.
The taps from these filters are scaled so that their sum is 1, and the result
is scaled by 128 and rounded to integers to create a filter whose
intermediate values fit inside 16 bits.
Coefficients are rounded in such a way as to ensure their sum is still 128,
which is usually equivalent to normal rounding.*/
#define OC_MINI(_a,_b) ((_a)>(_b)?(_b):(_a))
#define OC_MAXI(_a,_b) ((_a)<(_b)?(_b):(_a))
#define OC_CLAMPI(_a,_b,_c) (OC_MAXI(_a,OC_MINI(_b,_c)))
/*420jpeg chroma samples are sited like:
Y-------Y-------Y-------Y-------
| | | |
| BR | | BR |
| | | |
Y-------Y-------Y-------Y-------
| | | |
| | | |
| | | |
Y-------Y-------Y-------Y-------
| | | |
| BR | | BR |
| | | |
Y-------Y-------Y-------Y-------
| | | |
| | | |
| | | |
420mpeg2 chroma samples are sited like:
Y-------Y-------Y-------Y-------
| | | |
BR | BR |
| | | |
Y-------Y-------Y-------Y-------
| | | |
| | | |
| | | |
Y-------Y-------Y-------Y-------
| | | |
BR | BR |
| | | |
Y-------Y-------Y-------Y-------
| | | |
| | | |
| | | |
We use a resampling filter to shift the site locations one quarter pixel (at
the chroma plane's resolution) to the right.
The 4:2:2 modes look exactly the same, except there are twice as many chroma
lines, and they are vertically co-sited with the luma samples in both the
mpeg2 and jpeg cases (thus requiring no vertical resampling).*/
static void y4m_convert_42xmpeg2_42xjpeg(unsigned char *_dst,
unsigned char *_aux){
int c_w;
int c_h;
int pli;
int y;
int x;
/*Skip past the luma data.*/
_dst+=pic_w*pic_h;
/*Compute the size of each chroma plane.*/
c_w=(pic_w+dst_c_dec_h-1)/dst_c_dec_h;
c_h=(pic_h+dst_c_dec_v-1)/dst_c_dec_v;
for(pli=1;pli<3;pli++){
for(y=0;y<c_h;y++){
/*Filter: [4 -17 114 35 -9 1]/128, derived from a 6-tap Lanczos
window.*/
for(x=0;x<OC_MINI(c_w,2);x++){
_dst[x]=(unsigned char)OC_CLAMPI(0,4*_aux[0]-17*_aux[OC_MAXI(x-1,0)]+
114*_aux[x]+35*_aux[OC_MINI(x+1,c_w-1)]-9*_aux[OC_MINI(x+2,c_w-1)]+
_aux[OC_MINI(x+3,c_w-1)]+64>>7,255);
}
for(;x<c_w-3;x++){
_dst[x]=(unsigned char)OC_CLAMPI(0,4*_aux[x-2]-17*_aux[x-1]+
114*_aux[x]+35*_aux[x+1]-9*_aux[x+2]+_aux[x+3]+64>>7,255);
}
for(;x<c_w;x++){
_dst[x]=(unsigned char)OC_CLAMPI(0,4*_aux[x-2]-17*_aux[x-1]+
114*_aux[x]+35*_aux[OC_MINI(x+1,c_w-1)]-9*_aux[OC_MINI(x+2,c_w-1)]+
_aux[c_w-1]+64>>7,255);
}
_dst+=c_w;
_aux+=c_w;
}
}
}
/*This format is only used for interlaced content, but is included for
completeness.
420jpeg chroma samples are sited like:
Y-------Y-------Y-------Y-------
| | | |
| BR | | BR |
| | | |
Y-------Y-------Y-------Y-------
| | | |
| | | |
| | | |
Y-------Y-------Y-------Y-------
| | | |
| BR | | BR |
| | | |
Y-------Y-------Y-------Y-------
| | | |
| | | |
| | | |
420paldv chroma samples are sited like:
YR------Y-------YR------Y-------
| | | |
| | | |
| | | |
YB------Y-------YB------Y-------
| | | |
| | | |
| | | |
YR------Y-------YR------Y-------
| | | |
| | | |
| | | |
YB------Y-------YB------Y-------
| | | |
| | | |
| | | |
We use a resampling filter to shift the site locations one quarter pixel (at
the chroma plane's resolution) to the right.
Then we use another filter to move the C_r location down one quarter pixel,
and the C_b location up one quarter pixel.*/
static void y4m_convert_42xpaldv_42xjpeg(unsigned char *_dst,
unsigned char *_aux){
unsigned char *tmp;
int c_w;
int c_h;
int c_sz;
int pli;
int y;
int x;
/*Skip past the luma data.*/
_dst+=pic_w*pic_h;
/*Compute the size of each chroma plane.*/
c_w=(pic_w+1)/2;
c_h=(pic_h+dst_c_dec_h-1)/dst_c_dec_h;
c_sz=c_w*c_h;
/*First do the horizontal re-sampling.
This is the same as the mpeg2 case, except that after the horizontal case,
we need to apply a second vertical filter.*/
tmp=_aux+2*c_sz;
for(pli=1;pli<3;pli++){
for(y=0;y<c_h;y++){
/*Filter: [4 -17 114 35 -9 1]/128, derived from a 6-tap Lanczos
window.*/
for(x=0;x<OC_MINI(c_w,2);x++){
tmp[x]=(unsigned char)OC_CLAMPI(0,4*_aux[0]-17*_aux[OC_MAXI(x-1,0)]+
114*_aux[x]+35*_aux[OC_MINI(x+1,c_w-1)]-9*_aux[OC_MINI(x+2,c_w-1)]+
_aux[OC_MINI(x+3,c_w-1)]+64>>7,255);
}
for(;x<c_w-3;x++){
tmp[x]=(unsigned char)OC_CLAMPI(0,4*_aux[x-2]-17*_aux[x-1]+
114*_aux[x]+35*_aux[x+1]-9*_aux[x+2]+_aux[x+3]+64>>7,255);
}
for(;x<c_w;x++){
tmp[x]=(unsigned char)OC_CLAMPI(0,4*_aux[x-2]-17*_aux[x-1]+
114*_aux[x]+35*_aux[OC_MINI(x+1,c_w-1)]-9*_aux[OC_MINI(x+2,c_w-1)]+
_aux[c_w-1]+64>>7,255);
}
tmp+=c_w;
_aux+=c_w;
}
switch(pli){
case 1:{
tmp-=c_sz;
/*Slide C_b up a quarter-pel.
This is the same filter used above, but in the other order.*/
for(x=0;x<c_w;x++){
for(y=0;y<OC_MINI(c_h,3);y++){
_dst[y*c_w]=(unsigned char)OC_CLAMPI(0,tmp[0]-
9*tmp[OC_MAXI(y-2,0)*c_w]+35*tmp[OC_MAXI(y-1,0)*c_w]+
114*tmp[y*c_w]-17*tmp[OC_MINI(y+1,c_h-1)*c_w]+
4*tmp[OC_MINI(y+2,c_h-1)*c_w]+64>>7,255);
}
for(;y<c_h-2;y++){
_dst[y*c_w]=(unsigned char)OC_CLAMPI(0,tmp[(y-3)*c_w]-
9*tmp[(y-2)*c_w]+35*tmp[(y-1)*c_w]+114*tmp[y*c_w]-
17*tmp[(y+1)*c_w]+4*tmp[(y+2)*c_w]+64>>7,255);
}
for(;y<c_h;y++){
_dst[y*c_w]=(unsigned char)OC_CLAMPI(0,tmp[(y-3)*c_w]-
9*tmp[(y-2)*c_w]+35*tmp[(y-1)*c_w]+114*tmp[y*c_w]-
17*tmp[OC_MINI(y+1,c_h-1)*c_w]+4*tmp[(c_h-1)*c_w]+64>>7,255);
}
_dst++;
tmp++;
}
_dst+=c_sz-c_w;
tmp-=c_w;
}break;
case 2:{
tmp-=c_sz;
/*Slide C_r down a quarter-pel.
This is the same as the horizontal filter.*/
for(x=0;x<c_w;x++){
for(y=0;y<OC_MINI(c_h,2);y++){
_dst[y*c_w]=(unsigned char)OC_CLAMPI(0,4*tmp[0]-
17*tmp[OC_MAXI(y-1,0)*c_w]+114*tmp[y*c_w]+
35*tmp[OC_MINI(y+1,c_h-1)*c_w]-9*tmp[OC_MINI(y+2,c_h-1)*c_w]+
tmp[OC_MINI(y+3,c_h-1)*c_w]+64>>7,255);
}
for(;y<c_h-3;y++){
_dst[y*c_w]=(unsigned char)OC_CLAMPI(0,4*tmp[(y-2)*c_w]-
17*tmp[(y-1)*c_w]+114*tmp[y*c_w]+35*tmp[(y+1)*c_w]-
9*tmp[(y+2)*c_w]+tmp[(y+3)*c_w]+64>>7,255);
}
for(;y<c_h;y++){
_dst[y*c_w]=(unsigned char)OC_CLAMPI(0,4*tmp[(y-2)*c_w]-
17*tmp[(y-1)*c_w]+114*tmp[y*c_w]+35*tmp[OC_MINI(y+1,c_h-1)*c_w]-
9*tmp[OC_MINI(y+2,c_h-1)*c_w]+tmp[(c_h-1)*c_w]+64>>7,255);
}
_dst++;
tmp++;
}
}break;
}
/*For actual interlaced material, this would have to be done separately on
each field, and the shift amounts would be different.
C_r moves down 1/8, C_b up 3/8 in the top field, and C_r moves down 3/8,
C_b up 1/8 in the bottom field.
The corresponding filters would be:
Down 1/8 (reverse order for up): [3 -11 125 15 -4 0]/128
Down 3/8 (reverse order for up): [4 -19 98 56 -13 2]/128*/
}
}
/*422jpeg chroma samples are sited like:
Y---BR--Y-------Y---BR--Y-------
| | | |
| | | |
| | | |
Y---BR--Y-------Y---BR--Y-------
| | | |
| | | |
| | | |
Y---BR--Y-------Y---BR--Y-------
| | | |
| | | |
| | | |
Y---BR--Y-------Y---BR--Y-------
| | | |
| | | |
| | | |
411 chroma samples are sited like:
YBR-----Y-------Y-------Y-------
| | | |
| | | |
| | | |
YBR-----Y-------Y-------Y-------
| | | |
| | | |
| | | |
YBR-----Y-------Y-------Y-------
| | | |
| | | |
| | | |
YBR-----Y-------Y-------Y-------
| | | |
| | | |
| | | |
We use a filter to resample at site locations one eighth pixel (at the source
chroma plane's horizontal resolution) and five eighths of a pixel to the
right.*/
static void y4m_convert_411_422jpeg(unsigned char *_dst,
unsigned char *_aux){
int c_w;
int dst_c_w;
int c_h;
int pli;
int y;
int x;
/*Skip past the luma data.*/
_dst+=pic_w*pic_h;
/*Compute the size of each chroma plane.*/
c_w=(pic_w+src_c_dec_h-1)/src_c_dec_h;
dst_c_w=(pic_w+dst_c_dec_h-1)/dst_c_dec_h;
c_h=(pic_h+dst_c_dec_v-1)/dst_c_dec_v;
for(pli=1;pli<3;pli++){
for(y=0;y<c_h;y++){
/*Filters: [1 110 18 -1]/128 and [-3 50 86 -5]/128, both derived from a
4-tap Mitchell window.*/
for(x=0;x<OC_MINI(c_w,1);x++){
_dst[x<<1]=(unsigned char)OC_CLAMPI(0,111*_aux[0]+
18*_aux[OC_MINI(1,c_w-1)]-_aux[OC_MINI(2,c_w-1)]+64>>7,255);
_dst[x<<1|1]=(unsigned char)OC_CLAMPI(0,47*_aux[0]+
86*_aux[OC_MINI(1,c_w-1)]-5*_aux[OC_MINI(2,c_w-1)]+64>>7,255);
}
for(;x<c_w-2;x++){
_dst[x<<1]=(unsigned char)OC_CLAMPI(0,_aux[x-1]+110*_aux[x]+
18*_aux[x+1]-_aux[x+2]+64>>7,255);
_dst[x<<1|1]=(unsigned char)OC_CLAMPI(0,-3*_aux[x-1]+50*_aux[x]+
86*_aux[x+1]-5*_aux[x+2]+64>>7,255);
}
for(;x<c_w;x++){
_dst[x<<1]=(unsigned char)OC_CLAMPI(0,_aux[x-1]+110*_aux[x]+
18*_aux[OC_MINI(x+1,c_w-1)]-_aux[c_w-1]+64>>7,255);
if((x<<1|1)<dst_c_w){
_dst[x<<1|1]=(unsigned char)OC_CLAMPI(0,-3*_aux[x-1]+50*_aux[x]+
86*_aux[OC_MINI(x+1,c_w-1)]-5*_aux[c_w-1]+64>>7,255);
}
}
_dst+=dst_c_w;
_aux+=c_w;
}
}
}
/*The image is padded with empty chroma components at 4:2:0.
This costs about 17 bits a frame to code.*/
static void y4m_convert_mono_420jpeg(unsigned char *_dst,
unsigned char *_aux){
int c_sz;
_dst+=pic_w*pic_h;
c_sz=((pic_w+dst_c_dec_h-1)/dst_c_dec_h)*((pic_h+dst_c_dec_v-1)/dst_c_dec_v);
memset(_dst,128,c_sz*2);
}
#if 0
/*Right now just 444 to 420.
Not too hard to generalize.*/
static void y4m_convert_4xxjpeg_42xjpeg(unsigned char *_dst,
unsigned char *_aux){
unsigned char *tmp;
int c_w;
int c_h;
int pic_sz;
int tmp_sz;
int c_sz;
int pli;
int y;
int x;
/*Compute the size of each chroma plane.*/
c_w=(pic_w+dst_c_dec_h-1)/dst_c_dec_h;
c_h=(pic_h+dst_c_dec_v-1)/dst_c_dec_v;
pic_sz=pic_w*pic_h;
tmp_sz=c_w*pic_h;
c_sz=c_w*c_h;
_dst+=pic_sz;
for(pli=1;pli<3;pli++){
tmp=_aux+pic_sz;
/*In reality, the horizontal and vertical steps could be pipelined, for
less memory consumption and better cache performance, but we do them
separately for simplicity.*/
/*First do horizontal filtering (convert to 4:2:2)*/
/*Filter: [3 -17 78 78 -17 3]/128, derived from a 6-tap Lanczos window.*/
for(y=0;y<pic_h;y++){
for(x=0;x<OC_MINI(pic_w,2);x+=2){
tmp[x>>1]=OC_CLAMPI(0,64*_aux[0]+78*_aux[OC_MINI(1,pic_w-1)]-
17*_aux[OC_MINI(2,pic_w-1)]+3*_aux[OC_MINI(3,pic_w-1)]+64>>7,255);
}
for(;x<pic_w-3;x+=2){
tmp[x>>1]=OC_CLAMPI(0,3*(_aux[x-2]+_aux[x+3])-17*(_aux[x-1]+_aux[x+2])+
78*(_aux[x]+_aux[x+1])+64>>7,255);
}
for(;x<pic_w;x+=2){
tmp[x>>1]=OC_CLAMPI(0,3*(_aux[x-2]+_aux[pic_w-1])-
17*(_aux[x-1]+_aux[OC_MINI(x+2,pic_w-1)])+
78*(_aux[x]+_aux[OC_MINI(x+1,pic_w-1)])+64>>7,255);
}
tmp+=c_w;
_aux+=pic_w;
}
_aux-=pic_sz;
tmp-=tmp_sz;
/*Now do the vertical filtering.*/
for(x=0;x<c_w;x++){
for(y=0;y<OC_MINI(pic_h,2);y+=2){
_dst[(y>>1)*c_w]=OC_CLAMPI(0,64*tmp[0]+78*tmp[OC_MINI(1,pic_h-1)*c_w]-
17*tmp[OC_MINI(2,pic_h-1)*c_w]+3*tmp[OC_MINI(3,pic_h-1)*c_w]+
64>>7,255);
}
for(;y<pic_h-3;y+=2){
_dst[(y>>1)*c_w]=OC_CLAMPI(0,3*(tmp[(y-2)*c_w]+tmp[(y+3)*c_w])-
17*(tmp[(y-1)*c_w]+tmp[(y+2)*c_w])+78*(tmp[y*c_w]+tmp[(y+1)*c_w])+
64>>7,255);
}
for(;y<pic_h;y+=2){
_dst[(y>>1)*c_w]=OC_CLAMPI(0,3*(tmp[(y-2)*c_w]+tmp[(pic_h-1)*c_w])-
17*(tmp[(y-1)*c_w]+tmp[OC_MINI(y+2,pic_h-1)*c_w])+
78*(tmp[y*c_w]+tmp[OC_MINI(y+1,pic_h-1)*c_w])+64>>7,255);
}
tmp++;
_dst++;
}
_dst-=c_w;
}
}
#endif
/*No conversion function needed.*/
static void y4m_convert_null(unsigned char *_dst,
unsigned char *_aux){
}
static void id_file(char *f){
FILE *test;
unsigned char buffer[80];
int ret;
/* open it, look for magic */
if(!strcmp(f,"-")){
/* stdin */
test=stdin;
}else{
test=fopen(f,"rb");
if(!test){
fprintf(stderr,"Unable to open file %s.\n",f);
exit(1);
}
}
ret=fread(buffer,1,4,test);
if(ret<4){
fprintf(stderr,"EOF determining file type of file %s.\n",f);
exit(1);
}
if(!memcmp(buffer,"RIFF",4)){
/* possible WAV file */
if(audio){
/* umm, we already have one */
fprintf(stderr,"Multiple RIFF WAVE files specified on command line.\n");
exit(1);
}
/* Parse the rest of the header */
ret=fread(buffer,1,8,test);
if(ret<8)goto riff_err;
if(!memcmp(buffer+4,"WAVE",4)){
while(!feof(test)){
ret=fread(buffer,1,4,test);
if(ret<4)goto riff_err;
if(!memcmp("fmt",buffer,3)){
/* OK, this is our audio specs chunk. Slurp it up. */
ret=fread(buffer,1,20,test);
if(ret<20)goto riff_err;
if(memcmp(buffer+4,"\001\000",2)){
fprintf(stderr,"The WAV file %s is in a compressed format; "
"can't read it.\n",f);
exit(1);
}
audio=test;
audio_ch=buffer[6]+(buffer[7]<<8);
if (0 >= audio_ch) {
fprintf(stderr,"Can only read WAV files with non-zero audio channels for now.\n");
exit(1);
}
audio_hz=buffer[8]+(buffer[9]<<8)+
(buffer[10]<<16)+(buffer[11]<<24);
if(buffer[18]+(buffer[19]<<8)!=16){
fprintf(stderr,"Can only read 16 bit WAV files for now.\n");
exit(1);
}
/* Now, align things to the beginning of the data */
/* Look for 'dataxxxx' */
while(!feof(test)){
ret=fread(buffer,1,4,test);
if(ret<4)goto riff_err;
if(!memcmp("data",buffer,4)){
/* We're there. Ignore the declared size for now. */
ret=fread(buffer,1,4,test);
if(ret<4)goto riff_err;
if(!quiet){
fprintf(stderr,"File %s is 16 bit %d channel %d Hz RIFF WAV audio.\n",
f,audio_ch,audio_hz);
}
return;
}
}
}
}
}
fprintf(stderr,"Couldn't find WAVE data in RIFF file %s.\n",f);
exit(1);
}
if(!memcmp(buffer,"YUV4",4)){
/* possible YUV2MPEG2 format file */
/* read until newline, or 80 cols, whichever happens first */
int i;
for(i=0;i<79;i++){
ret=fread(buffer+i,1,1,test);
if(ret<1)goto yuv_err;
if(buffer[i]=='\n')break;
}
if(i==79){
fprintf(stderr,"Error parsing %s header; not a YUV2MPEG2 file?\n",f);
}
buffer[i]='\0';
if(!memcmp(buffer,"MPEG",4)){
if(video){
/* umm, we already have one */
fprintf(stderr,"Multiple video files specified on command line.\n");
exit(1);
}
if(buffer[4]!='2'){
fprintf(stderr,"Incorrect YUV input file version; YUV4MPEG2 required.\n");
}
ret=y4m_parse_tags((char *)buffer+5);
if(ret<0){
fprintf(stderr,"Error parsing YUV4MPEG2 header in file %s.\n",f);
exit(1);
}
if(interlace!='p'){
fprintf(stderr,"Input video is interlaced; Theora handles only progressive scan\n");
exit(1);
}
if(strcmp(chroma_type,"420")==0||strcmp(chroma_type,"420jpeg")==0){
src_c_dec_h=dst_c_dec_h=src_c_dec_v=dst_c_dec_v=2;
y4m_dst_buf_read_sz=pic_w*pic_h+2*((pic_w+1)/2)*((pic_h+1)/2);
/*Natively supported: no conversion required.*/
y4m_aux_buf_sz=y4m_aux_buf_read_sz=0;
y4m_convert=y4m_convert_null;
}
else if(strcmp(chroma_type,"420mpeg2")==0){
src_c_dec_h=dst_c_dec_h=src_c_dec_v=dst_c_dec_v=2;
y4m_dst_buf_read_sz=pic_w*pic_h;
/*Chroma filter required: read into the aux buf first.*/
y4m_aux_buf_sz=y4m_aux_buf_read_sz=2*((pic_w+1)/2)*((pic_h+1)/2);
y4m_convert=y4m_convert_42xmpeg2_42xjpeg;
}
else if(strcmp(chroma_type,"420paldv")==0){
src_c_dec_h=dst_c_dec_h=src_c_dec_v=dst_c_dec_v=2;
y4m_dst_buf_read_sz=pic_w*pic_h;
/*Chroma filter required: read into the aux buf first.
We need to make two filter passes, so we need some extra space in the
aux buffer.*/
y4m_aux_buf_sz=3*((pic_w+1)/2)*((pic_h+1)/2);
y4m_aux_buf_read_sz=2*((pic_w+1)/2)*((pic_h+1)/2);
y4m_convert=y4m_convert_42xpaldv_42xjpeg;
}
else if(strcmp(chroma_type,"422")==0){
src_c_dec_h=dst_c_dec_h=2;
src_c_dec_v=dst_c_dec_v=1;
y4m_dst_buf_read_sz=pic_w*pic_h;
/*Chroma filter required: read into the aux buf first.*/
y4m_aux_buf_sz=y4m_aux_buf_read_sz=2*((pic_w+1)/2)*pic_h;
y4m_convert=y4m_convert_42xmpeg2_42xjpeg;
}
else if(strcmp(chroma_type,"422jpeg")==0){
src_c_dec_h=dst_c_dec_h=2;
src_c_dec_v=dst_c_dec_v=1;
y4m_dst_buf_read_sz=pic_w*pic_h+2*((pic_w+1)/2)*pic_h;
/*Natively supported: no conversion required.*/
y4m_aux_buf_sz=y4m_aux_buf_read_sz=0;
y4m_convert=y4m_convert_null;
}
else if(strcmp(chroma_type,"411")==0){
src_c_dec_h=4;
/*We don't want to introduce any additional sub-sampling, so we
promote 4:1:1 material to 4:2:2, as the closest format Theora can
handle.*/
dst_c_dec_h=2;
src_c_dec_v=dst_c_dec_v=1;
y4m_dst_buf_read_sz=pic_w*pic_h;
/*Chroma filter required: read into the aux buf first.*/
y4m_aux_buf_sz=y4m_aux_buf_read_sz=2*((pic_w+3)/4)*pic_h;
y4m_convert=y4m_convert_411_422jpeg;
}
else if(strcmp(chroma_type,"444")==0){
src_c_dec_h=dst_c_dec_h=src_c_dec_v=dst_c_dec_v=1;
y4m_dst_buf_read_sz=pic_w*pic_h*3;
y4m_aux_buf_sz=y4m_aux_buf_read_sz=0;
y4m_convert=y4m_convert_null;
}
else if(strcmp(chroma_type,"444alpha")==0){
src_c_dec_h=dst_c_dec_h=src_c_dec_v=dst_c_dec_v=1;
y4m_dst_buf_read_sz=pic_w*pic_h*3;
/*Read the extra alpha plane into the aux buf.
It will be discarded.*/
y4m_aux_buf_sz=y4m_aux_buf_read_sz=pic_w*pic_h;
y4m_convert=y4m_convert_null;
}
else if(strcmp(chroma_type,"mono")==0){
src_c_dec_h=src_c_dec_v=0;
dst_c_dec_h=dst_c_dec_v=2;
y4m_dst_buf_read_sz=pic_w*pic_h;
y4m_aux_buf_sz=y4m_aux_buf_read_sz=0;
y4m_convert=y4m_convert_mono_420jpeg;
}
else{
fprintf(stderr,"Unknown chroma sampling type: %s\n",chroma_type);
exit(1);
}
/*The size of the final frame buffers is always computed from the
destination chroma decimation type.*/
y4m_dst_buf_sz=pic_w*pic_h+2*((pic_w+dst_c_dec_h-1)/dst_c_dec_h)*
((pic_h+dst_c_dec_v-1)/dst_c_dec_v);
video=test;
if(!quiet){
fprintf(stderr,"File %s is %dx%d %.02f fps %s video.\n",
f,pic_w,pic_h,(double)video_fps_n/video_fps_d,chroma_type);
}
return;
}
}
fprintf(stderr,"Input file %s is neither a WAV nor YUV4MPEG2 file.\n",f);
exit(1);
riff_err:
fprintf(stderr,"EOF parsing RIFF file %s.\n",f);
exit(1);
yuv_err:
fprintf(stderr,"EOF parsing YUV4MPEG2 file %s.\n",f);
exit(1);
}
int spinner=0;
char *spinascii="|/-\\";
void spinnit(void){
if(quiet){
return;
}
spinner++;
if(spinner==4)spinner=0;
fprintf(stderr,"\r%c",spinascii[spinner]);
}
int fetch_and_process_audio(FILE *audio,ogg_page *audiopage,
ogg_stream_state *vo,
vorbis_dsp_state *vd,
vorbis_block *vb,
int audioflag){
static ogg_int64_t samples_sofar=0;
ogg_packet op;
int i,j;
ogg_int64_t beginsample = audio_hz*(begin_sec+begin_usec*.000001);
ogg_int64_t endsample = audio_hz*(end_sec+end_usec*.000001);
while(audio && !audioflag){
/* process any audio already buffered */
spinnit();
if(ogg_stream_pageout(vo,audiopage)>0) return 1;
if(ogg_stream_eos(vo))return 0;
{
/* read and process more audio */
signed char readbuffer[4096];
signed char *readptr=readbuffer;
int toread=4096/2/audio_ch;
int bytesread=fread(readbuffer,1,toread*2*audio_ch,audio);
int sampread=bytesread/2/audio_ch;
float **vorbis_buffer;
int count=0;
if(bytesread<=0 ||
(samples_sofar>=endsample && endsample>0)){
/* end of file. this can be done implicitly, but it's
easier to see here in non-clever fashion. Tell the
library we're at end of stream so that it can handle the
last frame and mark end of stream in the output properly */
vorbis_analysis_wrote(vd,0);
}else{
if(samples_sofar < beginsample){
if(samples_sofar+sampread > beginsample){
readptr += (beginsample-samples_sofar)*2*audio_ch;
sampread += samples_sofar-beginsample;
samples_sofar = sampread+beginsample;
}else{
samples_sofar += sampread;
sampread = 0;
}
}else{
samples_sofar += sampread;
}
if(samples_sofar > endsample && endsample > 0)
sampread-= (samples_sofar - endsample);
if(sampread>0){
vorbis_buffer=vorbis_analysis_buffer(vd,sampread);
/* uninterleave samples */
for(i=0;i<sampread;i++){
for(j=0;j<audio_ch;j++){
vorbis_buffer[j][i]=((readptr[count+1]<<8)|
(0x00ff&(int)readptr[count]))/32768.f;
count+=2;
}
}
vorbis_analysis_wrote(vd,sampread);
}
}
while(vorbis_analysis_blockout(vd,vb)==1){
/* analysis, assume we want to use bitrate management */
vorbis_analysis(vb,NULL);
vorbis_bitrate_addblock(vb);
/* weld packets into the bitstream */
while(vorbis_bitrate_flushpacket(vd,&op))
ogg_stream_packetin(vo,&op);
}
}
}
return audioflag;
}
static int frame_state=-1;
static ogg_int64_t frames=0;
static unsigned char *yuvframe[3];
static th_ycbcr_buffer ycbcr;
int fetch_and_process_video_packet(FILE *video,FILE *twopass_file,int passno,
th_enc_ctx *td,ogg_packet *op){
int ret;
int pic_sz;
int c_w;
int c_h;
int c_sz;
ogg_int64_t beginframe;
ogg_int64_t endframe;
spinnit();
beginframe=video_fps_n*(begin_sec+begin_usec*.000001)/video_fps_d;
endframe=video_fps_n*(end_sec+end_usec*.000001)/video_fps_d;
if(frame_state==-1){
/* initialize the double frame buffer */
yuvframe[0]=(unsigned char *)malloc(y4m_dst_buf_sz);
yuvframe[1]=(unsigned char *)malloc(y4m_dst_buf_sz);
yuvframe[2]=(unsigned char *)malloc(y4m_aux_buf_sz);
frame_state=0;
}
pic_sz=pic_w*pic_h;
c_w=(pic_w+dst_c_dec_h-1)/dst_c_dec_h;
c_h=(pic_h+dst_c_dec_v-1)/dst_c_dec_v;
c_sz=c_w*c_h;
/* read and process more video */
/* video strategy reads one frame ahead so we know when we're
at end of stream and can mark last video frame as such
(vorbis audio has to flush one frame past last video frame
due to overlap and thus doesn't need this extra work */
/* have two frame buffers full (if possible) before
proceeding. after first pass and until eos, one will
always be full when we get here */
for(;frame_state<2 && (frames<endframe || endframe<0);){
char c,frame[6];
int ret=fread(frame,1,6,video);
/* match and skip the frame header */
if(ret<6)break;
if(memcmp(frame,"FRAME",5)){
fprintf(stderr,"Loss of framing in YUV input data\n");
exit(1);
}
if(frame[5]!='\n'){
int j;
for(j=0;j<79;j++)
if(fread(&c,1,1,video)&&c=='\n')break;
if(j==79){
fprintf(stderr,"Error parsing YUV frame header\n");
exit(1);
}
}
/*Read the frame data that needs no conversion.*/
if(fread(yuvframe[frame_state],1,y4m_dst_buf_read_sz,video)!=
y4m_dst_buf_read_sz){
fprintf(stderr,"Error reading YUV frame data.\n");
exit(1);
}
/*Read the frame data that does need conversion.*/
if(fread(yuvframe[2],1,y4m_aux_buf_read_sz,video)!=y4m_aux_buf_read_sz){
fprintf(stderr,"Error reading YUV frame data.\n");
exit(1);
}
/*Now convert the just read frame.*/
(*y4m_convert)(yuvframe[frame_state],yuvframe[2]);
frames++;
if(frames>=beginframe)
frame_state++;
}
/* check to see if there are dupes to flush */
if(th_encode_packetout(td,frame_state<1,op)>0)return 1;
if(frame_state<1){
/* can't get here unless YUV4MPEG stream has no video */
fprintf(stderr,"Video input contains no frames.\n");
exit(1);
}
/* Theora is a one-frame-in,one-frame-out system; submit a frame
for compression and pull out the packet */
/* in two-pass mode's second pass, we need to submit first-pass data */
if(passno==2){
for(;;){
static unsigned char buffer[80];
static int buf_pos;
int bytes;
/*Ask the encoder how many bytes it would like.*/
bytes=th_encode_ctl(td,TH_ENCCTL_2PASS_IN,NULL,0);
if(bytes<0){
fprintf(stderr,"Error submitting pass data in second pass.\n");
exit(1);
}
/*If it's got enough, stop.*/
if(bytes==0)break;
/*Read in some more bytes, if necessary.*/
if(bytes>80-buf_pos)bytes=80-buf_pos;
if(bytes>0&&fread(buffer+buf_pos,1,bytes,twopass_file)<bytes){
fprintf(stderr,"Could not read frame data from two-pass data file!\n");
exit(1);
}
/*And pass them off.*/
ret=th_encode_ctl(td,TH_ENCCTL_2PASS_IN,buffer,bytes);
if(ret<0){
fprintf(stderr,"Error submitting pass data in second pass.\n");
exit(1);
}
/*If the encoder consumed the whole buffer, reset it.*/
if(ret>=bytes)buf_pos=0;
/*Otherwise remember how much it used.*/
else buf_pos+=ret;
}
}
/*We submit the buffer using the size of the picture region.
libtheora will pad the picture region out to the full frame size for us,
whether we pass in a full frame or not.*/
ycbcr[0].width=pic_w;
ycbcr[0].height=pic_h;
ycbcr[0].stride=pic_w;
ycbcr[0].data=yuvframe[0];
ycbcr[1].width=c_w;
ycbcr[1].height=c_h;
ycbcr[1].stride=c_w;
ycbcr[1].data=yuvframe[0]+pic_sz;
ycbcr[2].width=c_w;
ycbcr[2].height=c_h;
ycbcr[2].stride=c_w;
ycbcr[2].data=yuvframe[0]+pic_sz+c_sz;
th_encode_ycbcr_in(td,ycbcr);
{
unsigned char *temp=yuvframe[0];
yuvframe[0]=yuvframe[1];
yuvframe[1]=temp;
frame_state--;
}
/* in two-pass mode's first pass we need to extract and save the pass data */
if(passno==1){
unsigned char *buffer;
int bytes = th_encode_ctl(td, TH_ENCCTL_2PASS_OUT, &buffer, sizeof(buffer));
if(bytes<0){
fprintf(stderr,"Could not read two-pass data from encoder.\n");
exit(1);
}
if(fwrite(buffer,1,bytes,twopass_file)<bytes){
fprintf(stderr,"Unable to write to two-pass data file.\n");
exit(1);
}
fflush(twopass_file);
}
/* if there was only one frame, it's the last in the stream */
ret = th_encode_packetout(td,frame_state<1,op);
if(passno==1 && frame_state<1){
/* need to read the final (summary) packet */
unsigned char *buffer;
int bytes = th_encode_ctl(td, TH_ENCCTL_2PASS_OUT, &buffer, sizeof(buffer));
if(bytes<0){
fprintf(stderr,"Could not read two-pass summary data from encoder.\n");
exit(1);
}
if(fseek(twopass_file,0,SEEK_SET)<0){
fprintf(stderr,"Unable to seek in two-pass data file.\n");
exit(1);
}
if(fwrite(buffer,1,bytes,twopass_file)<bytes){
fprintf(stderr,"Unable to write to two-pass data file.\n");
exit(1);
}
fflush(twopass_file);
}
return ret;
}
int fetch_and_process_video(FILE *video,ogg_page *videopage,
ogg_stream_state *to,th_enc_ctx *td,FILE *twopass_file,int passno,
int videoflag){
ogg_packet op;
int ret;
/* is there a video page flushed? If not, work until there is. */
while(!videoflag){
if(ogg_stream_pageout(to,videopage)>0) return 1;
if(ogg_stream_eos(to)) return 0;
ret=fetch_and_process_video_packet(video,twopass_file,passno,td,&op);
if(ret<=0)return 0;
ogg_stream_packetin(to,&op);
}
return videoflag;
}
static int ilog(unsigned _v){
int ret;
for(ret=0;_v;ret++)_v>>=1;
return ret;
}
static int parse_time(long *_sec,long *_usec,const char *_optarg){
double secf;
long secl;
const char *pos;
char *end;
int err;
err=0;
secl=0;
pos=strchr(_optarg,':');
if(pos!=NULL){
char *pos2;
secl=strtol(_optarg,&end,10)*60;
err|=pos!=end;
pos2=strchr(++pos,':');
if(pos2!=NULL){
secl=(secl+strtol(pos,&end,10))*60;
err|=pos2!=end;
pos=pos2+1;
}
}
else pos=_optarg;
secf=strtod(pos,&end);
if(err||*end!='\0')return -1;
*_sec=secl+(long)floor(secf);
*_usec=(long)((secf-floor(secf))*1E6+0.5);
return 0;
}
int main(int argc,char *argv[]){
int c,long_option_index,ret;
ogg_stream_state to; /* take physical pages, weld into a logical
stream of packets */
ogg_stream_state vo; /* take physical pages, weld into a logical
stream of packets */
ogg_page og; /* one Ogg bitstream page. Vorbis packets are inside */
ogg_packet op; /* one raw packet of data for decode */
th_enc_ctx *td;
th_info ti;
th_comment tc;
vorbis_info vi; /* struct that stores all the static vorbis bitstream
settings */
vorbis_comment vc; /* struct that stores all the user comments */
vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */
vorbis_block vb; /* local working space for packet->PCM decode */
int speed=-1;
int audioflag=0;
int videoflag=0;
int akbps=0;
int vkbps=0;
int soft_target=0;
ogg_int64_t audio_bytesout=0;
ogg_int64_t video_bytesout=0;
double timebase;
FILE *outfile = stdout;
FILE *twopass_file = NULL;
fpos_t video_rewind_pos;
int twopass=0;
int passno;
clock_t clock_start=clock();
clock_t clock_end;
double elapsed;
#ifdef _WIN32 /* We need to set stdin/stdout to binary mode. Damn windows. */
/* if we were reading/writing a file, it would also need to in
binary mode, eg, fopen("file.wav","wb"); */
/* Beware the evil ifdef. We avoid these where we can, but this one we
cannot. Don't add any more, you'll probably go to hell if you do. */
_setmode( _fileno( stdin ), _O_BINARY );
_setmode( _fileno( stdout ), _O_BINARY );
#endif
while((c=getopt_long(argc,argv,optstring,options,&long_option_index))!=EOF){
switch(c){
case 'o':
outfile=fopen(optarg,"wb");
if(outfile==NULL){
fprintf(stderr,"Unable to open output file '%s'\n", optarg);
exit(1);
}
break;;
case 'a':
audio_q=(float)(atof(optarg)*.099);
if(audio_q<-.1 || audio_q>1){
fprintf(stderr,"Illegal audio quality (choose -1 through 10)\n");
exit(1);
}
audio_r=-1;
break;
case 'v':
video_q=(int)rint(6.3*atof(optarg));
if(video_q<0 || video_q>63){
fprintf(stderr,"Illegal video quality (choose 0 through 10)\n");
exit(1);
}
break;
case 'A':
audio_r=(int)(atof(optarg)*1000);
if(audio_q<0){
fprintf(stderr,"Illegal audio quality (choose > 0 please)\n");
exit(1);
}
audio_q=-99;
break;
case 'V':
video_r=(int)rint(atof(optarg)*1000);
if(video_r<1){
fprintf(stderr,"Illegal video bitrate (choose > 0 please)\n");
exit(1);
}
break;
case '\1':
soft_target=1;
break;
case 's':
video_par_n=(int)rint(atof(optarg));
break;
case 'S':
video_par_d=(int)rint(atof(optarg));
break;
case 'f':
video_fps_n=(int)rint(atof(optarg));
break;
case 'F':
video_fps_d=(int)rint(atof(optarg));
break;
case 'q':
quiet=1;
break;
case 'c':
vp3_compatible=1;
break;
case 'k':
keyframe_frequency=rint(atof(optarg));
if(keyframe_frequency<1 || keyframe_frequency>2147483647){
fprintf(stderr,"Illegal keyframe frequency\n");
exit(1);
}
break;
case 'd':
buf_delay=atoi(optarg);
if(buf_delay<=0){
fprintf(stderr,"Illegal buffer delay\n");
exit(1);
}
break;
case 'z':
speed=atoi(optarg);
if(speed<0){
fprintf(stderr,"Illegal speed level\n");
exit(1);
}
break;
case 'b':
{
if(parse_time(&begin_sec,&begin_usec,optarg)<0){
fprintf(stderr,"Error parsing begin time '%s'.\n",optarg);
exit(1);
}
}
break;
case 'e':
{
if(parse_time(&end_sec,&end_usec,optarg)<0){
fprintf(stderr,"Error parsing end time '%s'.\n",optarg);
exit(1);
}
}
break;
case '\2':
twopass=3; /* perform both passes */
twopass_file=tmpfile();
if(!twopass_file){
fprintf(stderr,"Unable to open temporary file for twopass data\n");
exit(1);
}
break;
case '\3':
twopass=1; /* perform first pass */
twopass_file=fopen(optarg,"wb");
if(!twopass_file){
fprintf(stderr,"Unable to open \'%s\' for twopass data\n",optarg);
exit(1);
}
break;
case '\4':
twopass=2; /* perform second pass */
twopass_file=fopen(optarg,"rb");
if(!twopass_file){
fprintf(stderr,"Unable to open twopass data file \'%s\'",optarg);
exit(1);
}
break;
#if defined(OC_COLLECT_METRICS)
case 'm':
if(th_encode_ctl(NULL,TH_ENCCTL_SET_METRICS_FILE,
optarg,strlen(optarg)+1)){
fprintf(stderr,"Unable to set metrics collection file name.\n");
fprintf(stderr,"libtheora not compiled with OC_COLLECT_METRICS?\n");
exit(1);
}
break;
#endif
default:
usage();
}
}
if(soft_target){
if(video_r<=0){
fprintf(stderr,"Soft rate target (--soft-target) requested without a bitrate (-V).\n");
exit(1);
}
if(video_q==-1)
video_q=0;
}else{
if(video_q==-1){
if(video_r>0)
video_q=0;
else
video_q=48;
}
}
if(keyframe_frequency<=0){
/*Use a default keyframe frequency of 64 for 1-pass (streaming) mode, and
256 for two-pass mode.*/
keyframe_frequency=twopass?256:64;
}
while(optind<argc){
/* assume that anything following the options must be a filename */
id_file(argv[optind]);
optind++;
}
if(twopass==3){
/* verify that the input is seekable! */
if(video){
if(fseek(video,0,SEEK_CUR)){
fprintf(stderr,"--two-pass (automatic two-pass) requires the video input\n"
"to be seekable. For non-seekable input, encoder_example\n"
"must be run twice, first with the --first-pass option, then\n"
"with the --second-pass option.\n\n");
exit(1);
}
if(fgetpos(video,&video_rewind_pos)<0){
fprintf(stderr,"Unable to determine start position of video data.\n");
exit(1);
}
}
}
/* Set up Ogg output stream */
srand(time(NULL));
ogg_stream_init(&to,rand()); /* oops, add one to the above */
/* initialize Vorbis assuming we have audio to compress. */
if(audio && twopass!=1){
ogg_stream_init(&vo,rand());
vorbis_info_init(&vi);
if(audio_q>-99)
ret = vorbis_encode_init_vbr(&vi,audio_ch,audio_hz,audio_q);
else
ret = vorbis_encode_init(&vi,audio_ch,audio_hz,-1,
(int)(64870*(ogg_int64_t)audio_r>>16),-1);
if(ret){
fprintf(stderr,"The Vorbis encoder could not set up a mode according to\n"
"the requested quality or bitrate.\n\n");
exit(1);
}
vorbis_comment_init(&vc);
vorbis_analysis_init(&vd,&vi);
vorbis_block_init(&vd,&vb);
}
for(passno=(twopass==3?1:twopass);passno<=(twopass==3?2:twopass);passno++){
/* Set up Theora encoder */
if(!video){
fprintf(stderr,"No video files submitted for compression?\n");
exit(1);
}
/* Theora has a divisible-by-sixteen restriction for the encoded frame size */
/* scale the picture size up to the nearest /16 and calculate offsets */
frame_w=pic_w+15&~0xF;
frame_h=pic_h+15&~0xF;
/*Force the offsets to be even so that chroma samples line up like we
expect.*/
pic_x=frame_w-pic_w>>1&~1;
pic_y=frame_h-pic_h>>1&~1;
th_info_init(&ti);
ti.frame_width=frame_w;
ti.frame_height=frame_h;
ti.pic_width=pic_w;
ti.pic_height=pic_h;
ti.pic_x=pic_x;
ti.pic_y=pic_y;
ti.fps_numerator=video_fps_n;
ti.fps_denominator=video_fps_d;
ti.aspect_numerator=video_par_n;
ti.aspect_denominator=video_par_d;
ti.colorspace=TH_CS_UNSPECIFIED;
/*Account for the Ogg page overhead.
This is 1 byte per 255 for lacing values, plus 26 bytes per 4096 bytes for
the page header, plus approximately 1/2 byte per packet (not accounted for
here).*/
ti.target_bitrate=(int)(64870*(ogg_int64_t)video_r>>16);
ti.quality=video_q;
ti.keyframe_granule_shift=ilog(keyframe_frequency-1);
if(dst_c_dec_h==2){
if(dst_c_dec_v==2)ti.pixel_fmt=TH_PF_420;
else ti.pixel_fmt=TH_PF_422;
}
else ti.pixel_fmt=TH_PF_444;
td=th_encode_alloc(&ti);
th_info_clear(&ti);
if(td==NULL){
fprintf(stderr,"Error: Could not create an encoder instance.\n");
fprintf(stderr,"Check that video parameters are valid.\n");
exit(1);
}
/* setting just the granule shift only allows power-of-two keyframe
spacing. Set the actual requested spacing. */
ret=th_encode_ctl(td,TH_ENCCTL_SET_KEYFRAME_FREQUENCY_FORCE,
&keyframe_frequency,sizeof(keyframe_frequency-1));
if(ret<0){
fprintf(stderr,"Could not set keyframe interval to %d.\n",(int)keyframe_frequency);
}
if(vp3_compatible){
ret=th_encode_ctl(td,TH_ENCCTL_SET_VP3_COMPATIBLE,&vp3_compatible,
sizeof(vp3_compatible));
if(ret<0||!vp3_compatible){
fprintf(stderr,"Could not enable strict VP3 compatibility.\n");
if(ret>=0){
fprintf(stderr,"Ensure your source format is supported by VP3.\n");
fprintf(stderr,
"(4:2:0 pixel format, width and height multiples of 16).\n");
}
}
}
if(soft_target){
/* reverse the rate control flags to favor a 'long time' strategy */
int arg = TH_RATECTL_CAP_UNDERFLOW;
ret=th_encode_ctl(td,TH_ENCCTL_SET_RATE_FLAGS,&arg,sizeof(arg));
if(ret<0)
fprintf(stderr,"Could not set encoder flags for --soft-target\n");
/* Default buffer control is overridden on two-pass */
if(!twopass&&buf_delay<0){
if((keyframe_frequency*7>>1) > 5*video_fps_n/video_fps_d)
arg=keyframe_frequency*7>>1;
else
arg=5*video_fps_n/video_fps_d;
ret=th_encode_ctl(td,TH_ENCCTL_SET_RATE_BUFFER,&arg,sizeof(arg));
if(ret<0)
fprintf(stderr,"Could not set rate control buffer for --soft-target\n");
}
}
/* set up two-pass if needed */
if(passno==1){
unsigned char *buffer;
int bytes;
bytes=th_encode_ctl(td,TH_ENCCTL_2PASS_OUT,&buffer,sizeof(buffer));
if(bytes<0){
fprintf(stderr,"Could not set up the first pass of two-pass mode.\n");
fprintf(stderr,"Did you remember to specify an estimated bitrate?\n");
exit(1);
}
/*Perform a seek test to ensure we can overwrite this placeholder data at
the end; this is better than letting the user sit through a whole
encode only to find out their pass 1 file is useless at the end.*/
if(fseek(twopass_file,0,SEEK_SET)<0){
fprintf(stderr,"Unable to seek in two-pass data file.\n");
exit(1);
}
if(fwrite(buffer,1,bytes,twopass_file)<bytes){
fprintf(stderr,"Unable to write to two-pass data file.\n");
exit(1);
}
fflush(twopass_file);
}
if(passno==2){
/*Enable the second pass here.
We make this call just to set the encoder into 2-pass mode, because
by default enabling two-pass sets the buffer delay to the whole file
(because there's no way to explicitly request that behavior).
If we waited until we were actually encoding, it would overwrite our
settings.*/
if(th_encode_ctl(td,TH_ENCCTL_2PASS_IN,NULL,0)<0){
fprintf(stderr,"Could not set up the second pass of two-pass mode.\n");
exit(1);
}
if(twopass==3){
/* 'automatic' second pass */
if(fsetpos(video,&video_rewind_pos)<0){
fprintf(stderr,"Could not rewind video input file for second pass!\n");
exit(1);
}
if(fseek(twopass_file,0,SEEK_SET)<0){
fprintf(stderr,"Unable to seek in two-pass data file.\n");
exit(1);
}
frame_state=0;
frames=0;
}
}
/*Now we can set the buffer delay if the user requested a non-default one
(this has to be done after two-pass is enabled).*/
if(passno!=1&&buf_delay>=0){
ret=th_encode_ctl(td,TH_ENCCTL_SET_RATE_BUFFER,
&buf_delay,sizeof(buf_delay));
if(ret<0){
fprintf(stderr,"Warning: could not set desired buffer delay.\n");
}
}
/*Speed should also be set after the current encoder mode is established,
since the available speed levels may change depending.*/
if(speed>=0){
int speed_max;
int ret;
ret=th_encode_ctl(td,TH_ENCCTL_GET_SPLEVEL_MAX,
&speed_max,sizeof(speed_max));
if(ret<0){
fprintf(stderr,"Warning: could not determine maximum speed level.\n");
speed_max=0;
}
ret=th_encode_ctl(td,TH_ENCCTL_SET_SPLEVEL,&speed,sizeof(speed));
if(ret<0){
fprintf(stderr,"Warning: could not set speed level to %i of %i\n",
speed,speed_max);
if(speed>speed_max){
fprintf(stderr,"Setting it to %i instead\n",speed_max);
}
ret=th_encode_ctl(td,TH_ENCCTL_SET_SPLEVEL,
&speed_max,sizeof(speed_max));
if(ret<0){
fprintf(stderr,"Warning: could not set speed level to %i of %i\n",
speed_max,speed_max);
}
}
}
/* write the bitstream header packets with proper page interleave */
th_comment_init(&tc);
/* first packet will get its own page automatically */
if(th_encode_flushheader(td,&tc,&op)<=0){
fprintf(stderr,"Internal Theora library error.\n");
exit(1);
}
if(passno!=1){
ogg_stream_packetin(&to,&op);
if(ogg_stream_pageout(&to,&og)!=1){
fprintf(stderr,"Internal Ogg library error.\n");
exit(1);
}
fwrite(og.header,1,og.header_len,outfile);
fwrite(og.body,1,og.body_len,outfile);
}
/* create the remaining theora headers */
for(;;){
ret=th_encode_flushheader(td,&tc,&op);
if(ret<0){
fprintf(stderr,"Internal Theora library error.\n");
exit(1);
}
else if(!ret)break;
if(passno!=1)ogg_stream_packetin(&to,&op);
}
if(audio && passno!=1){
/* vorbis streams start with three standard header packets. */
ogg_packet id;
ogg_packet comment;
ogg_packet code;
if(vorbis_analysis_headerout(&vd,&vc,&id,&comment,&code)<0){
fprintf(stderr,"Internal Vorbis library error.\n");
exit(1);
}
/* id header is automatically placed in its own page */
ogg_stream_packetin(&vo,&id);
if(ogg_stream_pageout(&vo,&og)!=1){
fprintf(stderr,"Internal Ogg library error.\n");
exit(1);
}
fwrite(og.header,1,og.header_len,outfile);
fwrite(og.body,1,og.body_len,outfile);
/* append remaining vorbis header packets */
ogg_stream_packetin(&vo,&comment);
ogg_stream_packetin(&vo,&code);
}
/* Flush the rest of our headers. This ensures
the actual data in each stream will start
on a new page, as per spec. */
if(passno!=1){
for(;;){
int result = ogg_stream_flush(&to,&og);
if(result<0){
/* can't get here */
fprintf(stderr,"Internal Ogg library error.\n");
exit(1);
}
if(result==0)break;
fwrite(og.header,1,og.header_len,outfile);
fwrite(og.body,1,og.body_len,outfile);
}
}
if(audio && passno!=1){
for(;;){
int result=ogg_stream_flush(&vo,&og);
if(result<0){
/* can't get here */
fprintf(stderr,"Internal Ogg library error.\n");
exit(1);
}
if(result==0)break;
fwrite(og.header,1,og.header_len,outfile);
fwrite(og.body,1,og.body_len,outfile);
}
}
/* setup complete. Raw processing loop */
if(!quiet){
switch(passno){
case 0: case 2:
fprintf(stderr,"\rCompressing.... \n");
break;
case 1:
fprintf(stderr,"\rScanning first pass.... \n");
break;
}
}
for(;;){
int audio_or_video=-1;
if(passno==1){
ogg_packet op;
int ret=fetch_and_process_video_packet(video,twopass_file,passno,td,&op);
if(ret<0)break;
if(op.e_o_s)break; /* end of stream */
timebase=th_granule_time(td,op.granulepos);
audio_or_video=1;
}else{
double audiotime;
double videotime;
ogg_page audiopage;
ogg_page videopage;
/* is there an audio page flushed? If not, fetch one if possible */
audioflag=fetch_and_process_audio(audio,&audiopage,&vo,&vd,&vb,audioflag);
/* is there a video page flushed? If not, fetch one if possible */
videoflag=fetch_and_process_video(video,&videopage,&to,td,twopass_file,passno,videoflag);
/* no pages of either? Must be end of stream. */
if(!audioflag && !videoflag)break;
/* which is earlier; the end of the audio page or the end of the
video page? Flush the earlier to stream */
audiotime=
audioflag?vorbis_granule_time(&vd,ogg_page_granulepos(&audiopage)):-1;
videotime=
videoflag?th_granule_time(td,ogg_page_granulepos(&videopage)):-1;
if(!audioflag){
audio_or_video=1;
} else if(!videoflag) {
audio_or_video=0;
} else {
if(audiotime<videotime)
audio_or_video=0;
else
audio_or_video=1;
}
if(audio_or_video==1){
/* flush a video page */
video_bytesout+=fwrite(videopage.header,1,videopage.header_len,outfile);
video_bytesout+=fwrite(videopage.body,1,videopage.body_len,outfile);
videoflag=0;
timebase=videotime;
}else{
/* flush an audio page */
audio_bytesout+=fwrite(audiopage.header,1,audiopage.header_len,outfile);
audio_bytesout+=fwrite(audiopage.body,1,audiopage.body_len,outfile);
audioflag=0;
timebase=audiotime;
}
}
if(!quiet&&timebase>0){
int hundredths=(int)(timebase*100-(long)timebase*100);
int seconds=(long)timebase%60;
int minutes=((long)timebase/60)%60;
int hours=(long)timebase/3600;
if(audio_or_video)vkbps=(int)rint(video_bytesout*8./timebase*.001);
else akbps=(int)rint(audio_bytesout*8./timebase*.001);
fprintf(stderr,
"\r %d:%02d:%02d.%02d audio: %dkbps video: %dkbps ",
hours,minutes,seconds,hundredths,akbps,vkbps);
}
}
if(video)th_encode_free(td);
}
/* clear out state */
if(audio && twopass!=1){
ogg_stream_clear(&vo);
vorbis_block_clear(&vb);
vorbis_dsp_clear(&vd);
vorbis_comment_clear(&vc);
vorbis_info_clear(&vi);
if(audio!=stdin)fclose(audio);
}
if(video){
ogg_stream_clear(&to);
th_comment_clear(&tc);
if(video!=stdin)fclose(video);
}
if(outfile && outfile!=stdout)fclose(outfile);
if(twopass_file)fclose(twopass_file);
clock_end=clock();
elapsed=(clock_end-clock_start)/(double)CLOCKS_PER_SEC;
if(!quiet){
fprintf(stderr,"\r \n");
fprintf(stderr," %lld frames in %.3lf seconds: %.3lf Mpixel/s",
(long long)frames,elapsed,
(double)1e-6*frames*frame_w*frame_h/elapsed);
fprintf(stderr," %.2lfx",
(double)frames*video_fps_d/(elapsed*video_fps_n));
fprintf(stderr,"\ndone.\n\n");
}
return(0);
}
|