]> git.sesse.net Git - ffmpeg/blob - avconv.c
mpegvideo: unref old current_picture before allocating a new one
[ffmpeg] / avconv.c
1 /*
2  * avconv main
3  * Copyright (c) 2000-2011 The libav developers.
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "config.h"
23 #include <ctype.h>
24 #include <string.h>
25 #include <math.h>
26 #include <stdlib.h>
27 #include <errno.h>
28 #include <signal.h>
29 #include <limits.h>
30 #include "libavformat/avformat.h"
31 #include "libavdevice/avdevice.h"
32 #include "libswscale/swscale.h"
33 #include "libavresample/avresample.h"
34 #include "libavutil/opt.h"
35 #include "libavutil/channel_layout.h"
36 #include "libavutil/parseutils.h"
37 #include "libavutil/samplefmt.h"
38 #include "libavutil/colorspace.h"
39 #include "libavutil/fifo.h"
40 #include "libavutil/intreadwrite.h"
41 #include "libavutil/dict.h"
42 #include "libavutil/mathematics.h"
43 #include "libavutil/pixdesc.h"
44 #include "libavutil/avstring.h"
45 #include "libavutil/libm.h"
46 #include "libavutil/imgutils.h"
47 #include "libavutil/time.h"
48 #include "libavformat/os_support.h"
49
50 # include "libavfilter/avfilter.h"
51 # include "libavfilter/buffersrc.h"
52 # include "libavfilter/buffersink.h"
53
54 #if HAVE_SYS_RESOURCE_H
55 #include <sys/time.h>
56 #include <sys/types.h>
57 #include <sys/resource.h>
58 #elif HAVE_GETPROCESSTIMES
59 #include <windows.h>
60 #endif
61 #if HAVE_GETPROCESSMEMORYINFO
62 #include <windows.h>
63 #include <psapi.h>
64 #endif
65
66 #if HAVE_SYS_SELECT_H
67 #include <sys/select.h>
68 #endif
69
70 #if HAVE_PTHREADS
71 #include <pthread.h>
72 #endif
73
74 #include <time.h>
75
76 #include "avconv.h"
77 #include "cmdutils.h"
78
79 #include "libavutil/avassert.h"
80
81 const char program_name[] = "avconv";
82 const int program_birth_year = 2000;
83
84 static FILE *vstats_file;
85
86 static int64_t video_size = 0;
87 static int64_t audio_size = 0;
88 static int64_t extra_size = 0;
89 static int nb_frames_dup = 0;
90 static int nb_frames_drop = 0;
91
92
93
94 #if HAVE_PTHREADS
95 /* signal to input threads that they should exit; set by the main thread */
96 static int transcoding_finished;
97 #endif
98
99 #define DEFAULT_PASS_LOGFILENAME_PREFIX "av2pass"
100
101 InputStream **input_streams = NULL;
102 int        nb_input_streams = 0;
103 InputFile   **input_files   = NULL;
104 int        nb_input_files   = 0;
105
106 OutputStream **output_streams = NULL;
107 int         nb_output_streams = 0;
108 OutputFile   **output_files   = NULL;
109 int         nb_output_files   = 0;
110
111 FilterGraph **filtergraphs;
112 int        nb_filtergraphs;
113
114 static void term_exit(void)
115 {
116     av_log(NULL, AV_LOG_QUIET, "");
117 }
118
119 static volatile int received_sigterm = 0;
120 static volatile int received_nb_signals = 0;
121
122 static void
123 sigterm_handler(int sig)
124 {
125     received_sigterm = sig;
126     received_nb_signals++;
127     term_exit();
128 }
129
130 static void term_init(void)
131 {
132     signal(SIGINT , sigterm_handler); /* Interrupt (ANSI).    */
133     signal(SIGTERM, sigterm_handler); /* Termination (ANSI).  */
134 #ifdef SIGXCPU
135     signal(SIGXCPU, sigterm_handler);
136 #endif
137 }
138
139 static int decode_interrupt_cb(void *ctx)
140 {
141     return received_nb_signals > 1;
142 }
143
144 const AVIOInterruptCB int_cb = { decode_interrupt_cb, NULL };
145
146 static void exit_program(void)
147 {
148     int i, j;
149
150     for (i = 0; i < nb_filtergraphs; i++) {
151         avfilter_graph_free(&filtergraphs[i]->graph);
152         for (j = 0; j < filtergraphs[i]->nb_inputs; j++) {
153             av_freep(&filtergraphs[i]->inputs[j]->name);
154             av_freep(&filtergraphs[i]->inputs[j]);
155         }
156         av_freep(&filtergraphs[i]->inputs);
157         for (j = 0; j < filtergraphs[i]->nb_outputs; j++) {
158             av_freep(&filtergraphs[i]->outputs[j]->name);
159             av_freep(&filtergraphs[i]->outputs[j]);
160         }
161         av_freep(&filtergraphs[i]->outputs);
162         av_freep(&filtergraphs[i]->graph_desc);
163         av_freep(&filtergraphs[i]);
164     }
165     av_freep(&filtergraphs);
166
167     /* close files */
168     for (i = 0; i < nb_output_files; i++) {
169         AVFormatContext *s = output_files[i]->ctx;
170         if (!(s->oformat->flags & AVFMT_NOFILE) && s->pb)
171             avio_close(s->pb);
172         avformat_free_context(s);
173         av_dict_free(&output_files[i]->opts);
174         av_freep(&output_files[i]);
175     }
176     for (i = 0; i < nb_output_streams; i++) {
177         AVBitStreamFilterContext *bsfc = output_streams[i]->bitstream_filters;
178         while (bsfc) {
179             AVBitStreamFilterContext *next = bsfc->next;
180             av_bitstream_filter_close(bsfc);
181             bsfc = next;
182         }
183         output_streams[i]->bitstream_filters = NULL;
184         avcodec_free_frame(&output_streams[i]->filtered_frame);
185
186         av_freep(&output_streams[i]->forced_keyframes);
187         av_freep(&output_streams[i]->avfilter);
188         av_freep(&output_streams[i]->logfile_prefix);
189         av_freep(&output_streams[i]);
190     }
191     for (i = 0; i < nb_input_files; i++) {
192         avformat_close_input(&input_files[i]->ctx);
193         av_freep(&input_files[i]);
194     }
195     for (i = 0; i < nb_input_streams; i++) {
196         av_frame_free(&input_streams[i]->decoded_frame);
197         av_frame_free(&input_streams[i]->filter_frame);
198         av_dict_free(&input_streams[i]->opts);
199         av_freep(&input_streams[i]->filters);
200         av_freep(&input_streams[i]);
201     }
202
203     if (vstats_file)
204         fclose(vstats_file);
205     av_free(vstats_filename);
206
207     av_freep(&input_streams);
208     av_freep(&input_files);
209     av_freep(&output_streams);
210     av_freep(&output_files);
211
212     uninit_opts();
213
214     avformat_network_deinit();
215
216     if (received_sigterm) {
217         av_log(NULL, AV_LOG_INFO, "Received signal %d: terminating.\n",
218                (int) received_sigterm);
219         exit (255);
220     }
221 }
222
223 void assert_avoptions(AVDictionary *m)
224 {
225     AVDictionaryEntry *t;
226     if ((t = av_dict_get(m, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
227         av_log(NULL, AV_LOG_FATAL, "Option %s not found.\n", t->key);
228         exit(1);
229     }
230 }
231
232 static void abort_codec_experimental(AVCodec *c, int encoder)
233 {
234     const char *codec_string = encoder ? "encoder" : "decoder";
235     AVCodec *codec;
236     av_log(NULL, AV_LOG_FATAL, "%s '%s' is experimental and might produce bad "
237             "results.\nAdd '-strict experimental' if you want to use it.\n",
238             codec_string, c->name);
239     codec = encoder ? avcodec_find_encoder(c->id) : avcodec_find_decoder(c->id);
240     if (!(codec->capabilities & CODEC_CAP_EXPERIMENTAL))
241         av_log(NULL, AV_LOG_FATAL, "Or use the non experimental %s '%s'.\n",
242                codec_string, codec->name);
243     exit(1);
244 }
245
246 /*
247  * Update the requested input sample format based on the output sample format.
248  * This is currently only used to request float output from decoders which
249  * support multiple sample formats, one of which is AV_SAMPLE_FMT_FLT.
250  * Ideally this will be removed in the future when decoders do not do format
251  * conversion and only output in their native format.
252  */
253 static void update_sample_fmt(AVCodecContext *dec, AVCodec *dec_codec,
254                               AVCodecContext *enc)
255 {
256     /* if sample formats match or a decoder sample format has already been
257        requested, just return */
258     if (enc->sample_fmt == dec->sample_fmt ||
259         dec->request_sample_fmt > AV_SAMPLE_FMT_NONE)
260         return;
261
262     /* if decoder supports more than one output format */
263     if (dec_codec && dec_codec->sample_fmts &&
264         dec_codec->sample_fmts[0] != AV_SAMPLE_FMT_NONE &&
265         dec_codec->sample_fmts[1] != AV_SAMPLE_FMT_NONE) {
266         const enum AVSampleFormat *p;
267         int min_dec = INT_MAX, min_inc = INT_MAX;
268         enum AVSampleFormat dec_fmt = AV_SAMPLE_FMT_NONE;
269         enum AVSampleFormat inc_fmt = AV_SAMPLE_FMT_NONE;
270
271         /* find a matching sample format in the encoder */
272         for (p = dec_codec->sample_fmts; *p != AV_SAMPLE_FMT_NONE; p++) {
273             if (*p == enc->sample_fmt) {
274                 dec->request_sample_fmt = *p;
275                 return;
276             } else {
277                 enum AVSampleFormat dfmt = av_get_packed_sample_fmt(*p);
278                 enum AVSampleFormat efmt = av_get_packed_sample_fmt(enc->sample_fmt);
279                 int fmt_diff = 32 * abs(dfmt - efmt);
280                 if (av_sample_fmt_is_planar(*p) !=
281                     av_sample_fmt_is_planar(enc->sample_fmt))
282                     fmt_diff++;
283                 if (dfmt == efmt) {
284                     min_inc = fmt_diff;
285                     inc_fmt = *p;
286                 } else if (dfmt > efmt) {
287                     if (fmt_diff < min_inc) {
288                         min_inc = fmt_diff;
289                         inc_fmt = *p;
290                     }
291                 } else {
292                     if (fmt_diff < min_dec) {
293                         min_dec = fmt_diff;
294                         dec_fmt = *p;
295                     }
296                 }
297             }
298         }
299
300         /* if none match, provide the one that matches quality closest */
301         dec->request_sample_fmt = min_inc != INT_MAX ? inc_fmt : dec_fmt;
302     }
303 }
304
305 static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost)
306 {
307     AVBitStreamFilterContext *bsfc = ost->bitstream_filters;
308     AVCodecContext          *avctx = ost->st->codec;
309     int ret;
310
311     /*
312      * Audio encoders may split the packets --  #frames in != #packets out.
313      * But there is no reordering, so we can limit the number of output packets
314      * by simply dropping them here.
315      * Counting encoded video frames needs to be done separately because of
316      * reordering, see do_video_out()
317      */
318     if (!(avctx->codec_type == AVMEDIA_TYPE_VIDEO && avctx->codec)) {
319         if (ost->frame_number >= ost->max_frames) {
320             av_free_packet(pkt);
321             return;
322         }
323         ost->frame_number++;
324     }
325
326     while (bsfc) {
327         AVPacket new_pkt = *pkt;
328         int a = av_bitstream_filter_filter(bsfc, avctx, NULL,
329                                            &new_pkt.data, &new_pkt.size,
330                                            pkt->data, pkt->size,
331                                            pkt->flags & AV_PKT_FLAG_KEY);
332         if (a > 0) {
333             av_free_packet(pkt);
334             new_pkt.buf = av_buffer_create(new_pkt.data, new_pkt.size,
335                                            av_buffer_default_free, NULL, 0);
336             if (!new_pkt.buf)
337                 exit(1);
338         } else if (a < 0) {
339             av_log(NULL, AV_LOG_ERROR, "%s failed for stream %d, codec %s",
340                    bsfc->filter->name, pkt->stream_index,
341                    avctx->codec ? avctx->codec->name : "copy");
342             print_error("", a);
343             if (exit_on_error)
344                 exit(1);
345         }
346         *pkt = new_pkt;
347
348         bsfc = bsfc->next;
349     }
350
351     if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS) &&
352         ost->last_mux_dts != AV_NOPTS_VALUE &&
353         pkt->dts < ost->last_mux_dts + !(s->oformat->flags & AVFMT_TS_NONSTRICT)) {
354         av_log(NULL, AV_LOG_WARNING, "Non-monotonous DTS in output stream "
355                "%d:%d; previous: %"PRId64", current: %"PRId64"; ",
356                ost->file_index, ost->st->index, ost->last_mux_dts, pkt->dts);
357         if (exit_on_error) {
358             av_log(NULL, AV_LOG_FATAL, "aborting.\n");
359             exit(1);
360         }
361         av_log(NULL, AV_LOG_WARNING, "changing to %"PRId64". This may result "
362                "in incorrect timestamps in the output file.\n",
363                ost->last_mux_dts + 1);
364         pkt->dts = ost->last_mux_dts + 1;
365         if (pkt->pts != AV_NOPTS_VALUE)
366             pkt->pts = FFMAX(pkt->pts, pkt->dts);
367     }
368     ost->last_mux_dts = pkt->dts;
369
370     pkt->stream_index = ost->index;
371     ret = av_interleaved_write_frame(s, pkt);
372     if (ret < 0) {
373         print_error("av_interleaved_write_frame()", ret);
374         exit(1);
375     }
376 }
377
378 static int check_recording_time(OutputStream *ost)
379 {
380     OutputFile *of = output_files[ost->file_index];
381
382     if (of->recording_time != INT64_MAX &&
383         av_compare_ts(ost->sync_opts - ost->first_pts, ost->st->codec->time_base, of->recording_time,
384                       AV_TIME_BASE_Q) >= 0) {
385         ost->finished = 1;
386         return 0;
387     }
388     return 1;
389 }
390
391 static void do_audio_out(AVFormatContext *s, OutputStream *ost,
392                          AVFrame *frame)
393 {
394     AVCodecContext *enc = ost->st->codec;
395     AVPacket pkt;
396     int got_packet = 0;
397
398     av_init_packet(&pkt);
399     pkt.data = NULL;
400     pkt.size = 0;
401
402     if (frame->pts == AV_NOPTS_VALUE || audio_sync_method < 0)
403         frame->pts = ost->sync_opts;
404     ost->sync_opts = frame->pts + frame->nb_samples;
405
406     if (avcodec_encode_audio2(enc, &pkt, frame, &got_packet) < 0) {
407         av_log(NULL, AV_LOG_FATAL, "Audio encoding failed\n");
408         exit(1);
409     }
410
411     if (got_packet) {
412         if (pkt.pts != AV_NOPTS_VALUE)
413             pkt.pts      = av_rescale_q(pkt.pts,      enc->time_base, ost->st->time_base);
414         if (pkt.dts != AV_NOPTS_VALUE)
415             pkt.dts      = av_rescale_q(pkt.dts,      enc->time_base, ost->st->time_base);
416         if (pkt.duration > 0)
417             pkt.duration = av_rescale_q(pkt.duration, enc->time_base, ost->st->time_base);
418
419         write_frame(s, &pkt, ost);
420
421         audio_size += pkt.size;
422     }
423 }
424
425 static void do_subtitle_out(AVFormatContext *s,
426                             OutputStream *ost,
427                             InputStream *ist,
428                             AVSubtitle *sub,
429                             int64_t pts)
430 {
431     static uint8_t *subtitle_out = NULL;
432     int subtitle_out_max_size = 1024 * 1024;
433     int subtitle_out_size, nb, i;
434     AVCodecContext *enc;
435     AVPacket pkt;
436
437     if (pts == AV_NOPTS_VALUE) {
438         av_log(NULL, AV_LOG_ERROR, "Subtitle packets must have a pts\n");
439         if (exit_on_error)
440             exit(1);
441         return;
442     }
443
444     enc = ost->st->codec;
445
446     if (!subtitle_out) {
447         subtitle_out = av_malloc(subtitle_out_max_size);
448     }
449
450     /* Note: DVB subtitle need one packet to draw them and one other
451        packet to clear them */
452     /* XXX: signal it in the codec context ? */
453     if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE)
454         nb = 2;
455     else
456         nb = 1;
457
458     for (i = 0; i < nb; i++) {
459         ost->sync_opts = av_rescale_q(pts, ist->st->time_base, enc->time_base);
460         if (!check_recording_time(ost))
461             return;
462
463         sub->pts = av_rescale_q(pts, ist->st->time_base, AV_TIME_BASE_Q);
464         // start_display_time is required to be 0
465         sub->pts               += av_rescale_q(sub->start_display_time, (AVRational){ 1, 1000 }, AV_TIME_BASE_Q);
466         sub->end_display_time  -= sub->start_display_time;
467         sub->start_display_time = 0;
468         subtitle_out_size = avcodec_encode_subtitle(enc, subtitle_out,
469                                                     subtitle_out_max_size, sub);
470         if (subtitle_out_size < 0) {
471             av_log(NULL, AV_LOG_FATAL, "Subtitle encoding failed\n");
472             exit(1);
473         }
474
475         av_init_packet(&pkt);
476         pkt.data = subtitle_out;
477         pkt.size = subtitle_out_size;
478         pkt.pts  = av_rescale_q(sub->pts, AV_TIME_BASE_Q, ost->st->time_base);
479         if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE) {
480             /* XXX: the pts correction is handled here. Maybe handling
481                it in the codec would be better */
482             if (i == 0)
483                 pkt.pts += 90 * sub->start_display_time;
484             else
485                 pkt.pts += 90 * sub->end_display_time;
486         }
487         write_frame(s, &pkt, ost);
488     }
489 }
490
491 static void do_video_out(AVFormatContext *s,
492                          OutputStream *ost,
493                          AVFrame *in_picture,
494                          int *frame_size)
495 {
496     int ret, format_video_sync;
497     AVPacket pkt;
498     AVCodecContext *enc = ost->st->codec;
499
500     *frame_size = 0;
501
502     format_video_sync = video_sync_method;
503     if (format_video_sync == VSYNC_AUTO)
504         format_video_sync = (s->oformat->flags & AVFMT_NOTIMESTAMPS) ? VSYNC_PASSTHROUGH :
505                             (s->oformat->flags & AVFMT_VARIABLE_FPS) ? VSYNC_VFR : VSYNC_CFR;
506     if (format_video_sync != VSYNC_PASSTHROUGH &&
507         ost->frame_number &&
508         in_picture->pts != AV_NOPTS_VALUE &&
509         in_picture->pts < ost->sync_opts) {
510         nb_frames_drop++;
511         av_log(NULL, AV_LOG_VERBOSE, "*** drop!\n");
512         return;
513     }
514
515     if (in_picture->pts == AV_NOPTS_VALUE)
516         in_picture->pts = ost->sync_opts;
517     ost->sync_opts = in_picture->pts;
518
519
520     if (!ost->frame_number)
521         ost->first_pts = in_picture->pts;
522
523     av_init_packet(&pkt);
524     pkt.data = NULL;
525     pkt.size = 0;
526
527     if (ost->frame_number >= ost->max_frames)
528         return;
529
530     if (s->oformat->flags & AVFMT_RAWPICTURE &&
531         enc->codec->id == AV_CODEC_ID_RAWVIDEO) {
532         /* raw pictures are written as AVPicture structure to
533            avoid any copies. We support temporarily the older
534            method. */
535         enc->coded_frame->interlaced_frame = in_picture->interlaced_frame;
536         enc->coded_frame->top_field_first  = in_picture->top_field_first;
537         pkt.data   = (uint8_t *)in_picture;
538         pkt.size   =  sizeof(AVPicture);
539         pkt.pts    = av_rescale_q(in_picture->pts, enc->time_base, ost->st->time_base);
540         pkt.flags |= AV_PKT_FLAG_KEY;
541
542         write_frame(s, &pkt, ost);
543     } else {
544         int got_packet;
545
546         if (ost->st->codec->flags & (CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_INTERLACED_ME) &&
547             ost->top_field_first >= 0)
548             in_picture->top_field_first = !!ost->top_field_first;
549
550         in_picture->quality = ost->st->codec->global_quality;
551         if (!enc->me_threshold)
552             in_picture->pict_type = 0;
553         if (ost->forced_kf_index < ost->forced_kf_count &&
554             in_picture->pts >= ost->forced_kf_pts[ost->forced_kf_index]) {
555             in_picture->pict_type = AV_PICTURE_TYPE_I;
556             ost->forced_kf_index++;
557         }
558         ret = avcodec_encode_video2(enc, &pkt, in_picture, &got_packet);
559         if (ret < 0) {
560             av_log(NULL, AV_LOG_FATAL, "Video encoding failed\n");
561             exit(1);
562         }
563
564         if (got_packet) {
565             if (pkt.pts != AV_NOPTS_VALUE)
566                 pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base);
567             if (pkt.dts != AV_NOPTS_VALUE)
568                 pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base);
569
570             write_frame(s, &pkt, ost);
571             *frame_size = pkt.size;
572             video_size += pkt.size;
573
574             /* if two pass, output log */
575             if (ost->logfile && enc->stats_out) {
576                 fprintf(ost->logfile, "%s", enc->stats_out);
577             }
578         }
579     }
580     ost->sync_opts++;
581     /*
582      * For video, number of frames in == number of packets out.
583      * But there may be reordering, so we can't throw away frames on encoder
584      * flush, we need to limit them here, before they go into encoder.
585      */
586     ost->frame_number++;
587 }
588
589 static double psnr(double d)
590 {
591     return -10.0 * log(d) / log(10.0);
592 }
593
594 static void do_video_stats(OutputStream *ost, int frame_size)
595 {
596     AVCodecContext *enc;
597     int frame_number;
598     double ti1, bitrate, avg_bitrate;
599
600     /* this is executed just the first time do_video_stats is called */
601     if (!vstats_file) {
602         vstats_file = fopen(vstats_filename, "w");
603         if (!vstats_file) {
604             perror("fopen");
605             exit(1);
606         }
607     }
608
609     enc = ost->st->codec;
610     if (enc->codec_type == AVMEDIA_TYPE_VIDEO) {
611         frame_number = ost->frame_number;
612         fprintf(vstats_file, "frame= %5d q= %2.1f ", frame_number, enc->coded_frame->quality / (float)FF_QP2LAMBDA);
613         if (enc->flags&CODEC_FLAG_PSNR)
614             fprintf(vstats_file, "PSNR= %6.2f ", psnr(enc->coded_frame->error[0] / (enc->width * enc->height * 255.0 * 255.0)));
615
616         fprintf(vstats_file,"f_size= %6d ", frame_size);
617         /* compute pts value */
618         ti1 = ost->sync_opts * av_q2d(enc->time_base);
619         if (ti1 < 0.01)
620             ti1 = 0.01;
621
622         bitrate     = (frame_size * 8) / av_q2d(enc->time_base) / 1000.0;
623         avg_bitrate = (double)(video_size * 8) / ti1 / 1000.0;
624         fprintf(vstats_file, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ",
625                (double)video_size / 1024, ti1, bitrate, avg_bitrate);
626         fprintf(vstats_file, "type= %c\n", av_get_picture_type_char(enc->coded_frame->pict_type));
627     }
628 }
629
630 /*
631  * Read one frame for lavfi output for ost and encode it.
632  */
633 static int poll_filter(OutputStream *ost)
634 {
635     OutputFile    *of = output_files[ost->file_index];
636     AVFrame *filtered_frame = NULL;
637     int frame_size, ret;
638
639     if (!ost->filtered_frame && !(ost->filtered_frame = avcodec_alloc_frame())) {
640         return AVERROR(ENOMEM);
641     } else
642         avcodec_get_frame_defaults(ost->filtered_frame);
643     filtered_frame = ost->filtered_frame;
644
645     if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
646         !(ost->enc->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE))
647         ret = av_buffersink_get_samples(ost->filter->filter, filtered_frame,
648                                          ost->st->codec->frame_size);
649     else
650         ret = av_buffersink_get_frame(ost->filter->filter, filtered_frame);
651
652     if (ret < 0)
653         return ret;
654
655     if (filtered_frame->pts != AV_NOPTS_VALUE) {
656         filtered_frame->pts = av_rescale_q(filtered_frame->pts,
657                                            ost->filter->filter->inputs[0]->time_base,
658                                            ost->st->codec->time_base) -
659                               av_rescale_q(of->start_time,
660                                            AV_TIME_BASE_Q,
661                                            ost->st->codec->time_base);
662     }
663
664     switch (ost->filter->filter->inputs[0]->type) {
665     case AVMEDIA_TYPE_VIDEO:
666         if (!ost->frame_aspect_ratio)
667             ost->st->codec->sample_aspect_ratio = filtered_frame->sample_aspect_ratio;
668
669         do_video_out(of->ctx, ost, filtered_frame, &frame_size);
670         if (vstats_filename && frame_size)
671             do_video_stats(ost, frame_size);
672         break;
673     case AVMEDIA_TYPE_AUDIO:
674         do_audio_out(of->ctx, ost, filtered_frame);
675         break;
676     default:
677         // TODO support subtitle filters
678         av_assert0(0);
679     }
680
681     av_frame_unref(filtered_frame);
682
683     return 0;
684 }
685
686 /*
687  * Read as many frames from possible from lavfi and encode them.
688  *
689  * Always read from the active stream with the lowest timestamp. If no frames
690  * are available for it then return EAGAIN and wait for more input. This way we
691  * can use lavfi sources that generate unlimited amount of frames without memory
692  * usage exploding.
693  */
694 static int poll_filters(void)
695 {
696     int i, j, ret = 0;
697
698     while (ret >= 0 && !received_sigterm) {
699         OutputStream *ost = NULL;
700         int64_t min_pts = INT64_MAX;
701
702         /* choose output stream with the lowest timestamp */
703         for (i = 0; i < nb_output_streams; i++) {
704             int64_t pts = output_streams[i]->sync_opts;
705
706             if (!output_streams[i]->filter || output_streams[i]->finished)
707                 continue;
708
709             pts = av_rescale_q(pts, output_streams[i]->st->codec->time_base,
710                                AV_TIME_BASE_Q);
711             if (pts < min_pts) {
712                 min_pts = pts;
713                 ost = output_streams[i];
714             }
715         }
716
717         if (!ost)
718             break;
719
720         ret = poll_filter(ost);
721
722         if (ret == AVERROR_EOF) {
723             OutputFile *of = output_files[ost->file_index];
724
725             ost->finished = 1;
726
727             if (of->shortest) {
728                 for (j = 0; j < of->ctx->nb_streams; j++)
729                     output_streams[of->ost_index + j]->finished = 1;
730             }
731
732             ret = 0;
733         } else if (ret == AVERROR(EAGAIN))
734             return 0;
735     }
736
737     return ret;
738 }
739
740 static void print_report(int is_last_report, int64_t timer_start)
741 {
742     char buf[1024];
743     OutputStream *ost;
744     AVFormatContext *oc;
745     int64_t total_size;
746     AVCodecContext *enc;
747     int frame_number, vid, i;
748     double bitrate, ti1, pts;
749     static int64_t last_time = -1;
750     static int qp_histogram[52];
751
752     if (!print_stats && !is_last_report)
753         return;
754
755     if (!is_last_report) {
756         int64_t cur_time;
757         /* display the report every 0.5 seconds */
758         cur_time = av_gettime();
759         if (last_time == -1) {
760             last_time = cur_time;
761             return;
762         }
763         if ((cur_time - last_time) < 500000)
764             return;
765         last_time = cur_time;
766     }
767
768
769     oc = output_files[0]->ctx;
770
771     total_size = avio_size(oc->pb);
772     if (total_size <= 0) // FIXME improve avio_size() so it works with non seekable output too
773         total_size = avio_tell(oc->pb);
774     if (total_size < 0) {
775         char errbuf[128];
776         av_strerror(total_size, errbuf, sizeof(errbuf));
777         av_log(NULL, AV_LOG_VERBOSE, "Bitrate not available, "
778                "avio_tell() failed: %s\n", errbuf);
779         total_size = 0;
780     }
781
782     buf[0] = '\0';
783     ti1 = 1e10;
784     vid = 0;
785     for (i = 0; i < nb_output_streams; i++) {
786         float q = -1;
787         ost = output_streams[i];
788         enc = ost->st->codec;
789         if (!ost->stream_copy && enc->coded_frame)
790             q = enc->coded_frame->quality / (float)FF_QP2LAMBDA;
791         if (vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
792             snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "q=%2.1f ", q);
793         }
794         if (!vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
795             float t = (av_gettime() - timer_start) / 1000000.0;
796
797             frame_number = ost->frame_number;
798             snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "frame=%5d fps=%3d q=%3.1f ",
799                      frame_number, (t > 1) ? (int)(frame_number / t + 0.5) : 0, q);
800             if (is_last_report)
801                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "L");
802             if (qp_hist) {
803                 int j;
804                 int qp = lrintf(q);
805                 if (qp >= 0 && qp < FF_ARRAY_ELEMS(qp_histogram))
806                     qp_histogram[qp]++;
807                 for (j = 0; j < 32; j++)
808                     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%X", (int)lrintf(log2(qp_histogram[j] + 1)));
809             }
810             if (enc->flags&CODEC_FLAG_PSNR) {
811                 int j;
812                 double error, error_sum = 0;
813                 double scale, scale_sum = 0;
814                 char type[3] = { 'Y','U','V' };
815                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "PSNR=");
816                 for (j = 0; j < 3; j++) {
817                     if (is_last_report) {
818                         error = enc->error[j];
819                         scale = enc->width * enc->height * 255.0 * 255.0 * frame_number;
820                     } else {
821                         error = enc->coded_frame->error[j];
822                         scale = enc->width * enc->height * 255.0 * 255.0;
823                     }
824                     if (j)
825                         scale /= 4;
826                     error_sum += error;
827                     scale_sum += scale;
828                     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%c:%2.2f ", type[j], psnr(error / scale));
829                 }
830                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "*:%2.2f ", psnr(error_sum / scale_sum));
831             }
832             vid = 1;
833         }
834         /* compute min output value */
835         pts = (double)ost->st->pts.val * av_q2d(ost->st->time_base);
836         if ((pts < ti1) && (pts > 0))
837             ti1 = pts;
838     }
839     if (ti1 < 0.01)
840         ti1 = 0.01;
841
842     bitrate = (double)(total_size * 8) / ti1 / 1000.0;
843
844     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
845             "size=%8.0fkB time=%0.2f bitrate=%6.1fkbits/s",
846             (double)total_size / 1024, ti1, bitrate);
847
848     if (nb_frames_dup || nb_frames_drop)
849         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " dup=%d drop=%d",
850                 nb_frames_dup, nb_frames_drop);
851
852     av_log(NULL, AV_LOG_INFO, "%s    \r", buf);
853
854     fflush(stderr);
855
856     if (is_last_report) {
857         int64_t raw= audio_size + video_size + extra_size;
858         av_log(NULL, AV_LOG_INFO, "\n");
859         av_log(NULL, AV_LOG_INFO, "video:%1.0fkB audio:%1.0fkB global headers:%1.0fkB muxing overhead %f%%\n",
860                video_size / 1024.0,
861                audio_size / 1024.0,
862                extra_size / 1024.0,
863                100.0 * (total_size - raw) / raw
864         );
865     }
866 }
867
868 static void flush_encoders(void)
869 {
870     int i, ret;
871
872     for (i = 0; i < nb_output_streams; i++) {
873         OutputStream   *ost = output_streams[i];
874         AVCodecContext *enc = ost->st->codec;
875         AVFormatContext *os = output_files[ost->file_index]->ctx;
876         int stop_encoding = 0;
877
878         if (!ost->encoding_needed)
879             continue;
880
881         if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && enc->frame_size <= 1)
882             continue;
883         if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (os->oformat->flags & AVFMT_RAWPICTURE) && enc->codec->id == AV_CODEC_ID_RAWVIDEO)
884             continue;
885
886         for (;;) {
887             int (*encode)(AVCodecContext*, AVPacket*, const AVFrame*, int*) = NULL;
888             const char *desc;
889             int64_t *size;
890
891             switch (ost->st->codec->codec_type) {
892             case AVMEDIA_TYPE_AUDIO:
893                 encode = avcodec_encode_audio2;
894                 desc   = "Audio";
895                 size   = &audio_size;
896                 break;
897             case AVMEDIA_TYPE_VIDEO:
898                 encode = avcodec_encode_video2;
899                 desc   = "Video";
900                 size   = &video_size;
901                 break;
902             default:
903                 stop_encoding = 1;
904             }
905
906             if (encode) {
907                 AVPacket pkt;
908                 int got_packet;
909                 av_init_packet(&pkt);
910                 pkt.data = NULL;
911                 pkt.size = 0;
912
913                 ret = encode(enc, &pkt, NULL, &got_packet);
914                 if (ret < 0) {
915                     av_log(NULL, AV_LOG_FATAL, "%s encoding failed\n", desc);
916                     exit(1);
917                 }
918                 *size += ret;
919                 if (ost->logfile && enc->stats_out) {
920                     fprintf(ost->logfile, "%s", enc->stats_out);
921                 }
922                 if (!got_packet) {
923                     stop_encoding = 1;
924                     break;
925                 }
926                 if (pkt.pts != AV_NOPTS_VALUE)
927                     pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base);
928                 if (pkt.dts != AV_NOPTS_VALUE)
929                     pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base);
930                 if (pkt.duration > 0)
931                     pkt.duration = av_rescale_q(pkt.duration, enc->time_base, ost->st->time_base);
932                 write_frame(os, &pkt, ost);
933             }
934
935             if (stop_encoding)
936                 break;
937         }
938     }
939 }
940
941 /*
942  * Check whether a packet from ist should be written into ost at this time
943  */
944 static int check_output_constraints(InputStream *ist, OutputStream *ost)
945 {
946     OutputFile *of = output_files[ost->file_index];
947     int ist_index  = input_files[ist->file_index]->ist_index + ist->st->index;
948
949     if (ost->source_index != ist_index)
950         return 0;
951
952     if (of->start_time && ist->last_dts < of->start_time)
953         return 0;
954
955     return 1;
956 }
957
958 static void do_streamcopy(InputStream *ist, OutputStream *ost, const AVPacket *pkt)
959 {
960     OutputFile *of = output_files[ost->file_index];
961     int64_t ost_tb_start_time = av_rescale_q(of->start_time, AV_TIME_BASE_Q, ost->st->time_base);
962     AVPacket opkt;
963
964     av_init_packet(&opkt);
965
966     if ((!ost->frame_number && !(pkt->flags & AV_PKT_FLAG_KEY)) &&
967         !ost->copy_initial_nonkeyframes)
968         return;
969
970     if (of->recording_time != INT64_MAX &&
971         ist->last_dts >= of->recording_time + of->start_time) {
972         ost->finished = 1;
973         return;
974     }
975
976     /* force the input stream PTS */
977     if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO)
978         audio_size += pkt->size;
979     else if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
980         video_size += pkt->size;
981         ost->sync_opts++;
982     }
983
984     if (pkt->pts != AV_NOPTS_VALUE)
985         opkt.pts = av_rescale_q(pkt->pts, ist->st->time_base, ost->st->time_base) - ost_tb_start_time;
986     else
987         opkt.pts = AV_NOPTS_VALUE;
988
989     if (pkt->dts == AV_NOPTS_VALUE)
990         opkt.dts = av_rescale_q(ist->last_dts, AV_TIME_BASE_Q, ost->st->time_base);
991     else
992         opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base);
993     opkt.dts -= ost_tb_start_time;
994
995     opkt.duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->st->time_base);
996     opkt.flags    = pkt->flags;
997
998     // FIXME remove the following 2 lines they shall be replaced by the bitstream filters
999     if (  ost->st->codec->codec_id != AV_CODEC_ID_H264
1000        && ost->st->codec->codec_id != AV_CODEC_ID_MPEG1VIDEO
1001        && ost->st->codec->codec_id != AV_CODEC_ID_MPEG2VIDEO
1002        && ost->st->codec->codec_id != AV_CODEC_ID_VC1
1003        ) {
1004         if (av_parser_change(ist->st->parser, ost->st->codec, &opkt.data, &opkt.size, pkt->data, pkt->size, pkt->flags & AV_PKT_FLAG_KEY)) {
1005             opkt.buf = av_buffer_create(opkt.data, opkt.size, av_buffer_default_free, NULL, 0);
1006             if (!opkt.buf)
1007                 exit(1);
1008         }
1009     } else {
1010         opkt.data = pkt->data;
1011         opkt.size = pkt->size;
1012     }
1013
1014     write_frame(of->ctx, &opkt, ost);
1015     ost->st->codec->frame_number++;
1016 }
1017
1018 int guess_input_channel_layout(InputStream *ist)
1019 {
1020     AVCodecContext *dec = ist->st->codec;
1021
1022     if (!dec->channel_layout) {
1023         char layout_name[256];
1024
1025         dec->channel_layout = av_get_default_channel_layout(dec->channels);
1026         if (!dec->channel_layout)
1027             return 0;
1028         av_get_channel_layout_string(layout_name, sizeof(layout_name),
1029                                      dec->channels, dec->channel_layout);
1030         av_log(NULL, AV_LOG_WARNING, "Guessed Channel Layout for  Input Stream "
1031                "#%d.%d : %s\n", ist->file_index, ist->st->index, layout_name);
1032     }
1033     return 1;
1034 }
1035
1036 static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output)
1037 {
1038     AVFrame *decoded_frame, *f;
1039     AVCodecContext *avctx = ist->st->codec;
1040     int i, ret, err = 0, resample_changed;
1041
1042     if (!ist->decoded_frame && !(ist->decoded_frame = avcodec_alloc_frame()))
1043         return AVERROR(ENOMEM);
1044     if (!ist->filter_frame && !(ist->filter_frame = av_frame_alloc()))
1045         return AVERROR(ENOMEM);
1046     decoded_frame = ist->decoded_frame;
1047
1048     ret = avcodec_decode_audio4(avctx, decoded_frame, got_output, pkt);
1049     if (!*got_output || ret < 0) {
1050         if (!pkt->size) {
1051             for (i = 0; i < ist->nb_filters; i++)
1052                 av_buffersrc_add_frame(ist->filters[i]->filter, NULL);
1053         }
1054         return ret;
1055     }
1056
1057     /* if the decoder provides a pts, use it instead of the last packet pts.
1058        the decoder could be delaying output by a packet or more. */
1059     if (decoded_frame->pts != AV_NOPTS_VALUE)
1060         ist->next_dts = decoded_frame->pts;
1061     else if (pkt->pts != AV_NOPTS_VALUE) {
1062         decoded_frame->pts = pkt->pts;
1063         pkt->pts           = AV_NOPTS_VALUE;
1064     }
1065
1066     resample_changed = ist->resample_sample_fmt     != decoded_frame->format         ||
1067                        ist->resample_channels       != avctx->channels               ||
1068                        ist->resample_channel_layout != decoded_frame->channel_layout ||
1069                        ist->resample_sample_rate    != decoded_frame->sample_rate;
1070     if (resample_changed) {
1071         char layout1[64], layout2[64];
1072
1073         if (!guess_input_channel_layout(ist)) {
1074             av_log(NULL, AV_LOG_FATAL, "Unable to find default channel "
1075                    "layout for Input Stream #%d.%d\n", ist->file_index,
1076                    ist->st->index);
1077             exit(1);
1078         }
1079         decoded_frame->channel_layout = avctx->channel_layout;
1080
1081         av_get_channel_layout_string(layout1, sizeof(layout1), ist->resample_channels,
1082                                      ist->resample_channel_layout);
1083         av_get_channel_layout_string(layout2, sizeof(layout2), avctx->channels,
1084                                      decoded_frame->channel_layout);
1085
1086         av_log(NULL, AV_LOG_INFO,
1087                "Input stream #%d:%d frame changed from rate:%d fmt:%s ch:%d chl:%s to rate:%d fmt:%s ch:%d chl:%s\n",
1088                ist->file_index, ist->st->index,
1089                ist->resample_sample_rate,  av_get_sample_fmt_name(ist->resample_sample_fmt),
1090                ist->resample_channels, layout1,
1091                decoded_frame->sample_rate, av_get_sample_fmt_name(decoded_frame->format),
1092                avctx->channels, layout2);
1093
1094         ist->resample_sample_fmt     = decoded_frame->format;
1095         ist->resample_sample_rate    = decoded_frame->sample_rate;
1096         ist->resample_channel_layout = decoded_frame->channel_layout;
1097         ist->resample_channels       = avctx->channels;
1098
1099         for (i = 0; i < nb_filtergraphs; i++)
1100             if (ist_in_filtergraph(filtergraphs[i], ist) &&
1101                 configure_filtergraph(filtergraphs[i]) < 0) {
1102                 av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
1103                 exit(1);
1104             }
1105     }
1106
1107     if (decoded_frame->pts != AV_NOPTS_VALUE)
1108         decoded_frame->pts = av_rescale_q(decoded_frame->pts,
1109                                           ist->st->time_base,
1110                                           (AVRational){1, ist->st->codec->sample_rate});
1111     for (i = 0; i < ist->nb_filters; i++) {
1112         if (i < ist->nb_filters - 1) {
1113             f = ist->filter_frame;
1114             err = av_frame_ref(f, decoded_frame);
1115             if (err < 0)
1116                 break;
1117         } else
1118             f = decoded_frame;
1119
1120         err = av_buffersrc_add_frame(ist->filters[i]->filter, f);
1121         if (err < 0)
1122             break;
1123     }
1124
1125     av_frame_unref(ist->filter_frame);
1126     av_frame_unref(decoded_frame);
1127     return err < 0 ? err : ret;
1128 }
1129
1130 static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output)
1131 {
1132     AVFrame *decoded_frame, *f;
1133     void *buffer_to_free = NULL;
1134     int i, ret = 0, err = 0, resample_changed;
1135
1136     if (!ist->decoded_frame && !(ist->decoded_frame = av_frame_alloc()))
1137         return AVERROR(ENOMEM);
1138     if (!ist->filter_frame && !(ist->filter_frame = av_frame_alloc()))
1139         return AVERROR(ENOMEM);
1140     decoded_frame = ist->decoded_frame;
1141
1142     ret = avcodec_decode_video2(ist->st->codec,
1143                                 decoded_frame, got_output, pkt);
1144     if (!*got_output || ret < 0) {
1145         if (!pkt->size) {
1146             for (i = 0; i < ist->nb_filters; i++)
1147                 av_buffersrc_add_frame(ist->filters[i]->filter, NULL);
1148         }
1149         return ret;
1150     }
1151
1152     decoded_frame->pts = guess_correct_pts(&ist->pts_ctx, decoded_frame->pkt_pts,
1153                                            decoded_frame->pkt_dts);
1154     pkt->size = 0;
1155
1156     if (ist->st->sample_aspect_ratio.num)
1157         decoded_frame->sample_aspect_ratio = ist->st->sample_aspect_ratio;
1158
1159     resample_changed = ist->resample_width   != decoded_frame->width  ||
1160                        ist->resample_height  != decoded_frame->height ||
1161                        ist->resample_pix_fmt != decoded_frame->format;
1162     if (resample_changed) {
1163         av_log(NULL, AV_LOG_INFO,
1164                "Input stream #%d:%d frame changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s\n",
1165                ist->file_index, ist->st->index,
1166                ist->resample_width,  ist->resample_height,  av_get_pix_fmt_name(ist->resample_pix_fmt),
1167                decoded_frame->width, decoded_frame->height, av_get_pix_fmt_name(decoded_frame->format));
1168
1169         ret = poll_filters();
1170         if (ret < 0 && (ret != AVERROR_EOF && ret != AVERROR(EAGAIN)))
1171             av_log(NULL, AV_LOG_ERROR, "Error while filtering.\n");
1172
1173         ist->resample_width   = decoded_frame->width;
1174         ist->resample_height  = decoded_frame->height;
1175         ist->resample_pix_fmt = decoded_frame->format;
1176
1177         for (i = 0; i < nb_filtergraphs; i++)
1178             if (ist_in_filtergraph(filtergraphs[i], ist) &&
1179                 configure_filtergraph(filtergraphs[i]) < 0) {
1180                 av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
1181                 exit(1);
1182             }
1183     }
1184
1185     for (i = 0; i < ist->nb_filters; i++) {
1186         if (i < ist->nb_filters - 1) {
1187             f = ist->filter_frame;
1188             err = av_frame_ref(f, decoded_frame);
1189             if (err < 0)
1190                 break;
1191         } else
1192             f = decoded_frame;
1193
1194         err = av_buffersrc_add_frame(ist->filters[i]->filter, f);
1195         if (err < 0)
1196             break;
1197     }
1198
1199     av_frame_unref(ist->filter_frame);
1200     av_frame_unref(decoded_frame);
1201     av_free(buffer_to_free);
1202     return err < 0 ? err : ret;
1203 }
1204
1205 static int transcode_subtitles(InputStream *ist, AVPacket *pkt, int *got_output)
1206 {
1207     AVSubtitle subtitle;
1208     int i, ret = avcodec_decode_subtitle2(ist->st->codec,
1209                                           &subtitle, got_output, pkt);
1210     if (ret < 0)
1211         return ret;
1212     if (!*got_output)
1213         return ret;
1214
1215     for (i = 0; i < nb_output_streams; i++) {
1216         OutputStream *ost = output_streams[i];
1217
1218         if (!check_output_constraints(ist, ost) || !ost->encoding_needed)
1219             continue;
1220
1221         do_subtitle_out(output_files[ost->file_index]->ctx, ost, ist, &subtitle, pkt->pts);
1222     }
1223
1224     avsubtitle_free(&subtitle);
1225     return ret;
1226 }
1227
1228 /* pkt = NULL means EOF (needed to flush decoder buffers) */
1229 static int output_packet(InputStream *ist, const AVPacket *pkt)
1230 {
1231     int i;
1232     int got_output;
1233     AVPacket avpkt;
1234
1235     if (ist->next_dts == AV_NOPTS_VALUE)
1236         ist->next_dts = ist->last_dts;
1237
1238     if (pkt == NULL) {
1239         /* EOF handling */
1240         av_init_packet(&avpkt);
1241         avpkt.data = NULL;
1242         avpkt.size = 0;
1243         goto handle_eof;
1244     } else {
1245         avpkt = *pkt;
1246     }
1247
1248     if (pkt->dts != AV_NOPTS_VALUE)
1249         ist->next_dts = ist->last_dts = av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q);
1250
1251     // while we have more to decode or while the decoder did output something on EOF
1252     while (ist->decoding_needed && (avpkt.size > 0 || (!pkt && got_output))) {
1253         int ret = 0;
1254     handle_eof:
1255
1256         ist->last_dts = ist->next_dts;
1257
1258         if (avpkt.size && avpkt.size != pkt->size) {
1259             av_log(NULL, ist->showed_multi_packet_warning ? AV_LOG_VERBOSE : AV_LOG_WARNING,
1260                    "Multiple frames in a packet from stream %d\n", pkt->stream_index);
1261             ist->showed_multi_packet_warning = 1;
1262         }
1263
1264         switch (ist->st->codec->codec_type) {
1265         case AVMEDIA_TYPE_AUDIO:
1266             ret = decode_audio    (ist, &avpkt, &got_output);
1267             break;
1268         case AVMEDIA_TYPE_VIDEO:
1269             ret = decode_video    (ist, &avpkt, &got_output);
1270             if (avpkt.duration)
1271                 ist->next_dts += av_rescale_q(avpkt.duration, ist->st->time_base, AV_TIME_BASE_Q);
1272             else if (ist->st->avg_frame_rate.num)
1273                 ist->next_dts += av_rescale_q(1, av_inv_q(ist->st->avg_frame_rate),
1274                                               AV_TIME_BASE_Q);
1275             else if (ist->st->codec->time_base.num != 0) {
1276                 int ticks      = ist->st->parser ? ist->st->parser->repeat_pict + 1 :
1277                                                    ist->st->codec->ticks_per_frame;
1278                 ist->next_dts += av_rescale_q(ticks, ist->st->codec->time_base, AV_TIME_BASE_Q);
1279             }
1280             break;
1281         case AVMEDIA_TYPE_SUBTITLE:
1282             ret = transcode_subtitles(ist, &avpkt, &got_output);
1283             break;
1284         default:
1285             return -1;
1286         }
1287
1288         if (ret < 0)
1289             return ret;
1290         // touch data and size only if not EOF
1291         if (pkt) {
1292             avpkt.data += ret;
1293             avpkt.size -= ret;
1294         }
1295         if (!got_output) {
1296             continue;
1297         }
1298     }
1299
1300     /* handle stream copy */
1301     if (!ist->decoding_needed) {
1302         ist->last_dts = ist->next_dts;
1303         switch (ist->st->codec->codec_type) {
1304         case AVMEDIA_TYPE_AUDIO:
1305             ist->next_dts += ((int64_t)AV_TIME_BASE * ist->st->codec->frame_size) /
1306                              ist->st->codec->sample_rate;
1307             break;
1308         case AVMEDIA_TYPE_VIDEO:
1309             if (ist->st->codec->time_base.num != 0) {
1310                 int ticks = ist->st->parser ? ist->st->parser->repeat_pict + 1 : ist->st->codec->ticks_per_frame;
1311                 ist->next_dts += ((int64_t)AV_TIME_BASE *
1312                                   ist->st->codec->time_base.num * ticks) /
1313                                   ist->st->codec->time_base.den;
1314             }
1315             break;
1316         }
1317     }
1318     for (i = 0; pkt && i < nb_output_streams; i++) {
1319         OutputStream *ost = output_streams[i];
1320
1321         if (!check_output_constraints(ist, ost) || ost->encoding_needed)
1322             continue;
1323
1324         do_streamcopy(ist, ost, pkt);
1325     }
1326
1327     return 0;
1328 }
1329
1330 static void print_sdp(void)
1331 {
1332     char sdp[16384];
1333     int i;
1334     AVFormatContext **avc = av_malloc(sizeof(*avc) * nb_output_files);
1335
1336     if (!avc)
1337         exit(1);
1338     for (i = 0; i < nb_output_files; i++)
1339         avc[i] = output_files[i]->ctx;
1340
1341     av_sdp_create(avc, nb_output_files, sdp, sizeof(sdp));
1342     printf("SDP:\n%s\n", sdp);
1343     fflush(stdout);
1344     av_freep(&avc);
1345 }
1346
1347 static int init_input_stream(int ist_index, char *error, int error_len)
1348 {
1349     int i, ret;
1350     InputStream *ist = input_streams[ist_index];
1351     if (ist->decoding_needed) {
1352         AVCodec *codec = ist->dec;
1353         if (!codec) {
1354             snprintf(error, error_len, "Decoder (codec id %d) not found for input stream #%d:%d",
1355                     ist->st->codec->codec_id, ist->file_index, ist->st->index);
1356             return AVERROR(EINVAL);
1357         }
1358
1359         /* update requested sample format for the decoder based on the
1360            corresponding encoder sample format */
1361         for (i = 0; i < nb_output_streams; i++) {
1362             OutputStream *ost = output_streams[i];
1363             if (ost->source_index == ist_index) {
1364                 update_sample_fmt(ist->st->codec, codec, ost->st->codec);
1365                 break;
1366             }
1367         }
1368
1369         av_opt_set_int(ist->st->codec, "refcounted_frames", 1, 0);
1370
1371         if (!av_dict_get(ist->opts, "threads", NULL, 0))
1372             av_dict_set(&ist->opts, "threads", "auto", 0);
1373         if ((ret = avcodec_open2(ist->st->codec, codec, &ist->opts)) < 0) {
1374             if (ret == AVERROR_EXPERIMENTAL)
1375                 abort_codec_experimental(codec, 0);
1376             snprintf(error, error_len, "Error while opening decoder for input stream #%d:%d",
1377                     ist->file_index, ist->st->index);
1378             return ret;
1379         }
1380         assert_avoptions(ist->opts);
1381     }
1382
1383     ist->last_dts = ist->st->avg_frame_rate.num ? - ist->st->codec->has_b_frames * AV_TIME_BASE / av_q2d(ist->st->avg_frame_rate) : 0;
1384     ist->next_dts = AV_NOPTS_VALUE;
1385     init_pts_correction(&ist->pts_ctx);
1386     ist->is_start = 1;
1387
1388     return 0;
1389 }
1390
1391 static InputStream *get_input_stream(OutputStream *ost)
1392 {
1393     if (ost->source_index >= 0)
1394         return input_streams[ost->source_index];
1395
1396     if (ost->filter) {
1397         FilterGraph *fg = ost->filter->graph;
1398         int i;
1399
1400         for (i = 0; i < fg->nb_inputs; i++)
1401             if (fg->inputs[i]->ist->st->codec->codec_type == ost->st->codec->codec_type)
1402                 return fg->inputs[i]->ist;
1403     }
1404
1405     return NULL;
1406 }
1407
1408 static void parse_forced_key_frames(char *kf, OutputStream *ost,
1409                                     AVCodecContext *avctx)
1410 {
1411     char *p;
1412     int n = 1, i;
1413     int64_t t;
1414
1415     for (p = kf; *p; p++)
1416         if (*p == ',')
1417             n++;
1418     ost->forced_kf_count = n;
1419     ost->forced_kf_pts   = av_malloc(sizeof(*ost->forced_kf_pts) * n);
1420     if (!ost->forced_kf_pts) {
1421         av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
1422         exit(1);
1423     }
1424
1425     p = kf;
1426     for (i = 0; i < n; i++) {
1427         char *next = strchr(p, ',');
1428
1429         if (next)
1430             *next++ = 0;
1431
1432         t = parse_time_or_die("force_key_frames", p, 1);
1433         ost->forced_kf_pts[i] = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base);
1434
1435         p = next;
1436     }
1437 }
1438
1439 static int transcode_init(void)
1440 {
1441     int ret = 0, i, j, k;
1442     AVFormatContext *oc;
1443     AVCodecContext *codec;
1444     OutputStream *ost;
1445     InputStream *ist;
1446     char error[1024];
1447     int want_sdp = 1;
1448
1449     /* init framerate emulation */
1450     for (i = 0; i < nb_input_files; i++) {
1451         InputFile *ifile = input_files[i];
1452         if (ifile->rate_emu)
1453             for (j = 0; j < ifile->nb_streams; j++)
1454                 input_streams[j + ifile->ist_index]->start = av_gettime();
1455     }
1456
1457     /* output stream init */
1458     for (i = 0; i < nb_output_files; i++) {
1459         oc = output_files[i]->ctx;
1460         if (!oc->nb_streams && !(oc->oformat->flags & AVFMT_NOSTREAMS)) {
1461             av_dump_format(oc, i, oc->filename, 1);
1462             av_log(NULL, AV_LOG_ERROR, "Output file #%d does not contain any stream\n", i);
1463             return AVERROR(EINVAL);
1464         }
1465     }
1466
1467     /* init complex filtergraphs */
1468     for (i = 0; i < nb_filtergraphs; i++)
1469         if ((ret = avfilter_graph_config(filtergraphs[i]->graph, NULL)) < 0)
1470             return ret;
1471
1472     /* for each output stream, we compute the right encoding parameters */
1473     for (i = 0; i < nb_output_streams; i++) {
1474         AVCodecContext *icodec = NULL;
1475         ost = output_streams[i];
1476         oc  = output_files[ost->file_index]->ctx;
1477         ist = get_input_stream(ost);
1478
1479         if (ost->attachment_filename)
1480             continue;
1481
1482         codec  = ost->st->codec;
1483
1484         if (ist) {
1485             icodec = ist->st->codec;
1486
1487             ost->st->disposition          = ist->st->disposition;
1488             codec->bits_per_raw_sample    = icodec->bits_per_raw_sample;
1489             codec->chroma_sample_location = icodec->chroma_sample_location;
1490         }
1491
1492         if (ost->stream_copy) {
1493             uint64_t extra_size;
1494
1495             av_assert0(ist && !ost->filter);
1496
1497             extra_size = (uint64_t)icodec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE;
1498
1499             if (extra_size > INT_MAX) {
1500                 return AVERROR(EINVAL);
1501             }
1502
1503             /* if stream_copy is selected, no need to decode or encode */
1504             codec->codec_id   = icodec->codec_id;
1505             codec->codec_type = icodec->codec_type;
1506
1507             if (!codec->codec_tag) {
1508                 if (!oc->oformat->codec_tag ||
1509                      av_codec_get_id (oc->oformat->codec_tag, icodec->codec_tag) == codec->codec_id ||
1510                      av_codec_get_tag(oc->oformat->codec_tag, icodec->codec_id) <= 0)
1511                     codec->codec_tag = icodec->codec_tag;
1512             }
1513
1514             codec->bit_rate       = icodec->bit_rate;
1515             codec->rc_max_rate    = icodec->rc_max_rate;
1516             codec->rc_buffer_size = icodec->rc_buffer_size;
1517             codec->field_order    = icodec->field_order;
1518             codec->extradata      = av_mallocz(extra_size);
1519             if (!codec->extradata) {
1520                 return AVERROR(ENOMEM);
1521             }
1522             memcpy(codec->extradata, icodec->extradata, icodec->extradata_size);
1523             codec->extradata_size = icodec->extradata_size;
1524             if (!copy_tb) {
1525                 codec->time_base      = icodec->time_base;
1526                 codec->time_base.num *= icodec->ticks_per_frame;
1527                 av_reduce(&codec->time_base.num, &codec->time_base.den,
1528                           codec->time_base.num, codec->time_base.den, INT_MAX);
1529             } else
1530                 codec->time_base = ist->st->time_base;
1531
1532             switch (codec->codec_type) {
1533             case AVMEDIA_TYPE_AUDIO:
1534                 if (audio_volume != 256) {
1535                     av_log(NULL, AV_LOG_FATAL, "-acodec copy and -vol are incompatible (frames are not decoded)\n");
1536                     exit(1);
1537                 }
1538                 codec->channel_layout     = icodec->channel_layout;
1539                 codec->sample_rate        = icodec->sample_rate;
1540                 codec->channels           = icodec->channels;
1541                 codec->frame_size         = icodec->frame_size;
1542                 codec->audio_service_type = icodec->audio_service_type;
1543                 codec->block_align        = icodec->block_align;
1544                 break;
1545             case AVMEDIA_TYPE_VIDEO:
1546                 codec->pix_fmt            = icodec->pix_fmt;
1547                 codec->width              = icodec->width;
1548                 codec->height             = icodec->height;
1549                 codec->has_b_frames       = icodec->has_b_frames;
1550                 if (!codec->sample_aspect_ratio.num) {
1551                     codec->sample_aspect_ratio   =
1552                     ost->st->sample_aspect_ratio =
1553                         ist->st->sample_aspect_ratio.num ? ist->st->sample_aspect_ratio :
1554                         ist->st->codec->sample_aspect_ratio.num ?
1555                         ist->st->codec->sample_aspect_ratio : (AVRational){0, 1};
1556                 }
1557                 break;
1558             case AVMEDIA_TYPE_SUBTITLE:
1559                 codec->width  = icodec->width;
1560                 codec->height = icodec->height;
1561                 break;
1562             case AVMEDIA_TYPE_DATA:
1563             case AVMEDIA_TYPE_ATTACHMENT:
1564                 break;
1565             default:
1566                 abort();
1567             }
1568         } else {
1569             if (!ost->enc) {
1570                 /* should only happen when a default codec is not present. */
1571                 snprintf(error, sizeof(error), "Automatic encoder selection "
1572                          "failed for output stream #%d:%d. Default encoder for "
1573                          "format %s is probably disabled. Please choose an "
1574                          "encoder manually.\n", ost->file_index, ost->index,
1575                          oc->oformat->name);
1576                 ret = AVERROR(EINVAL);
1577                 goto dump_format;
1578             }
1579
1580             if (ist)
1581                 ist->decoding_needed = 1;
1582             ost->encoding_needed = 1;
1583
1584             /*
1585              * We want CFR output if and only if one of those is true:
1586              * 1) user specified output framerate with -r
1587              * 2) user specified -vsync cfr
1588              * 3) output format is CFR and the user didn't force vsync to
1589              *    something else than CFR
1590              *
1591              * in such a case, set ost->frame_rate
1592              */
1593             if (codec->codec_type == AVMEDIA_TYPE_VIDEO &&
1594                 !ost->frame_rate.num && ist &&
1595                 (video_sync_method ==  VSYNC_CFR ||
1596                  (video_sync_method ==  VSYNC_AUTO &&
1597                   !(oc->oformat->flags & (AVFMT_NOTIMESTAMPS | AVFMT_VARIABLE_FPS))))) {
1598                 ost->frame_rate = ist->framerate.num ? ist->framerate :
1599                                   ist->st->avg_frame_rate.num ?
1600                                   ist->st->avg_frame_rate :
1601                                   (AVRational){25, 1};
1602
1603                 if (ost->enc && ost->enc->supported_framerates && !ost->force_fps) {
1604                     int idx = av_find_nearest_q_idx(ost->frame_rate, ost->enc->supported_framerates);
1605                     ost->frame_rate = ost->enc->supported_framerates[idx];
1606                 }
1607             }
1608
1609             if (!ost->filter &&
1610                 (codec->codec_type == AVMEDIA_TYPE_VIDEO ||
1611                  codec->codec_type == AVMEDIA_TYPE_AUDIO)) {
1612                     FilterGraph *fg;
1613                     fg = init_simple_filtergraph(ist, ost);
1614                     if (configure_filtergraph(fg)) {
1615                         av_log(NULL, AV_LOG_FATAL, "Error opening filters!\n");
1616                         exit(1);
1617                     }
1618             }
1619
1620             switch (codec->codec_type) {
1621             case AVMEDIA_TYPE_AUDIO:
1622                 codec->sample_fmt     = ost->filter->filter->inputs[0]->format;
1623                 codec->sample_rate    = ost->filter->filter->inputs[0]->sample_rate;
1624                 codec->channel_layout = ost->filter->filter->inputs[0]->channel_layout;
1625                 codec->channels       = av_get_channel_layout_nb_channels(codec->channel_layout);
1626                 codec->time_base      = (AVRational){ 1, codec->sample_rate };
1627                 break;
1628             case AVMEDIA_TYPE_VIDEO:
1629                 codec->time_base = ost->filter->filter->inputs[0]->time_base;
1630
1631                 codec->width  = ost->filter->filter->inputs[0]->w;
1632                 codec->height = ost->filter->filter->inputs[0]->h;
1633                 codec->sample_aspect_ratio = ost->st->sample_aspect_ratio =
1634                     ost->frame_aspect_ratio ? // overridden by the -aspect cli option
1635                     av_d2q(ost->frame_aspect_ratio * codec->height/codec->width, 255) :
1636                     ost->filter->filter->inputs[0]->sample_aspect_ratio;
1637                 codec->pix_fmt = ost->filter->filter->inputs[0]->format;
1638
1639                 if (icodec &&
1640                     (codec->width   != icodec->width  ||
1641                      codec->height  != icodec->height ||
1642                      codec->pix_fmt != icodec->pix_fmt)) {
1643                     codec->bits_per_raw_sample = 0;
1644                 }
1645
1646                 if (ost->forced_keyframes)
1647                     parse_forced_key_frames(ost->forced_keyframes, ost,
1648                                             ost->st->codec);
1649                 break;
1650             case AVMEDIA_TYPE_SUBTITLE:
1651                 codec->time_base = (AVRational){1, 1000};
1652                 break;
1653             default:
1654                 abort();
1655                 break;
1656             }
1657             /* two pass mode */
1658             if ((codec->flags & (CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2))) {
1659                 char logfilename[1024];
1660                 FILE *f;
1661
1662                 snprintf(logfilename, sizeof(logfilename), "%s-%d.log",
1663                          ost->logfile_prefix ? ost->logfile_prefix :
1664                                                DEFAULT_PASS_LOGFILENAME_PREFIX,
1665                          i);
1666                 if (!strcmp(ost->enc->name, "libx264")) {
1667                     av_dict_set(&ost->opts, "stats", logfilename, AV_DICT_DONT_OVERWRITE);
1668                 } else {
1669                     if (codec->flags & CODEC_FLAG_PASS1) {
1670                         f = fopen(logfilename, "wb");
1671                         if (!f) {
1672                             av_log(NULL, AV_LOG_FATAL, "Cannot write log file '%s' for pass-1 encoding: %s\n",
1673                                    logfilename, strerror(errno));
1674                             exit(1);
1675                         }
1676                         ost->logfile = f;
1677                     } else {
1678                         char  *logbuffer;
1679                         size_t logbuffer_size;
1680                         if (cmdutils_read_file(logfilename, &logbuffer, &logbuffer_size) < 0) {
1681                             av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n",
1682                                    logfilename);
1683                             exit(1);
1684                         }
1685                         codec->stats_in = logbuffer;
1686                     }
1687                 }
1688             }
1689         }
1690     }
1691
1692     /* open each encoder */
1693     for (i = 0; i < nb_output_streams; i++) {
1694         ost = output_streams[i];
1695         if (ost->encoding_needed) {
1696             AVCodec      *codec = ost->enc;
1697             AVCodecContext *dec = NULL;
1698
1699             if ((ist = get_input_stream(ost)))
1700                 dec = ist->st->codec;
1701             if (dec && dec->subtitle_header) {
1702                 ost->st->codec->subtitle_header = av_malloc(dec->subtitle_header_size);
1703                 if (!ost->st->codec->subtitle_header) {
1704                     ret = AVERROR(ENOMEM);
1705                     goto dump_format;
1706                 }
1707                 memcpy(ost->st->codec->subtitle_header, dec->subtitle_header, dec->subtitle_header_size);
1708                 ost->st->codec->subtitle_header_size = dec->subtitle_header_size;
1709             }
1710             if (!av_dict_get(ost->opts, "threads", NULL, 0))
1711                 av_dict_set(&ost->opts, "threads", "auto", 0);
1712             if ((ret = avcodec_open2(ost->st->codec, codec, &ost->opts)) < 0) {
1713                 if (ret == AVERROR_EXPERIMENTAL)
1714                     abort_codec_experimental(codec, 1);
1715                 snprintf(error, sizeof(error), "Error while opening encoder for output stream #%d:%d - maybe incorrect parameters such as bit_rate, rate, width or height",
1716                         ost->file_index, ost->index);
1717                 goto dump_format;
1718             }
1719             assert_avoptions(ost->opts);
1720             if (ost->st->codec->bit_rate && ost->st->codec->bit_rate < 1000)
1721                 av_log(NULL, AV_LOG_WARNING, "The bitrate parameter is set too low."
1722                                              "It takes bits/s as argument, not kbits/s\n");
1723             extra_size += ost->st->codec->extradata_size;
1724
1725             if (ost->st->codec->me_threshold)
1726                 input_streams[ost->source_index]->st->codec->debug |= FF_DEBUG_MV;
1727         } else {
1728             av_opt_set_dict(ost->st->codec, &ost->opts);
1729         }
1730     }
1731
1732     /* init input streams */
1733     for (i = 0; i < nb_input_streams; i++)
1734         if ((ret = init_input_stream(i, error, sizeof(error))) < 0)
1735             goto dump_format;
1736
1737     /* discard unused programs */
1738     for (i = 0; i < nb_input_files; i++) {
1739         InputFile *ifile = input_files[i];
1740         for (j = 0; j < ifile->ctx->nb_programs; j++) {
1741             AVProgram *p = ifile->ctx->programs[j];
1742             int discard  = AVDISCARD_ALL;
1743
1744             for (k = 0; k < p->nb_stream_indexes; k++)
1745                 if (!input_streams[ifile->ist_index + p->stream_index[k]]->discard) {
1746                     discard = AVDISCARD_DEFAULT;
1747                     break;
1748                 }
1749             p->discard = discard;
1750         }
1751     }
1752
1753     /* open files and write file headers */
1754     for (i = 0; i < nb_output_files; i++) {
1755         oc = output_files[i]->ctx;
1756         oc->interrupt_callback = int_cb;
1757         if ((ret = avformat_write_header(oc, &output_files[i]->opts)) < 0) {
1758             char errbuf[128];
1759             const char *errbuf_ptr = errbuf;
1760             if (av_strerror(ret, errbuf, sizeof(errbuf)) < 0)
1761                 errbuf_ptr = strerror(AVUNERROR(ret));
1762             snprintf(error, sizeof(error), "Could not write header for output file #%d (incorrect codec parameters ?): %s", i, errbuf_ptr);
1763             ret = AVERROR(EINVAL);
1764             goto dump_format;
1765         }
1766         assert_avoptions(output_files[i]->opts);
1767         if (strcmp(oc->oformat->name, "rtp")) {
1768             want_sdp = 0;
1769         }
1770     }
1771
1772  dump_format:
1773     /* dump the file output parameters - cannot be done before in case
1774        of stream copy */
1775     for (i = 0; i < nb_output_files; i++) {
1776         av_dump_format(output_files[i]->ctx, i, output_files[i]->ctx->filename, 1);
1777     }
1778
1779     /* dump the stream mapping */
1780     av_log(NULL, AV_LOG_INFO, "Stream mapping:\n");
1781     for (i = 0; i < nb_input_streams; i++) {
1782         ist = input_streams[i];
1783
1784         for (j = 0; j < ist->nb_filters; j++) {
1785             if (ist->filters[j]->graph->graph_desc) {
1786                 av_log(NULL, AV_LOG_INFO, "  Stream #%d:%d (%s) -> %s",
1787                        ist->file_index, ist->st->index, ist->dec ? ist->dec->name : "?",
1788                        ist->filters[j]->name);
1789                 if (nb_filtergraphs > 1)
1790                     av_log(NULL, AV_LOG_INFO, " (graph %d)", ist->filters[j]->graph->index);
1791                 av_log(NULL, AV_LOG_INFO, "\n");
1792             }
1793         }
1794     }
1795
1796     for (i = 0; i < nb_output_streams; i++) {
1797         ost = output_streams[i];
1798
1799         if (ost->attachment_filename) {
1800             /* an attached file */
1801             av_log(NULL, AV_LOG_INFO, "  File %s -> Stream #%d:%d\n",
1802                    ost->attachment_filename, ost->file_index, ost->index);
1803             continue;
1804         }
1805
1806         if (ost->filter && ost->filter->graph->graph_desc) {
1807             /* output from a complex graph */
1808             av_log(NULL, AV_LOG_INFO, "  %s", ost->filter->name);
1809             if (nb_filtergraphs > 1)
1810                 av_log(NULL, AV_LOG_INFO, " (graph %d)", ost->filter->graph->index);
1811
1812             av_log(NULL, AV_LOG_INFO, " -> Stream #%d:%d (%s)\n", ost->file_index,
1813                    ost->index, ost->enc ? ost->enc->name : "?");
1814             continue;
1815         }
1816
1817         av_log(NULL, AV_LOG_INFO, "  Stream #%d:%d -> #%d:%d",
1818                input_streams[ost->source_index]->file_index,
1819                input_streams[ost->source_index]->st->index,
1820                ost->file_index,
1821                ost->index);
1822         if (ost->sync_ist != input_streams[ost->source_index])
1823             av_log(NULL, AV_LOG_INFO, " [sync #%d:%d]",
1824                    ost->sync_ist->file_index,
1825                    ost->sync_ist->st->index);
1826         if (ost->stream_copy)
1827             av_log(NULL, AV_LOG_INFO, " (copy)");
1828         else
1829             av_log(NULL, AV_LOG_INFO, " (%s -> %s)", input_streams[ost->source_index]->dec ?
1830                    input_streams[ost->source_index]->dec->name : "?",
1831                    ost->enc ? ost->enc->name : "?");
1832         av_log(NULL, AV_LOG_INFO, "\n");
1833     }
1834
1835     if (ret) {
1836         av_log(NULL, AV_LOG_ERROR, "%s\n", error);
1837         return ret;
1838     }
1839
1840     if (want_sdp) {
1841         print_sdp();
1842     }
1843
1844     return 0;
1845 }
1846
1847 /* Return 1 if there remain streams where more output is wanted, 0 otherwise. */
1848 static int need_output(void)
1849 {
1850     int i;
1851
1852     for (i = 0; i < nb_output_streams; i++) {
1853         OutputStream *ost    = output_streams[i];
1854         OutputFile *of       = output_files[ost->file_index];
1855         AVFormatContext *os  = output_files[ost->file_index]->ctx;
1856
1857         if (ost->finished ||
1858             (os->pb && avio_tell(os->pb) >= of->limit_filesize))
1859             continue;
1860         if (ost->frame_number >= ost->max_frames) {
1861             int j;
1862             for (j = 0; j < of->ctx->nb_streams; j++)
1863                 output_streams[of->ost_index + j]->finished = 1;
1864             continue;
1865         }
1866
1867         return 1;
1868     }
1869
1870     return 0;
1871 }
1872
1873 static InputFile *select_input_file(void)
1874 {
1875     InputFile *ifile = NULL;
1876     int64_t ipts_min = INT64_MAX;
1877     int i;
1878
1879     for (i = 0; i < nb_input_streams; i++) {
1880         InputStream *ist = input_streams[i];
1881         int64_t ipts     = ist->last_dts;
1882
1883         if (ist->discard || input_files[ist->file_index]->eagain)
1884             continue;
1885         if (!input_files[ist->file_index]->eof_reached) {
1886             if (ipts < ipts_min) {
1887                 ipts_min = ipts;
1888                 ifile    = input_files[ist->file_index];
1889             }
1890         }
1891     }
1892
1893     return ifile;
1894 }
1895
1896 #if HAVE_PTHREADS
1897 static void *input_thread(void *arg)
1898 {
1899     InputFile *f = arg;
1900     int ret = 0;
1901
1902     while (!transcoding_finished && ret >= 0) {
1903         AVPacket pkt;
1904         ret = av_read_frame(f->ctx, &pkt);
1905
1906         if (ret == AVERROR(EAGAIN)) {
1907             av_usleep(10000);
1908             ret = 0;
1909             continue;
1910         } else if (ret < 0)
1911             break;
1912
1913         pthread_mutex_lock(&f->fifo_lock);
1914         while (!av_fifo_space(f->fifo))
1915             pthread_cond_wait(&f->fifo_cond, &f->fifo_lock);
1916
1917         av_dup_packet(&pkt);
1918         av_fifo_generic_write(f->fifo, &pkt, sizeof(pkt), NULL);
1919
1920         pthread_mutex_unlock(&f->fifo_lock);
1921     }
1922
1923     f->finished = 1;
1924     return NULL;
1925 }
1926
1927 static void free_input_threads(void)
1928 {
1929     int i;
1930
1931     if (nb_input_files == 1)
1932         return;
1933
1934     transcoding_finished = 1;
1935
1936     for (i = 0; i < nb_input_files; i++) {
1937         InputFile *f = input_files[i];
1938         AVPacket pkt;
1939
1940         if (!f->fifo || f->joined)
1941             continue;
1942
1943         pthread_mutex_lock(&f->fifo_lock);
1944         while (av_fifo_size(f->fifo)) {
1945             av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL);
1946             av_free_packet(&pkt);
1947         }
1948         pthread_cond_signal(&f->fifo_cond);
1949         pthread_mutex_unlock(&f->fifo_lock);
1950
1951         pthread_join(f->thread, NULL);
1952         f->joined = 1;
1953
1954         while (av_fifo_size(f->fifo)) {
1955             av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL);
1956             av_free_packet(&pkt);
1957         }
1958         av_fifo_free(f->fifo);
1959     }
1960 }
1961
1962 static int init_input_threads(void)
1963 {
1964     int i, ret;
1965
1966     if (nb_input_files == 1)
1967         return 0;
1968
1969     for (i = 0; i < nb_input_files; i++) {
1970         InputFile *f = input_files[i];
1971
1972         if (!(f->fifo = av_fifo_alloc(8*sizeof(AVPacket))))
1973             return AVERROR(ENOMEM);
1974
1975         pthread_mutex_init(&f->fifo_lock, NULL);
1976         pthread_cond_init (&f->fifo_cond, NULL);
1977
1978         if ((ret = pthread_create(&f->thread, NULL, input_thread, f)))
1979             return AVERROR(ret);
1980     }
1981     return 0;
1982 }
1983
1984 static int get_input_packet_mt(InputFile *f, AVPacket *pkt)
1985 {
1986     int ret = 0;
1987
1988     pthread_mutex_lock(&f->fifo_lock);
1989
1990     if (av_fifo_size(f->fifo)) {
1991         av_fifo_generic_read(f->fifo, pkt, sizeof(*pkt), NULL);
1992         pthread_cond_signal(&f->fifo_cond);
1993     } else {
1994         if (f->finished)
1995             ret = AVERROR_EOF;
1996         else
1997             ret = AVERROR(EAGAIN);
1998     }
1999
2000     pthread_mutex_unlock(&f->fifo_lock);
2001
2002     return ret;
2003 }
2004 #endif
2005
2006 static int get_input_packet(InputFile *f, AVPacket *pkt)
2007 {
2008     if (f->rate_emu) {
2009         int i;
2010         for (i = 0; i < f->nb_streams; i++) {
2011             InputStream *ist = input_streams[f->ist_index + i];
2012             int64_t pts = av_rescale(ist->last_dts, 1000000, AV_TIME_BASE);
2013             int64_t now = av_gettime() - ist->start;
2014             if (pts > now)
2015                 return AVERROR(EAGAIN);
2016         }
2017     }
2018
2019 #if HAVE_PTHREADS
2020     if (nb_input_files > 1)
2021         return get_input_packet_mt(f, pkt);
2022 #endif
2023     return av_read_frame(f->ctx, pkt);
2024 }
2025
2026 static int got_eagain(void)
2027 {
2028     int i;
2029     for (i = 0; i < nb_input_files; i++)
2030         if (input_files[i]->eagain)
2031             return 1;
2032     return 0;
2033 }
2034
2035 static void reset_eagain(void)
2036 {
2037     int i;
2038     for (i = 0; i < nb_input_files; i++)
2039         input_files[i]->eagain = 0;
2040 }
2041
2042 /*
2043  * Read one packet from an input file and send it for
2044  * - decoding -> lavfi (audio/video)
2045  * - decoding -> encoding -> muxing (subtitles)
2046  * - muxing (streamcopy)
2047  *
2048  * Return
2049  * - 0 -- one packet was read and processed
2050  * - AVERROR(EAGAIN) -- no packets were available for selected file,
2051  *   this function should be called again
2052  * - AVERROR_EOF -- this function should not be called again
2053  */
2054 static int process_input(void)
2055 {
2056     InputFile *ifile;
2057     AVFormatContext *is;
2058     InputStream *ist;
2059     AVPacket pkt;
2060     int ret, i, j;
2061
2062     /* select the stream that we must read now */
2063     ifile = select_input_file();
2064     /* if none, if is finished */
2065     if (!ifile) {
2066         if (got_eagain()) {
2067             reset_eagain();
2068             av_usleep(10000);
2069             return AVERROR(EAGAIN);
2070         }
2071         av_log(NULL, AV_LOG_VERBOSE, "No more inputs to read from.\n");
2072         return AVERROR_EOF;
2073     }
2074
2075     is  = ifile->ctx;
2076     ret = get_input_packet(ifile, &pkt);
2077
2078     if (ret == AVERROR(EAGAIN)) {
2079         ifile->eagain = 1;
2080         return ret;
2081     }
2082     if (ret < 0) {
2083         if (ret != AVERROR_EOF) {
2084             print_error(is->filename, ret);
2085             if (exit_on_error)
2086                 exit(1);
2087         }
2088         ifile->eof_reached = 1;
2089
2090         for (i = 0; i < ifile->nb_streams; i++) {
2091             ist = input_streams[ifile->ist_index + i];
2092             if (ist->decoding_needed)
2093                 output_packet(ist, NULL);
2094
2095             /* mark all outputs that don't go through lavfi as finished */
2096             for (j = 0; j < nb_output_streams; j++) {
2097                 OutputStream *ost = output_streams[j];
2098
2099                 if (ost->source_index == ifile->ist_index + i &&
2100                     (ost->stream_copy || ost->enc->type == AVMEDIA_TYPE_SUBTITLE))
2101                     ost->finished= 1;
2102             }
2103         }
2104
2105         return AVERROR(EAGAIN);
2106     }
2107
2108     reset_eagain();
2109
2110     if (do_pkt_dump) {
2111         av_pkt_dump_log2(NULL, AV_LOG_DEBUG, &pkt, do_hex_dump,
2112                          is->streams[pkt.stream_index]);
2113     }
2114     /* the following test is needed in case new streams appear
2115        dynamically in stream : we ignore them */
2116     if (pkt.stream_index >= ifile->nb_streams)
2117         goto discard_packet;
2118
2119     ist = input_streams[ifile->ist_index + pkt.stream_index];
2120     if (ist->discard)
2121         goto discard_packet;
2122
2123     if (pkt.dts != AV_NOPTS_VALUE)
2124         pkt.dts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
2125     if (pkt.pts != AV_NOPTS_VALUE)
2126         pkt.pts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
2127
2128     if (pkt.pts != AV_NOPTS_VALUE)
2129         pkt.pts *= ist->ts_scale;
2130     if (pkt.dts != AV_NOPTS_VALUE)
2131         pkt.dts *= ist->ts_scale;
2132
2133     if (pkt.dts != AV_NOPTS_VALUE && ist->next_dts != AV_NOPTS_VALUE &&
2134         (is->iformat->flags & AVFMT_TS_DISCONT)) {
2135         int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
2136         int64_t delta   = pkt_dts - ist->next_dts;
2137
2138         if ((FFABS(delta) > 1LL * dts_delta_threshold * AV_TIME_BASE || pkt_dts + 1 < ist->last_dts) && !copy_ts) {
2139             ifile->ts_offset -= delta;
2140             av_log(NULL, AV_LOG_DEBUG,
2141                    "timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",
2142                    delta, ifile->ts_offset);
2143             pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
2144             if (pkt.pts != AV_NOPTS_VALUE)
2145                 pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
2146         }
2147     }
2148
2149     ret = output_packet(ist, &pkt);
2150     if (ret < 0) {
2151         av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d\n",
2152                ist->file_index, ist->st->index);
2153         if (exit_on_error)
2154             exit(1);
2155     }
2156
2157 discard_packet:
2158     av_free_packet(&pkt);
2159
2160     return 0;
2161 }
2162
2163 /*
2164  * The following code is the main loop of the file converter
2165  */
2166 static int transcode(void)
2167 {
2168     int ret, i, need_input = 1;
2169     AVFormatContext *os;
2170     OutputStream *ost;
2171     InputStream *ist;
2172     int64_t timer_start;
2173
2174     ret = transcode_init();
2175     if (ret < 0)
2176         goto fail;
2177
2178     av_log(NULL, AV_LOG_INFO, "Press ctrl-c to stop encoding\n");
2179     term_init();
2180
2181     timer_start = av_gettime();
2182
2183 #if HAVE_PTHREADS
2184     if ((ret = init_input_threads()) < 0)
2185         goto fail;
2186 #endif
2187
2188     while (!received_sigterm) {
2189         /* check if there's any stream where output is still needed */
2190         if (!need_output()) {
2191             av_log(NULL, AV_LOG_VERBOSE, "No more output streams to write to, finishing.\n");
2192             break;
2193         }
2194
2195         /* read and process one input packet if needed */
2196         if (need_input) {
2197             ret = process_input();
2198             if (ret == AVERROR_EOF)
2199                 need_input = 0;
2200         }
2201
2202         ret = poll_filters();
2203         if (ret < 0) {
2204             if (ret == AVERROR_EOF || ret == AVERROR(EAGAIN))
2205                 continue;
2206
2207             av_log(NULL, AV_LOG_ERROR, "Error while filtering.\n");
2208             break;
2209         }
2210
2211         /* dump report by using the output first video and audio streams */
2212         print_report(0, timer_start);
2213     }
2214 #if HAVE_PTHREADS
2215     free_input_threads();
2216 #endif
2217
2218     /* at the end of stream, we must flush the decoder buffers */
2219     for (i = 0; i < nb_input_streams; i++) {
2220         ist = input_streams[i];
2221         if (!input_files[ist->file_index]->eof_reached && ist->decoding_needed) {
2222             output_packet(ist, NULL);
2223         }
2224     }
2225     poll_filters();
2226     flush_encoders();
2227
2228     term_exit();
2229
2230     /* write the trailer if needed and close file */
2231     for (i = 0; i < nb_output_files; i++) {
2232         os = output_files[i]->ctx;
2233         av_write_trailer(os);
2234     }
2235
2236     /* dump report by using the first video and audio streams */
2237     print_report(1, timer_start);
2238
2239     /* close each encoder */
2240     for (i = 0; i < nb_output_streams; i++) {
2241         ost = output_streams[i];
2242         if (ost->encoding_needed) {
2243             av_freep(&ost->st->codec->stats_in);
2244             avcodec_close(ost->st->codec);
2245         }
2246     }
2247
2248     /* close each decoder */
2249     for (i = 0; i < nb_input_streams; i++) {
2250         ist = input_streams[i];
2251         if (ist->decoding_needed) {
2252             avcodec_close(ist->st->codec);
2253         }
2254     }
2255
2256     /* finished ! */
2257     ret = 0;
2258
2259  fail:
2260 #if HAVE_PTHREADS
2261     free_input_threads();
2262 #endif
2263
2264     if (output_streams) {
2265         for (i = 0; i < nb_output_streams; i++) {
2266             ost = output_streams[i];
2267             if (ost) {
2268                 if (ost->stream_copy)
2269                     av_freep(&ost->st->codec->extradata);
2270                 if (ost->logfile) {
2271                     fclose(ost->logfile);
2272                     ost->logfile = NULL;
2273                 }
2274                 av_freep(&ost->st->codec->subtitle_header);
2275                 av_free(ost->forced_kf_pts);
2276                 av_dict_free(&ost->opts);
2277                 av_dict_free(&ost->resample_opts);
2278             }
2279         }
2280     }
2281     return ret;
2282 }
2283
2284 static int64_t getutime(void)
2285 {
2286 #if HAVE_GETRUSAGE
2287     struct rusage rusage;
2288
2289     getrusage(RUSAGE_SELF, &rusage);
2290     return (rusage.ru_utime.tv_sec * 1000000LL) + rusage.ru_utime.tv_usec;
2291 #elif HAVE_GETPROCESSTIMES
2292     HANDLE proc;
2293     FILETIME c, e, k, u;
2294     proc = GetCurrentProcess();
2295     GetProcessTimes(proc, &c, &e, &k, &u);
2296     return ((int64_t) u.dwHighDateTime << 32 | u.dwLowDateTime) / 10;
2297 #else
2298     return av_gettime();
2299 #endif
2300 }
2301
2302 static int64_t getmaxrss(void)
2303 {
2304 #if HAVE_GETRUSAGE && HAVE_STRUCT_RUSAGE_RU_MAXRSS
2305     struct rusage rusage;
2306     getrusage(RUSAGE_SELF, &rusage);
2307     return (int64_t)rusage.ru_maxrss * 1024;
2308 #elif HAVE_GETPROCESSMEMORYINFO
2309     HANDLE proc;
2310     PROCESS_MEMORY_COUNTERS memcounters;
2311     proc = GetCurrentProcess();
2312     memcounters.cb = sizeof(memcounters);
2313     GetProcessMemoryInfo(proc, &memcounters, sizeof(memcounters));
2314     return memcounters.PeakPagefileUsage;
2315 #else
2316     return 0;
2317 #endif
2318 }
2319
2320 int main(int argc, char **argv)
2321 {
2322     int ret;
2323     int64_t ti;
2324
2325     atexit(exit_program);
2326
2327     av_log_set_flags(AV_LOG_SKIP_REPEATED);
2328     parse_loglevel(argc, argv, options);
2329
2330     avcodec_register_all();
2331 #if CONFIG_AVDEVICE
2332     avdevice_register_all();
2333 #endif
2334     avfilter_register_all();
2335     av_register_all();
2336     avformat_network_init();
2337
2338     show_banner();
2339
2340     /* parse options and open all input/output files */
2341     ret = avconv_parse_options(argc, argv);
2342     if (ret < 0)
2343         exit(1);
2344
2345     if (nb_output_files <= 0 && nb_input_files == 0) {
2346         show_usage();
2347         av_log(NULL, AV_LOG_WARNING, "Use -h to get full help or, even better, run 'man %s'\n", program_name);
2348         exit(1);
2349     }
2350
2351     /* file converter / grab */
2352     if (nb_output_files <= 0) {
2353         fprintf(stderr, "At least one output file must be specified\n");
2354         exit(1);
2355     }
2356
2357     ti = getutime();
2358     if (transcode() < 0)
2359         exit(1);
2360     ti = getutime() - ti;
2361     if (do_benchmark) {
2362         int maxrss = getmaxrss() / 1024;
2363         printf("bench: utime=%0.3fs maxrss=%ikB\n", ti / 1000000.0, maxrss);
2364     }
2365
2366     exit(0);
2367     return 0;
2368 }