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