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