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