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