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