]> git.sesse.net Git - ffmpeg/blob - ffmpeg.c
lavd: Use av_gettime_relative()
[ffmpeg] / ffmpeg.c
1 /*
2  * Copyright (c) 2000-2003 Fabrice Bellard
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * multimedia converter based on the FFmpeg libraries
24  */
25
26 #include "config.h"
27 #include <ctype.h>
28 #include <string.h>
29 #include <math.h>
30 #include <stdlib.h>
31 #include <errno.h>
32 #include <limits.h>
33 #include <stdint.h>
34
35 #if HAVE_ISATTY
36 #if HAVE_IO_H
37 #include <io.h>
38 #endif
39 #if HAVE_UNISTD_H
40 #include <unistd.h>
41 #endif
42 #endif
43
44 #include "libavformat/avformat.h"
45 #include "libavdevice/avdevice.h"
46 #include "libswresample/swresample.h"
47 #include "libavutil/opt.h"
48 #include "libavutil/channel_layout.h"
49 #include "libavutil/parseutils.h"
50 #include "libavutil/samplefmt.h"
51 #include "libavutil/fifo.h"
52 #include "libavutil/intreadwrite.h"
53 #include "libavutil/dict.h"
54 #include "libavutil/mathematics.h"
55 #include "libavutil/pixdesc.h"
56 #include "libavutil/avstring.h"
57 #include "libavutil/libm.h"
58 #include "libavutil/imgutils.h"
59 #include "libavutil/timestamp.h"
60 #include "libavutil/bprint.h"
61 #include "libavutil/time.h"
62 #include "libavformat/os_support.h"
63
64 #include "libavformat/ffm.h" // not public API
65
66 # include "libavfilter/avcodec.h"
67 # include "libavfilter/avfilter.h"
68 # include "libavfilter/buffersrc.h"
69 # include "libavfilter/buffersink.h"
70
71 #if HAVE_SYS_RESOURCE_H
72 #include <sys/time.h>
73 #include <sys/types.h>
74 #include <sys/resource.h>
75 #elif HAVE_GETPROCESSTIMES
76 #include <windows.h>
77 #endif
78 #if HAVE_GETPROCESSMEMORYINFO
79 #include <windows.h>
80 #include <psapi.h>
81 #endif
82
83 #if HAVE_SYS_SELECT_H
84 #include <sys/select.h>
85 #endif
86
87 #if HAVE_TERMIOS_H
88 #include <fcntl.h>
89 #include <sys/ioctl.h>
90 #include <sys/time.h>
91 #include <termios.h>
92 #elif HAVE_KBHIT
93 #include <conio.h>
94 #endif
95
96 #if HAVE_PTHREADS
97 #include <pthread.h>
98 #endif
99
100 #include <time.h>
101
102 #include "ffmpeg.h"
103 #include "cmdutils.h"
104
105 #include "libavutil/avassert.h"
106
107 const char program_name[] = "ffmpeg";
108 const int program_birth_year = 2000;
109
110 static FILE *vstats_file;
111
112 const char *const forced_keyframes_const_names[] = {
113     "n",
114     "n_forced",
115     "prev_forced_n",
116     "prev_forced_t",
117     "t",
118     NULL
119 };
120
121 static void do_video_stats(OutputStream *ost, int frame_size);
122 static int64_t getutime(void);
123 static int64_t getmaxrss(void);
124
125 static int run_as_daemon  = 0;
126 static int nb_frames_dup = 0;
127 static int nb_frames_drop = 0;
128 static int64_t decode_error_stat[2];
129
130 static int current_time;
131 AVIOContext *progress_avio = NULL;
132
133 static uint8_t *subtitle_out;
134
135 #if HAVE_PTHREADS
136 /* signal to input threads that they should exit; set by the main thread */
137 static int transcoding_finished;
138 #endif
139
140 #define DEFAULT_PASS_LOGFILENAME_PREFIX "ffmpeg2pass"
141
142 InputStream **input_streams = NULL;
143 int        nb_input_streams = 0;
144 InputFile   **input_files   = NULL;
145 int        nb_input_files   = 0;
146
147 OutputStream **output_streams = NULL;
148 int         nb_output_streams = 0;
149 OutputFile   **output_files   = NULL;
150 int         nb_output_files   = 0;
151
152 FilterGraph **filtergraphs;
153 int        nb_filtergraphs;
154
155 #if HAVE_TERMIOS_H
156
157 /* init terminal so that we can grab keys */
158 static struct termios oldtty;
159 static int restore_tty;
160 #endif
161
162 static void free_input_threads(void);
163
164
165 /* sub2video hack:
166    Convert subtitles to video with alpha to insert them in filter graphs.
167    This is a temporary solution until libavfilter gets real subtitles support.
168  */
169
170 static int sub2video_get_blank_frame(InputStream *ist)
171 {
172     int ret;
173     AVFrame *frame = ist->sub2video.frame;
174
175     av_frame_unref(frame);
176     ist->sub2video.frame->width  = ist->sub2video.w;
177     ist->sub2video.frame->height = ist->sub2video.h;
178     ist->sub2video.frame->format = AV_PIX_FMT_RGB32;
179     if ((ret = av_frame_get_buffer(frame, 32)) < 0)
180         return ret;
181     memset(frame->data[0], 0, frame->height * frame->linesize[0]);
182     return 0;
183 }
184
185 static void sub2video_copy_rect(uint8_t *dst, int dst_linesize, int w, int h,
186                                 AVSubtitleRect *r)
187 {
188     uint32_t *pal, *dst2;
189     uint8_t *src, *src2;
190     int x, y;
191
192     if (r->type != SUBTITLE_BITMAP) {
193         av_log(NULL, AV_LOG_WARNING, "sub2video: non-bitmap subtitle\n");
194         return;
195     }
196     if (r->x < 0 || r->x + r->w > w || r->y < 0 || r->y + r->h > h) {
197         av_log(NULL, AV_LOG_WARNING, "sub2video: rectangle overflowing\n");
198         return;
199     }
200
201     dst += r->y * dst_linesize + r->x * 4;
202     src = r->pict.data[0];
203     pal = (uint32_t *)r->pict.data[1];
204     for (y = 0; y < r->h; y++) {
205         dst2 = (uint32_t *)dst;
206         src2 = src;
207         for (x = 0; x < r->w; x++)
208             *(dst2++) = pal[*(src2++)];
209         dst += dst_linesize;
210         src += r->pict.linesize[0];
211     }
212 }
213
214 static void sub2video_push_ref(InputStream *ist, int64_t pts)
215 {
216     AVFrame *frame = ist->sub2video.frame;
217     int i;
218
219     av_assert1(frame->data[0]);
220     ist->sub2video.last_pts = frame->pts = pts;
221     for (i = 0; i < ist->nb_filters; i++)
222         av_buffersrc_add_frame_flags(ist->filters[i]->filter, frame,
223                                      AV_BUFFERSRC_FLAG_KEEP_REF |
224                                      AV_BUFFERSRC_FLAG_PUSH);
225 }
226
227 static void sub2video_update(InputStream *ist, AVSubtitle *sub)
228 {
229     int w = ist->sub2video.w, h = ist->sub2video.h;
230     AVFrame *frame = ist->sub2video.frame;
231     int8_t *dst;
232     int     dst_linesize;
233     int num_rects, i;
234     int64_t pts, end_pts;
235
236     if (!frame)
237         return;
238     if (sub) {
239         pts       = av_rescale_q(sub->pts + sub->start_display_time * 1000,
240                                  AV_TIME_BASE_Q, ist->st->time_base);
241         end_pts   = av_rescale_q(sub->pts + sub->end_display_time   * 1000,
242                                  AV_TIME_BASE_Q, ist->st->time_base);
243         num_rects = sub->num_rects;
244     } else {
245         pts       = ist->sub2video.end_pts;
246         end_pts   = INT64_MAX;
247         num_rects = 0;
248     }
249     if (sub2video_get_blank_frame(ist) < 0) {
250         av_log(ist->st->codec, AV_LOG_ERROR,
251                "Impossible to get a blank canvas.\n");
252         return;
253     }
254     dst          = frame->data    [0];
255     dst_linesize = frame->linesize[0];
256     for (i = 0; i < num_rects; i++)
257         sub2video_copy_rect(dst, dst_linesize, w, h, sub->rects[i]);
258     sub2video_push_ref(ist, pts);
259     ist->sub2video.end_pts = end_pts;
260 }
261
262 static void sub2video_heartbeat(InputStream *ist, int64_t pts)
263 {
264     InputFile *infile = input_files[ist->file_index];
265     int i, j, nb_reqs;
266     int64_t pts2;
267
268     /* When a frame is read from a file, examine all sub2video streams in
269        the same file and send the sub2video frame again. Otherwise, decoded
270        video frames could be accumulating in the filter graph while a filter
271        (possibly overlay) is desperately waiting for a subtitle frame. */
272     for (i = 0; i < infile->nb_streams; i++) {
273         InputStream *ist2 = input_streams[infile->ist_index + i];
274         if (!ist2->sub2video.frame)
275             continue;
276         /* subtitles seem to be usually muxed ahead of other streams;
277            if not, substracting a larger time here is necessary */
278         pts2 = av_rescale_q(pts, ist->st->time_base, ist2->st->time_base) - 1;
279         /* do not send the heartbeat frame if the subtitle is already ahead */
280         if (pts2 <= ist2->sub2video.last_pts)
281             continue;
282         if (pts2 >= ist2->sub2video.end_pts || !ist2->sub2video.frame->data[0])
283             sub2video_update(ist2, NULL);
284         for (j = 0, nb_reqs = 0; j < ist2->nb_filters; j++)
285             nb_reqs += av_buffersrc_get_nb_failed_requests(ist2->filters[j]->filter);
286         if (nb_reqs)
287             sub2video_push_ref(ist2, pts2);
288     }
289 }
290
291 static void sub2video_flush(InputStream *ist)
292 {
293     int i;
294
295     if (ist->sub2video.end_pts < INT64_MAX)
296         sub2video_update(ist, NULL);
297     for (i = 0; i < ist->nb_filters; i++)
298         av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
299 }
300
301 /* end of sub2video hack */
302
303 static void term_exit_sigsafe(void)
304 {
305 #if HAVE_TERMIOS_H
306     if(restore_tty)
307         tcsetattr (0, TCSANOW, &oldtty);
308 #endif
309 }
310
311 void term_exit(void)
312 {
313     av_log(NULL, AV_LOG_QUIET, "%s", "");
314     term_exit_sigsafe();
315 }
316
317 static volatile int received_sigterm = 0;
318 static volatile int received_nb_signals = 0;
319 static volatile int transcode_init_done = 0;
320 static int main_return_code = 0;
321
322 static void
323 sigterm_handler(int sig)
324 {
325     received_sigterm = sig;
326     received_nb_signals++;
327     term_exit_sigsafe();
328     if(received_nb_signals > 3)
329         exit(123);
330 }
331
332 void term_init(void)
333 {
334 #if HAVE_TERMIOS_H
335     if(!run_as_daemon){
336         struct termios tty;
337         int istty = 1;
338 #if HAVE_ISATTY
339         istty = isatty(0) && isatty(2);
340 #endif
341         if (istty && tcgetattr (0, &tty) == 0) {
342             oldtty = tty;
343             restore_tty = 1;
344
345             tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
346                              |INLCR|IGNCR|ICRNL|IXON);
347             tty.c_oflag |= OPOST;
348             tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
349             tty.c_cflag &= ~(CSIZE|PARENB);
350             tty.c_cflag |= CS8;
351             tty.c_cc[VMIN] = 1;
352             tty.c_cc[VTIME] = 0;
353
354             tcsetattr (0, TCSANOW, &tty);
355         }
356         signal(SIGQUIT, sigterm_handler); /* Quit (POSIX).  */
357     }
358 #endif
359     avformat_network_deinit();
360
361     signal(SIGINT , sigterm_handler); /* Interrupt (ANSI).    */
362     signal(SIGTERM, sigterm_handler); /* Termination (ANSI).  */
363 #ifdef SIGXCPU
364     signal(SIGXCPU, sigterm_handler);
365 #endif
366 }
367
368 /* read a key without blocking */
369 static int read_key(void)
370 {
371     unsigned char ch;
372 #if HAVE_TERMIOS_H
373     int n = 1;
374     struct timeval tv;
375     fd_set rfds;
376
377     FD_ZERO(&rfds);
378     FD_SET(0, &rfds);
379     tv.tv_sec = 0;
380     tv.tv_usec = 0;
381     n = select(1, &rfds, NULL, NULL, &tv);
382     if (n > 0) {
383         n = read(0, &ch, 1);
384         if (n == 1)
385             return ch;
386
387         return n;
388     }
389 #elif HAVE_KBHIT
390 #    if HAVE_PEEKNAMEDPIPE
391     static int is_pipe;
392     static HANDLE input_handle;
393     DWORD dw, nchars;
394     if(!input_handle){
395         input_handle = GetStdHandle(STD_INPUT_HANDLE);
396         is_pipe = !GetConsoleMode(input_handle, &dw);
397     }
398
399     if (stdin->_cnt > 0) {
400         read(0, &ch, 1);
401         return ch;
402     }
403     if (is_pipe) {
404         /* When running under a GUI, you will end here. */
405         if (!PeekNamedPipe(input_handle, NULL, 0, NULL, &nchars, NULL)) {
406             // input pipe may have been closed by the program that ran ffmpeg
407             return -1;
408         }
409         //Read it
410         if(nchars != 0) {
411             read(0, &ch, 1);
412             return ch;
413         }else{
414             return -1;
415         }
416     }
417 #    endif
418     if(kbhit())
419         return(getch());
420 #endif
421     return -1;
422 }
423
424 static int decode_interrupt_cb(void *ctx)
425 {
426     return received_nb_signals > transcode_init_done;
427 }
428
429 const AVIOInterruptCB int_cb = { decode_interrupt_cb, NULL };
430
431 static void ffmpeg_cleanup(int ret)
432 {
433     int i, j;
434
435     if (do_benchmark) {
436         int maxrss = getmaxrss() / 1024;
437         printf("bench: maxrss=%ikB\n", maxrss);
438     }
439
440     for (i = 0; i < nb_filtergraphs; i++) {
441         FilterGraph *fg = filtergraphs[i];
442         avfilter_graph_free(&fg->graph);
443         for (j = 0; j < fg->nb_inputs; j++) {
444             av_freep(&fg->inputs[j]->name);
445             av_freep(&fg->inputs[j]);
446         }
447         av_freep(&fg->inputs);
448         for (j = 0; j < fg->nb_outputs; j++) {
449             av_freep(&fg->outputs[j]->name);
450             av_freep(&fg->outputs[j]);
451         }
452         av_freep(&fg->outputs);
453         av_freep(&fg->graph_desc);
454
455         av_freep(&filtergraphs[i]);
456     }
457     av_freep(&filtergraphs);
458
459     av_freep(&subtitle_out);
460
461     /* close files */
462     for (i = 0; i < nb_output_files; i++) {
463         OutputFile *of = output_files[i];
464         AVFormatContext *s = of->ctx;
465         if (s && s->oformat && !(s->oformat->flags & AVFMT_NOFILE) && s->pb)
466             avio_close(s->pb);
467         avformat_free_context(s);
468         av_dict_free(&of->opts);
469
470         av_freep(&output_files[i]);
471     }
472     for (i = 0; i < nb_output_streams; i++) {
473         OutputStream *ost = output_streams[i];
474         AVBitStreamFilterContext *bsfc = ost->bitstream_filters;
475         while (bsfc) {
476             AVBitStreamFilterContext *next = bsfc->next;
477             av_bitstream_filter_close(bsfc);
478             bsfc = next;
479         }
480         ost->bitstream_filters = NULL;
481         av_frame_free(&ost->filtered_frame);
482
483         av_parser_close(ost->parser);
484
485         av_freep(&ost->forced_keyframes);
486         av_expr_free(ost->forced_keyframes_pexpr);
487         av_freep(&ost->avfilter);
488         av_freep(&ost->logfile_prefix);
489
490         av_freep(&output_streams[i]);
491     }
492 #if HAVE_PTHREADS
493     free_input_threads();
494 #endif
495     for (i = 0; i < nb_input_files; i++) {
496         avformat_close_input(&input_files[i]->ctx);
497         av_freep(&input_files[i]);
498     }
499     for (i = 0; i < nb_input_streams; i++) {
500         InputStream *ist = input_streams[i];
501
502         av_frame_free(&ist->decoded_frame);
503         av_frame_free(&ist->filter_frame);
504         av_dict_free(&ist->decoder_opts);
505         avsubtitle_free(&ist->prev_sub.subtitle);
506         av_frame_free(&ist->sub2video.frame);
507         av_freep(&ist->filters);
508         av_freep(&ist->hwaccel_device);
509
510         av_freep(&input_streams[i]);
511     }
512
513     if (vstats_file)
514         fclose(vstats_file);
515     av_free(vstats_filename);
516
517     av_freep(&input_streams);
518     av_freep(&input_files);
519     av_freep(&output_streams);
520     av_freep(&output_files);
521
522     uninit_opts();
523
524     avformat_network_deinit();
525
526     if (received_sigterm) {
527         av_log(NULL, AV_LOG_INFO, "Received signal %d: terminating.\n",
528                (int) received_sigterm);
529     } else if (ret && transcode_init_done) {
530         av_log(NULL, AV_LOG_INFO, "Conversion failed!\n");
531     }
532     term_exit();
533 }
534
535 void assert_avoptions(AVDictionary *m)
536 {
537     AVDictionaryEntry *t;
538     if ((t = av_dict_get(m, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
539         av_log(NULL, AV_LOG_FATAL, "Option %s not found.\n", t->key);
540         exit_program(1);
541     }
542 }
543
544 static void abort_codec_experimental(AVCodec *c, int encoder)
545 {
546     exit_program(1);
547 }
548
549 static void update_benchmark(const char *fmt, ...)
550 {
551     if (do_benchmark_all) {
552         int64_t t = getutime();
553         va_list va;
554         char buf[1024];
555
556         if (fmt) {
557             va_start(va, fmt);
558             vsnprintf(buf, sizeof(buf), fmt, va);
559             va_end(va);
560             printf("bench: %8"PRIu64" %s \n", t - current_time, buf);
561         }
562         current_time = t;
563     }
564 }
565
566 static void close_all_output_streams(OutputStream *ost, OSTFinished this_stream, OSTFinished others)
567 {
568     int i;
569     for (i = 0; i < nb_output_streams; i++) {
570         OutputStream *ost2 = output_streams[i];
571         ost2->finished |= ost == ost2 ? this_stream : others;
572     }
573 }
574
575 static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost)
576 {
577     AVBitStreamFilterContext *bsfc = ost->bitstream_filters;
578     AVCodecContext          *avctx = ost->st->codec;
579     int ret;
580
581     if ((avctx->codec_type == AVMEDIA_TYPE_VIDEO && video_sync_method == VSYNC_DROP) ||
582         (avctx->codec_type == AVMEDIA_TYPE_AUDIO && audio_sync_method < 0))
583         pkt->pts = pkt->dts = AV_NOPTS_VALUE;
584
585     /*
586      * Audio encoders may split the packets --  #frames in != #packets out.
587      * But there is no reordering, so we can limit the number of output packets
588      * by simply dropping them here.
589      * Counting encoded video frames needs to be done separately because of
590      * reordering, see do_video_out()
591      */
592     if (!(avctx->codec_type == AVMEDIA_TYPE_VIDEO && avctx->codec)) {
593         if (ost->frame_number >= ost->max_frames) {
594             av_free_packet(pkt);
595             return;
596         }
597         ost->frame_number++;
598     }
599
600     if (bsfc)
601         av_packet_split_side_data(pkt);
602
603     while (bsfc) {
604         AVPacket new_pkt = *pkt;
605         int a = av_bitstream_filter_filter(bsfc, avctx, NULL,
606                                            &new_pkt.data, &new_pkt.size,
607                                            pkt->data, pkt->size,
608                                            pkt->flags & AV_PKT_FLAG_KEY);
609         if(a == 0 && new_pkt.data != pkt->data && new_pkt.destruct) {
610             uint8_t *t = av_malloc(new_pkt.size + FF_INPUT_BUFFER_PADDING_SIZE); //the new should be a subset of the old so cannot overflow
611             if(t) {
612                 memcpy(t, new_pkt.data, new_pkt.size);
613                 memset(t + new_pkt.size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
614                 new_pkt.data = t;
615                 new_pkt.buf = NULL;
616                 a = 1;
617             } else
618                 a = AVERROR(ENOMEM);
619         }
620         if (a > 0) {
621             av_free_packet(pkt);
622             new_pkt.buf = av_buffer_create(new_pkt.data, new_pkt.size,
623                                            av_buffer_default_free, NULL, 0);
624             if (!new_pkt.buf)
625                 exit_program(1);
626         } else if (a < 0) {
627             av_log(NULL, AV_LOG_ERROR, "Failed to open bitstream filter %s for stream %d with codec %s",
628                    bsfc->filter->name, pkt->stream_index,
629                    avctx->codec ? avctx->codec->name : "copy");
630             print_error("", a);
631             if (exit_on_error)
632                 exit_program(1);
633         }
634         *pkt = new_pkt;
635
636         bsfc = bsfc->next;
637     }
638
639     if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS) &&
640         (avctx->codec_type == AVMEDIA_TYPE_AUDIO || avctx->codec_type == AVMEDIA_TYPE_VIDEO) &&
641         pkt->dts != AV_NOPTS_VALUE &&
642         ost->last_mux_dts != AV_NOPTS_VALUE) {
643       int64_t max = ost->last_mux_dts + !(s->oformat->flags & AVFMT_TS_NONSTRICT);
644       if (pkt->dts < max) {
645         int loglevel = max - pkt->dts > 2 || avctx->codec_type == AVMEDIA_TYPE_VIDEO ? AV_LOG_WARNING : AV_LOG_DEBUG;
646         av_log(s, loglevel, "Non-monotonous DTS in output stream "
647                "%d:%d; previous: %"PRId64", current: %"PRId64"; ",
648                ost->file_index, ost->st->index, ost->last_mux_dts, pkt->dts);
649         if (exit_on_error) {
650             av_log(NULL, AV_LOG_FATAL, "aborting.\n");
651             exit_program(1);
652         }
653         av_log(s, loglevel, "changing to %"PRId64". This may result "
654                "in incorrect timestamps in the output file.\n",
655                max);
656         if(pkt->pts >= pkt->dts)
657             pkt->pts = FFMAX(pkt->pts, max);
658         pkt->dts = max;
659       }
660     }
661     ost->last_mux_dts = pkt->dts;
662
663     ost->data_size += pkt->size;
664     ost->packets_written++;
665
666     pkt->stream_index = ost->index;
667
668     if (debug_ts) {
669         av_log(NULL, AV_LOG_INFO, "muxer <- type:%s "
670                 "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s size:%d\n",
671                 av_get_media_type_string(ost->st->codec->codec_type),
672                 av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &ost->st->time_base),
673                 av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &ost->st->time_base),
674                 pkt->size
675               );
676     }
677
678     ret = av_interleaved_write_frame(s, pkt);
679     if (ret < 0) {
680         print_error("av_interleaved_write_frame()", ret);
681         main_return_code = 1;
682         close_all_output_streams(ost, MUXER_FINISHED | ENCODER_FINISHED, ENCODER_FINISHED);
683     }
684     av_free_packet(pkt);
685 }
686
687 static void close_output_stream(OutputStream *ost)
688 {
689     OutputFile *of = output_files[ost->file_index];
690
691     ost->finished |= ENCODER_FINISHED;
692     if (of->shortest) {
693         int64_t end = av_rescale_q(ost->sync_opts - ost->first_pts, ost->st->codec->time_base, AV_TIME_BASE_Q);
694         of->recording_time = FFMIN(of->recording_time, end);
695     }
696 }
697
698 static int check_recording_time(OutputStream *ost)
699 {
700     OutputFile *of = output_files[ost->file_index];
701
702     if (of->recording_time != INT64_MAX &&
703         av_compare_ts(ost->sync_opts - ost->first_pts, ost->st->codec->time_base, of->recording_time,
704                       AV_TIME_BASE_Q) >= 0) {
705         close_output_stream(ost);
706         return 0;
707     }
708     return 1;
709 }
710
711 static void do_audio_out(AVFormatContext *s, OutputStream *ost,
712                          AVFrame *frame)
713 {
714     AVCodecContext *enc = ost->st->codec;
715     AVPacket pkt;
716     int got_packet = 0;
717
718     av_init_packet(&pkt);
719     pkt.data = NULL;
720     pkt.size = 0;
721
722     if (!check_recording_time(ost))
723         return;
724
725     if (frame->pts == AV_NOPTS_VALUE || audio_sync_method < 0)
726         frame->pts = ost->sync_opts;
727     ost->sync_opts = frame->pts + frame->nb_samples;
728     ost->samples_encoded += frame->nb_samples;
729     ost->frames_encoded++;
730
731     av_assert0(pkt.size || !pkt.data);
732     update_benchmark(NULL);
733     if (debug_ts) {
734         av_log(NULL, AV_LOG_INFO, "encoder <- type:audio "
735                "frame_pts:%s frame_pts_time:%s time_base:%d/%d\n",
736                av_ts2str(frame->pts), av_ts2timestr(frame->pts, &enc->time_base),
737                enc->time_base.num, enc->time_base.den);
738     }
739
740     if (avcodec_encode_audio2(enc, &pkt, frame, &got_packet) < 0) {
741         av_log(NULL, AV_LOG_FATAL, "Audio encoding failed (avcodec_encode_audio2)\n");
742         exit_program(1);
743     }
744     update_benchmark("encode_audio %d.%d", ost->file_index, ost->index);
745
746     if (got_packet) {
747         if (pkt.pts != AV_NOPTS_VALUE)
748             pkt.pts      = av_rescale_q(pkt.pts,      enc->time_base, ost->st->time_base);
749         if (pkt.dts != AV_NOPTS_VALUE)
750             pkt.dts      = av_rescale_q(pkt.dts,      enc->time_base, ost->st->time_base);
751         if (pkt.duration > 0)
752             pkt.duration = av_rescale_q(pkt.duration, enc->time_base, ost->st->time_base);
753
754         if (debug_ts) {
755             av_log(NULL, AV_LOG_INFO, "encoder -> type:audio "
756                    "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
757                    av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ost->st->time_base),
758                    av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ost->st->time_base));
759         }
760
761         write_frame(s, &pkt, ost);
762     }
763 }
764
765 static void do_subtitle_out(AVFormatContext *s,
766                             OutputStream *ost,
767                             InputStream *ist,
768                             AVSubtitle *sub)
769 {
770     int subtitle_out_max_size = 1024 * 1024;
771     int subtitle_out_size, nb, i;
772     AVCodecContext *enc;
773     AVPacket pkt;
774     int64_t pts;
775
776     if (sub->pts == AV_NOPTS_VALUE) {
777         av_log(NULL, AV_LOG_ERROR, "Subtitle packets must have a pts\n");
778         if (exit_on_error)
779             exit_program(1);
780         return;
781     }
782
783     enc = ost->st->codec;
784
785     if (!subtitle_out) {
786         subtitle_out = av_malloc(subtitle_out_max_size);
787     }
788
789     /* Note: DVB subtitle need one packet to draw them and one other
790        packet to clear them */
791     /* XXX: signal it in the codec context ? */
792     if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE)
793         nb = 2;
794     else
795         nb = 1;
796
797     /* shift timestamp to honor -ss and make check_recording_time() work with -t */
798     pts = sub->pts;
799     if (output_files[ost->file_index]->start_time != AV_NOPTS_VALUE)
800         pts -= output_files[ost->file_index]->start_time;
801     for (i = 0; i < nb; i++) {
802         ost->sync_opts = av_rescale_q(pts, AV_TIME_BASE_Q, enc->time_base);
803         if (!check_recording_time(ost))
804             return;
805
806         sub->pts = pts;
807         // start_display_time is required to be 0
808         sub->pts               += av_rescale_q(sub->start_display_time, (AVRational){ 1, 1000 }, AV_TIME_BASE_Q);
809         sub->end_display_time  -= sub->start_display_time;
810         sub->start_display_time = 0;
811         if (i == 1)
812             sub->num_rects = 0;
813
814         ost->frames_encoded++;
815
816         subtitle_out_size = avcodec_encode_subtitle(enc, subtitle_out,
817                                                     subtitle_out_max_size, sub);
818         if (subtitle_out_size < 0) {
819             av_log(NULL, AV_LOG_FATAL, "Subtitle encoding failed\n");
820             exit_program(1);
821         }
822
823         av_init_packet(&pkt);
824         pkt.data = subtitle_out;
825         pkt.size = subtitle_out_size;
826         pkt.pts  = av_rescale_q(sub->pts, AV_TIME_BASE_Q, ost->st->time_base);
827         pkt.duration = av_rescale_q(sub->end_display_time, (AVRational){ 1, 1000 }, ost->st->time_base);
828         if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE) {
829             /* XXX: the pts correction is handled here. Maybe handling
830                it in the codec would be better */
831             if (i == 0)
832                 pkt.pts += 90 * sub->start_display_time;
833             else
834                 pkt.pts += 90 * sub->end_display_time;
835         }
836         write_frame(s, &pkt, ost);
837     }
838 }
839
840 static void do_video_out(AVFormatContext *s,
841                          OutputStream *ost,
842                          AVFrame *in_picture)
843 {
844     int ret, format_video_sync;
845     AVPacket pkt;
846     AVCodecContext *enc = ost->st->codec;
847     int nb_frames, i;
848     double sync_ipts, delta;
849     double duration = 0;
850     int frame_size = 0;
851     InputStream *ist = NULL;
852
853     if (ost->source_index >= 0)
854         ist = input_streams[ost->source_index];
855
856     if(ist && ist->st->start_time != AV_NOPTS_VALUE && ist->st->first_dts != AV_NOPTS_VALUE && ost->frame_rate.num)
857         duration = 1/(av_q2d(ost->frame_rate) * av_q2d(enc->time_base));
858
859     sync_ipts = in_picture->pts;
860     delta = sync_ipts - ost->sync_opts + duration;
861
862     /* by default, we output a single frame */
863     nb_frames = 1;
864
865     format_video_sync = video_sync_method;
866     if (format_video_sync == VSYNC_AUTO) {
867         if(!strcmp(s->oformat->name, "avi")) {
868             format_video_sync = VSYNC_VFR;
869         } else
870             format_video_sync = (s->oformat->flags & AVFMT_VARIABLE_FPS) ? ((s->oformat->flags & AVFMT_NOTIMESTAMPS) ? VSYNC_PASSTHROUGH : VSYNC_VFR) : VSYNC_CFR;
871         if (   ist
872             && format_video_sync == VSYNC_CFR
873             && input_files[ist->file_index]->ctx->nb_streams == 1
874             && input_files[ist->file_index]->input_ts_offset == 0) {
875             format_video_sync = VSYNC_VSCFR;
876         }
877         if (format_video_sync == VSYNC_CFR && copy_ts) {
878             format_video_sync = VSYNC_VSCFR;
879         }
880     }
881
882     switch (format_video_sync) {
883     case VSYNC_VSCFR:
884         if (ost->frame_number == 0 && delta - duration >= 0.5) {
885             av_log(NULL, AV_LOG_DEBUG, "Not duplicating %d initial frames\n", (int)lrintf(delta - duration));
886             delta = duration;
887             ost->sync_opts = lrint(sync_ipts);
888         }
889     case VSYNC_CFR:
890         // FIXME set to 0.5 after we fix some dts/pts bugs like in avidec.c
891         if (delta < -1.1)
892             nb_frames = 0;
893         else if (delta > 1.1)
894             nb_frames = lrintf(delta);
895         break;
896     case VSYNC_VFR:
897         if (delta <= -0.6)
898             nb_frames = 0;
899         else if (delta > 0.6)
900             ost->sync_opts = lrint(sync_ipts);
901         break;
902     case VSYNC_DROP:
903     case VSYNC_PASSTHROUGH:
904         ost->sync_opts = lrint(sync_ipts);
905         break;
906     default:
907         av_assert0(0);
908     }
909
910     nb_frames = FFMIN(nb_frames, ost->max_frames - ost->frame_number);
911     if (nb_frames == 0) {
912         nb_frames_drop++;
913         av_log(NULL, AV_LOG_VERBOSE,
914                "*** dropping frame %d from stream %d at ts %"PRId64"\n",
915                ost->frame_number, ost->st->index, in_picture->pts);
916         return;
917     } else if (nb_frames > 1) {
918         if (nb_frames > dts_error_threshold * 30) {
919             av_log(NULL, AV_LOG_ERROR, "%d frame duplication too large, skipping\n", nb_frames - 1);
920             nb_frames_drop++;
921             return;
922         }
923         nb_frames_dup += nb_frames - 1;
924         av_log(NULL, AV_LOG_VERBOSE, "*** %d dup!\n", nb_frames - 1);
925     }
926
927   /* duplicates frame if needed */
928   for (i = 0; i < nb_frames; i++) {
929     av_init_packet(&pkt);
930     pkt.data = NULL;
931     pkt.size = 0;
932
933     in_picture->pts = ost->sync_opts;
934
935 #if 1
936     if (!check_recording_time(ost))
937 #else
938     if (ost->frame_number >= ost->max_frames)
939 #endif
940         return;
941
942     if (s->oformat->flags & AVFMT_RAWPICTURE &&
943         enc->codec->id == AV_CODEC_ID_RAWVIDEO) {
944         /* raw pictures are written as AVPicture structure to
945            avoid any copies. We support temporarily the older
946            method. */
947         enc->coded_frame->interlaced_frame = in_picture->interlaced_frame;
948         enc->coded_frame->top_field_first  = in_picture->top_field_first;
949         if (enc->coded_frame->interlaced_frame)
950             enc->field_order = enc->coded_frame->top_field_first ? AV_FIELD_TB:AV_FIELD_BT;
951         else
952             enc->field_order = AV_FIELD_PROGRESSIVE;
953         pkt.data   = (uint8_t *)in_picture;
954         pkt.size   =  sizeof(AVPicture);
955         pkt.pts    = av_rescale_q(in_picture->pts, enc->time_base, ost->st->time_base);
956         pkt.flags |= AV_PKT_FLAG_KEY;
957
958         write_frame(s, &pkt, ost);
959     } else {
960         int got_packet, forced_keyframe = 0;
961         double pts_time;
962
963         if (ost->st->codec->flags & (CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_INTERLACED_ME) &&
964             ost->top_field_first >= 0)
965             in_picture->top_field_first = !!ost->top_field_first;
966
967         if (in_picture->interlaced_frame) {
968             if (enc->codec->id == AV_CODEC_ID_MJPEG)
969                 enc->field_order = in_picture->top_field_first ? AV_FIELD_TT:AV_FIELD_BB;
970             else
971                 enc->field_order = in_picture->top_field_first ? AV_FIELD_TB:AV_FIELD_BT;
972         } else
973             enc->field_order = AV_FIELD_PROGRESSIVE;
974
975         in_picture->quality = ost->st->codec->global_quality;
976         if (!enc->me_threshold)
977             in_picture->pict_type = 0;
978
979         pts_time = in_picture->pts != AV_NOPTS_VALUE ?
980             in_picture->pts * av_q2d(enc->time_base) : NAN;
981         if (ost->forced_kf_index < ost->forced_kf_count &&
982             in_picture->pts >= ost->forced_kf_pts[ost->forced_kf_index]) {
983             ost->forced_kf_index++;
984             forced_keyframe = 1;
985         } else if (ost->forced_keyframes_pexpr) {
986             double res;
987             ost->forced_keyframes_expr_const_values[FKF_T] = pts_time;
988             res = av_expr_eval(ost->forced_keyframes_pexpr,
989                                ost->forced_keyframes_expr_const_values, NULL);
990             av_dlog(NULL, "force_key_frame: n:%f n_forced:%f prev_forced_n:%f t:%f prev_forced_t:%f -> res:%f\n",
991                     ost->forced_keyframes_expr_const_values[FKF_N],
992                     ost->forced_keyframes_expr_const_values[FKF_N_FORCED],
993                     ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_N],
994                     ost->forced_keyframes_expr_const_values[FKF_T],
995                     ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_T],
996                     res);
997             if (res) {
998                 forced_keyframe = 1;
999                 ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_N] =
1000                     ost->forced_keyframes_expr_const_values[FKF_N];
1001                 ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_T] =
1002                     ost->forced_keyframes_expr_const_values[FKF_T];
1003                 ost->forced_keyframes_expr_const_values[FKF_N_FORCED] += 1;
1004             }
1005
1006             ost->forced_keyframes_expr_const_values[FKF_N] += 1;
1007         }
1008
1009         if (forced_keyframe) {
1010             in_picture->pict_type = AV_PICTURE_TYPE_I;
1011             av_log(NULL, AV_LOG_DEBUG, "Forced keyframe at time %f\n", pts_time);
1012         }
1013
1014         update_benchmark(NULL);
1015         if (debug_ts) {
1016             av_log(NULL, AV_LOG_INFO, "encoder <- type:video "
1017                    "frame_pts:%s frame_pts_time:%s time_base:%d/%d\n",
1018                    av_ts2str(in_picture->pts), av_ts2timestr(in_picture->pts, &enc->time_base),
1019                    enc->time_base.num, enc->time_base.den);
1020         }
1021
1022         ost->frames_encoded++;
1023
1024         ret = avcodec_encode_video2(enc, &pkt, in_picture, &got_packet);
1025         update_benchmark("encode_video %d.%d", ost->file_index, ost->index);
1026         if (ret < 0) {
1027             av_log(NULL, AV_LOG_FATAL, "Video encoding failed\n");
1028             exit_program(1);
1029         }
1030
1031         if (got_packet) {
1032             if (debug_ts) {
1033                 av_log(NULL, AV_LOG_INFO, "encoder -> type:video "
1034                        "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
1035                        av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &enc->time_base),
1036                        av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &enc->time_base));
1037             }
1038
1039             if (pkt.pts == AV_NOPTS_VALUE && !(enc->codec->capabilities & CODEC_CAP_DELAY))
1040                 pkt.pts = ost->sync_opts;
1041
1042             if (pkt.pts != AV_NOPTS_VALUE)
1043                 pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base);
1044             if (pkt.dts != AV_NOPTS_VALUE)
1045                 pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base);
1046
1047             if (debug_ts) {
1048                 av_log(NULL, AV_LOG_INFO, "encoder -> type:video "
1049                     "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
1050                     av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ost->st->time_base),
1051                     av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ost->st->time_base));
1052             }
1053
1054             frame_size = pkt.size;
1055             write_frame(s, &pkt, ost);
1056
1057             /* if two pass, output log */
1058             if (ost->logfile && enc->stats_out) {
1059                 fprintf(ost->logfile, "%s", enc->stats_out);
1060             }
1061         }
1062     }
1063     ost->sync_opts++;
1064     /*
1065      * For video, number of frames in == number of packets out.
1066      * But there may be reordering, so we can't throw away frames on encoder
1067      * flush, we need to limit them here, before they go into encoder.
1068      */
1069     ost->frame_number++;
1070
1071     if (vstats_filename && frame_size)
1072         do_video_stats(ost, frame_size);
1073   }
1074 }
1075
1076 static double psnr(double d)
1077 {
1078     return -10.0 * log(d) / log(10.0);
1079 }
1080
1081 static void do_video_stats(OutputStream *ost, int frame_size)
1082 {
1083     AVCodecContext *enc;
1084     int frame_number;
1085     double ti1, bitrate, avg_bitrate;
1086
1087     /* this is executed just the first time do_video_stats is called */
1088     if (!vstats_file) {
1089         vstats_file = fopen(vstats_filename, "w");
1090         if (!vstats_file) {
1091             perror("fopen");
1092             exit_program(1);
1093         }
1094     }
1095
1096     enc = ost->st->codec;
1097     if (enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1098         frame_number = ost->st->nb_frames;
1099         fprintf(vstats_file, "frame= %5d q= %2.1f ", frame_number, enc->coded_frame->quality / (float)FF_QP2LAMBDA);
1100         if (enc->flags&CODEC_FLAG_PSNR)
1101             fprintf(vstats_file, "PSNR= %6.2f ", psnr(enc->coded_frame->error[0] / (enc->width * enc->height * 255.0 * 255.0)));
1102
1103         fprintf(vstats_file,"f_size= %6d ", frame_size);
1104         /* compute pts value */
1105         ti1 = ost->st->pts.val * av_q2d(enc->time_base);
1106         if (ti1 < 0.01)
1107             ti1 = 0.01;
1108
1109         bitrate     = (frame_size * 8) / av_q2d(enc->time_base) / 1000.0;
1110         avg_bitrate = (double)(ost->data_size * 8) / ti1 / 1000.0;
1111         fprintf(vstats_file, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ",
1112                (double)ost->data_size / 1024, ti1, bitrate, avg_bitrate);
1113         fprintf(vstats_file, "type= %c\n", av_get_picture_type_char(enc->coded_frame->pict_type));
1114     }
1115 }
1116
1117 /**
1118  * Get and encode new output from any of the filtergraphs, without causing
1119  * activity.
1120  *
1121  * @return  0 for success, <0 for severe errors
1122  */
1123 static int reap_filters(void)
1124 {
1125     AVFrame *filtered_frame = NULL;
1126     int i;
1127     int64_t frame_pts;
1128
1129     /* Reap all buffers present in the buffer sinks */
1130     for (i = 0; i < nb_output_streams; i++) {
1131         OutputStream *ost = output_streams[i];
1132         OutputFile    *of = output_files[ost->file_index];
1133         AVFilterContext *filter;
1134         AVCodecContext *enc = ost->st->codec;
1135         int ret = 0;
1136
1137         if (!ost->filter)
1138             continue;
1139         filter = ost->filter->filter;
1140
1141         if (!ost->filtered_frame && !(ost->filtered_frame = av_frame_alloc())) {
1142             return AVERROR(ENOMEM);
1143         }
1144         filtered_frame = ost->filtered_frame;
1145
1146         while (1) {
1147             ret = av_buffersink_get_frame_flags(filter, filtered_frame,
1148                                                AV_BUFFERSINK_FLAG_NO_REQUEST);
1149             if (ret < 0) {
1150                 if (ret != AVERROR(EAGAIN) && ret != AVERROR_EOF) {
1151                     av_log(NULL, AV_LOG_WARNING,
1152                            "Error in av_buffersink_get_frame_flags(): %s\n", av_err2str(ret));
1153                 }
1154                 break;
1155             }
1156             if (ost->finished) {
1157                 av_frame_unref(filtered_frame);
1158                 continue;
1159             }
1160             frame_pts = AV_NOPTS_VALUE;
1161             if (filtered_frame->pts != AV_NOPTS_VALUE) {
1162                 int64_t start_time = (of->start_time == AV_NOPTS_VALUE) ? 0 : of->start_time;
1163                 filtered_frame->pts = frame_pts =
1164                     av_rescale_q(filtered_frame->pts, filter->inputs[0]->time_base, enc->time_base) -
1165                     av_rescale_q(start_time, AV_TIME_BASE_Q, enc->time_base);
1166             }
1167             //if (ost->source_index >= 0)
1168             //    *filtered_frame= *input_streams[ost->source_index]->decoded_frame; //for me_threshold
1169
1170             switch (filter->inputs[0]->type) {
1171             case AVMEDIA_TYPE_VIDEO:
1172                 filtered_frame->pts = frame_pts;
1173                 if (!ost->frame_aspect_ratio.num)
1174                     enc->sample_aspect_ratio = filtered_frame->sample_aspect_ratio;
1175
1176                 if (debug_ts) {
1177                     av_log(NULL, AV_LOG_INFO, "filter -> pts:%s pts_time:%s time_base:%d/%d\n",
1178                             av_ts2str(filtered_frame->pts), av_ts2timestr(filtered_frame->pts, &enc->time_base),
1179                             enc->time_base.num, enc->time_base.den);
1180                 }
1181
1182                 do_video_out(of->ctx, ost, filtered_frame);
1183                 break;
1184             case AVMEDIA_TYPE_AUDIO:
1185                 filtered_frame->pts = frame_pts;
1186                 if (!(enc->codec->capabilities & CODEC_CAP_PARAM_CHANGE) &&
1187                     enc->channels != av_frame_get_channels(filtered_frame)) {
1188                     av_log(NULL, AV_LOG_ERROR,
1189                            "Audio filter graph output is not normalized and encoder does not support parameter changes\n");
1190                     break;
1191                 }
1192                 do_audio_out(of->ctx, ost, filtered_frame);
1193                 break;
1194             default:
1195                 // TODO support subtitle filters
1196                 av_assert0(0);
1197             }
1198
1199             av_frame_unref(filtered_frame);
1200         }
1201     }
1202
1203     return 0;
1204 }
1205
1206 static void print_final_stats(int64_t total_size)
1207 {
1208     uint64_t video_size = 0, audio_size = 0, extra_size = 0, other_size = 0;
1209     uint64_t subtitle_size = 0;
1210     uint64_t data_size = 0;
1211     float percent = -1.0;
1212     int i, j;
1213
1214     for (i = 0; i < nb_output_streams; i++) {
1215         OutputStream *ost = output_streams[i];
1216         switch (ost->st->codec->codec_type) {
1217             case AVMEDIA_TYPE_VIDEO: video_size += ost->data_size; break;
1218             case AVMEDIA_TYPE_AUDIO: audio_size += ost->data_size; break;
1219             case AVMEDIA_TYPE_SUBTITLE: subtitle_size += ost->data_size; break;
1220             default:                 other_size += ost->data_size; break;
1221         }
1222         extra_size += ost->st->codec->extradata_size;
1223         data_size  += ost->data_size;
1224     }
1225
1226     if (data_size && total_size >= data_size)
1227         percent = 100.0 * (total_size - data_size) / data_size;
1228
1229     av_log(NULL, AV_LOG_INFO, "\n");
1230     av_log(NULL, AV_LOG_INFO, "video:%1.0fkB audio:%1.0fkB subtitle:%1.0fkB other streams:%1.0fkB global headers:%1.0fkB muxing overhead: ",
1231            video_size / 1024.0,
1232            audio_size / 1024.0,
1233            subtitle_size / 1024.0,
1234            other_size / 1024.0,
1235            extra_size / 1024.0);
1236     if (percent >= 0.0)
1237         av_log(NULL, AV_LOG_INFO, "%f%%", percent);
1238     else
1239         av_log(NULL, AV_LOG_INFO, "unknown");
1240     av_log(NULL, AV_LOG_INFO, "\n");
1241
1242     /* print verbose per-stream stats */
1243     for (i = 0; i < nb_input_files; i++) {
1244         InputFile *f = input_files[i];
1245         uint64_t total_packets = 0, total_size = 0;
1246
1247         av_log(NULL, AV_LOG_VERBOSE, "Input file #%d (%s):\n",
1248                i, f->ctx->filename);
1249
1250         for (j = 0; j < f->nb_streams; j++) {
1251             InputStream *ist = input_streams[f->ist_index + j];
1252             enum AVMediaType type = ist->st->codec->codec_type;
1253
1254             total_size    += ist->data_size;
1255             total_packets += ist->nb_packets;
1256
1257             av_log(NULL, AV_LOG_VERBOSE, "  Input stream #%d:%d (%s): ",
1258                    i, j, media_type_string(type));
1259             av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" packets read (%"PRIu64" bytes); ",
1260                    ist->nb_packets, ist->data_size);
1261
1262             if (ist->decoding_needed) {
1263                 av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" frames decoded",
1264                        ist->frames_decoded);
1265                 if (type == AVMEDIA_TYPE_AUDIO)
1266                     av_log(NULL, AV_LOG_VERBOSE, " (%"PRIu64" samples)", ist->samples_decoded);
1267                 av_log(NULL, AV_LOG_VERBOSE, "; ");
1268             }
1269
1270             av_log(NULL, AV_LOG_VERBOSE, "\n");
1271         }
1272
1273         av_log(NULL, AV_LOG_VERBOSE, "  Total: %"PRIu64" packets (%"PRIu64" bytes) demuxed\n",
1274                total_packets, total_size);
1275     }
1276
1277     for (i = 0; i < nb_output_files; i++) {
1278         OutputFile *of = output_files[i];
1279         uint64_t total_packets = 0, total_size = 0;
1280
1281         av_log(NULL, AV_LOG_VERBOSE, "Output file #%d (%s):\n",
1282                i, of->ctx->filename);
1283
1284         for (j = 0; j < of->ctx->nb_streams; j++) {
1285             OutputStream *ost = output_streams[of->ost_index + j];
1286             enum AVMediaType type = ost->st->codec->codec_type;
1287
1288             total_size    += ost->data_size;
1289             total_packets += ost->packets_written;
1290
1291             av_log(NULL, AV_LOG_VERBOSE, "  Output stream #%d:%d (%s): ",
1292                    i, j, media_type_string(type));
1293             if (ost->encoding_needed) {
1294                 av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" frames encoded",
1295                        ost->frames_encoded);
1296                 if (type == AVMEDIA_TYPE_AUDIO)
1297                     av_log(NULL, AV_LOG_VERBOSE, " (%"PRIu64" samples)", ost->samples_encoded);
1298                 av_log(NULL, AV_LOG_VERBOSE, "; ");
1299             }
1300
1301             av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" packets muxed (%"PRIu64" bytes); ",
1302                    ost->packets_written, ost->data_size);
1303
1304             av_log(NULL, AV_LOG_VERBOSE, "\n");
1305         }
1306
1307         av_log(NULL, AV_LOG_VERBOSE, "  Total: %"PRIu64" packets (%"PRIu64" bytes) muxed\n",
1308                total_packets, total_size);
1309     }
1310     if(video_size + data_size + audio_size + subtitle_size + extra_size == 0){
1311         av_log(NULL, AV_LOG_WARNING, "Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used)\n");
1312     }
1313 }
1314
1315 static void print_report(int is_last_report, int64_t timer_start, int64_t cur_time)
1316 {
1317     char buf[1024];
1318     AVBPrint buf_script;
1319     OutputStream *ost;
1320     AVFormatContext *oc;
1321     int64_t total_size;
1322     AVCodecContext *enc;
1323     int frame_number, vid, i;
1324     double bitrate;
1325     int64_t pts = INT64_MIN;
1326     static int64_t last_time = -1;
1327     static int qp_histogram[52];
1328     int hours, mins, secs, us;
1329
1330     if (!print_stats && !is_last_report && !progress_avio)
1331         return;
1332
1333     if (!is_last_report) {
1334         if (last_time == -1) {
1335             last_time = cur_time;
1336             return;
1337         }
1338         if ((cur_time - last_time) < 500000)
1339             return;
1340         last_time = cur_time;
1341     }
1342
1343
1344     oc = output_files[0]->ctx;
1345
1346     total_size = avio_size(oc->pb);
1347     if (total_size <= 0) // FIXME improve avio_size() so it works with non seekable output too
1348         total_size = avio_tell(oc->pb);
1349
1350     buf[0] = '\0';
1351     vid = 0;
1352     av_bprint_init(&buf_script, 0, 1);
1353     for (i = 0; i < nb_output_streams; i++) {
1354         float q = -1;
1355         ost = output_streams[i];
1356         enc = ost->st->codec;
1357         if (!ost->stream_copy && enc->coded_frame)
1358             q = enc->coded_frame->quality / (float)FF_QP2LAMBDA;
1359         if (vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1360             snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "q=%2.1f ", q);
1361             av_bprintf(&buf_script, "stream_%d_%d_q=%.1f\n",
1362                        ost->file_index, ost->index, q);
1363         }
1364         if (!vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1365             float fps, t = (cur_time-timer_start) / 1000000.0;
1366
1367             frame_number = ost->frame_number;
1368             fps = t > 1 ? frame_number / t : 0;
1369             snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "frame=%5d fps=%3.*f q=%3.1f ",
1370                      frame_number, fps < 9.95, fps, q);
1371             av_bprintf(&buf_script, "frame=%d\n", frame_number);
1372             av_bprintf(&buf_script, "fps=%.1f\n", fps);
1373             av_bprintf(&buf_script, "stream_%d_%d_q=%.1f\n",
1374                        ost->file_index, ost->index, q);
1375             if (is_last_report)
1376                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "L");
1377             if (qp_hist) {
1378                 int j;
1379                 int qp = lrintf(q);
1380                 if (qp >= 0 && qp < FF_ARRAY_ELEMS(qp_histogram))
1381                     qp_histogram[qp]++;
1382                 for (j = 0; j < 32; j++)
1383                     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%X", (int)lrintf(log2(qp_histogram[j] + 1)));
1384             }
1385             if ((enc->flags&CODEC_FLAG_PSNR) && (enc->coded_frame || is_last_report)) {
1386                 int j;
1387                 double error, error_sum = 0;
1388                 double scale, scale_sum = 0;
1389                 double p;
1390                 char type[3] = { 'Y','U','V' };
1391                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "PSNR=");
1392                 for (j = 0; j < 3; j++) {
1393                     if (is_last_report) {
1394                         error = enc->error[j];
1395                         scale = enc->width * enc->height * 255.0 * 255.0 * frame_number;
1396                     } else {
1397                         error = enc->coded_frame->error[j];
1398                         scale = enc->width * enc->height * 255.0 * 255.0;
1399                     }
1400                     if (j)
1401                         scale /= 4;
1402                     error_sum += error;
1403                     scale_sum += scale;
1404                     p = psnr(error / scale);
1405                     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%c:%2.2f ", type[j], p);
1406                     av_bprintf(&buf_script, "stream_%d_%d_psnr_%c=%2.2f\n",
1407                                ost->file_index, ost->index, type[j] | 32, p);
1408                 }
1409                 p = psnr(error_sum / scale_sum);
1410                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "*:%2.2f ", psnr(error_sum / scale_sum));
1411                 av_bprintf(&buf_script, "stream_%d_%d_psnr_all=%2.2f\n",
1412                            ost->file_index, ost->index, p);
1413             }
1414             vid = 1;
1415         }
1416         /* compute min output value */
1417         if (ost->st->pts.val != AV_NOPTS_VALUE)
1418             pts = FFMAX(pts, av_rescale_q(ost->st->pts.val,
1419                                           ost->st->time_base, AV_TIME_BASE_Q));
1420     }
1421
1422     secs = pts / AV_TIME_BASE;
1423     us = pts % AV_TIME_BASE;
1424     mins = secs / 60;
1425     secs %= 60;
1426     hours = mins / 60;
1427     mins %= 60;
1428
1429     bitrate = pts && total_size >= 0 ? total_size * 8 / (pts / 1000.0) : -1;
1430
1431     if (total_size < 0) snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1432                                  "size=N/A time=");
1433     else                snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1434                                  "size=%8.0fkB time=", total_size / 1024.0);
1435     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1436              "%02d:%02d:%02d.%02d ", hours, mins, secs,
1437              (100 * us) / AV_TIME_BASE);
1438     if (bitrate < 0) snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1439                               "bitrate=N/A");
1440     else             snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1441                               "bitrate=%6.1fkbits/s", bitrate);
1442     if (total_size < 0) av_bprintf(&buf_script, "total_size=N/A\n");
1443     else                av_bprintf(&buf_script, "total_size=%"PRId64"\n", total_size);
1444     av_bprintf(&buf_script, "out_time_ms=%"PRId64"\n", pts);
1445     av_bprintf(&buf_script, "out_time=%02d:%02d:%02d.%06d\n",
1446                hours, mins, secs, us);
1447
1448     if (nb_frames_dup || nb_frames_drop)
1449         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " dup=%d drop=%d",
1450                 nb_frames_dup, nb_frames_drop);
1451     av_bprintf(&buf_script, "dup_frames=%d\n", nb_frames_dup);
1452     av_bprintf(&buf_script, "drop_frames=%d\n", nb_frames_drop);
1453
1454     if (print_stats || is_last_report) {
1455         if (print_stats==1 && AV_LOG_INFO > av_log_get_level()) {
1456             fprintf(stderr, "%s    \r", buf);
1457         } else
1458             av_log(NULL, AV_LOG_INFO, "%s    \r", buf);
1459
1460     fflush(stderr);
1461     }
1462
1463     if (progress_avio) {
1464         av_bprintf(&buf_script, "progress=%s\n",
1465                    is_last_report ? "end" : "continue");
1466         avio_write(progress_avio, buf_script.str,
1467                    FFMIN(buf_script.len, buf_script.size - 1));
1468         avio_flush(progress_avio);
1469         av_bprint_finalize(&buf_script, NULL);
1470         if (is_last_report) {
1471             avio_close(progress_avio);
1472             progress_avio = NULL;
1473         }
1474     }
1475
1476     if (is_last_report)
1477         print_final_stats(total_size);
1478 }
1479
1480 static void flush_encoders(void)
1481 {
1482     int i, ret;
1483
1484     for (i = 0; i < nb_output_streams; i++) {
1485         OutputStream   *ost = output_streams[i];
1486         AVCodecContext *enc = ost->st->codec;
1487         AVFormatContext *os = output_files[ost->file_index]->ctx;
1488         int stop_encoding = 0;
1489
1490         if (!ost->encoding_needed)
1491             continue;
1492
1493         if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && enc->frame_size <= 1)
1494             continue;
1495         if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (os->oformat->flags & AVFMT_RAWPICTURE) && enc->codec->id == AV_CODEC_ID_RAWVIDEO)
1496             continue;
1497
1498         for (;;) {
1499             int (*encode)(AVCodecContext*, AVPacket*, const AVFrame*, int*) = NULL;
1500             const char *desc;
1501
1502             switch (ost->st->codec->codec_type) {
1503             case AVMEDIA_TYPE_AUDIO:
1504                 encode = avcodec_encode_audio2;
1505                 desc   = "Audio";
1506                 break;
1507             case AVMEDIA_TYPE_VIDEO:
1508                 encode = avcodec_encode_video2;
1509                 desc   = "Video";
1510                 break;
1511             default:
1512                 stop_encoding = 1;
1513             }
1514
1515             if (encode) {
1516                 AVPacket pkt;
1517                 int pkt_size;
1518                 int got_packet;
1519                 av_init_packet(&pkt);
1520                 pkt.data = NULL;
1521                 pkt.size = 0;
1522
1523                 update_benchmark(NULL);
1524                 ret = encode(enc, &pkt, NULL, &got_packet);
1525                 update_benchmark("flush %s %d.%d", desc, ost->file_index, ost->index);
1526                 if (ret < 0) {
1527                     av_log(NULL, AV_LOG_FATAL, "%s encoding failed\n", desc);
1528                     exit_program(1);
1529                 }
1530                 if (ost->logfile && enc->stats_out) {
1531                     fprintf(ost->logfile, "%s", enc->stats_out);
1532                 }
1533                 if (!got_packet) {
1534                     stop_encoding = 1;
1535                     break;
1536                 }
1537                 if (ost->finished & MUXER_FINISHED) {
1538                     av_free_packet(&pkt);
1539                     continue;
1540                 }
1541                 if (pkt.pts != AV_NOPTS_VALUE)
1542                     pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base);
1543                 if (pkt.dts != AV_NOPTS_VALUE)
1544                     pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base);
1545                 if (pkt.duration > 0)
1546                     pkt.duration = av_rescale_q(pkt.duration, enc->time_base, ost->st->time_base);
1547                 pkt_size = pkt.size;
1548                 write_frame(os, &pkt, ost);
1549                 if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && vstats_filename) {
1550                     do_video_stats(ost, pkt_size);
1551                 }
1552             }
1553
1554             if (stop_encoding)
1555                 break;
1556         }
1557     }
1558 }
1559
1560 /*
1561  * Check whether a packet from ist should be written into ost at this time
1562  */
1563 static int check_output_constraints(InputStream *ist, OutputStream *ost)
1564 {
1565     OutputFile *of = output_files[ost->file_index];
1566     int ist_index  = input_files[ist->file_index]->ist_index + ist->st->index;
1567
1568     if (ost->source_index != ist_index)
1569         return 0;
1570
1571     if (ost->finished)
1572         return 0;
1573
1574     if (of->start_time != AV_NOPTS_VALUE && ist->pts < of->start_time)
1575         return 0;
1576
1577     return 1;
1578 }
1579
1580 static void do_streamcopy(InputStream *ist, OutputStream *ost, const AVPacket *pkt)
1581 {
1582     OutputFile *of = output_files[ost->file_index];
1583     InputFile   *f = input_files [ist->file_index];
1584     int64_t start_time = (of->start_time == AV_NOPTS_VALUE) ? 0 : of->start_time;
1585     int64_t ost_tb_start_time = av_rescale_q(start_time, AV_TIME_BASE_Q, ost->st->time_base);
1586     int64_t ist_tb_start_time = av_rescale_q(start_time, AV_TIME_BASE_Q, ist->st->time_base);
1587     AVPicture pict;
1588     AVPacket opkt;
1589
1590     av_init_packet(&opkt);
1591
1592     if ((!ost->frame_number && !(pkt->flags & AV_PKT_FLAG_KEY)) &&
1593         !ost->copy_initial_nonkeyframes)
1594         return;
1595
1596     if (pkt->pts == AV_NOPTS_VALUE) {
1597         if (!ost->frame_number && ist->pts < start_time &&
1598             !ost->copy_prior_start)
1599             return;
1600     } else {
1601         if (!ost->frame_number && pkt->pts < ist_tb_start_time &&
1602             !ost->copy_prior_start)
1603             return;
1604     }
1605
1606     if (of->recording_time != INT64_MAX &&
1607         ist->pts >= of->recording_time + start_time) {
1608         close_output_stream(ost);
1609         return;
1610     }
1611
1612     if (f->recording_time != INT64_MAX) {
1613         start_time = f->ctx->start_time;
1614         if (f->start_time != AV_NOPTS_VALUE)
1615             start_time += f->start_time;
1616         if (ist->pts >= f->recording_time + start_time) {
1617             close_output_stream(ost);
1618             return;
1619         }
1620     }
1621
1622     /* force the input stream PTS */
1623     if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO)
1624         ost->sync_opts++;
1625
1626     if (pkt->pts != AV_NOPTS_VALUE)
1627         opkt.pts = av_rescale_q(pkt->pts, ist->st->time_base, ost->st->time_base) - ost_tb_start_time;
1628     else
1629         opkt.pts = AV_NOPTS_VALUE;
1630
1631     if (pkt->dts == AV_NOPTS_VALUE)
1632         opkt.dts = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ost->st->time_base);
1633     else
1634         opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base);
1635     opkt.dts -= ost_tb_start_time;
1636
1637     if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && pkt->dts != AV_NOPTS_VALUE) {
1638         int duration = av_get_audio_frame_duration(ist->st->codec, pkt->size);
1639         if(!duration)
1640             duration = ist->st->codec->frame_size;
1641         opkt.dts = opkt.pts = av_rescale_delta(ist->st->time_base, pkt->dts,
1642                                                (AVRational){1, ist->st->codec->sample_rate}, duration, &ist->filter_in_rescale_delta_last,
1643                                                ost->st->time_base) - ost_tb_start_time;
1644     }
1645
1646     opkt.duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->st->time_base);
1647     opkt.flags    = pkt->flags;
1648
1649     // FIXME remove the following 2 lines they shall be replaced by the bitstream filters
1650     if (  ost->st->codec->codec_id != AV_CODEC_ID_H264
1651        && ost->st->codec->codec_id != AV_CODEC_ID_MPEG1VIDEO
1652        && ost->st->codec->codec_id != AV_CODEC_ID_MPEG2VIDEO
1653        && ost->st->codec->codec_id != AV_CODEC_ID_VC1
1654        ) {
1655         if (av_parser_change(ost->parser, ost->st->codec,
1656                              &opkt.data, &opkt.size,
1657                              pkt->data, pkt->size,
1658                              pkt->flags & AV_PKT_FLAG_KEY)) {
1659             opkt.buf = av_buffer_create(opkt.data, opkt.size, av_buffer_default_free, NULL, 0);
1660             if (!opkt.buf)
1661                 exit_program(1);
1662         }
1663     } else {
1664         opkt.data = pkt->data;
1665         opkt.size = pkt->size;
1666     }
1667     av_copy_packet_side_data(&opkt, pkt);
1668
1669     if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (of->ctx->oformat->flags & AVFMT_RAWPICTURE)) {
1670         /* store AVPicture in AVPacket, as expected by the output format */
1671         avpicture_fill(&pict, opkt.data, ost->st->codec->pix_fmt, ost->st->codec->width, ost->st->codec->height);
1672         opkt.data = (uint8_t *)&pict;
1673         opkt.size = sizeof(AVPicture);
1674         opkt.flags |= AV_PKT_FLAG_KEY;
1675     }
1676
1677     write_frame(of->ctx, &opkt, ost);
1678 }
1679
1680 int guess_input_channel_layout(InputStream *ist)
1681 {
1682     AVCodecContext *dec = ist->st->codec;
1683
1684     if (!dec->channel_layout) {
1685         char layout_name[256];
1686
1687         if (dec->channels > ist->guess_layout_max)
1688             return 0;
1689         dec->channel_layout = av_get_default_channel_layout(dec->channels);
1690         if (!dec->channel_layout)
1691             return 0;
1692         av_get_channel_layout_string(layout_name, sizeof(layout_name),
1693                                      dec->channels, dec->channel_layout);
1694         av_log(NULL, AV_LOG_WARNING, "Guessed Channel Layout for  Input Stream "
1695                "#%d.%d : %s\n", ist->file_index, ist->st->index, layout_name);
1696     }
1697     return 1;
1698 }
1699
1700 static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output)
1701 {
1702     AVFrame *decoded_frame, *f;
1703     AVCodecContext *avctx = ist->st->codec;
1704     int i, ret, err = 0, resample_changed;
1705     AVRational decoded_frame_tb;
1706
1707     if (!ist->decoded_frame && !(ist->decoded_frame = av_frame_alloc()))
1708         return AVERROR(ENOMEM);
1709     if (!ist->filter_frame && !(ist->filter_frame = av_frame_alloc()))
1710         return AVERROR(ENOMEM);
1711     decoded_frame = ist->decoded_frame;
1712
1713     update_benchmark(NULL);
1714     ret = avcodec_decode_audio4(avctx, decoded_frame, got_output, pkt);
1715     update_benchmark("decode_audio %d.%d", ist->file_index, ist->st->index);
1716
1717     if (ret >= 0 && avctx->sample_rate <= 0) {
1718         av_log(avctx, AV_LOG_ERROR, "Sample rate %d invalid\n", avctx->sample_rate);
1719         ret = AVERROR_INVALIDDATA;
1720     }
1721
1722     if (*got_output || ret<0 || pkt->size)
1723         decode_error_stat[ret<0] ++;
1724
1725     if (!*got_output || ret < 0) {
1726         if (!pkt->size) {
1727             for (i = 0; i < ist->nb_filters; i++)
1728 #if 1
1729                 av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
1730 #else
1731                 av_buffersrc_add_frame(ist->filters[i]->filter, NULL);
1732 #endif
1733         }
1734         return ret;
1735     }
1736
1737     ist->samples_decoded += decoded_frame->nb_samples;
1738     ist->frames_decoded++;
1739
1740 #if 1
1741     /* increment next_dts to use for the case where the input stream does not
1742        have timestamps or there are multiple frames in the packet */
1743     ist->next_pts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
1744                      avctx->sample_rate;
1745     ist->next_dts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
1746                      avctx->sample_rate;
1747 #endif
1748
1749     resample_changed = ist->resample_sample_fmt     != decoded_frame->format         ||
1750                        ist->resample_channels       != avctx->channels               ||
1751                        ist->resample_channel_layout != decoded_frame->channel_layout ||
1752                        ist->resample_sample_rate    != decoded_frame->sample_rate;
1753     if (resample_changed) {
1754         char layout1[64], layout2[64];
1755
1756         if (!guess_input_channel_layout(ist)) {
1757             av_log(NULL, AV_LOG_FATAL, "Unable to find default channel "
1758                    "layout for Input Stream #%d.%d\n", ist->file_index,
1759                    ist->st->index);
1760             exit_program(1);
1761         }
1762         decoded_frame->channel_layout = avctx->channel_layout;
1763
1764         av_get_channel_layout_string(layout1, sizeof(layout1), ist->resample_channels,
1765                                      ist->resample_channel_layout);
1766         av_get_channel_layout_string(layout2, sizeof(layout2), avctx->channels,
1767                                      decoded_frame->channel_layout);
1768
1769         av_log(NULL, AV_LOG_INFO,
1770                "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",
1771                ist->file_index, ist->st->index,
1772                ist->resample_sample_rate,  av_get_sample_fmt_name(ist->resample_sample_fmt),
1773                ist->resample_channels, layout1,
1774                decoded_frame->sample_rate, av_get_sample_fmt_name(decoded_frame->format),
1775                avctx->channels, layout2);
1776
1777         ist->resample_sample_fmt     = decoded_frame->format;
1778         ist->resample_sample_rate    = decoded_frame->sample_rate;
1779         ist->resample_channel_layout = decoded_frame->channel_layout;
1780         ist->resample_channels       = avctx->channels;
1781
1782         for (i = 0; i < nb_filtergraphs; i++)
1783             if (ist_in_filtergraph(filtergraphs[i], ist)) {
1784                 FilterGraph *fg = filtergraphs[i];
1785                 int j;
1786                 if (configure_filtergraph(fg) < 0) {
1787                     av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
1788                     exit_program(1);
1789                 }
1790                 for (j = 0; j < fg->nb_outputs; j++) {
1791                     OutputStream *ost = fg->outputs[j]->ost;
1792                     if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
1793                         !(ost->enc->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE))
1794                         av_buffersink_set_frame_size(ost->filter->filter,
1795                                                      ost->st->codec->frame_size);
1796                 }
1797             }
1798     }
1799
1800     /* if the decoder provides a pts, use it instead of the last packet pts.
1801        the decoder could be delaying output by a packet or more. */
1802     if (decoded_frame->pts != AV_NOPTS_VALUE) {
1803         ist->dts = ist->next_dts = ist->pts = ist->next_pts = av_rescale_q(decoded_frame->pts, avctx->time_base, AV_TIME_BASE_Q);
1804         decoded_frame_tb   = avctx->time_base;
1805     } else if (decoded_frame->pkt_pts != AV_NOPTS_VALUE) {
1806         decoded_frame->pts = decoded_frame->pkt_pts;
1807         decoded_frame_tb   = ist->st->time_base;
1808     } else if (pkt->pts != AV_NOPTS_VALUE) {
1809         decoded_frame->pts = pkt->pts;
1810         decoded_frame_tb   = ist->st->time_base;
1811     }else {
1812         decoded_frame->pts = ist->dts;
1813         decoded_frame_tb   = AV_TIME_BASE_Q;
1814     }
1815     pkt->pts           = AV_NOPTS_VALUE;
1816     if (decoded_frame->pts != AV_NOPTS_VALUE)
1817         decoded_frame->pts = av_rescale_delta(decoded_frame_tb, decoded_frame->pts,
1818                                               (AVRational){1, ist->st->codec->sample_rate}, decoded_frame->nb_samples, &ist->filter_in_rescale_delta_last,
1819                                               (AVRational){1, ist->st->codec->sample_rate});
1820     for (i = 0; i < ist->nb_filters; i++) {
1821         if (i < ist->nb_filters - 1) {
1822             f = ist->filter_frame;
1823             err = av_frame_ref(f, decoded_frame);
1824             if (err < 0)
1825                 break;
1826         } else
1827             f = decoded_frame;
1828         err = av_buffersrc_add_frame_flags(ist->filters[i]->filter, f,
1829                                      AV_BUFFERSRC_FLAG_PUSH);
1830         if (err == AVERROR_EOF)
1831             err = 0; /* ignore */
1832         if (err < 0)
1833             break;
1834     }
1835     decoded_frame->pts = AV_NOPTS_VALUE;
1836
1837     av_frame_unref(ist->filter_frame);
1838     av_frame_unref(decoded_frame);
1839     return err < 0 ? err : ret;
1840 }
1841
1842 static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output)
1843 {
1844     AVFrame *decoded_frame, *f;
1845     int i, ret = 0, err = 0, resample_changed;
1846     int64_t best_effort_timestamp;
1847     AVRational *frame_sample_aspect;
1848
1849     if (!ist->decoded_frame && !(ist->decoded_frame = av_frame_alloc()))
1850         return AVERROR(ENOMEM);
1851     if (!ist->filter_frame && !(ist->filter_frame = av_frame_alloc()))
1852         return AVERROR(ENOMEM);
1853     decoded_frame = ist->decoded_frame;
1854     pkt->dts  = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ist->st->time_base);
1855
1856     update_benchmark(NULL);
1857     ret = avcodec_decode_video2(ist->st->codec,
1858                                 decoded_frame, got_output, pkt);
1859     update_benchmark("decode_video %d.%d", ist->file_index, ist->st->index);
1860
1861     if (*got_output || ret<0 || pkt->size)
1862         decode_error_stat[ret<0] ++;
1863
1864     if (!*got_output || ret < 0) {
1865         if (!pkt->size) {
1866             for (i = 0; i < ist->nb_filters; i++)
1867 #if 1
1868                 av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
1869 #else
1870                 av_buffersrc_add_frame(ist->filters[i]->filter, NULL);
1871 #endif
1872         }
1873         return ret;
1874     }
1875
1876     if(ist->top_field_first>=0)
1877         decoded_frame->top_field_first = ist->top_field_first;
1878
1879     ist->frames_decoded++;
1880
1881     if (ist->hwaccel_retrieve_data && decoded_frame->format == ist->hwaccel_pix_fmt) {
1882         err = ist->hwaccel_retrieve_data(ist->st->codec, decoded_frame);
1883         if (err < 0)
1884             goto fail;
1885     }
1886     ist->hwaccel_retrieved_pix_fmt = decoded_frame->format;
1887
1888     best_effort_timestamp= av_frame_get_best_effort_timestamp(decoded_frame);
1889     if(best_effort_timestamp != AV_NOPTS_VALUE)
1890         ist->next_pts = ist->pts = av_rescale_q(decoded_frame->pts = best_effort_timestamp, ist->st->time_base, AV_TIME_BASE_Q);
1891
1892     if (debug_ts) {
1893         av_log(NULL, AV_LOG_INFO, "decoder -> ist_index:%d type:video "
1894                "frame_pts:%s frame_pts_time:%s best_effort_ts:%"PRId64" best_effort_ts_time:%s keyframe:%d frame_type:%d time_base:%d/%d\n",
1895                ist->st->index, av_ts2str(decoded_frame->pts),
1896                av_ts2timestr(decoded_frame->pts, &ist->st->time_base),
1897                best_effort_timestamp,
1898                av_ts2timestr(best_effort_timestamp, &ist->st->time_base),
1899                decoded_frame->key_frame, decoded_frame->pict_type,
1900                ist->st->time_base.num, ist->st->time_base.den);
1901     }
1902
1903     pkt->size = 0;
1904
1905     if (ist->st->sample_aspect_ratio.num)
1906         decoded_frame->sample_aspect_ratio = ist->st->sample_aspect_ratio;
1907
1908     resample_changed = ist->resample_width   != decoded_frame->width  ||
1909                        ist->resample_height  != decoded_frame->height ||
1910                        ist->resample_pix_fmt != decoded_frame->format;
1911     if (resample_changed) {
1912         av_log(NULL, AV_LOG_INFO,
1913                "Input stream #%d:%d frame changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s\n",
1914                ist->file_index, ist->st->index,
1915                ist->resample_width,  ist->resample_height,  av_get_pix_fmt_name(ist->resample_pix_fmt),
1916                decoded_frame->width, decoded_frame->height, av_get_pix_fmt_name(decoded_frame->format));
1917
1918         ist->resample_width   = decoded_frame->width;
1919         ist->resample_height  = decoded_frame->height;
1920         ist->resample_pix_fmt = decoded_frame->format;
1921
1922         for (i = 0; i < nb_filtergraphs; i++) {
1923             if (ist_in_filtergraph(filtergraphs[i], ist) && ist->reinit_filters &&
1924                 configure_filtergraph(filtergraphs[i]) < 0) {
1925                 av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
1926                 exit_program(1);
1927             }
1928         }
1929     }
1930
1931     frame_sample_aspect= av_opt_ptr(avcodec_get_frame_class(), decoded_frame, "sample_aspect_ratio");
1932     for (i = 0; i < ist->nb_filters; i++) {
1933         if (!frame_sample_aspect->num)
1934             *frame_sample_aspect = ist->st->sample_aspect_ratio;
1935
1936         if (i < ist->nb_filters - 1) {
1937             f = ist->filter_frame;
1938             err = av_frame_ref(f, decoded_frame);
1939             if (err < 0)
1940                 break;
1941         } else
1942             f = decoded_frame;
1943         ret = av_buffersrc_add_frame_flags(ist->filters[i]->filter, f, AV_BUFFERSRC_FLAG_PUSH);
1944         if (ret == AVERROR_EOF) {
1945             ret = 0; /* ignore */
1946         } else if (ret < 0) {
1947             av_log(NULL, AV_LOG_FATAL,
1948                    "Failed to inject frame into filter network: %s\n", av_err2str(ret));
1949             exit_program(1);
1950         }
1951     }
1952
1953 fail:
1954     av_frame_unref(ist->filter_frame);
1955     av_frame_unref(decoded_frame);
1956     return err < 0 ? err : ret;
1957 }
1958
1959 static int transcode_subtitles(InputStream *ist, AVPacket *pkt, int *got_output)
1960 {
1961     AVSubtitle subtitle;
1962     int i, ret = avcodec_decode_subtitle2(ist->st->codec,
1963                                           &subtitle, got_output, pkt);
1964
1965     if (*got_output || ret<0 || pkt->size)
1966         decode_error_stat[ret<0] ++;
1967
1968     if (ret < 0 || !*got_output) {
1969         if (!pkt->size)
1970             sub2video_flush(ist);
1971         return ret;
1972     }
1973
1974     if (ist->fix_sub_duration) {
1975         int end = 1;
1976         if (ist->prev_sub.got_output) {
1977             end = av_rescale(subtitle.pts - ist->prev_sub.subtitle.pts,
1978                              1000, AV_TIME_BASE);
1979             if (end < ist->prev_sub.subtitle.end_display_time) {
1980                 av_log(ist->st->codec, AV_LOG_DEBUG,
1981                        "Subtitle duration reduced from %d to %d%s\n",
1982                        ist->prev_sub.subtitle.end_display_time, end,
1983                        end <= 0 ? ", dropping it" : "");
1984                 ist->prev_sub.subtitle.end_display_time = end;
1985             }
1986         }
1987         FFSWAP(int,        *got_output, ist->prev_sub.got_output);
1988         FFSWAP(int,        ret,         ist->prev_sub.ret);
1989         FFSWAP(AVSubtitle, subtitle,    ist->prev_sub.subtitle);
1990         if (end <= 0)
1991             goto out;
1992     }
1993
1994     if (!*got_output)
1995         return ret;
1996
1997     sub2video_update(ist, &subtitle);
1998
1999     if (!subtitle.num_rects)
2000         goto out;
2001
2002     ist->frames_decoded++;
2003
2004     for (i = 0; i < nb_output_streams; i++) {
2005         OutputStream *ost = output_streams[i];
2006
2007         if (!check_output_constraints(ist, ost) || !ost->encoding_needed
2008             || ost->enc->type != AVMEDIA_TYPE_SUBTITLE)
2009             continue;
2010
2011         do_subtitle_out(output_files[ost->file_index]->ctx, ost, ist, &subtitle);
2012     }
2013
2014 out:
2015     avsubtitle_free(&subtitle);
2016     return ret;
2017 }
2018
2019 /* pkt = NULL means EOF (needed to flush decoder buffers) */
2020 static int output_packet(InputStream *ist, const AVPacket *pkt)
2021 {
2022     int ret = 0, i;
2023     int got_output = 0;
2024
2025     AVPacket avpkt;
2026     if (!ist->saw_first_ts) {
2027         ist->dts = ist->st->avg_frame_rate.num ? - ist->st->codec->has_b_frames * AV_TIME_BASE / av_q2d(ist->st->avg_frame_rate) : 0;
2028         ist->pts = 0;
2029         if (pkt != NULL && pkt->pts != AV_NOPTS_VALUE && !ist->decoding_needed) {
2030             ist->dts += av_rescale_q(pkt->pts, ist->st->time_base, AV_TIME_BASE_Q);
2031             ist->pts = ist->dts; //unused but better to set it to a value thats not totally wrong
2032         }
2033         ist->saw_first_ts = 1;
2034     }
2035
2036     if (ist->next_dts == AV_NOPTS_VALUE)
2037         ist->next_dts = ist->dts;
2038     if (ist->next_pts == AV_NOPTS_VALUE)
2039         ist->next_pts = ist->pts;
2040
2041     if (pkt == NULL) {
2042         /* EOF handling */
2043         av_init_packet(&avpkt);
2044         avpkt.data = NULL;
2045         avpkt.size = 0;
2046         goto handle_eof;
2047     } else {
2048         avpkt = *pkt;
2049     }
2050
2051     if (pkt->dts != AV_NOPTS_VALUE) {
2052         ist->next_dts = ist->dts = av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q);
2053         if (ist->st->codec->codec_type != AVMEDIA_TYPE_VIDEO || !ist->decoding_needed)
2054             ist->next_pts = ist->pts = ist->dts;
2055     }
2056
2057     // while we have more to decode or while the decoder did output something on EOF
2058     while (ist->decoding_needed && (avpkt.size > 0 || (!pkt && got_output))) {
2059         int duration;
2060     handle_eof:
2061
2062         ist->pts = ist->next_pts;
2063         ist->dts = ist->next_dts;
2064
2065         if (avpkt.size && avpkt.size != pkt->size &&
2066             !(ist->dec->capabilities & CODEC_CAP_SUBFRAMES)) {
2067             av_log(NULL, ist->showed_multi_packet_warning ? AV_LOG_VERBOSE : AV_LOG_WARNING,
2068                    "Multiple frames in a packet from stream %d\n", pkt->stream_index);
2069             ist->showed_multi_packet_warning = 1;
2070         }
2071
2072         switch (ist->st->codec->codec_type) {
2073         case AVMEDIA_TYPE_AUDIO:
2074             ret = decode_audio    (ist, &avpkt, &got_output);
2075             break;
2076         case AVMEDIA_TYPE_VIDEO:
2077             ret = decode_video    (ist, &avpkt, &got_output);
2078             if (avpkt.duration) {
2079                 duration = av_rescale_q(avpkt.duration, ist->st->time_base, AV_TIME_BASE_Q);
2080             } else if(ist->st->codec->time_base.num != 0 && ist->st->codec->time_base.den != 0) {
2081                 int ticks= ist->st->parser ? ist->st->parser->repeat_pict+1 : ist->st->codec->ticks_per_frame;
2082                 duration = ((int64_t)AV_TIME_BASE *
2083                                 ist->st->codec->time_base.num * ticks) /
2084                                 ist->st->codec->time_base.den;
2085             } else
2086                 duration = 0;
2087
2088             if(ist->dts != AV_NOPTS_VALUE && duration) {
2089                 ist->next_dts += duration;
2090             }else
2091                 ist->next_dts = AV_NOPTS_VALUE;
2092
2093             if (got_output)
2094                 ist->next_pts += duration; //FIXME the duration is not correct in some cases
2095             break;
2096         case AVMEDIA_TYPE_SUBTITLE:
2097             ret = transcode_subtitles(ist, &avpkt, &got_output);
2098             break;
2099         default:
2100             return -1;
2101         }
2102
2103         if (ret < 0)
2104             return ret;
2105
2106         avpkt.dts=
2107         avpkt.pts= AV_NOPTS_VALUE;
2108
2109         // touch data and size only if not EOF
2110         if (pkt) {
2111             if(ist->st->codec->codec_type != AVMEDIA_TYPE_AUDIO)
2112                 ret = avpkt.size;
2113             avpkt.data += ret;
2114             avpkt.size -= ret;
2115         }
2116         if (!got_output) {
2117             continue;
2118         }
2119     }
2120
2121     /* handle stream copy */
2122     if (!ist->decoding_needed) {
2123         ist->dts = ist->next_dts;
2124         switch (ist->st->codec->codec_type) {
2125         case AVMEDIA_TYPE_AUDIO:
2126             ist->next_dts += ((int64_t)AV_TIME_BASE * ist->st->codec->frame_size) /
2127                              ist->st->codec->sample_rate;
2128             break;
2129         case AVMEDIA_TYPE_VIDEO:
2130             if (ist->framerate.num) {
2131                 // TODO: Remove work-around for c99-to-c89 issue 7
2132                 AVRational time_base_q = AV_TIME_BASE_Q;
2133                 int64_t next_dts = av_rescale_q(ist->next_dts, time_base_q, av_inv_q(ist->framerate));
2134                 ist->next_dts = av_rescale_q(next_dts + 1, av_inv_q(ist->framerate), time_base_q);
2135             } else if (pkt->duration) {
2136                 ist->next_dts += av_rescale_q(pkt->duration, ist->st->time_base, AV_TIME_BASE_Q);
2137             } else if(ist->st->codec->time_base.num != 0) {
2138                 int ticks= ist->st->parser ? ist->st->parser->repeat_pict + 1 : ist->st->codec->ticks_per_frame;
2139                 ist->next_dts += ((int64_t)AV_TIME_BASE *
2140                                   ist->st->codec->time_base.num * ticks) /
2141                                   ist->st->codec->time_base.den;
2142             }
2143             break;
2144         }
2145         ist->pts = ist->dts;
2146         ist->next_pts = ist->next_dts;
2147     }
2148     for (i = 0; pkt && i < nb_output_streams; i++) {
2149         OutputStream *ost = output_streams[i];
2150
2151         if (!check_output_constraints(ist, ost) || ost->encoding_needed)
2152             continue;
2153
2154         do_streamcopy(ist, ost, pkt);
2155     }
2156
2157     return 0;
2158 }
2159
2160 static void print_sdp(void)
2161 {
2162     char sdp[16384];
2163     int i;
2164     AVFormatContext **avc = av_malloc_array(nb_output_files, sizeof(*avc));
2165
2166     if (!avc)
2167         exit_program(1);
2168     for (i = 0; i < nb_output_files; i++)
2169         avc[i] = output_files[i]->ctx;
2170
2171     av_sdp_create(avc, nb_output_files, sdp, sizeof(sdp));
2172     printf("SDP:\n%s\n", sdp);
2173     fflush(stdout);
2174     av_freep(&avc);
2175 }
2176
2177 static const HWAccel *get_hwaccel(enum AVPixelFormat pix_fmt)
2178 {
2179     int i;
2180     for (i = 0; hwaccels[i].name; i++)
2181         if (hwaccels[i].pix_fmt == pix_fmt)
2182             return &hwaccels[i];
2183     return NULL;
2184 }
2185
2186 static enum AVPixelFormat get_format(AVCodecContext *s, const enum AVPixelFormat *pix_fmts)
2187 {
2188     InputStream *ist = s->opaque;
2189     const enum AVPixelFormat *p;
2190     int ret;
2191
2192     for (p = pix_fmts; *p != -1; p++) {
2193         const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(*p);
2194         const HWAccel *hwaccel;
2195
2196         if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
2197             break;
2198
2199         hwaccel = get_hwaccel(*p);
2200         if (!hwaccel ||
2201             (ist->active_hwaccel_id && ist->active_hwaccel_id != hwaccel->id) ||
2202             (ist->hwaccel_id != HWACCEL_AUTO && ist->hwaccel_id != hwaccel->id))
2203             continue;
2204
2205         ret = hwaccel->init(s);
2206         if (ret < 0) {
2207             if (ist->hwaccel_id == hwaccel->id) {
2208                 av_log(NULL, AV_LOG_FATAL,
2209                        "%s hwaccel requested for input stream #%d:%d, "
2210                        "but cannot be initialized.\n", hwaccel->name,
2211                        ist->file_index, ist->st->index);
2212                 exit_program(1);
2213             }
2214             continue;
2215         }
2216         ist->active_hwaccel_id = hwaccel->id;
2217         ist->hwaccel_pix_fmt   = *p;
2218         break;
2219     }
2220
2221     return *p;
2222 }
2223
2224 static int get_buffer(AVCodecContext *s, AVFrame *frame, int flags)
2225 {
2226     InputStream *ist = s->opaque;
2227
2228     if (ist->hwaccel_get_buffer && frame->format == ist->hwaccel_pix_fmt)
2229         return ist->hwaccel_get_buffer(s, frame, flags);
2230
2231     return avcodec_default_get_buffer2(s, frame, flags);
2232 }
2233
2234 static int init_input_stream(int ist_index, char *error, int error_len)
2235 {
2236     int ret;
2237     InputStream *ist = input_streams[ist_index];
2238
2239     if (ist->decoding_needed) {
2240         AVCodec *codec = ist->dec;
2241         if (!codec) {
2242             snprintf(error, error_len, "Decoder (codec %s) not found for input stream #%d:%d",
2243                     avcodec_get_name(ist->st->codec->codec_id), ist->file_index, ist->st->index);
2244             return AVERROR(EINVAL);
2245         }
2246
2247         ist->st->codec->opaque      = ist;
2248         ist->st->codec->get_format  = get_format;
2249         ist->st->codec->get_buffer2 = get_buffer;
2250         ist->st->codec->thread_safe_callbacks = 1;
2251
2252         av_opt_set_int(ist->st->codec, "refcounted_frames", 1, 0);
2253
2254         if (!av_dict_get(ist->decoder_opts, "threads", NULL, 0))
2255             av_dict_set(&ist->decoder_opts, "threads", "auto", 0);
2256         if ((ret = avcodec_open2(ist->st->codec, codec, &ist->decoder_opts)) < 0) {
2257             if (ret == AVERROR_EXPERIMENTAL)
2258                 abort_codec_experimental(codec, 0);
2259
2260             snprintf(error, error_len,
2261                      "Error while opening decoder for input stream "
2262                      "#%d:%d : %s",
2263                      ist->file_index, ist->st->index, av_err2str(ret));
2264             return ret;
2265         }
2266         assert_avoptions(ist->decoder_opts);
2267     }
2268
2269     ist->next_pts = AV_NOPTS_VALUE;
2270     ist->next_dts = AV_NOPTS_VALUE;
2271
2272     return 0;
2273 }
2274
2275 static InputStream *get_input_stream(OutputStream *ost)
2276 {
2277     if (ost->source_index >= 0)
2278         return input_streams[ost->source_index];
2279     return NULL;
2280 }
2281
2282 static int compare_int64(const void *a, const void *b)
2283 {
2284     int64_t va = *(int64_t *)a, vb = *(int64_t *)b;
2285     return va < vb ? -1 : va > vb ? +1 : 0;
2286 }
2287
2288 static void parse_forced_key_frames(char *kf, OutputStream *ost,
2289                                     AVCodecContext *avctx)
2290 {
2291     char *p;
2292     int n = 1, i, size, index = 0;
2293     int64_t t, *pts;
2294
2295     for (p = kf; *p; p++)
2296         if (*p == ',')
2297             n++;
2298     size = n;
2299     pts = av_malloc_array(size, sizeof(*pts));
2300     if (!pts) {
2301         av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
2302         exit_program(1);
2303     }
2304
2305     p = kf;
2306     for (i = 0; i < n; i++) {
2307         char *next = strchr(p, ',');
2308
2309         if (next)
2310             *next++ = 0;
2311
2312         if (!memcmp(p, "chapters", 8)) {
2313
2314             AVFormatContext *avf = output_files[ost->file_index]->ctx;
2315             int j;
2316
2317             if (avf->nb_chapters > INT_MAX - size ||
2318                 !(pts = av_realloc_f(pts, size += avf->nb_chapters - 1,
2319                                      sizeof(*pts)))) {
2320                 av_log(NULL, AV_LOG_FATAL,
2321                        "Could not allocate forced key frames array.\n");
2322                 exit_program(1);
2323             }
2324             t = p[8] ? parse_time_or_die("force_key_frames", p + 8, 1) : 0;
2325             t = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base);
2326
2327             for (j = 0; j < avf->nb_chapters; j++) {
2328                 AVChapter *c = avf->chapters[j];
2329                 av_assert1(index < size);
2330                 pts[index++] = av_rescale_q(c->start, c->time_base,
2331                                             avctx->time_base) + t;
2332             }
2333
2334         } else {
2335
2336             t = parse_time_or_die("force_key_frames", p, 1);
2337             av_assert1(index < size);
2338             pts[index++] = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base);
2339
2340         }
2341
2342         p = next;
2343     }
2344
2345     av_assert0(index == size);
2346     qsort(pts, size, sizeof(*pts), compare_int64);
2347     ost->forced_kf_count = size;
2348     ost->forced_kf_pts   = pts;
2349 }
2350
2351 static void report_new_stream(int input_index, AVPacket *pkt)
2352 {
2353     InputFile *file = input_files[input_index];
2354     AVStream *st = file->ctx->streams[pkt->stream_index];
2355
2356     if (pkt->stream_index < file->nb_streams_warn)
2357         return;
2358     av_log(file->ctx, AV_LOG_WARNING,
2359            "New %s stream %d:%d at pos:%"PRId64" and DTS:%ss\n",
2360            av_get_media_type_string(st->codec->codec_type),
2361            input_index, pkt->stream_index,
2362            pkt->pos, av_ts2timestr(pkt->dts, &st->time_base));
2363     file->nb_streams_warn = pkt->stream_index + 1;
2364 }
2365
2366 static int transcode_init(void)
2367 {
2368     int ret = 0, i, j, k;
2369     AVFormatContext *oc;
2370     OutputStream *ost;
2371     InputStream *ist;
2372     char error[1024];
2373     int want_sdp = 1;
2374
2375     for (i = 0; i < nb_filtergraphs; i++) {
2376         FilterGraph *fg = filtergraphs[i];
2377         for (j = 0; j < fg->nb_outputs; j++) {
2378             OutputFilter *ofilter = fg->outputs[j];
2379             if (!ofilter->ost || ofilter->ost->source_index >= 0)
2380                 continue;
2381             if (fg->nb_inputs != 1)
2382                 continue;
2383             for (k = nb_input_streams-1; k >= 0 ; k--)
2384                 if (fg->inputs[0]->ist == input_streams[k])
2385                     break;
2386             ofilter->ost->source_index = k;
2387         }
2388     }
2389
2390     /* init framerate emulation */
2391     for (i = 0; i < nb_input_files; i++) {
2392         InputFile *ifile = input_files[i];
2393         if (ifile->rate_emu)
2394             for (j = 0; j < ifile->nb_streams; j++)
2395                 input_streams[j + ifile->ist_index]->start = av_gettime();
2396     }
2397
2398     /* output stream init */
2399     for (i = 0; i < nb_output_files; i++) {
2400         oc = output_files[i]->ctx;
2401         if (!oc->nb_streams && !(oc->oformat->flags & AVFMT_NOSTREAMS)) {
2402             av_dump_format(oc, i, oc->filename, 1);
2403             av_log(NULL, AV_LOG_ERROR, "Output file #%d does not contain any stream\n", i);
2404             return AVERROR(EINVAL);
2405         }
2406     }
2407
2408     /* init complex filtergraphs */
2409     for (i = 0; i < nb_filtergraphs; i++)
2410         if ((ret = avfilter_graph_config(filtergraphs[i]->graph, NULL)) < 0)
2411             return ret;
2412
2413     /* for each output stream, we compute the right encoding parameters */
2414     for (i = 0; i < nb_output_streams; i++) {
2415         AVCodecContext *enc_ctx;
2416         AVCodecContext *dec_ctx = NULL;
2417         ost = output_streams[i];
2418         oc  = output_files[ost->file_index]->ctx;
2419         ist = get_input_stream(ost);
2420
2421         if (ost->attachment_filename)
2422             continue;
2423
2424         enc_ctx = ost->st->codec;
2425
2426         if (ist) {
2427             dec_ctx = ist->st->codec;
2428
2429             ost->st->disposition          = ist->st->disposition;
2430             enc_ctx->bits_per_raw_sample    = dec_ctx->bits_per_raw_sample;
2431             enc_ctx->chroma_sample_location = dec_ctx->chroma_sample_location;
2432         } else {
2433             for (j=0; j<oc->nb_streams; j++) {
2434                 AVStream *st = oc->streams[j];
2435                 if (st != ost->st && st->codec->codec_type == enc_ctx->codec_type)
2436                     break;
2437             }
2438             if (j == oc->nb_streams)
2439                 if (enc_ctx->codec_type == AVMEDIA_TYPE_AUDIO || enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO)
2440                     ost->st->disposition = AV_DISPOSITION_DEFAULT;
2441         }
2442
2443         if (ost->stream_copy) {
2444             AVRational sar;
2445             uint64_t extra_size;
2446
2447             av_assert0(ist && !ost->filter);
2448
2449             extra_size = (uint64_t)dec_ctx->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE;
2450
2451             if (extra_size > INT_MAX) {
2452                 return AVERROR(EINVAL);
2453             }
2454
2455             /* if stream_copy is selected, no need to decode or encode */
2456             enc_ctx->codec_id   = dec_ctx->codec_id;
2457             enc_ctx->codec_type = dec_ctx->codec_type;
2458
2459             if (!enc_ctx->codec_tag) {
2460                 unsigned int codec_tag;
2461                 if (!oc->oformat->codec_tag ||
2462                      av_codec_get_id (oc->oformat->codec_tag, dec_ctx->codec_tag) == enc_ctx->codec_id ||
2463                      !av_codec_get_tag2(oc->oformat->codec_tag, dec_ctx->codec_id, &codec_tag))
2464                     enc_ctx->codec_tag = dec_ctx->codec_tag;
2465             }
2466
2467             enc_ctx->bit_rate       = dec_ctx->bit_rate;
2468             enc_ctx->rc_max_rate    = dec_ctx->rc_max_rate;
2469             enc_ctx->rc_buffer_size = dec_ctx->rc_buffer_size;
2470             enc_ctx->field_order    = dec_ctx->field_order;
2471             enc_ctx->extradata      = av_mallocz(extra_size);
2472             if (!enc_ctx->extradata) {
2473                 return AVERROR(ENOMEM);
2474             }
2475             memcpy(enc_ctx->extradata, dec_ctx->extradata, dec_ctx->extradata_size);
2476             enc_ctx->extradata_size= dec_ctx->extradata_size;
2477             enc_ctx->bits_per_coded_sample  = dec_ctx->bits_per_coded_sample;
2478
2479             enc_ctx->time_base = ist->st->time_base;
2480             /*
2481              * Avi is a special case here because it supports variable fps but
2482              * having the fps and timebase differe significantly adds quite some
2483              * overhead
2484              */
2485             if(!strcmp(oc->oformat->name, "avi")) {
2486                 if ( copy_tb<0 && av_q2d(ist->st->r_frame_rate) >= av_q2d(ist->st->avg_frame_rate)
2487                                && 0.5/av_q2d(ist->st->r_frame_rate) > av_q2d(ist->st->time_base)
2488                                && 0.5/av_q2d(ist->st->r_frame_rate) > av_q2d(dec_ctx->time_base)
2489                                && av_q2d(ist->st->time_base) < 1.0/500 && av_q2d(dec_ctx->time_base) < 1.0/500
2490                      || copy_tb==2){
2491                     enc_ctx->time_base.num = ist->st->r_frame_rate.den;
2492                     enc_ctx->time_base.den = 2*ist->st->r_frame_rate.num;
2493                     enc_ctx->ticks_per_frame = 2;
2494                 } else if (   copy_tb<0 && av_q2d(dec_ctx->time_base)*dec_ctx->ticks_per_frame > 2*av_q2d(ist->st->time_base)
2495                                  && av_q2d(ist->st->time_base) < 1.0/500
2496                     || copy_tb==0){
2497                     enc_ctx->time_base = dec_ctx->time_base;
2498                     enc_ctx->time_base.num *= dec_ctx->ticks_per_frame;
2499                     enc_ctx->time_base.den *= 2;
2500                     enc_ctx->ticks_per_frame = 2;
2501                 }
2502             } else if(!(oc->oformat->flags & AVFMT_VARIABLE_FPS)
2503                       && strcmp(oc->oformat->name, "mov") && strcmp(oc->oformat->name, "mp4") && strcmp(oc->oformat->name, "3gp")
2504                       && strcmp(oc->oformat->name, "3g2") && strcmp(oc->oformat->name, "psp") && strcmp(oc->oformat->name, "ipod")
2505                       && strcmp(oc->oformat->name, "f4v")
2506             ) {
2507                 if(   copy_tb<0 && dec_ctx->time_base.den
2508                                 && av_q2d(dec_ctx->time_base)*dec_ctx->ticks_per_frame > av_q2d(ist->st->time_base)
2509                                 && av_q2d(ist->st->time_base) < 1.0/500
2510                    || copy_tb==0){
2511                     enc_ctx->time_base = dec_ctx->time_base;
2512                     enc_ctx->time_base.num *= dec_ctx->ticks_per_frame;
2513                 }
2514             }
2515             if (   enc_ctx->codec_tag == AV_RL32("tmcd")
2516                 && dec_ctx->time_base.num < dec_ctx->time_base.den
2517                 && dec_ctx->time_base.num > 0
2518                 && 121LL*dec_ctx->time_base.num > dec_ctx->time_base.den) {
2519                 enc_ctx->time_base = dec_ctx->time_base;
2520             }
2521
2522             if (ist && !ost->frame_rate.num)
2523                 ost->frame_rate = ist->framerate;
2524             if(ost->frame_rate.num)
2525                 enc_ctx->time_base = av_inv_q(ost->frame_rate);
2526
2527             av_reduce(&enc_ctx->time_base.num, &enc_ctx->time_base.den,
2528                         enc_ctx->time_base.num, enc_ctx->time_base.den, INT_MAX);
2529
2530             ost->parser = av_parser_init(enc_ctx->codec_id);
2531
2532             switch (enc_ctx->codec_type) {
2533             case AVMEDIA_TYPE_AUDIO:
2534                 if (audio_volume != 256) {
2535                     av_log(NULL, AV_LOG_FATAL, "-acodec copy and -vol are incompatible (frames are not decoded)\n");
2536                     exit_program(1);
2537                 }
2538                 enc_ctx->channel_layout     = dec_ctx->channel_layout;
2539                 enc_ctx->sample_rate        = dec_ctx->sample_rate;
2540                 enc_ctx->channels           = dec_ctx->channels;
2541                 enc_ctx->frame_size         = dec_ctx->frame_size;
2542                 enc_ctx->audio_service_type = dec_ctx->audio_service_type;
2543                 enc_ctx->block_align        = dec_ctx->block_align;
2544                 enc_ctx->delay              = dec_ctx->delay;
2545                 if((enc_ctx->block_align == 1 || enc_ctx->block_align == 1152 || enc_ctx->block_align == 576) && enc_ctx->codec_id == AV_CODEC_ID_MP3)
2546                     enc_ctx->block_align= 0;
2547                 if(enc_ctx->codec_id == AV_CODEC_ID_AC3)
2548                     enc_ctx->block_align= 0;
2549                 break;
2550             case AVMEDIA_TYPE_VIDEO:
2551                 enc_ctx->pix_fmt            = dec_ctx->pix_fmt;
2552                 enc_ctx->width              = dec_ctx->width;
2553                 enc_ctx->height             = dec_ctx->height;
2554                 enc_ctx->has_b_frames       = dec_ctx->has_b_frames;
2555                 if (ost->frame_aspect_ratio.num) { // overridden by the -aspect cli option
2556                     sar =
2557                         av_mul_q(ost->frame_aspect_ratio,
2558                                  (AVRational){ enc_ctx->height, enc_ctx->width });
2559                     av_log(NULL, AV_LOG_WARNING, "Overriding aspect ratio "
2560                            "with stream copy may produce invalid files\n");
2561                 }
2562                 else if (ist->st->sample_aspect_ratio.num)
2563                     sar = ist->st->sample_aspect_ratio;
2564                 else
2565                     sar = dec_ctx->sample_aspect_ratio;
2566                 ost->st->sample_aspect_ratio = enc_ctx->sample_aspect_ratio = sar;
2567                 ost->st->avg_frame_rate = ist->st->avg_frame_rate;
2568                 break;
2569             case AVMEDIA_TYPE_SUBTITLE:
2570                 enc_ctx->width  = dec_ctx->width;
2571                 enc_ctx->height = dec_ctx->height;
2572                 break;
2573             case AVMEDIA_TYPE_DATA:
2574             case AVMEDIA_TYPE_ATTACHMENT:
2575                 break;
2576             default:
2577                 abort();
2578             }
2579         } else {
2580             if (!ost->enc)
2581                 ost->enc = avcodec_find_encoder(enc_ctx->codec_id);
2582             if (!ost->enc) {
2583                 /* should only happen when a default codec is not present. */
2584                 snprintf(error, sizeof(error), "Encoder (codec %s) not found for output stream #%d:%d",
2585                          avcodec_get_name(ost->st->codec->codec_id), ost->file_index, ost->index);
2586                 ret = AVERROR(EINVAL);
2587                 goto dump_format;
2588             }
2589
2590             if (ist)
2591                 ist->decoding_needed++;
2592             ost->encoding_needed = 1;
2593
2594             if (!ost->filter &&
2595                 (enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO ||
2596                  enc_ctx->codec_type == AVMEDIA_TYPE_AUDIO)) {
2597                     FilterGraph *fg;
2598                     fg = init_simple_filtergraph(ist, ost);
2599                     if (configure_filtergraph(fg)) {
2600                         av_log(NULL, AV_LOG_FATAL, "Error opening filters!\n");
2601                         exit_program(1);
2602                     }
2603             }
2604
2605             if (enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO) {
2606                 if (ost->filter && !ost->frame_rate.num)
2607                     ost->frame_rate = av_buffersink_get_frame_rate(ost->filter->filter);
2608                 if (ist && !ost->frame_rate.num)
2609                     ost->frame_rate = ist->framerate;
2610                 if (ist && !ost->frame_rate.num)
2611                     ost->frame_rate = ist->st->r_frame_rate;
2612                 if (ist && !ost->frame_rate.num) {
2613                     ost->frame_rate = (AVRational){25, 1};
2614                     av_log(NULL, AV_LOG_WARNING,
2615                            "No information "
2616                            "about the input framerate is available. Falling "
2617                            "back to a default value of 25fps for output stream #%d:%d. Use the -r option "
2618                            "if you want a different framerate.\n",
2619                            ost->file_index, ost->index);
2620                 }
2621 //                    ost->frame_rate = ist->st->avg_frame_rate.num ? ist->st->avg_frame_rate : (AVRational){25, 1};
2622                 if (ost->enc && ost->enc->supported_framerates && !ost->force_fps) {
2623                     int idx = av_find_nearest_q_idx(ost->frame_rate, ost->enc->supported_framerates);
2624                     ost->frame_rate = ost->enc->supported_framerates[idx];
2625                 }
2626                 if (enc_ctx->codec_id == AV_CODEC_ID_MPEG4) {
2627                     av_reduce(&ost->frame_rate.num, &ost->frame_rate.den,
2628                               ost->frame_rate.num, ost->frame_rate.den, 65535);
2629                 }
2630             }
2631
2632             switch (enc_ctx->codec_type) {
2633             case AVMEDIA_TYPE_AUDIO:
2634                 enc_ctx->sample_fmt     = ost->filter->filter->inputs[0]->format;
2635                 enc_ctx->sample_rate    = ost->filter->filter->inputs[0]->sample_rate;
2636                 enc_ctx->channel_layout = ost->filter->filter->inputs[0]->channel_layout;
2637                 enc_ctx->channels       = avfilter_link_get_channels(ost->filter->filter->inputs[0]);
2638                 enc_ctx->time_base      = (AVRational){ 1, enc_ctx->sample_rate };
2639                 break;
2640             case AVMEDIA_TYPE_VIDEO:
2641                 enc_ctx->time_base = av_inv_q(ost->frame_rate);
2642                 if (ost->filter && !(enc_ctx->time_base.num && enc_ctx->time_base.den))
2643                     enc_ctx->time_base = ost->filter->filter->inputs[0]->time_base;
2644                 if (   av_q2d(enc_ctx->time_base) < 0.001 && video_sync_method != VSYNC_PASSTHROUGH
2645                    && (video_sync_method == VSYNC_CFR || video_sync_method == VSYNC_VSCFR || (video_sync_method == VSYNC_AUTO && !(oc->oformat->flags & AVFMT_VARIABLE_FPS)))){
2646                     av_log(oc, AV_LOG_WARNING, "Frame rate very high for a muxer not efficiently supporting it.\n"
2647                                                "Please consider specifying a lower framerate, a different muxer or -vsync 2\n");
2648                 }
2649                 for (j = 0; j < ost->forced_kf_count; j++)
2650                     ost->forced_kf_pts[j] = av_rescale_q(ost->forced_kf_pts[j],
2651                                                          AV_TIME_BASE_Q,
2652                                                          enc_ctx->time_base);
2653
2654                 enc_ctx->width  = ost->filter->filter->inputs[0]->w;
2655                 enc_ctx->height = ost->filter->filter->inputs[0]->h;
2656                 enc_ctx->sample_aspect_ratio = ost->st->sample_aspect_ratio =
2657                     ost->frame_aspect_ratio.num ? // overridden by the -aspect cli option
2658                     av_mul_q(ost->frame_aspect_ratio, (AVRational){ enc_ctx->height, enc_ctx->width }) :
2659                     ost->filter->filter->inputs[0]->sample_aspect_ratio;
2660                 if (!strncmp(ost->enc->name, "libx264", 7) &&
2661                     enc_ctx->pix_fmt == AV_PIX_FMT_NONE &&
2662                     ost->filter->filter->inputs[0]->format != AV_PIX_FMT_YUV420P)
2663                     av_log(NULL, AV_LOG_WARNING,
2664                            "No pixel format specified, %s for H.264 encoding chosen.\n"
2665                            "Use -pix_fmt yuv420p for compatibility with outdated media players.\n",
2666                            av_get_pix_fmt_name(ost->filter->filter->inputs[0]->format));
2667                 if (!strncmp(ost->enc->name, "mpeg2video", 10) &&
2668                     enc_ctx->pix_fmt == AV_PIX_FMT_NONE &&
2669                     ost->filter->filter->inputs[0]->format != AV_PIX_FMT_YUV420P)
2670                     av_log(NULL, AV_LOG_WARNING,
2671                            "No pixel format specified, %s for MPEG-2 encoding chosen.\n"
2672                            "Use -pix_fmt yuv420p for compatibility with outdated media players.\n",
2673                            av_get_pix_fmt_name(ost->filter->filter->inputs[0]->format));
2674                 enc_ctx->pix_fmt = ost->filter->filter->inputs[0]->format;
2675
2676                 ost->st->avg_frame_rate = ost->frame_rate;
2677
2678                 if (!dec_ctx ||
2679                     enc_ctx->width   != dec_ctx->width  ||
2680                     enc_ctx->height  != dec_ctx->height ||
2681                     enc_ctx->pix_fmt != dec_ctx->pix_fmt) {
2682                     enc_ctx->bits_per_raw_sample = frame_bits_per_raw_sample;
2683                 }
2684
2685                 if (ost->forced_keyframes) {
2686                     if (!strncmp(ost->forced_keyframes, "expr:", 5)) {
2687                         ret = av_expr_parse(&ost->forced_keyframes_pexpr, ost->forced_keyframes+5,
2688                                             forced_keyframes_const_names, NULL, NULL, NULL, NULL, 0, NULL);
2689                         if (ret < 0) {
2690                             av_log(NULL, AV_LOG_ERROR,
2691                                    "Invalid force_key_frames expression '%s'\n", ost->forced_keyframes+5);
2692                             return ret;
2693                         }
2694                         ost->forced_keyframes_expr_const_values[FKF_N] = 0;
2695                         ost->forced_keyframes_expr_const_values[FKF_N_FORCED] = 0;
2696                         ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_N] = NAN;
2697                         ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_T] = NAN;
2698                     } else {
2699                         parse_forced_key_frames(ost->forced_keyframes, ost, ost->st->codec);
2700                     }
2701                 }
2702                 break;
2703             case AVMEDIA_TYPE_SUBTITLE:
2704                 enc_ctx->time_base = (AVRational){1, 1000};
2705                 if (!enc_ctx->width) {
2706                     enc_ctx->width     = input_streams[ost->source_index]->st->codec->width;
2707                     enc_ctx->height    = input_streams[ost->source_index]->st->codec->height;
2708                 }
2709                 break;
2710             default:
2711                 abort();
2712                 break;
2713             }
2714             /* two pass mode */
2715             if (enc_ctx->flags & (CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2)) {
2716                 char logfilename[1024];
2717                 FILE *f;
2718
2719                 snprintf(logfilename, sizeof(logfilename), "%s-%d.log",
2720                          ost->logfile_prefix ? ost->logfile_prefix :
2721                                                DEFAULT_PASS_LOGFILENAME_PREFIX,
2722                          i);
2723                 if (!strcmp(ost->enc->name, "libx264")) {
2724                     av_dict_set(&ost->encoder_opts, "stats", logfilename, AV_DICT_DONT_OVERWRITE);
2725                 } else {
2726                     if (enc_ctx->flags & CODEC_FLAG_PASS2) {
2727                         char  *logbuffer;
2728                         size_t logbuffer_size;
2729                         if (cmdutils_read_file(logfilename, &logbuffer, &logbuffer_size) < 0) {
2730                             av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n",
2731                                    logfilename);
2732                             exit_program(1);
2733                         }
2734                         enc_ctx->stats_in = logbuffer;
2735                     }
2736                     if (enc_ctx->flags & CODEC_FLAG_PASS1) {
2737                         f = av_fopen_utf8(logfilename, "wb");
2738                         if (!f) {
2739                             av_log(NULL, AV_LOG_FATAL, "Cannot write log file '%s' for pass-1 encoding: %s\n",
2740                                 logfilename, strerror(errno));
2741                             exit_program(1);
2742                         }
2743                         ost->logfile = f;
2744                     }
2745                 }
2746             }
2747         }
2748     }
2749
2750     /* open each encoder */
2751     for (i = 0; i < nb_output_streams; i++) {
2752         ost = output_streams[i];
2753         if (ost->encoding_needed) {
2754             AVCodec      *codec = ost->enc;
2755             AVCodecContext *dec = NULL;
2756
2757             if ((ist = get_input_stream(ost)))
2758                 dec = ist->st->codec;
2759             if (dec && dec->subtitle_header) {
2760                 /* ASS code assumes this buffer is null terminated so add extra byte. */
2761                 ost->st->codec->subtitle_header = av_mallocz(dec->subtitle_header_size + 1);
2762                 if (!ost->st->codec->subtitle_header) {
2763                     ret = AVERROR(ENOMEM);
2764                     goto dump_format;
2765                 }
2766                 memcpy(ost->st->codec->subtitle_header, dec->subtitle_header, dec->subtitle_header_size);
2767                 ost->st->codec->subtitle_header_size = dec->subtitle_header_size;
2768             }
2769             if (!av_dict_get(ost->encoder_opts, "threads", NULL, 0))
2770                 av_dict_set(&ost->encoder_opts, "threads", "auto", 0);
2771             if ((ret = avcodec_open2(ost->st->codec, codec, &ost->encoder_opts)) < 0) {
2772                 if (ret == AVERROR_EXPERIMENTAL)
2773                     abort_codec_experimental(codec, 1);
2774                 snprintf(error, sizeof(error), "Error while opening encoder for output stream #%d:%d - maybe incorrect parameters such as bit_rate, rate, width or height",
2775                         ost->file_index, ost->index);
2776                 goto dump_format;
2777             }
2778             if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
2779                 !(ost->enc->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE))
2780                 av_buffersink_set_frame_size(ost->filter->filter,
2781                                              ost->st->codec->frame_size);
2782             assert_avoptions(ost->encoder_opts);
2783             if (ost->st->codec->bit_rate && ost->st->codec->bit_rate < 1000)
2784                 av_log(NULL, AV_LOG_WARNING, "The bitrate parameter is set too low."
2785                                              " It takes bits/s as argument, not kbits/s\n");
2786         } else {
2787             av_opt_set_dict(ost->st->codec, &ost->encoder_opts);
2788         }
2789     }
2790
2791     /* init input streams */
2792     for (i = 0; i < nb_input_streams; i++)
2793         if ((ret = init_input_stream(i, error, sizeof(error))) < 0) {
2794             for (i = 0; i < nb_output_streams; i++) {
2795                 ost = output_streams[i];
2796                 avcodec_close(ost->st->codec);
2797             }
2798             goto dump_format;
2799         }
2800
2801     /* discard unused programs */
2802     for (i = 0; i < nb_input_files; i++) {
2803         InputFile *ifile = input_files[i];
2804         for (j = 0; j < ifile->ctx->nb_programs; j++) {
2805             AVProgram *p = ifile->ctx->programs[j];
2806             int discard  = AVDISCARD_ALL;
2807
2808             for (k = 0; k < p->nb_stream_indexes; k++)
2809                 if (!input_streams[ifile->ist_index + p->stream_index[k]]->discard) {
2810                     discard = AVDISCARD_DEFAULT;
2811                     break;
2812                 }
2813             p->discard = discard;
2814         }
2815     }
2816
2817     /* open files and write file headers */
2818     for (i = 0; i < nb_output_files; i++) {
2819         oc = output_files[i]->ctx;
2820         oc->interrupt_callback = int_cb;
2821         if ((ret = avformat_write_header(oc, &output_files[i]->opts)) < 0) {
2822             snprintf(error, sizeof(error),
2823                      "Could not write header for output file #%d "
2824                      "(incorrect codec parameters ?): %s",
2825                      i, av_err2str(ret));
2826             ret = AVERROR(EINVAL);
2827             goto dump_format;
2828         }
2829 //         assert_avoptions(output_files[i]->opts);
2830         if (strcmp(oc->oformat->name, "rtp")) {
2831             want_sdp = 0;
2832         }
2833     }
2834
2835  dump_format:
2836     /* dump the file output parameters - cannot be done before in case
2837        of stream copy */
2838     for (i = 0; i < nb_output_files; i++) {
2839         av_dump_format(output_files[i]->ctx, i, output_files[i]->ctx->filename, 1);
2840     }
2841
2842     /* dump the stream mapping */
2843     av_log(NULL, AV_LOG_INFO, "Stream mapping:\n");
2844     for (i = 0; i < nb_input_streams; i++) {
2845         ist = input_streams[i];
2846
2847         for (j = 0; j < ist->nb_filters; j++) {
2848             if (ist->filters[j]->graph->graph_desc) {
2849                 av_log(NULL, AV_LOG_INFO, "  Stream #%d:%d (%s) -> %s",
2850                        ist->file_index, ist->st->index, ist->dec ? ist->dec->name : "?",
2851                        ist->filters[j]->name);
2852                 if (nb_filtergraphs > 1)
2853                     av_log(NULL, AV_LOG_INFO, " (graph %d)", ist->filters[j]->graph->index);
2854                 av_log(NULL, AV_LOG_INFO, "\n");
2855             }
2856         }
2857     }
2858
2859     for (i = 0; i < nb_output_streams; i++) {
2860         ost = output_streams[i];
2861
2862         if (ost->attachment_filename) {
2863             /* an attached file */
2864             av_log(NULL, AV_LOG_INFO, "  File %s -> Stream #%d:%d\n",
2865                    ost->attachment_filename, ost->file_index, ost->index);
2866             continue;
2867         }
2868
2869         if (ost->filter && ost->filter->graph->graph_desc) {
2870             /* output from a complex graph */
2871             av_log(NULL, AV_LOG_INFO, "  %s", ost->filter->name);
2872             if (nb_filtergraphs > 1)
2873                 av_log(NULL, AV_LOG_INFO, " (graph %d)", ost->filter->graph->index);
2874
2875             av_log(NULL, AV_LOG_INFO, " -> Stream #%d:%d (%s)\n", ost->file_index,
2876                    ost->index, ost->enc ? ost->enc->name : "?");
2877             continue;
2878         }
2879
2880         av_log(NULL, AV_LOG_INFO, "  Stream #%d:%d -> #%d:%d",
2881                input_streams[ost->source_index]->file_index,
2882                input_streams[ost->source_index]->st->index,
2883                ost->file_index,
2884                ost->index);
2885         if (ost->sync_ist != input_streams[ost->source_index])
2886             av_log(NULL, AV_LOG_INFO, " [sync #%d:%d]",
2887                    ost->sync_ist->file_index,
2888                    ost->sync_ist->st->index);
2889         if (ost->stream_copy)
2890             av_log(NULL, AV_LOG_INFO, " (copy)");
2891         else
2892             av_log(NULL, AV_LOG_INFO, " (%s -> %s)", input_streams[ost->source_index]->dec ?
2893                    input_streams[ost->source_index]->dec->name : "?",
2894                    ost->enc ? ost->enc->name : "?");
2895         av_log(NULL, AV_LOG_INFO, "\n");
2896     }
2897
2898     if (ret) {
2899         av_log(NULL, AV_LOG_ERROR, "%s\n", error);
2900         return ret;
2901     }
2902
2903     if (want_sdp) {
2904         print_sdp();
2905     }
2906
2907     transcode_init_done = 1;
2908
2909     return 0;
2910 }
2911
2912 /* Return 1 if there remain streams where more output is wanted, 0 otherwise. */
2913 static int need_output(void)
2914 {
2915     int i;
2916
2917     for (i = 0; i < nb_output_streams; i++) {
2918         OutputStream *ost    = output_streams[i];
2919         OutputFile *of       = output_files[ost->file_index];
2920         AVFormatContext *os  = output_files[ost->file_index]->ctx;
2921
2922         if (ost->finished ||
2923             (os->pb && avio_tell(os->pb) >= of->limit_filesize))
2924             continue;
2925         if (ost->frame_number >= ost->max_frames) {
2926             int j;
2927             for (j = 0; j < of->ctx->nb_streams; j++)
2928                 close_output_stream(output_streams[of->ost_index + j]);
2929             continue;
2930         }
2931
2932         return 1;
2933     }
2934
2935     return 0;
2936 }
2937
2938 /**
2939  * Select the output stream to process.
2940  *
2941  * @return  selected output stream, or NULL if none available
2942  */
2943 static OutputStream *choose_output(void)
2944 {
2945     int i;
2946     int64_t opts_min = INT64_MAX;
2947     OutputStream *ost_min = NULL;
2948
2949     for (i = 0; i < nb_output_streams; i++) {
2950         OutputStream *ost = output_streams[i];
2951         int64_t opts = av_rescale_q(ost->st->cur_dts, ost->st->time_base,
2952                                     AV_TIME_BASE_Q);
2953         if (!ost->unavailable && !ost->finished && opts < opts_min) {
2954             opts_min = opts;
2955             ost_min  = ost;
2956         }
2957     }
2958     return ost_min;
2959 }
2960
2961 static int check_keyboard_interaction(int64_t cur_time)
2962 {
2963     int i, ret, key;
2964     static int64_t last_time;
2965     if (received_nb_signals)
2966         return AVERROR_EXIT;
2967     /* read_key() returns 0 on EOF */
2968     if(cur_time - last_time >= 100000 && !run_as_daemon){
2969         key =  read_key();
2970         last_time = cur_time;
2971     }else
2972         key = -1;
2973     if (key == 'q')
2974         return AVERROR_EXIT;
2975     if (key == '+') av_log_set_level(av_log_get_level()+10);
2976     if (key == '-') av_log_set_level(av_log_get_level()-10);
2977     if (key == 's') qp_hist     ^= 1;
2978     if (key == 'h'){
2979         if (do_hex_dump){
2980             do_hex_dump = do_pkt_dump = 0;
2981         } else if(do_pkt_dump){
2982             do_hex_dump = 1;
2983         } else
2984             do_pkt_dump = 1;
2985         av_log_set_level(AV_LOG_DEBUG);
2986     }
2987     if (key == 'c' || key == 'C'){
2988         char buf[4096], target[64], command[256], arg[256] = {0};
2989         double time;
2990         int k, n = 0;
2991         fprintf(stderr, "\nEnter command: <target>|all <time>|-1 <command>[ <argument>]\n");
2992         i = 0;
2993         while ((k = read_key()) != '\n' && k != '\r' && i < sizeof(buf)-1)
2994             if (k > 0)
2995                 buf[i++] = k;
2996         buf[i] = 0;
2997         if (k > 0 &&
2998             (n = sscanf(buf, "%63[^ ] %lf %255[^ ] %255[^\n]", target, &time, command, arg)) >= 3) {
2999             av_log(NULL, AV_LOG_DEBUG, "Processing command target:%s time:%f command:%s arg:%s",
3000                    target, time, command, arg);
3001             for (i = 0; i < nb_filtergraphs; i++) {
3002                 FilterGraph *fg = filtergraphs[i];
3003                 if (fg->graph) {
3004                     if (time < 0) {
3005                         ret = avfilter_graph_send_command(fg->graph, target, command, arg, buf, sizeof(buf),
3006                                                           key == 'c' ? AVFILTER_CMD_FLAG_ONE : 0);
3007                         fprintf(stderr, "Command reply for stream %d: ret:%d res:\n%s", i, ret, buf);
3008                     } else if (key == 'c') {
3009                         fprintf(stderr, "Queing commands only on filters supporting the specific command is unsupported\n");
3010                         ret = AVERROR_PATCHWELCOME;
3011                     } else {
3012                         ret = avfilter_graph_queue_command(fg->graph, target, command, arg, 0, time);
3013                     }
3014                 }
3015             }
3016         } else {
3017             av_log(NULL, AV_LOG_ERROR,
3018                    "Parse error, at least 3 arguments were expected, "
3019                    "only %d given in string '%s'\n", n, buf);
3020         }
3021     }
3022     if (key == 'd' || key == 'D'){
3023         int debug=0;
3024         if(key == 'D') {
3025             debug = input_streams[0]->st->codec->debug<<1;
3026             if(!debug) debug = 1;
3027             while(debug & (FF_DEBUG_DCT_COEFF|FF_DEBUG_VIS_QP|FF_DEBUG_VIS_MB_TYPE)) //unsupported, would just crash
3028                 debug += debug;
3029         }else
3030             if(scanf("%d", &debug)!=1)
3031                 fprintf(stderr,"error parsing debug value\n");
3032         for(i=0;i<nb_input_streams;i++) {
3033             input_streams[i]->st->codec->debug = debug;
3034         }
3035         for(i=0;i<nb_output_streams;i++) {
3036             OutputStream *ost = output_streams[i];
3037             ost->st->codec->debug = debug;
3038         }
3039         if(debug) av_log_set_level(AV_LOG_DEBUG);
3040         fprintf(stderr,"debug=%d\n", debug);
3041     }
3042     if (key == '?'){
3043         fprintf(stderr, "key    function\n"
3044                         "?      show this help\n"
3045                         "+      increase verbosity\n"
3046                         "-      decrease verbosity\n"
3047                         "c      Send command to first matching filter supporting it\n"
3048                         "C      Send/Que command to all matching filters\n"
3049                         "D      cycle through available debug modes\n"
3050                         "h      dump packets/hex press to cycle through the 3 states\n"
3051                         "q      quit\n"
3052                         "s      Show QP histogram\n"
3053         );
3054     }
3055     return 0;
3056 }
3057
3058 #if HAVE_PTHREADS
3059 static void *input_thread(void *arg)
3060 {
3061     InputFile *f = arg;
3062     int ret = 0;
3063
3064     while (!transcoding_finished && ret >= 0) {
3065         AVPacket pkt;
3066         ret = av_read_frame(f->ctx, &pkt);
3067
3068         if (ret == AVERROR(EAGAIN)) {
3069             av_usleep(10000);
3070             ret = 0;
3071             continue;
3072         } else if (ret < 0)
3073             break;
3074
3075         pthread_mutex_lock(&f->fifo_lock);
3076         while (!av_fifo_space(f->fifo))
3077             pthread_cond_wait(&f->fifo_cond, &f->fifo_lock);
3078
3079         av_dup_packet(&pkt);
3080         av_fifo_generic_write(f->fifo, &pkt, sizeof(pkt), NULL);
3081         pthread_cond_signal(&f->fifo_cond);
3082
3083         pthread_mutex_unlock(&f->fifo_lock);
3084     }
3085
3086     pthread_mutex_lock(&f->fifo_lock);
3087     f->finished = 1;
3088     pthread_cond_signal(&f->fifo_cond);
3089     pthread_mutex_unlock(&f->fifo_lock);
3090     return NULL;
3091 }
3092
3093 static void free_input_threads(void)
3094 {
3095     int i;
3096
3097     if (nb_input_files == 1)
3098         return;
3099
3100     transcoding_finished = 1;
3101
3102     for (i = 0; i < nb_input_files; i++) {
3103         InputFile *f = input_files[i];
3104         AVPacket pkt;
3105
3106         if (!f->fifo || f->joined)
3107             continue;
3108
3109         pthread_mutex_lock(&f->fifo_lock);
3110         while (av_fifo_size(f->fifo)) {
3111             av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL);
3112             av_free_packet(&pkt);
3113         }
3114         pthread_cond_signal(&f->fifo_cond);
3115         pthread_mutex_unlock(&f->fifo_lock);
3116
3117         pthread_join(f->thread, NULL);
3118         f->joined = 1;
3119
3120         while (av_fifo_size(f->fifo)) {
3121             av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL);
3122             av_free_packet(&pkt);
3123         }
3124         av_fifo_freep(&f->fifo);
3125     }
3126 }
3127
3128 static int init_input_threads(void)
3129 {
3130     int i, ret;
3131
3132     if (nb_input_files == 1)
3133         return 0;
3134
3135     for (i = 0; i < nb_input_files; i++) {
3136         InputFile *f = input_files[i];
3137
3138         if (!(f->fifo = av_fifo_alloc(8*sizeof(AVPacket))))
3139             return AVERROR(ENOMEM);
3140
3141         if (f->ctx->pb ? !f->ctx->pb->seekable :
3142             strcmp(f->ctx->iformat->name, "lavfi"))
3143             f->non_blocking = 1;
3144
3145         pthread_mutex_init(&f->fifo_lock, NULL);
3146         pthread_cond_init (&f->fifo_cond, NULL);
3147
3148         if ((ret = pthread_create(&f->thread, NULL, input_thread, f)))
3149             return AVERROR(ret);
3150     }
3151     return 0;
3152 }
3153
3154 static int get_input_packet_mt(InputFile *f, AVPacket *pkt)
3155 {
3156     int ret = 0;
3157
3158     pthread_mutex_lock(&f->fifo_lock);
3159
3160     while (1) {
3161     if (av_fifo_size(f->fifo)) {
3162         av_fifo_generic_read(f->fifo, pkt, sizeof(*pkt), NULL);
3163         pthread_cond_signal(&f->fifo_cond);
3164         break;
3165     } else {
3166         if (f->finished) {
3167             ret = AVERROR_EOF;
3168             break;
3169         }
3170         if (f->non_blocking) {
3171             ret = AVERROR(EAGAIN);
3172             break;
3173         }
3174         pthread_cond_wait(&f->fifo_cond, &f->fifo_lock);
3175     }
3176     }
3177
3178     pthread_mutex_unlock(&f->fifo_lock);
3179
3180     return ret;
3181 }
3182 #endif
3183
3184 static int get_input_packet(InputFile *f, AVPacket *pkt)
3185 {
3186     if (f->rate_emu) {
3187         int i;
3188         for (i = 0; i < f->nb_streams; i++) {
3189             InputStream *ist = input_streams[f->ist_index + i];
3190             int64_t pts = av_rescale(ist->dts, 1000000, AV_TIME_BASE);
3191             int64_t now = av_gettime() - ist->start;
3192             if (pts > now)
3193                 return AVERROR(EAGAIN);
3194         }
3195     }
3196
3197 #if HAVE_PTHREADS
3198     if (nb_input_files > 1)
3199         return get_input_packet_mt(f, pkt);
3200 #endif
3201     return av_read_frame(f->ctx, pkt);
3202 }
3203
3204 static int got_eagain(void)
3205 {
3206     int i;
3207     for (i = 0; i < nb_output_streams; i++)
3208         if (output_streams[i]->unavailable)
3209             return 1;
3210     return 0;
3211 }
3212
3213 static void reset_eagain(void)
3214 {
3215     int i;
3216     for (i = 0; i < nb_input_files; i++)
3217         input_files[i]->eagain = 0;
3218     for (i = 0; i < nb_output_streams; i++)
3219         output_streams[i]->unavailable = 0;
3220 }
3221
3222 /*
3223  * Return
3224  * - 0 -- one packet was read and processed
3225  * - AVERROR(EAGAIN) -- no packets were available for selected file,
3226  *   this function should be called again
3227  * - AVERROR_EOF -- this function should not be called again
3228  */
3229 static int process_input(int file_index)
3230 {
3231     InputFile *ifile = input_files[file_index];
3232     AVFormatContext *is;
3233     InputStream *ist;
3234     AVPacket pkt;
3235     int ret, i, j;
3236
3237     is  = ifile->ctx;
3238     ret = get_input_packet(ifile, &pkt);
3239
3240     if (ret == AVERROR(EAGAIN)) {
3241         ifile->eagain = 1;
3242         return ret;
3243     }
3244     if (ret < 0) {
3245         if (ret != AVERROR_EOF) {
3246             print_error(is->filename, ret);
3247             if (exit_on_error)
3248                 exit_program(1);
3249         }
3250         ifile->eof_reached = 1;
3251
3252         for (i = 0; i < ifile->nb_streams; i++) {
3253             ist = input_streams[ifile->ist_index + i];
3254             if (ist->decoding_needed)
3255                 output_packet(ist, NULL);
3256
3257             /* mark all outputs that don't go through lavfi as finished */
3258             for (j = 0; j < nb_output_streams; j++) {
3259                 OutputStream *ost = output_streams[j];
3260
3261                 if (ost->source_index == ifile->ist_index + i &&
3262                     (ost->stream_copy || ost->enc->type == AVMEDIA_TYPE_SUBTITLE))
3263                     close_output_stream(ost);
3264             }
3265         }
3266
3267         return AVERROR(EAGAIN);
3268     }
3269
3270     reset_eagain();
3271
3272     if (do_pkt_dump) {
3273         av_pkt_dump_log2(NULL, AV_LOG_DEBUG, &pkt, do_hex_dump,
3274                          is->streams[pkt.stream_index]);
3275     }
3276     /* the following test is needed in case new streams appear
3277        dynamically in stream : we ignore them */
3278     if (pkt.stream_index >= ifile->nb_streams) {
3279         report_new_stream(file_index, &pkt);
3280         goto discard_packet;
3281     }
3282
3283     ist = input_streams[ifile->ist_index + pkt.stream_index];
3284
3285     ist->data_size += pkt.size;
3286     ist->nb_packets++;
3287
3288     if (ist->discard)
3289         goto discard_packet;
3290
3291     if (debug_ts) {
3292         av_log(NULL, AV_LOG_INFO, "demuxer -> ist_index:%d type:%s "
3293                "next_dts:%s next_dts_time:%s next_pts:%s next_pts_time:%s pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s off:%s off_time:%s\n",
3294                ifile->ist_index + pkt.stream_index, av_get_media_type_string(ist->st->codec->codec_type),
3295                av_ts2str(ist->next_dts), av_ts2timestr(ist->next_dts, &AV_TIME_BASE_Q),
3296                av_ts2str(ist->next_pts), av_ts2timestr(ist->next_pts, &AV_TIME_BASE_Q),
3297                av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ist->st->time_base),
3298                av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ist->st->time_base),
3299                av_ts2str(input_files[ist->file_index]->ts_offset),
3300                av_ts2timestr(input_files[ist->file_index]->ts_offset, &AV_TIME_BASE_Q));
3301     }
3302
3303     if(!ist->wrap_correction_done && is->start_time != AV_NOPTS_VALUE && ist->st->pts_wrap_bits < 64){
3304         int64_t stime, stime2;
3305         // Correcting starttime based on the enabled streams
3306         // FIXME this ideally should be done before the first use of starttime but we do not know which are the enabled streams at that point.
3307         //       so we instead do it here as part of discontinuity handling
3308         if (   ist->next_dts == AV_NOPTS_VALUE
3309             && ifile->ts_offset == -is->start_time
3310             && (is->iformat->flags & AVFMT_TS_DISCONT)) {
3311             int64_t new_start_time = INT64_MAX;
3312             for (i=0; i<is->nb_streams; i++) {
3313                 AVStream *st = is->streams[i];
3314                 if(st->discard == AVDISCARD_ALL || st->start_time == AV_NOPTS_VALUE)
3315                     continue;
3316                 new_start_time = FFMIN(new_start_time, av_rescale_q(st->start_time, st->time_base, AV_TIME_BASE_Q));
3317             }
3318             if (new_start_time > is->start_time) {
3319                 av_log(is, AV_LOG_VERBOSE, "Correcting start time by %"PRId64"\n", new_start_time - is->start_time);
3320                 ifile->ts_offset = -new_start_time;
3321             }
3322         }
3323
3324         stime = av_rescale_q(is->start_time, AV_TIME_BASE_Q, ist->st->time_base);
3325         stime2= stime + (1ULL<<ist->st->pts_wrap_bits);
3326         ist->wrap_correction_done = 1;
3327
3328         if(stime2 > stime && pkt.dts != AV_NOPTS_VALUE && pkt.dts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
3329             pkt.dts -= 1ULL<<ist->st->pts_wrap_bits;
3330             ist->wrap_correction_done = 0;
3331         }
3332         if(stime2 > stime && pkt.pts != AV_NOPTS_VALUE && pkt.pts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
3333             pkt.pts -= 1ULL<<ist->st->pts_wrap_bits;
3334             ist->wrap_correction_done = 0;
3335         }
3336     }
3337
3338     /* add the stream-global side data to the first packet */
3339     if (ist->nb_packets == 1)
3340         if (ist->st->nb_side_data)
3341             av_packet_split_side_data(&pkt);
3342         for (i = 0; i < ist->st->nb_side_data; i++) {
3343             AVPacketSideData *src_sd = &ist->st->side_data[i];
3344             uint8_t *dst_data;
3345
3346             if (av_packet_get_side_data(&pkt, src_sd->type, NULL))
3347                 continue;
3348
3349             dst_data = av_packet_new_side_data(&pkt, src_sd->type, src_sd->size);
3350             if (!dst_data)
3351                 exit_program(1);
3352
3353             memcpy(dst_data, src_sd->data, src_sd->size);
3354         }
3355
3356     if (pkt.dts != AV_NOPTS_VALUE)
3357         pkt.dts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
3358     if (pkt.pts != AV_NOPTS_VALUE)
3359         pkt.pts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
3360
3361     if (pkt.pts != AV_NOPTS_VALUE)
3362         pkt.pts *= ist->ts_scale;
3363     if (pkt.dts != AV_NOPTS_VALUE)
3364         pkt.dts *= ist->ts_scale;
3365
3366     if (pkt.dts != AV_NOPTS_VALUE && ist->next_dts == AV_NOPTS_VALUE && !copy_ts
3367         && (is->iformat->flags & AVFMT_TS_DISCONT) && ifile->last_ts != AV_NOPTS_VALUE) {
3368         int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
3369         int64_t delta   = pkt_dts - ifile->last_ts;
3370         if(delta < -1LL*dts_delta_threshold*AV_TIME_BASE ||
3371             (delta > 1LL*dts_delta_threshold*AV_TIME_BASE &&
3372                 ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE)){
3373             ifile->ts_offset -= delta;
3374             av_log(NULL, AV_LOG_DEBUG,
3375                    "Inter stream timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",
3376                    delta, ifile->ts_offset);
3377             pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3378             if (pkt.pts != AV_NOPTS_VALUE)
3379                 pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3380         }
3381     }
3382
3383     if (pkt.dts != AV_NOPTS_VALUE && ist->next_dts != AV_NOPTS_VALUE &&
3384         !copy_ts) {
3385         int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
3386         int64_t delta   = pkt_dts - ist->next_dts;
3387         if (is->iformat->flags & AVFMT_TS_DISCONT) {
3388             if (delta < -1LL*dts_delta_threshold*AV_TIME_BASE ||
3389                 (delta > 1LL*dts_delta_threshold*AV_TIME_BASE &&
3390                  ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE) ||
3391                 pkt_dts + AV_TIME_BASE/10 < FFMAX(ist->pts, ist->dts)) {
3392                 ifile->ts_offset -= delta;
3393                 av_log(NULL, AV_LOG_DEBUG,
3394                        "timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",
3395                        delta, ifile->ts_offset);
3396                 pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3397                 if (pkt.pts != AV_NOPTS_VALUE)
3398                     pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3399             }
3400         } else {
3401             if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
3402                 (delta > 1LL*dts_error_threshold*AV_TIME_BASE && ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE)) {
3403                 av_log(NULL, AV_LOG_WARNING, "DTS %"PRId64", next:%"PRId64" st:%d invalid dropping\n", pkt.dts, ist->next_dts, pkt.stream_index);
3404                 pkt.dts = AV_NOPTS_VALUE;
3405             }
3406             if (pkt.pts != AV_NOPTS_VALUE){
3407                 int64_t pkt_pts = av_rescale_q(pkt.pts, ist->st->time_base, AV_TIME_BASE_Q);
3408                 delta   = pkt_pts - ist->next_dts;
3409                 if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
3410                     (delta > 1LL*dts_error_threshold*AV_TIME_BASE && ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE)) {
3411                     av_log(NULL, AV_LOG_WARNING, "PTS %"PRId64", next:%"PRId64" invalid dropping st:%d\n", pkt.pts, ist->next_dts, pkt.stream_index);
3412                     pkt.pts = AV_NOPTS_VALUE;
3413                 }
3414             }
3415         }
3416     }
3417
3418     if (pkt.dts != AV_NOPTS_VALUE)
3419         ifile->last_ts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
3420
3421     if (debug_ts) {
3422         av_log(NULL, AV_LOG_INFO, "demuxer+ffmpeg -> ist_index:%d type:%s pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s off:%s off_time:%s\n",
3423                ifile->ist_index + pkt.stream_index, av_get_media_type_string(ist->st->codec->codec_type),
3424                av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ist->st->time_base),
3425                av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ist->st->time_base),
3426                av_ts2str(input_files[ist->file_index]->ts_offset),
3427                av_ts2timestr(input_files[ist->file_index]->ts_offset, &AV_TIME_BASE_Q));
3428     }
3429
3430     sub2video_heartbeat(ist, pkt.pts);
3431
3432     ret = output_packet(ist, &pkt);
3433     if (ret < 0) {
3434         av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d: %s\n",
3435                ist->file_index, ist->st->index, av_err2str(ret));
3436         if (exit_on_error)
3437             exit_program(1);
3438     }
3439
3440 discard_packet:
3441     av_free_packet(&pkt);
3442
3443     return 0;
3444 }
3445
3446 /**
3447  * Perform a step of transcoding for the specified filter graph.
3448  *
3449  * @param[in]  graph     filter graph to consider
3450  * @param[out] best_ist  input stream where a frame would allow to continue
3451  * @return  0 for success, <0 for error
3452  */
3453 static int transcode_from_filter(FilterGraph *graph, InputStream **best_ist)
3454 {
3455     int i, ret;
3456     int nb_requests, nb_requests_max = 0;
3457     InputFilter *ifilter;
3458     InputStream *ist;
3459
3460     *best_ist = NULL;
3461     ret = avfilter_graph_request_oldest(graph->graph);
3462     if (ret >= 0)
3463         return reap_filters();
3464
3465     if (ret == AVERROR_EOF) {
3466         ret = reap_filters();
3467         for (i = 0; i < graph->nb_outputs; i++)
3468             close_output_stream(graph->outputs[i]->ost);
3469         return ret;
3470     }
3471     if (ret != AVERROR(EAGAIN))
3472         return ret;
3473
3474     for (i = 0; i < graph->nb_inputs; i++) {
3475         ifilter = graph->inputs[i];
3476         ist = ifilter->ist;
3477         if (input_files[ist->file_index]->eagain ||
3478             input_files[ist->file_index]->eof_reached)
3479             continue;
3480         nb_requests = av_buffersrc_get_nb_failed_requests(ifilter->filter);
3481         if (nb_requests > nb_requests_max) {
3482             nb_requests_max = nb_requests;
3483             *best_ist = ist;
3484         }
3485     }
3486
3487     if (!*best_ist)
3488         for (i = 0; i < graph->nb_outputs; i++)
3489             graph->outputs[i]->ost->unavailable = 1;
3490
3491     return 0;
3492 }
3493
3494 /**
3495  * Run a single step of transcoding.
3496  *
3497  * @return  0 for success, <0 for error
3498  */
3499 static int transcode_step(void)
3500 {
3501     OutputStream *ost;
3502     InputStream  *ist;
3503     int ret;
3504
3505     ost = choose_output();
3506     if (!ost) {
3507         if (got_eagain()) {
3508             reset_eagain();
3509             av_usleep(10000);
3510             return 0;
3511         }
3512         av_log(NULL, AV_LOG_VERBOSE, "No more inputs to read from, finishing.\n");
3513         return AVERROR_EOF;
3514     }
3515
3516     if (ost->filter) {
3517         if ((ret = transcode_from_filter(ost->filter->graph, &ist)) < 0)
3518             return ret;
3519         if (!ist)
3520             return 0;
3521     } else {
3522         av_assert0(ost->source_index >= 0);
3523         ist = input_streams[ost->source_index];
3524     }
3525
3526     ret = process_input(ist->file_index);
3527     if (ret == AVERROR(EAGAIN)) {
3528         if (input_files[ist->file_index]->eagain)
3529             ost->unavailable = 1;
3530         return 0;
3531     }
3532     if (ret < 0)
3533         return ret == AVERROR_EOF ? 0 : ret;
3534
3535     return reap_filters();
3536 }
3537
3538 /*
3539  * The following code is the main loop of the file converter
3540  */
3541 static int transcode(void)
3542 {
3543     int ret, i;
3544     AVFormatContext *os;
3545     OutputStream *ost;
3546     InputStream *ist;
3547     int64_t timer_start;
3548
3549     ret = transcode_init();
3550     if (ret < 0)
3551         goto fail;
3552
3553     if (stdin_interaction) {
3554         av_log(NULL, AV_LOG_INFO, "Press [q] to stop, [?] for help\n");
3555     }
3556
3557     timer_start = av_gettime();
3558
3559 #if HAVE_PTHREADS
3560     if ((ret = init_input_threads()) < 0)
3561         goto fail;
3562 #endif
3563
3564     while (!received_sigterm) {
3565         int64_t cur_time= av_gettime();
3566
3567         /* if 'q' pressed, exits */
3568         if (stdin_interaction)
3569             if (check_keyboard_interaction(cur_time) < 0)
3570                 break;
3571
3572         /* check if there's any stream where output is still needed */
3573         if (!need_output()) {
3574             av_log(NULL, AV_LOG_VERBOSE, "No more output streams to write to, finishing.\n");
3575             break;
3576         }
3577
3578         ret = transcode_step();
3579         if (ret < 0) {
3580             if (ret == AVERROR_EOF || ret == AVERROR(EAGAIN))
3581                 continue;
3582
3583             av_log(NULL, AV_LOG_ERROR, "Error while filtering.\n");
3584             break;
3585         }
3586
3587         /* dump report by using the output first video and audio streams */
3588         print_report(0, timer_start, cur_time);
3589     }
3590 #if HAVE_PTHREADS
3591     free_input_threads();
3592 #endif
3593
3594     /* at the end of stream, we must flush the decoder buffers */
3595     for (i = 0; i < nb_input_streams; i++) {
3596         ist = input_streams[i];
3597         if (!input_files[ist->file_index]->eof_reached && ist->decoding_needed) {
3598             output_packet(ist, NULL);
3599         }
3600     }
3601     flush_encoders();
3602
3603     term_exit();
3604
3605     /* write the trailer if needed and close file */
3606     for (i = 0; i < nb_output_files; i++) {
3607         os = output_files[i]->ctx;
3608         av_write_trailer(os);
3609     }
3610
3611     /* dump report by using the first video and audio streams */
3612     print_report(1, timer_start, av_gettime());
3613
3614     /* close each encoder */
3615     for (i = 0; i < nb_output_streams; i++) {
3616         ost = output_streams[i];
3617         if (ost->encoding_needed) {
3618             av_freep(&ost->st->codec->stats_in);
3619             avcodec_close(ost->st->codec);
3620         }
3621     }
3622
3623     /* close each decoder */
3624     for (i = 0; i < nb_input_streams; i++) {
3625         ist = input_streams[i];
3626         if (ist->decoding_needed) {
3627             avcodec_close(ist->st->codec);
3628             if (ist->hwaccel_uninit)
3629                 ist->hwaccel_uninit(ist->st->codec);
3630         }
3631     }
3632
3633     /* finished ! */
3634     ret = 0;
3635
3636  fail:
3637 #if HAVE_PTHREADS
3638     free_input_threads();
3639 #endif
3640
3641     if (output_streams) {
3642         for (i = 0; i < nb_output_streams; i++) {
3643             ost = output_streams[i];
3644             if (ost) {
3645                 if (ost->stream_copy)
3646                     av_freep(&ost->st->codec->extradata);
3647                 if (ost->logfile) {
3648                     fclose(ost->logfile);
3649                     ost->logfile = NULL;
3650                 }
3651                 av_freep(&ost->st->codec->subtitle_header);
3652                 av_freep(&ost->forced_kf_pts);
3653                 av_freep(&ost->apad);
3654                 av_dict_free(&ost->encoder_opts);
3655                 av_dict_free(&ost->swr_opts);
3656                 av_dict_free(&ost->resample_opts);
3657             }
3658         }
3659     }
3660     return ret;
3661 }
3662
3663
3664 static int64_t getutime(void)
3665 {
3666 #if HAVE_GETRUSAGE
3667     struct rusage rusage;
3668
3669     getrusage(RUSAGE_SELF, &rusage);
3670     return (rusage.ru_utime.tv_sec * 1000000LL) + rusage.ru_utime.tv_usec;
3671 #elif HAVE_GETPROCESSTIMES
3672     HANDLE proc;
3673     FILETIME c, e, k, u;
3674     proc = GetCurrentProcess();
3675     GetProcessTimes(proc, &c, &e, &k, &u);
3676     return ((int64_t) u.dwHighDateTime << 32 | u.dwLowDateTime) / 10;
3677 #else
3678     return av_gettime();
3679 #endif
3680 }
3681
3682 static int64_t getmaxrss(void)
3683 {
3684 #if HAVE_GETRUSAGE && HAVE_STRUCT_RUSAGE_RU_MAXRSS
3685     struct rusage rusage;
3686     getrusage(RUSAGE_SELF, &rusage);
3687     return (int64_t)rusage.ru_maxrss * 1024;
3688 #elif HAVE_GETPROCESSMEMORYINFO
3689     HANDLE proc;
3690     PROCESS_MEMORY_COUNTERS memcounters;
3691     proc = GetCurrentProcess();
3692     memcounters.cb = sizeof(memcounters);
3693     GetProcessMemoryInfo(proc, &memcounters, sizeof(memcounters));
3694     return memcounters.PeakPagefileUsage;
3695 #else
3696     return 0;
3697 #endif
3698 }
3699
3700 static void log_callback_null(void *ptr, int level, const char *fmt, va_list vl)
3701 {
3702 }
3703
3704 int main(int argc, char **argv)
3705 {
3706     int ret;
3707     int64_t ti;
3708
3709     register_exit(ffmpeg_cleanup);
3710
3711     setvbuf(stderr,NULL,_IONBF,0); /* win32 runtime needs this */
3712
3713     av_log_set_flags(AV_LOG_SKIP_REPEATED);
3714     parse_loglevel(argc, argv, options);
3715
3716     if(argc>1 && !strcmp(argv[1], "-d")){
3717         run_as_daemon=1;
3718         av_log_set_callback(log_callback_null);
3719         argc--;
3720         argv++;
3721     }
3722
3723     avcodec_register_all();
3724 #if CONFIG_AVDEVICE
3725     avdevice_register_all();
3726 #endif
3727     avfilter_register_all();
3728     av_register_all();
3729     avformat_network_init();
3730
3731     show_banner(argc, argv, options);
3732
3733     term_init();
3734
3735     /* parse options and open all input/output files */
3736     ret = ffmpeg_parse_options(argc, argv);
3737     if (ret < 0)
3738         exit_program(1);
3739
3740     if (nb_output_files <= 0 && nb_input_files == 0) {
3741         show_usage();
3742         av_log(NULL, AV_LOG_WARNING, "Use -h to get full help or, even better, run 'man %s'\n", program_name);
3743         exit_program(1);
3744     }
3745
3746     /* file converter / grab */
3747     if (nb_output_files <= 0) {
3748         av_log(NULL, AV_LOG_FATAL, "At least one output file must be specified\n");
3749         exit_program(1);
3750     }
3751
3752 //     if (nb_input_files == 0) {
3753 //         av_log(NULL, AV_LOG_FATAL, "At least one input file must be specified\n");
3754 //         exit_program(1);
3755 //     }
3756
3757     current_time = ti = getutime();
3758     if (transcode() < 0)
3759         exit_program(1);
3760     ti = getutime() - ti;
3761     if (do_benchmark) {
3762         printf("bench: utime=%0.3fs\n", ti / 1000000.0);
3763     }
3764     av_log(NULL, AV_LOG_DEBUG, "%"PRIu64" frames successfully decoded, %"PRIu64" decoding errors\n",
3765            decode_error_stat[0], decode_error_stat[1]);
3766     if ((decode_error_stat[0] + decode_error_stat[1]) * max_error_rate < decode_error_stat[1])
3767         exit_program(69);
3768
3769     exit_program(received_nb_signals ? 255 : main_return_code);
3770     return main_return_code;
3771 }