Skip to content
Snippets Groups Projects
avconv.c 161 KiB
Newer Older
  • Learn to ignore specific revisions
  • 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000
                fprintf(stderr, "Internal error, buffer size too small\n");
                exit_program(1);
            }
    
            //FIXME pass ost->sync_opts as AVFrame.pts in avcodec_encode_audio()
            ret = avcodec_encode_audio(enc, audio_out, size_out,
                                       (short *)buftmp);
            if (ret < 0) {
                fprintf(stderr, "Audio encoding failed\n");
                exit_program(1);
            }
            audio_size += ret;
            pkt.stream_index= ost->index;
            pkt.data= audio_out;
            pkt.size= ret;
            if(enc->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE)
                pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base);
            pkt.flags |= AV_PKT_FLAG_KEY;
            write_frame(s, &pkt, enc, ost->bitstream_filters);
        }
    }
    
    static void pre_process_video_frame(InputStream *ist, AVPicture *picture, void **bufp)
    {
        AVCodecContext *dec;
        AVPicture *picture2;
        AVPicture picture_tmp;
        uint8_t *buf = 0;
    
        dec = ist->st->codec;
    
        /* deinterlace : must be done before any resize */
        if (do_deinterlace) {
            int size;
    
            /* create temporary picture */
            size = avpicture_get_size(dec->pix_fmt, dec->width, dec->height);
            buf = av_malloc(size);
            if (!buf)
                return;
    
            picture2 = &picture_tmp;
            avpicture_fill(picture2, buf, dec->pix_fmt, dec->width, dec->height);
    
            if(avpicture_deinterlace(picture2, picture,
                                     dec->pix_fmt, dec->width, dec->height) < 0) {
                /* if error, do not deinterlace */
                fprintf(stderr, "Deinterlacing failed\n");
                av_free(buf);
                buf = NULL;
                picture2 = picture;
            }
        } else {
            picture2 = picture;
        }
    
        if (picture != picture2)
            *picture = *picture2;
        *bufp = buf;
    }
    
    /* we begin to correct av delay at this threshold */
    #define AV_DELAY_MAX 0.100
    
    static void do_subtitle_out(AVFormatContext *s,
                                OutputStream *ost,
                                InputStream *ist,
                                AVSubtitle *sub,
                                int64_t pts)
    {
        static uint8_t *subtitle_out = NULL;
        int subtitle_out_max_size = 1024 * 1024;
        int subtitle_out_size, nb, i;
        AVCodecContext *enc;
        AVPacket pkt;
    
        if (pts == AV_NOPTS_VALUE) {
            fprintf(stderr, "Subtitle packets must have a pts\n");
            if (exit_on_error)
                exit_program(1);
            return;
        }
    
        enc = ost->st->codec;
    
        if (!subtitle_out) {
            subtitle_out = av_malloc(subtitle_out_max_size);
        }
    
        /* Note: DVB subtitle need one packet to draw them and one other
           packet to clear them */
        /* XXX: signal it in the codec context ? */
        if (enc->codec_id == CODEC_ID_DVB_SUBTITLE)
            nb = 2;
        else
            nb = 1;
    
        for(i = 0; i < nb; i++) {
            sub->pts = av_rescale_q(pts, ist->st->time_base, AV_TIME_BASE_Q);
            // start_display_time is required to be 0
            sub->pts              += av_rescale_q(sub->start_display_time, (AVRational){1, 1000}, AV_TIME_BASE_Q);
            sub->end_display_time -= sub->start_display_time;
            sub->start_display_time = 0;
            subtitle_out_size = avcodec_encode_subtitle(enc, subtitle_out,
                                                        subtitle_out_max_size, sub);
            if (subtitle_out_size < 0) {
                fprintf(stderr, "Subtitle encoding failed\n");
                exit_program(1);
            }
    
            av_init_packet(&pkt);
            pkt.stream_index = ost->index;
            pkt.data = subtitle_out;
            pkt.size = subtitle_out_size;
            pkt.pts = av_rescale_q(sub->pts, AV_TIME_BASE_Q, ost->st->time_base);
            if (enc->codec_id == CODEC_ID_DVB_SUBTITLE) {
                /* XXX: the pts correction is handled here. Maybe handling
                   it in the codec would be better */
                if (i == 0)
                    pkt.pts += 90 * sub->start_display_time;
                else
                    pkt.pts += 90 * sub->end_display_time;
            }
            write_frame(s, &pkt, ost->st->codec, ost->bitstream_filters);
        }
    }
    
    static int bit_buffer_size= 1024*256;
    static uint8_t *bit_buffer= NULL;
    
    static void do_video_out(AVFormatContext *s,
                             OutputStream *ost,
                             InputStream *ist,
                             AVFrame *in_picture,
                             int *frame_size, float quality)
    {
        int nb_frames, i, ret, resample_changed;
        AVFrame *final_picture, *formatted_picture;
        AVCodecContext *enc, *dec;
        double sync_ipts;
    
        enc = ost->st->codec;
        dec = ist->st->codec;
    
        sync_ipts = get_sync_ipts(ost) / av_q2d(enc->time_base);
    
        /* by default, we output a single frame */
        nb_frames = 1;
    
        *frame_size = 0;
    
        if(video_sync_method){
            double vdelta = sync_ipts - ost->sync_opts;
            //FIXME set to 0.5 after we fix some dts/pts bugs like in avidec.c
            if (vdelta < -1.1)
                nb_frames = 0;
            else if (video_sync_method == 2 || (video_sync_method<0 && (s->oformat->flags & AVFMT_VARIABLE_FPS))){
                if(vdelta<=-0.6){
                    nb_frames=0;
                }else if(vdelta>0.6)
                    ost->sync_opts= lrintf(sync_ipts);
            }else if (vdelta > 1.1)
                nb_frames = lrintf(vdelta);
    //fprintf(stderr, "vdelta:%f, ost->sync_opts:%"PRId64", ost->sync_ipts:%f nb_frames:%d\n", vdelta, ost->sync_opts, get_sync_ipts(ost), nb_frames);
            if (nb_frames == 0){
                ++nb_frames_drop;
                if (verbose>2)
                    fprintf(stderr, "*** drop!\n");
            }else if (nb_frames > 1) {
                nb_frames_dup += nb_frames - 1;
                if (verbose>2)
                    fprintf(stderr, "*** %d dup!\n", nb_frames-1);
            }
        }else
            ost->sync_opts= lrintf(sync_ipts);
    
        nb_frames= FFMIN(nb_frames, max_frames[AVMEDIA_TYPE_VIDEO] - ost->frame_number);
        if (nb_frames <= 0)
            return;
    
        formatted_picture = in_picture;
        final_picture = formatted_picture;
    
        resample_changed = ost->resample_width   != dec->width  ||
                           ost->resample_height  != dec->height ||
                           ost->resample_pix_fmt != dec->pix_fmt;
    
        if (resample_changed) {
            av_log(NULL, AV_LOG_INFO,
                   "Input stream #%d.%d frame changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s\n",
                   ist->file_index, ist->st->index,
                   ost->resample_width, ost->resample_height, av_get_pix_fmt_name(ost->resample_pix_fmt),
                   dec->width         , dec->height         , av_get_pix_fmt_name(dec->pix_fmt));
            if(!ost->video_resample)
                exit_program(1);
        }
    
    #if !CONFIG_AVFILTER
        if (ost->video_resample) {
            final_picture = &ost->pict_tmp;
            if (resample_changed) {
                /* initialize a new scaler context */
                sws_freeContext(ost->img_resample_ctx);
                ost->img_resample_ctx = sws_getContext(
                    ist->st->codec->width,
                    ist->st->codec->height,
                    ist->st->codec->pix_fmt,
                    ost->st->codec->width,
                    ost->st->codec->height,
                    ost->st->codec->pix_fmt,
                    ost->sws_flags, NULL, NULL, NULL);
                if (ost->img_resample_ctx == NULL) {
                    fprintf(stderr, "Cannot get resampling context\n");
                    exit_program(1);
                }
            }
            sws_scale(ost->img_resample_ctx, formatted_picture->data, formatted_picture->linesize,
                  0, ost->resample_height, final_picture->data, final_picture->linesize);
        }
    #endif
    
        /* duplicates frame if needed */
        for(i=0;i<nb_frames;i++) {
            AVPacket pkt;
            av_init_packet(&pkt);
            pkt.stream_index= ost->index;
    
            if (s->oformat->flags & AVFMT_RAWPICTURE) {
                /* raw pictures are written as AVPicture structure to
                   avoid any copies. We support temorarily the older
                   method. */
                AVFrame* old_frame = enc->coded_frame;
                enc->coded_frame = dec->coded_frame; //FIXME/XXX remove this hack
                pkt.data= (uint8_t *)final_picture;
                pkt.size=  sizeof(AVPicture);
                pkt.pts= av_rescale_q(ost->sync_opts, enc->time_base, ost->st->time_base);
                pkt.flags |= AV_PKT_FLAG_KEY;
    
                write_frame(s, &pkt, ost->st->codec, ost->bitstream_filters);
                enc->coded_frame = old_frame;
            } else {
                AVFrame big_picture;
    
                big_picture= *final_picture;
                /* better than nothing: use input picture interlaced
                   settings */
                big_picture.interlaced_frame = in_picture->interlaced_frame;
                if (ost->st->codec->flags & (CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_INTERLACED_ME)) {
                    if(top_field_first == -1)
                        big_picture.top_field_first = in_picture->top_field_first;
                    else
                        big_picture.top_field_first = top_field_first;
                }
    
                /* handles sameq here. This is not correct because it may
                   not be a global option */
                big_picture.quality = quality;
                if(!me_threshold)
                    big_picture.pict_type = 0;
    //            big_picture.pts = AV_NOPTS_VALUE;
                big_picture.pts= ost->sync_opts;
    //            big_picture.pts= av_rescale(ost->sync_opts, AV_TIME_BASE*(int64_t)enc->time_base.num, enc->time_base.den);
    //av_log(NULL, AV_LOG_DEBUG, "%"PRId64" -> encoder\n", ost->sync_opts);
                if (ost->forced_kf_index < ost->forced_kf_count &&
                    big_picture.pts >= ost->forced_kf_pts[ost->forced_kf_index]) {
                    big_picture.pict_type = AV_PICTURE_TYPE_I;
                    ost->forced_kf_index++;
                }
                ret = avcodec_encode_video(enc,
                                           bit_buffer, bit_buffer_size,
                                           &big_picture);
                if (ret < 0) {
                    fprintf(stderr, "Video encoding failed\n");
                    exit_program(1);
                }
    
                if(ret>0){
                    pkt.data= bit_buffer;
                    pkt.size= ret;
                    if(enc->coded_frame->pts != AV_NOPTS_VALUE)
                        pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base);
    /*av_log(NULL, AV_LOG_DEBUG, "encoder -> %"PRId64"/%"PRId64"\n",
       pkt.pts != AV_NOPTS_VALUE ? av_rescale(pkt.pts, enc->time_base.den, AV_TIME_BASE*(int64_t)enc->time_base.num) : -1,
       pkt.dts != AV_NOPTS_VALUE ? av_rescale(pkt.dts, enc->time_base.den, AV_TIME_BASE*(int64_t)enc->time_base.num) : -1);*/
    
                    if(enc->coded_frame->key_frame)
                        pkt.flags |= AV_PKT_FLAG_KEY;
                    write_frame(s, &pkt, ost->st->codec, ost->bitstream_filters);
                    *frame_size = ret;
                    video_size += ret;
                    //fprintf(stderr,"\nFrame: %3d size: %5d type: %d",
                    //        enc->frame_number-1, ret, enc->pict_type);
                    /* if two pass, output log */
                    if (ost->logfile && enc->stats_out) {
                        fprintf(ost->logfile, "%s", enc->stats_out);
                    }
                }
            }
            ost->sync_opts++;
            ost->frame_number++;
        }
    }
    
    static double psnr(double d){
        return -10.0*log(d)/log(10.0);
    }
    
    static void do_video_stats(AVFormatContext *os, OutputStream *ost,
                               int frame_size)
    {
        AVCodecContext *enc;
        int frame_number;
        double ti1, bitrate, avg_bitrate;
    
        /* this is executed just the first time do_video_stats is called */
        if (!vstats_file) {
            vstats_file = fopen(vstats_filename, "w");
            if (!vstats_file) {
                perror("fopen");
                exit_program(1);
            }
        }
    
        enc = ost->st->codec;
        if (enc->codec_type == AVMEDIA_TYPE_VIDEO) {
            frame_number = ost->frame_number;
            fprintf(vstats_file, "frame= %5d q= %2.1f ", frame_number, enc->coded_frame->quality/(float)FF_QP2LAMBDA);
            if (enc->flags&CODEC_FLAG_PSNR)
                fprintf(vstats_file, "PSNR= %6.2f ", psnr(enc->coded_frame->error[0]/(enc->width*enc->height*255.0*255.0)));
    
            fprintf(vstats_file,"f_size= %6d ", frame_size);
            /* compute pts value */
            ti1 = ost->sync_opts * av_q2d(enc->time_base);
            if (ti1 < 0.01)
                ti1 = 0.01;
    
            bitrate = (frame_size * 8) / av_q2d(enc->time_base) / 1000.0;
            avg_bitrate = (double)(video_size * 8) / ti1 / 1000.0;
            fprintf(vstats_file, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ",
                (double)video_size / 1024, ti1, bitrate, avg_bitrate);
            fprintf(vstats_file, "type= %c\n", av_get_picture_type_char(enc->coded_frame->pict_type));
        }
    }
    
    static void print_report(AVFormatContext **output_files,
                             OutputStream **ost_table, int nb_ostreams,
                             int is_last_report)
    {
        char buf[1024];
        OutputStream *ost;
        AVFormatContext *oc;
        int64_t total_size;
        AVCodecContext *enc;
        int frame_number, vid, i;
        double bitrate, ti1, pts;
        static int64_t last_time = -1;
        static int qp_histogram[52];
    
        if (!is_last_report) {
            int64_t cur_time;
            /* display the report every 0.5 seconds */
            cur_time = av_gettime();
            if (last_time == -1) {
                last_time = cur_time;
                return;
            }
            if ((cur_time - last_time) < 500000)
                return;
            last_time = cur_time;
        }
    
    
        oc = output_files[0];
    
        total_size = avio_size(oc->pb);
        if(total_size<0) // FIXME improve avio_size() so it works with non seekable output too
            total_size= avio_tell(oc->pb);
    
        buf[0] = '\0';
        ti1 = 1e10;
        vid = 0;
        for(i=0;i<nb_ostreams;i++) {
            float q = -1;
            ost = ost_table[i];
            enc = ost->st->codec;
            if (!ost->st->stream_copy && enc->coded_frame)
                q = enc->coded_frame->quality/(float)FF_QP2LAMBDA;
            if (vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
                snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "q=%2.1f ", q);
            }
            if (!vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
                float t = (av_gettime()-timer_start) / 1000000.0;
    
                frame_number = ost->frame_number;
                snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "frame=%5d fps=%3d q=%3.1f ",
                         frame_number, (t>1)?(int)(frame_number/t+0.5) : 0, q);
                if(is_last_report)
                    snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "L");
                if(qp_hist){
                    int j;
                    int qp = lrintf(q);
                    if(qp>=0 && qp<FF_ARRAY_ELEMS(qp_histogram))
                        qp_histogram[qp]++;
                    for(j=0; j<32; j++)
                        snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%X", (int)lrintf(log(qp_histogram[j]+1)/log(2)));
                }
                if (enc->flags&CODEC_FLAG_PSNR){
                    int j;
                    double error, error_sum=0;
                    double scale, scale_sum=0;
                    char type[3]= {'Y','U','V'};
                    snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "PSNR=");
                    for(j=0; j<3; j++){
                        if(is_last_report){
                            error= enc->error[j];
                            scale= enc->width*enc->height*255.0*255.0*frame_number;
                        }else{
                            error= enc->coded_frame->error[j];
                            scale= enc->width*enc->height*255.0*255.0;
                        }
                        if(j) scale/=4;
                        error_sum += error;
                        scale_sum += scale;
                        snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%c:%2.2f ", type[j], psnr(error/scale));
                    }
                    snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "*:%2.2f ", psnr(error_sum/scale_sum));
                }
                vid = 1;
            }
            /* compute min output value */
            pts = (double)ost->st->pts.val * av_q2d(ost->st->time_base);
            if ((pts < ti1) && (pts > 0))
                ti1 = pts;
        }
        if (ti1 < 0.01)
            ti1 = 0.01;
    
        if (verbose > 0 || is_last_report) {
            bitrate = (double)(total_size * 8) / ti1 / 1000.0;
    
            snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
                "size=%8.0fkB time=%0.2f bitrate=%6.1fkbits/s",
                (double)total_size / 1024, ti1, bitrate);
    
            if (nb_frames_dup || nb_frames_drop)
              snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " dup=%d drop=%d",
                      nb_frames_dup, nb_frames_drop);
    
            if (verbose >= 0)
                fprintf(stderr, "%s    \r", buf);
    
            fflush(stderr);
        }
    
        if (is_last_report && verbose >= 0){
            int64_t raw= audio_size + video_size + extra_size;
            fprintf(stderr, "\n");
            fprintf(stderr, "video:%1.0fkB audio:%1.0fkB global headers:%1.0fkB muxing overhead %f%%\n",
                    video_size/1024.0,
                    audio_size/1024.0,
                    extra_size/1024.0,
                    100.0*(total_size - raw)/raw
            );
        }
    }
    
    static void generate_silence(uint8_t* buf, enum AVSampleFormat sample_fmt, size_t size)
    {
        int fill_char = 0x00;
        if (sample_fmt == AV_SAMPLE_FMT_U8)
            fill_char = 0x80;
        memset(buf, fill_char, size);
    }
    
    /* pkt = NULL means EOF (needed to flush decoder buffers) */
    static int output_packet(InputStream *ist, int ist_index,
                             OutputStream **ost_table, int nb_ostreams,
                             const AVPacket *pkt)
    {
        AVFormatContext *os;
        OutputStream *ost;
        int ret, i;
        int got_output;
        AVFrame picture;
        void *buffer_to_free = NULL;
        static unsigned int samples_size= 0;
        AVSubtitle subtitle, *subtitle_to_free;
        int64_t pkt_pts = AV_NOPTS_VALUE;
    #if CONFIG_AVFILTER
        int frame_available;
    #endif
        float quality;
    
        AVPacket avpkt;
        int bps = av_get_bytes_per_sample(ist->st->codec->sample_fmt);
    
        if(ist->next_pts == AV_NOPTS_VALUE)
            ist->next_pts= ist->pts;
    
        if (pkt == NULL) {
            /* EOF handling */
            av_init_packet(&avpkt);
            avpkt.data = NULL;
            avpkt.size = 0;
            goto handle_eof;
        } else {
            avpkt = *pkt;
        }
    
        if(pkt->dts != AV_NOPTS_VALUE)
            ist->next_pts = ist->pts = av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q);
        if(pkt->pts != AV_NOPTS_VALUE)
            pkt_pts = av_rescale_q(pkt->pts, ist->st->time_base, AV_TIME_BASE_Q);
    
        //while we have more to decode or while the decoder did output something on EOF
        while (avpkt.size > 0 || (!pkt && got_output)) {
            uint8_t *data_buf, *decoded_data_buf;
            int data_size, decoded_data_size;
        handle_eof:
            ist->pts= ist->next_pts;
    
            if(avpkt.size && avpkt.size != pkt->size &&
               ((!ist->showed_multi_packet_warning && verbose>0) || verbose>1)){
                fprintf(stderr, "Multiple frames in a packet from stream %d\n", pkt->stream_index);
                ist->showed_multi_packet_warning=1;
            }
    
            /* decode the packet if needed */
            decoded_data_buf = NULL; /* fail safe */
            decoded_data_size= 0;
            data_buf  = avpkt.data;
            data_size = avpkt.size;
            subtitle_to_free = NULL;
            if (ist->decoding_needed) {
                switch(ist->st->codec->codec_type) {
                case AVMEDIA_TYPE_AUDIO:{
                    if(pkt && samples_size < FFMAX(pkt->size*sizeof(*samples), AVCODEC_MAX_AUDIO_FRAME_SIZE)) {
                        samples_size = FFMAX(pkt->size*sizeof(*samples), AVCODEC_MAX_AUDIO_FRAME_SIZE);
                        av_free(samples);
                        samples= av_malloc(samples_size);
                    }
                    decoded_data_size= samples_size;
                        /* XXX: could avoid copy if PCM 16 bits with same
                           endianness as CPU */
                    ret = avcodec_decode_audio3(ist->st->codec, samples, &decoded_data_size,
                                                &avpkt);
                    if (ret < 0)
                        return ret;
                    avpkt.data += ret;
                    avpkt.size -= ret;
                    data_size   = ret;
                    got_output  = decoded_data_size > 0;
                    /* Some bug in mpeg audio decoder gives */
                    /* decoded_data_size < 0, it seems they are overflows */
                    if (!got_output) {
                        /* no audio frame */
                        continue;
                    }
                    decoded_data_buf = (uint8_t *)samples;
                    ist->next_pts += ((int64_t)AV_TIME_BASE/bps * decoded_data_size) /
                        (ist->st->codec->sample_rate * ist->st->codec->channels);
                    break;}
                case AVMEDIA_TYPE_VIDEO:
                        decoded_data_size = (ist->st->codec->width * ist->st->codec->height * 3) / 2;
                        /* XXX: allocate picture correctly */
                        avcodec_get_frame_defaults(&picture);
                        avpkt.pts = pkt_pts;
                        avpkt.dts = ist->pts;
                        pkt_pts = AV_NOPTS_VALUE;
    
                        ret = avcodec_decode_video2(ist->st->codec,
                                                    &picture, &got_output, &avpkt);
                        quality = same_quality ? picture.quality : 0;
                        if (ret < 0)
                            return ret;
                        if (!got_output) {
                            /* no picture yet */
                            goto discard_packet;
                        }
                        ist->next_pts = ist->pts = guess_correct_pts(&ist->pts_ctx, picture.pkt_pts, picture.pkt_dts);
                        if (ist->st->codec->time_base.num != 0) {
                            int ticks= ist->st->parser ? ist->st->parser->repeat_pict+1 : ist->st->codec->ticks_per_frame;
                            ist->next_pts += ((int64_t)AV_TIME_BASE *
                                              ist->st->codec->time_base.num * ticks) /
                                ist->st->codec->time_base.den;
                        }
                        avpkt.size = 0;
                        buffer_to_free = NULL;
                        pre_process_video_frame(ist, (AVPicture *)&picture, &buffer_to_free);
                        break;
                case AVMEDIA_TYPE_SUBTITLE:
                    ret = avcodec_decode_subtitle2(ist->st->codec,
                                                   &subtitle, &got_output, &avpkt);
                    if (ret < 0)
                        return ret;
                    if (!got_output) {
                        goto discard_packet;
                    }
                    subtitle_to_free = &subtitle;
                    avpkt.size = 0;
                    break;
                default:
                    return -1;
                }
            } else {
                switch(ist->st->codec->codec_type) {
                case AVMEDIA_TYPE_AUDIO:
                    ist->next_pts += ((int64_t)AV_TIME_BASE * ist->st->codec->frame_size) /
                        ist->st->codec->sample_rate;
                    break;
                case AVMEDIA_TYPE_VIDEO:
                    if (ist->st->codec->time_base.num != 0) {
                        int ticks= ist->st->parser ? ist->st->parser->repeat_pict+1 : ist->st->codec->ticks_per_frame;
                        ist->next_pts += ((int64_t)AV_TIME_BASE *
                                          ist->st->codec->time_base.num * ticks) /
                            ist->st->codec->time_base.den;
                    }
                    break;
                }
                ret = avpkt.size;
                avpkt.size = 0;
            }
    
    #if CONFIG_AVFILTER
            if (ist->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
                for (i = 0; i < nb_ostreams; i++) {
                    ost = ost_table[i];
                    if (ost->input_video_filter && ost->source_index == ist_index) {
                        AVRational sar;
                        if (ist->st->sample_aspect_ratio.num)
                            sar = ist->st->sample_aspect_ratio;
                        else
                            sar = ist->st->codec->sample_aspect_ratio;
                        // add it to be filtered
                        av_vsrc_buffer_add_frame(ost->input_video_filter, &picture,
                                                 ist->pts,
                                                 sar);
                    }
                }
            }
    #endif
    
            // preprocess audio (volume)
            if (ist->st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
                if (audio_volume != 256) {
                    short *volp;
                    volp = samples;
                    for(i=0;i<(decoded_data_size / sizeof(short));i++) {
                        int v = ((*volp) * audio_volume + 128) >> 8;
                        if (v < -32768) v = -32768;
                        if (v >  32767) v = 32767;
                        *volp++ = v;
                    }
                }
            }
    
            /* frame rate emulation */
            if (rate_emu) {
                int64_t pts = av_rescale(ist->pts, 1000000, AV_TIME_BASE);
                int64_t now = av_gettime() - ist->start;
                if (pts > now)
                    usleep(pts - now);
            }
            /* if output time reached then transcode raw format,
               encode packets and output them */
            if (start_time == 0 || ist->pts >= start_time)
                for(i=0;i<nb_ostreams;i++) {
                    int frame_size;
    
                    ost = ost_table[i];
                    if (ost->source_index == ist_index) {
    #if CONFIG_AVFILTER
                    frame_available = ist->st->codec->codec_type != AVMEDIA_TYPE_VIDEO ||
                        !ost->output_video_filter || avfilter_poll_frame(ost->output_video_filter->inputs[0]);
                    while (frame_available) {
                        AVRational ist_pts_tb;
                        if (ist->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && ost->output_video_filter)
                            get_filtered_video_frame(ost->output_video_filter, &picture, &ost->picref, &ist_pts_tb);
                        if (ost->picref)
                            ist->pts = av_rescale_q(ost->picref->pts, ist_pts_tb, AV_TIME_BASE_Q);
    #endif
                        os = output_files[ost->file_index];
    
                        /* set the input output pts pairs */
                        //ost->sync_ipts = (double)(ist->pts + input_files[ist->file_index].ts_offset - start_time)/ AV_TIME_BASE;
    
                        if (ost->encoding_needed) {
                            av_assert0(ist->decoding_needed);
                            switch(ost->st->codec->codec_type) {
                            case AVMEDIA_TYPE_AUDIO:
                                do_audio_out(os, ost, ist, decoded_data_buf, decoded_data_size);
                                break;
                            case AVMEDIA_TYPE_VIDEO:
    #if CONFIG_AVFILTER
                                if (ost->picref->video && !ost->frame_aspect_ratio)
                                    ost->st->codec->sample_aspect_ratio = ost->picref->video->pixel_aspect;
    #endif
                                do_video_out(os, ost, ist, &picture, &frame_size,
                                             same_quality ? quality : ost->st->codec->global_quality);
                                if (vstats_filename && frame_size)
                                    do_video_stats(os, ost, frame_size);
                                break;
                            case AVMEDIA_TYPE_SUBTITLE:
                                do_subtitle_out(os, ost, ist, &subtitle,
                                                pkt->pts);
                                break;
                            default:
                                abort();
                            }
                        } else {
                            AVFrame avframe; //FIXME/XXX remove this
                            AVPacket opkt;
                            int64_t ost_tb_start_time= av_rescale_q(start_time, AV_TIME_BASE_Q, ost->st->time_base);
    
                            av_init_packet(&opkt);
    
                            if ((!ost->frame_number && !(pkt->flags & AV_PKT_FLAG_KEY)) && !copy_initial_nonkeyframes)
    #if !CONFIG_AVFILTER
                                continue;
    #else
                                goto cont;
    #endif
    
                            /* no reencoding needed : output the packet directly */
                            /* force the input stream PTS */
    
                            avcodec_get_frame_defaults(&avframe);
                            ost->st->codec->coded_frame= &avframe;
                            avframe.key_frame = pkt->flags & AV_PKT_FLAG_KEY;
    
                            if(ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO)
                                audio_size += data_size;
                            else if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
                                video_size += data_size;
                                ost->sync_opts++;
                            }
    
                            opkt.stream_index= ost->index;
                            if(pkt->pts != AV_NOPTS_VALUE)
                                opkt.pts= av_rescale_q(pkt->pts, ist->st->time_base, ost->st->time_base) - ost_tb_start_time;
                            else
                                opkt.pts= AV_NOPTS_VALUE;
    
                            if (pkt->dts == AV_NOPTS_VALUE)
                                opkt.dts = av_rescale_q(ist->pts, AV_TIME_BASE_Q, ost->st->time_base);
                            else
                                opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base);
                            opkt.dts -= ost_tb_start_time;
    
                            opkt.duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->st->time_base);
                            opkt.flags= pkt->flags;
    
                            //FIXME remove the following 2 lines they shall be replaced by the bitstream filters
                            if(   ost->st->codec->codec_id != CODEC_ID_H264
                               && ost->st->codec->codec_id != CODEC_ID_MPEG1VIDEO
                               && ost->st->codec->codec_id != CODEC_ID_MPEG2VIDEO
                               ) {
                                if(av_parser_change(ist->st->parser, ost->st->codec, &opkt.data, &opkt.size, data_buf, data_size, pkt->flags & AV_PKT_FLAG_KEY))
                                    opkt.destruct= av_destruct_packet;
                            } else {
                                opkt.data = data_buf;
                                opkt.size = data_size;
                            }
    
                            write_frame(os, &opkt, ost->st->codec, ost->bitstream_filters);
                            ost->st->codec->frame_number++;
                            ost->frame_number++;
                            av_free_packet(&opkt);
                        }
    #if CONFIG_AVFILTER
                        cont:
                        frame_available = (ist->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) &&
                                           ost->output_video_filter && avfilter_poll_frame(ost->output_video_filter->inputs[0]);
                        if (ost->picref)
                            avfilter_unref_buffer(ost->picref);
                    }
    #endif
                    }
                }
    
            av_free(buffer_to_free);
            /* XXX: allocate the subtitles in the codec ? */
            if (subtitle_to_free) {
                avsubtitle_free(subtitle_to_free);
                subtitle_to_free = NULL;
            }
        }
     discard_packet:
        if (pkt == NULL) {
            /* EOF handling */
    
            for(i=0;i<nb_ostreams;i++) {
                ost = ost_table[i];
                if (ost->source_index == ist_index) {
                    AVCodecContext *enc= ost->st->codec;
                    os = output_files[ost->file_index];
    
                    if(ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && enc->frame_size <=1)
                        continue;
                    if(ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (os->oformat->flags & AVFMT_RAWPICTURE))
                        continue;
    
                    if (ost->encoding_needed) {
                        for(;;) {
                            AVPacket pkt;
                            int fifo_bytes;
                            av_init_packet(&pkt);
                            pkt.stream_index= ost->index;
    
                            switch(ost->st->codec->codec_type) {
                            case AVMEDIA_TYPE_AUDIO:
                                fifo_bytes = av_fifo_size(ost->fifo);
                                ret = 0;
                                /* encode any samples remaining in fifo */
                                if (fifo_bytes > 0) {
                                    int osize = av_get_bytes_per_sample(enc->sample_fmt);
                                    int fs_tmp = enc->frame_size;
    
                                    av_fifo_generic_read(ost->fifo, audio_buf, fifo_bytes, NULL);
                                    if (enc->codec->capabilities & CODEC_CAP_SMALL_LAST_FRAME) {
                                        enc->frame_size = fifo_bytes / (osize * enc->channels);
                                    } else { /* pad */
                                        int frame_bytes = enc->frame_size*osize*enc->channels;
                                        if (allocated_audio_buf_size < frame_bytes)
                                            exit_program(1);
                                        generate_silence(audio_buf+fifo_bytes, enc->sample_fmt, frame_bytes - fifo_bytes);
                                    }
    
                                    ret = avcodec_encode_audio(enc, bit_buffer, bit_buffer_size, (short *)audio_buf);
                                    pkt.duration = av_rescale((int64_t)enc->frame_size*ost->st->time_base.den,
                                                              ost->st->time_base.num, enc->sample_rate);
                                    enc->frame_size = fs_tmp;
                                }
                                if(ret <= 0) {
                                    ret = avcodec_encode_audio(enc, bit_buffer, bit_buffer_size, NULL);
                                }
                                if (ret < 0) {
                                    fprintf(stderr, "Audio encoding failed\n");
                                    exit_program(1);
                                }
                                audio_size += ret;
                                pkt.flags |= AV_PKT_FLAG_KEY;
                                break;
                            case AVMEDIA_TYPE_VIDEO:
                                ret = avcodec_encode_video(enc, bit_buffer, bit_buffer_size, NULL);
                                if (ret < 0) {
                                    fprintf(stderr, "Video encoding failed\n");
                                    exit_program(1);
                                }
                                video_size += ret;
                                if(enc->coded_frame && enc->coded_frame->key_frame)
                                    pkt.flags |= AV_PKT_FLAG_KEY;
                                if (ost->logfile && enc->stats_out) {
                                    fprintf(ost->logfile, "%s", enc->stats_out);
                                }
                                break;
                            default:
                                ret=-1;
                            }
    
                            if(ret<=0)
                                break;
                            pkt.data= bit_buffer;
                            pkt.size= ret;
                            if(enc->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE)
                                pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base);
                            write_frame(os, &pkt, ost->st->codec, ost->bitstream_filters);
                        }
                    }
                }
            }
        }
    
        return 0;
    }
    
    static void print_sdp(AVFormatContext **avc, int n)
    {
        char sdp[2048];
    
        av_sdp_create(avc, n, sdp, sizeof(sdp));
        printf("SDP:\n%s\n", sdp);
        fflush(stdout);
    }
    
    static int copy_chapters(int infile, int outfile)
    {
        AVFormatContext *is = input_files[infile].ctx;
        AVFormatContext *os = output_files[outfile];
        int i;
    
        for (i = 0; i < is->nb_chapters; i++) {
            AVChapter *in_ch = is->chapters[i], *out_ch;
            int64_t ts_off   = av_rescale_q(start_time - input_files[infile].ts_offset,
                                          AV_TIME_BASE_Q, in_ch->time_base);
            int64_t rt       = (recording_time == INT64_MAX) ? INT64_MAX :
                               av_rescale_q(recording_time, AV_TIME_BASE_Q, in_ch->time_base);
    
    
            if (in_ch->end < ts_off)
                continue;
            if (rt != INT64_MAX && in_ch->start > rt + ts_off)
                break;
    
            out_ch = av_mallocz(sizeof(AVChapter));
            if (!out_ch)
                return AVERROR(ENOMEM);
    
            out_ch->id        = in_ch->id;
            out_ch->time_base = in_ch->time_base;
            out_ch->start     = FFMAX(0,  in_ch->start - ts_off);
            out_ch->end       = FFMIN(rt, in_ch->end   - ts_off);
    
            if (metadata_chapters_autocopy)
                av_dict_copy(&out_ch->metadata, in_ch->metadata, 0);
    
            os->nb_chapters++;
            os->chapters = av_realloc(os->chapters, sizeof(AVChapter)*os->nb_chapters);
            if (!os->chapters)
                return AVERROR(ENOMEM);
            os->chapters[os->nb_chapters - 1] = out_ch;
        }
        return 0;
    }
    
    static void parse_forced_key_frames(char *kf, OutputStream *ost,
                                        AVCodecContext *avctx)
    {
        char *p;
        int n = 1, i;
        int64_t t;
    
        for (p = kf; *p; p++)
            if (*p == ',')
                n++;
        ost->forced_kf_count = n;
        ost->forced_kf_pts = av_malloc(sizeof(*ost->forced_kf_pts) * n);
        if (!ost->forced_kf_pts) {
            av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
            exit_program(1);
        }
        for (i = 0; i < n; i++) {
            p = i ? strchr(p, ',') + 1 : kf;
            t = parse_time_or_die("force_key_frames", p, 1);
            ost->forced_kf_pts[i] = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base);
        }
    }
    
    /*
     * The following code is the main loop of the file converter
     */
    static int transcode(AVFormatContext **output_files,
                         int nb_output_files,
                         InputFile *input_files,
                         int nb_input_files,
                         StreamMap *stream_maps, int nb_stream_maps)
    {
        int ret = 0, i, j, k, n, nb_ostreams = 0;
        AVFormatContext *is, *os;
        AVCodecContext *codec, *icodec;
        OutputStream *ost, **ost_table = NULL;
        InputStream *ist;
        char error[1024];
        int want_sdp = 1;
        uint8_t no_packet[MAX_FILES]={0};
        int no_packet_count=0;
    
        if (rate_emu)
            for (i = 0; i < nb_input_streams; i++)
                input_streams[i].start = av_gettime();
    
        /* output stream init */
        nb_ostreams = 0;
        for(i=0;i<nb_output_files;i++) {
            os = output_files[i];
            if (!os->nb_streams && !(os->oformat->flags & AVFMT_NOSTREAMS)) {
                av_dump_format(output_files[i], i, output_files[i]->filename, 1);
                fprintf(stderr, "Output file #%d does not contain any stream\n", i);
                ret = AVERROR(EINVAL);
                goto fail;
            }
            nb_ostreams += os->nb_streams;
        }
        if (nb_stream_maps > 0 && nb_stream_maps != nb_ostreams) {
            fprintf(stderr, "Number of stream maps must match number of output streams\n");
            ret = AVERROR(EINVAL);
            goto fail;
        }
    
        /* Sanity check the mapping args -- do the input files & streams exist? */
        for(i=0;i<nb_stream_maps;i++) {
            int fi = stream_maps[i].file_index;
            int si = stream_maps[i].stream_index;
    
            if (fi < 0 || fi > nb_input_files - 1 ||
                si < 0 || si > input_files[fi].ctx->nb_streams - 1) {
                fprintf(stderr,"Could not find input stream #%d.%d\n", fi, si);
                ret = AVERROR(EINVAL);
                goto fail;
            }