Skip to content
Snippets Groups Projects
ffmpeg.c 149 KiB
Newer Older
  • Learn to ignore specific revisions
  • Fabrice Bellard's avatar
    Fabrice Bellard committed
            return;
    
            if (av_picture_crop((AVPicture *)&picture_crop_temp, (AVPicture *)in_picture, dec->pix_fmt, ost->topBand, ost->leftBand) < 0) {
    
                fprintf(stderr, "error cropping picture\n");
    
                return;
    
            }
            formatted_picture = &picture_crop_temp;
    
        } else {
            formatted_picture = in_picture;
    
        }
    
        final_picture = formatted_picture;
        padding_src = formatted_picture;
        resampling_dst = &ost->pict_tmp;
        if (ost->video_pad) {
            final_picture = &ost->pict_tmp;
            if (ost->video_resample) {
    
                if (av_picture_crop((AVPicture *)&picture_pad_temp, (AVPicture *)final_picture, enc->pix_fmt, ost->padtop, ost->padleft) < 0) {
    
                    fprintf(stderr, "error padding picture\n");
    
                    return;
    
        if(    (ost->resample_height != (ist->st->codec->height - (ost->topBand  + ost->bottomBand)))
            || (ost->resample_width  != (ist->st->codec->width  - (ost->leftBand + ost->rightBand)))
            || (ost->resample_pix_fmt!= ist->st->codec->pix_fmt) ) {
    
            fprintf(stderr,"Input Stream #%d.%d frame size changed to %dx%d, %s\n", ist->file_index, ist->index, ist->st->codec->width,     ist->st->codec->height,avcodec_get_pix_fmt_name(ist->st->codec->pix_fmt));
            if(!ost->video_resample)
                av_exit(1);
        }
    
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        if (ost->video_resample) {
    
            if(  (ost->resample_height != (ist->st->codec->height - (ost->topBand  + ost->bottomBand)))
    
              || (ost->resample_width  != (ist->st->codec->width  - (ost->leftBand + ost->rightBand)))
              || (ost->resample_pix_fmt!= ist->st->codec->pix_fmt) ) {
    
    
                /* keep bands proportional to the frame size */
                topBand    = ((int64_t)ist->st->codec->height * ost->original_topBand    / ost->original_height) & ~1;
                bottomBand = ((int64_t)ist->st->codec->height * ost->original_bottomBand / ost->original_height) & ~1;
                leftBand   = ((int64_t)ist->st->codec->width  * ost->original_leftBand   / ost->original_width)  & ~1;
                rightBand  = ((int64_t)ist->st->codec->width  * ost->original_rightBand  / ost->original_width)  & ~1;
    
                /* sanity check to ensure no bad band sizes sneak in */
                assert(topBand    <= INT_MAX && topBand    >= 0);
                assert(bottomBand <= INT_MAX && bottomBand >= 0);
                assert(leftBand   <= INT_MAX && leftBand   >= 0);
                assert(rightBand  <= INT_MAX && rightBand  >= 0);
    
                ost->topBand    = topBand;
                ost->bottomBand = bottomBand;
                ost->leftBand   = leftBand;
                ost->rightBand  = rightBand;
    
                ost->resample_height = ist->st->codec->height - (ost->topBand  + ost->bottomBand);
                ost->resample_width  = ist->st->codec->width  - (ost->leftBand + ost->rightBand);
    
                ost->resample_pix_fmt= ist->st->codec->pix_fmt;
    
    
                /* initialize a new scaler context */
                sws_freeContext(ost->img_resample_ctx);
                sws_flags = av_get_int(sws_opts, "sws_flags", NULL);
                ost->img_resample_ctx = sws_getContext(
                    ist->st->codec->width  - (ost->leftBand + ost->rightBand),
                    ist->st->codec->height - (ost->topBand  + ost->bottomBand),
                    ist->st->codec->pix_fmt,
                    ost->st->codec->width  - (ost->padleft  + ost->padright),
                    ost->st->codec->height - (ost->padtop   + ost->padbottom),
                    ost->st->codec->pix_fmt,
                    sws_flags, NULL, NULL, NULL);
                if (ost->img_resample_ctx == NULL) {
                    fprintf(stderr, "Cannot get resampling context\n");
                    av_exit(1);
                }
            }
    
            sws_scale(ost->img_resample_ctx, formatted_picture->data, formatted_picture->linesize,
                  0, ost->resample_height, resampling_dst->data, resampling_dst->linesize);
    
            av_picture_pad((AVPicture*)final_picture, (AVPicture *)padding_src,
    
                    enc->height, enc->width, enc->pix_fmt,
                    ost->padtop, ost->padbottom, ost->padleft, ost->padright, padcolor);
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        }
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        /* duplicates frame if needed */
    
            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);
    
                write_frame(s, &pkt, ost->st->codec, bitstream_filters[ost->file_index][pkt.stream_index]);
    
                enc->coded_frame = old_frame;
    
                AVFrame big_picture;
    
                /* better than nothing: use input picture interlaced
                   settings */
                big_picture.interlaced_frame = in_picture->interlaced_frame;
    
                if(avcodec_opts[AVMEDIA_TYPE_VIDEO]->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
    
    Michael Niedermayer's avatar
    Michael Niedermayer committed
                        big_picture.top_field_first = top_field_first;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
                /* handles sameq here. This is not correct because it may
                   not be a global option */
                if (same_quality) {
    
    Michael Niedermayer's avatar
    Michael Niedermayer committed
                    big_picture.quality = ist->st->quality;
                }else
                    big_picture.quality = ost->st->quality;
    
    //            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);
    
                ret = avcodec_encode_video(enc,
    
                                           bit_buffer, bit_buffer_size,
    
    Michael Niedermayer's avatar
    Michael Niedermayer committed
                                           &big_picture);
    
                    fprintf(stderr, "Video encoding failed\n");
    
    Michael Niedermayer's avatar
    Michael Niedermayer committed
                if(ret>0){
    
                    pkt.data= bit_buffer;
    
                    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)
    
                    write_frame(s, &pkt, ost->st->codec, bitstream_filters[ost->file_index][pkt.stream_index]);
    
                    *frame_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);
                    }
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
            }
    
            ost->sync_opts++;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        }
    }
    
    
    static double psnr(double d){
    
        return -10.0*log(d)/log(10.0);
    
    static void do_video_stats(AVFormatContext *os, AVOutputStream *ost,
    
    {
        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) {
    
        if (enc->codec_type == AVMEDIA_TYPE_VIDEO) {
    
            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);
    
            ti1 = ost->sync_opts * av_q2d(enc->time_base);
    
            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_pict_type_char(enc->coded_frame->pict_type));
    
    static void print_report(AVFormatContext **output_files,
    
                             AVOutputStream **ost_table, int nb_ostreams,
                             int is_last_report)
    
        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];
    
            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;
        }
    
    
        total_size = url_fsize(oc->pb);
    
        if(total_size<0) // FIXME improve url_fsize() so it works with non seekable output too
    
            total_size= url_ftell(oc->pb);
    
        buf[0] = '\0';
        ti1 = 1e10;
        vid = 0;
        for(i=0;i<nb_ostreams;i++) {
            ost = ost_table[i];
    
            if (vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
    
                snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "q=%2.1f ",
    
                         enc->coded_frame->quality/(float)FF_QP2LAMBDA : -1);
    
            if (!vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
    
                float t = (av_gettime()-timer_start) / 1000000.0;
    
    
                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,
    
                         enc->coded_frame->quality/(float)FF_QP2LAMBDA : -1);
    
                    snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "L");
    
                    int j;
                    int qp= lrintf(enc->coded_frame->quality/(float)FF_QP2LAMBDA);
    
                    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));
    
            pts = (double)ost->st->pts.val * av_q2d(ost->st->time_base);
    
        if (verbose || 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",
    
            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);
    
    
        if (is_last_report && verbose >= 0){
            int64_t raw= audio_size + video_size + extra_size;
    
            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
            );
        }
    
    /* pkt = NULL means EOF (needed to flush decoder buffers) */
    static int output_packet(AVInputStream *ist, int ist_index,
                             AVOutputStream **ost_table, int nb_ostreams,
    
        int ret, i;
    
        static unsigned int samples_size= 0;
    
        AVSubtitle subtitle, *subtitle_to_free;
        int got_subtitle;
    
        AVPacket avpkt;
    
        int bps = av_get_bits_per_sample_format(ist->st->codec->sample_fmt)>>3;
    
        if(ist->next_pts == AV_NOPTS_VALUE)
            ist->next_pts= ist->pts;
    
    
            av_init_packet(&avpkt);
    
            avpkt.data = NULL;
            avpkt.size = 0;
    
        if(pkt->dts != AV_NOPTS_VALUE)
            ist->next_pts = ist->pts = av_rescale_q(pkt->dts, 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 && ist->next_pts != ist->pts)) {
    
            uint8_t *data_buf, *decoded_data_buf;
            int data_size, decoded_data_size;
    
            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);
    
            decoded_data_buf = NULL; /* fail safe */
            decoded_data_size= 0;
            data_buf  = avpkt.data;
            data_size = avpkt.size;
    
                    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.data += ret;
                    avpkt.size -= ret;
    
                    /* decoded_data_size < 0, it seems they are overflows */
                    if (decoded_data_size <= 0) {
    
                    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);
    
    Michael Niedermayer's avatar
    Michael Niedermayer committed
                    break;}
    
                        decoded_data_size = (ist->st->codec->width * ist->st->codec->height * 3) / 2;
    
                        avcodec_get_frame_defaults(&picture);
    
    
                        ret = avcodec_decode_video2(ist->st->codec,
                                                    &picture, &got_picture, &avpkt);
    
                            goto fail_decode;
                        if (!got_picture) {
                            /* no picture yet */
                            goto discard_packet;
                        }
    
                        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) /
    
                        avpkt.size = 0;
    
                    ret = avcodec_decode_subtitle2(ist->st->codec,
                                                   &subtitle, &got_subtitle, &avpkt);
    
                    avpkt.size = 0;
    
                switch(ist->st->codec->codec_type) {
    
                    ist->next_pts += ((int64_t)AV_TIME_BASE * ist->st->codec->frame_size) /
    
                        ist->st->codec->sample_rate;
    
                    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) /
    
                ret = avpkt.size;
                avpkt.size = 0;
    
            if (ist->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
    
                pre_process_video_frame(ist, (AVPicture *)&picture,
                                        &buffer_to_free);
            }
    
            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;
    
                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) {
                        os = output_files[ost->file_index];
    
                        /* set the input output pts pairs */
                        //ost->sync_ipts = (double)(ist->pts + input_files_ts_offset[ist->file_index] - start_time)/ AV_TIME_BASE;
    
                        if (ost->encoding_needed) {
    
                            switch(ost->st->codec->codec_type) {
    
                                do_audio_out(os, ost, ist, decoded_data_buf, decoded_data_size);
    
                                do_video_out(os, ost, ist, &picture, &frame_size);
    
                                if (vstats_filename && frame_size)
    
                                    do_video_stats(os, ost, frame_size);
                                break;
    
                                do_subtitle_out(os, ost, ist, &subtitle,
                                                pkt->pts);
                                break;
                            default:
    
                            }
                        } 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);
    
    
                            if ((!ost->frame_number && !(pkt->flags & AV_PKT_FLAG_KEY)) && !copy_initial_nonkeyframes)
    
                            /* 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)
    
                            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;
    
    Baptiste Coudurier's avatar
    Baptiste Coudurier committed
                            if (pkt->dts == AV_NOPTS_VALUE)
    
                                opkt.dts = av_rescale_q(ist->pts, AV_TIME_BASE_Q, ost->st->time_base);
    
    Baptiste Coudurier's avatar
    Baptiste Coudurier committed
                            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))
    
    Michael Niedermayer's avatar
    Michael Niedermayer committed
                                    opkt.destruct= av_destruct_packet;
    
                            write_frame(os, &opkt, ost->st->codec, bitstream_filters[ost->file_index][opkt.stream_index]);
    
                            ost->st->codec->frame_number++;
                            ost->frame_number++;
                            av_free_packet(&opkt);
    
                }
            av_free(buffer_to_free);
            /* XXX: allocate the subtitles in the codec ? */
            if (subtitle_to_free) {
                if (subtitle_to_free->rects != NULL) {
                    for (i = 0; i < subtitle_to_free->num_rects; i++) {
    
                        av_freep(&subtitle_to_free->rects[i]->pict.data[0]);
                        av_freep(&subtitle_to_free->rects[i]->pict.data[1]);
    
                        av_freep(&subtitle_to_free->rects[i]);
    
                    av_freep(&subtitle_to_free->rects);
    
                subtitle_to_free->num_rects = 0;
                subtitle_to_free = NULL;
    
        if (pkt == NULL) {
            /* EOF handling */
    
            for(i=0;i<nb_ostreams;i++) {
                ost = ost_table[i];
                if (ost->source_index == ist_index) {
    
                    os = output_files[ost->file_index];
    
                    if(ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && enc->frame_size <=1)
    
                    if(ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (os->oformat->flags & AVFMT_RAWPICTURE))
    
                        continue;
    
                    if (ost->encoding_needed) {
                        for(;;) {
                            AVPacket pkt;
    
                            av_init_packet(&pkt);
                            pkt.stream_index= ost->index;
    
                                ret = 0;
                                /* encode any samples remaining in fifo */
    
                                if (fifo_bytes > 0) {
    
                                    int osize = av_get_bits_per_sample_format(enc->sample_fmt) >> 3;
    
                                    av_fifo_generic_read(ost->fifo, samples, 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 (samples_size < frame_bytes)
                                            av_exit(1);
                                        memset((uint8_t*)samples+fifo_bytes, 0, frame_bytes - fifo_bytes);
                                    }
    
    
    Baptiste Coudurier's avatar
    Baptiste Coudurier committed
                                    ret = avcodec_encode_audio(enc, bit_buffer, bit_buffer_size, samples);
    
                                    pkt.duration = av_rescale((int64_t)enc->frame_size*ost->st->time_base.den,
                                                              ost->st->time_base.num, enc->sample_rate);
    
    Michael Niedermayer's avatar
    Michael Niedermayer committed
                                }
                                if(ret <= 0) {
    
                                    ret = avcodec_encode_audio(enc, bit_buffer, bit_buffer_size, NULL);
                                }
    
                                if (ret < 0) {
                                    fprintf(stderr, "Audio encoding failed\n");
                                    av_exit(1);
                                }
    
                                audio_size += ret;
    
                                ret = avcodec_encode_video(enc, bit_buffer, bit_buffer_size, NULL);
    
                                if (ret < 0) {
                                    fprintf(stderr, "Video encoding failed\n");
                                    av_exit(1);
                                }
    
                                video_size += ret;
                                if(enc->coded_frame && enc->coded_frame->key_frame)
    
                                if (ost->logfile && enc->stats_out) {
                                    fprintf(ost->logfile, "%s", enc->stats_out);
                                }
                                break;
                            default:
                                ret=-1;
                            }
    
                            pkt.data= bit_buffer;
    
                            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, bitstream_filters[ost->file_index][pkt.stream_index]);
    
    static void print_sdp(AVFormatContext **avc, int n)
    {
        char sdp[2048];
    
        avf_sdp_create(avc, n, sdp, sizeof(sdp));
        printf("SDP:\n%s\n", sdp);
    
    Luca Barbato's avatar
    Luca Barbato committed
        fflush(stdout);
    
    static int copy_chapters(int infile, int outfile)
    {
        AVFormatContext *is = input_files[infile];
        AVFormatContext *os = output_files[outfile];
        int i;
    
        for (i = 0; i < is->nb_chapters; i++) {
            AVChapter *in_ch = is->chapters[i], *out_ch;
            AVMetadataTag *t = NULL;
            int64_t ts_off   = av_rescale_q(start_time - input_files_ts_offset[infile],
                                          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);
    
            while ((t = av_metadata_get(in_ch->metadata, "", t, AV_METADATA_IGNORE_SUFFIX)))
                av_metadata_set2(&out_ch->metadata, t->key, t->value, 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;
    }
    
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
    /*
     * The following code is the main loop of the file converter
     */
    
    static int av_transcode(AVFormatContext **output_files,
    
    Stefano Sabatini's avatar
    Stefano Sabatini committed
                            int nb_output_files,
                            AVFormatContext **input_files,
                            int nb_input_files,
                            AVStreamMap *stream_maps, int nb_stream_maps)
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
    {
    
        int ret = 0, i, j, k, n, nb_istreams = 0, nb_ostreams = 0;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        AVFormatContext *is, *os;
        AVCodecContext *codec, *icodec;
        AVOutputStream *ost, **ost_table = NULL;
        AVInputStream *ist, **ist_table = NULL;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        AVInputFile *file_table;
    
        uint8_t no_packet[MAX_FILES]={0};
        int no_packet_count=0;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
    
    
        file_table= av_mallocz(nb_input_files * sizeof(AVInputFile));
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        if (!file_table)
            goto fail;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        /* input stream init */
        j = 0;
        for(i=0;i<nb_input_files;i++) {
            is = input_files[i];
            file_table[i].ist_index = j;
    
            file_table[i].nb_streams = is->nb_streams;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
            j += is->nb_streams;
        }
        nb_istreams = j;
    
        ist_table = av_mallocz(nb_istreams * sizeof(AVInputStream *));
        if (!ist_table)
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
            goto fail;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        for(i=0;i<nb_istreams;i++) {
            ist = av_mallocz(sizeof(AVInputStream));
            if (!ist)
                goto fail;
            ist_table[i] = ist;
        }
        j = 0;
        for(i=0;i<nb_input_files;i++) {
            is = input_files[i];
            for(k=0;k<is->nb_streams;k++) {
                ist = ist_table[j++];
                ist->st = is->streams[k];
                ist->file_index = i;
                ist->index = k;
                ist->discard = 1; /* the stream is discarded by default
                                     (changed later) */
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
            }
        }
    
        /* output stream init */
        nb_ostreams = 0;
        for(i=0;i<nb_output_files;i++) {
            os = output_files[i];
    
                dump_format(output_files[i], i, output_files[i]->filename, 1);
                fprintf(stderr, "Output file #%d does not contain any stream\n", i);
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
            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");
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        }
    
    
        /* 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 > file_table[fi].nb_streams - 1) {
                fprintf(stderr,"Could not find input stream #%d.%d\n", fi, si);
    
            fi = stream_maps[i].sync_file_index;
            si = stream_maps[i].sync_stream_index;
            if (fi < 0 || fi > nb_input_files - 1 ||
                si < 0 || si > file_table[fi].nb_streams - 1) {
                fprintf(stderr,"Could not find sync stream #%d.%d\n", fi, si);
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        ost_table = av_mallocz(sizeof(AVOutputStream *) * nb_ostreams);
        if (!ost_table)
            goto fail;
        for(i=0;i<nb_ostreams;i++) {
            ost = av_mallocz(sizeof(AVOutputStream));
            if (!ost)
                goto fail;
            ost_table[i] = ost;
        }
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        n = 0;
        for(k=0;k<nb_output_files;k++) {
            os = output_files[k];
    
            for(i=0;i<os->nb_streams;i++,n++) {
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
                int found;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
                ost->file_index = k;
                ost->index = i;
                ost->st = os->streams[i];
                if (nb_stream_maps > 0) {
    
                    ost->source_index = file_table[stream_maps[n].file_index].ist_index +
                        stream_maps[n].stream_index;
    
                    /* Sanity check that the stream types match */
    
                    if (ist_table[ost->source_index]->st->codec->codec_type != ost->st->codec->codec_type) {
    
                        int i= ost->file_index;
                        dump_format(output_files[i], i, output_files[i]->filename, 1);
    
                        fprintf(stderr, "Codec type mismatch for mapping #%d.%d -> #%d.%d\n",
    
                            stream_maps[n].file_index, stream_maps[n].stream_index,
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
                } else {
    
                        /* get corresponding input stream index : we select the first one with the right type */
                        found = 0;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
                        for(j=0;j<nb_istreams;j++) {
    
                            int skip=0;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
                            ist = ist_table[j];
    
                            if(opt_programid){
                                int pi,si;
                                AVFormatContext *f= input_files[ ist->file_index ];
                                skip=1;
                                for(pi=0; pi<f->nb_programs; pi++){
                                    AVProgram *p= f->programs[pi];
                                    if(p->id == opt_programid)
                                        for(si=0; si<p->nb_stream_indexes; si++){
                                            if(f->streams[ p->stream_index[si] ] == ist->st)
                                                skip=0;
                                        }
                                }
                            }
                            if (ist->discard && ist->st->discard != AVDISCARD_ALL && !skip &&
    
                                ist->st->codec->codec_type == ost->st->codec->codec_type) {
    
                                if(best_nb_frames < ist->st->codec_info_nb_frames){
                                    best_nb_frames= ist->st->codec_info_nb_frames;
                                    ost->source_index = j;
                                    found = 1;
                                }
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
                            }
                        }
    
    
                    if (!found) {
                        if(! opt_programid) {
                            /* try again and reuse existing stream */
                            for(j=0;j<nb_istreams;j++) {
                                ist = ist_table[j];
    
                                if (   ist->st->codec->codec_type == ost->st->codec->codec_type
                                    && ist->st->discard != AVDISCARD_ALL) {
    
                                    ost->source_index = j;
                                    found = 1;
                                }
                            }
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
                        if (!found) {
    
                            int i= ost->file_index;
                            dump_format(output_files[i], i, output_files[i]->filename, 1);
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
                            fprintf(stderr, "Could not find input stream matching output stream #%d.%d\n",
                                    ost->file_index, ost->index);
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
                        }
                    }
                }
                ist = ist_table[ost->source_index];
                ist->discard = 0;
    
                ost->sync_ist = (nb_stream_maps > 0) ?
    
                    ist_table[file_table[stream_maps[n].sync_file_index].ist_index +
                             stream_maps[n].sync_stream_index] : ist;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
            }
        }
    
        /* for each output stream, we compute the right encoding parameters */
        for(i=0;i<nb_ostreams;i++) {
    
            AVMetadataTag *t = NULL;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
            ost = ost_table[i];
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
            ist = ist_table[ost->source_index];
    
    
            codec = ost->st->codec;
            icodec = ist->st->codec;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
    
    
            while ((t = av_metadata_get(ist->st->metadata, "", t, AV_METADATA_IGNORE_SUFFIX))) {
    
                av_metadata_set2(&ost->st->metadata, t->key, t->value, AV_METADATA_DONT_OVERWRITE);
    
            ost->st->disposition = ist->st->disposition;
    
            codec->bits_per_raw_sample= icodec->bits_per_raw_sample;
    
            codec->chroma_sample_location = icodec->chroma_sample_location;
    
            if (ost->st->stream_copy) {
                /* if stream_copy is selected, no need to decode or encode */
                codec->codec_id = icodec->codec_id;
                codec->codec_type = icodec->codec_type;
    
                       || av_codec_get_id (os->oformat->codec_tag, icodec->codec_tag) == codec->codec_id
    
                       || av_codec_get_tag(os->oformat->codec_tag, icodec->codec_id) <= 0)
                        codec->codec_tag = icodec->codec_tag;
                }
    
    
                codec->bit_rate = icodec->bit_rate;
    
                codec->extradata= icodec->extradata;
                codec->extradata_size= icodec->extradata_size;
    
                if(av_q2d(icodec->time_base)*icodec->ticks_per_frame > av_q2d(ist->st->time_base) && av_q2d(ist->st->time_base) < 1.0/1000){
    
                    codec->time_base = icodec->time_base;
    
                    codec->time_base.num *= icodec->ticks_per_frame;
                }else
    
                    codec->time_base = ist->st->time_base;
    
                    if(audio_volume != 256) {
                        fprintf(stderr,"-acodec copy and -vol are incompatible (frames are not decoded)\n");
                        av_exit(1);
                    }
    
                    codec->channel_layout = icodec->channel_layout;
    
                    codec->sample_rate = icodec->sample_rate;
                    codec->channels = icodec->channels;
    
                    codec->frame_size = icodec->frame_size;
    
                    codec->block_align= icodec->block_align;
    
                    if(codec->block_align == 1 && codec->codec_id == CODEC_ID_MP3)
                        codec->block_align= 0;
    
                    if(codec->codec_id == CODEC_ID_AC3)
                        codec->block_align= 0;
    
                    codec->width = icodec->width;
                    codec->height = icodec->height;
    
                    codec->has_b_frames = icodec->has_b_frames;
    
                    codec->width = icodec->width;
                    codec->height = icodec->height;