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