]> git.sesse.net Git - ffmpeg/blob - ffmpeg.c
Merge commit '25bb7eaf9eb14e6e00264bf584aa4d380d3bc29f'
[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 void set_encoder_id(OutputFile *of, OutputStream *ost)
2367 {
2368     AVDictionaryEntry *e;
2369
2370     uint8_t *encoder_string;
2371     int encoder_string_len;
2372     int format_flags = 0;
2373     int codec_flags = 0;
2374
2375     e = av_dict_get(of->opts, "fflags", NULL, 0);
2376     if (e) {
2377         const AVOption *o = av_opt_find(of->ctx, "fflags", NULL, 0, 0);
2378         if (!o)
2379             return;
2380         av_opt_eval_flags(of->ctx, o, e->value, &format_flags);
2381     }
2382     e = av_dict_get(ost->encoder_opts, "flags", NULL, 0);
2383     if (e) {
2384         const AVOption *o = av_opt_find(ost->st->codec, "flags", NULL, 0, 0);
2385         if (!o)
2386             return;
2387         av_opt_eval_flags(ost->st->codec, o, e->value, &codec_flags);
2388     }
2389
2390     encoder_string_len = sizeof(LIBAVCODEC_IDENT) + strlen(ost->enc->name) + 2;
2391     encoder_string     = av_mallocz(encoder_string_len);
2392     if (!encoder_string)
2393         exit_program(1);
2394
2395     if (!(format_flags & AVFMT_FLAG_BITEXACT) && !(codec_flags & CODEC_FLAG_BITEXACT))
2396         av_strlcpy(encoder_string, LIBAVCODEC_IDENT " ", encoder_string_len);
2397     else
2398         av_strlcpy(encoder_string, "Lavc ", encoder_string_len);
2399     av_strlcat(encoder_string, ost->enc->name, encoder_string_len);
2400     av_dict_set(&ost->st->metadata, "encoder",  encoder_string,
2401                 AV_DICT_DONT_STRDUP_VAL | AV_DICT_DONT_OVERWRITE);
2402 }
2403
2404 static int transcode_init(void)
2405 {
2406     int ret = 0, i, j, k;
2407     AVFormatContext *oc;
2408     OutputStream *ost;
2409     InputStream *ist;
2410     char error[1024];
2411     int want_sdp = 1;
2412
2413     for (i = 0; i < nb_filtergraphs; i++) {
2414         FilterGraph *fg = filtergraphs[i];
2415         for (j = 0; j < fg->nb_outputs; j++) {
2416             OutputFilter *ofilter = fg->outputs[j];
2417             if (!ofilter->ost || ofilter->ost->source_index >= 0)
2418                 continue;
2419             if (fg->nb_inputs != 1)
2420                 continue;
2421             for (k = nb_input_streams-1; k >= 0 ; k--)
2422                 if (fg->inputs[0]->ist == input_streams[k])
2423                     break;
2424             ofilter->ost->source_index = k;
2425         }
2426     }
2427
2428     /* init framerate emulation */
2429     for (i = 0; i < nb_input_files; i++) {
2430         InputFile *ifile = input_files[i];
2431         if (ifile->rate_emu)
2432             for (j = 0; j < ifile->nb_streams; j++)
2433                 input_streams[j + ifile->ist_index]->start = av_gettime_relative();
2434     }
2435
2436     /* output stream init */
2437     for (i = 0; i < nb_output_files; i++) {
2438         oc = output_files[i]->ctx;
2439         if (!oc->nb_streams && !(oc->oformat->flags & AVFMT_NOSTREAMS)) {
2440             av_dump_format(oc, i, oc->filename, 1);
2441             av_log(NULL, AV_LOG_ERROR, "Output file #%d does not contain any stream\n", i);
2442             return AVERROR(EINVAL);
2443         }
2444     }
2445
2446     /* init complex filtergraphs */
2447     for (i = 0; i < nb_filtergraphs; i++)
2448         if ((ret = avfilter_graph_config(filtergraphs[i]->graph, NULL)) < 0)
2449             return ret;
2450
2451     /* for each output stream, we compute the right encoding parameters */
2452     for (i = 0; i < nb_output_streams; i++) {
2453         AVCodecContext *enc_ctx;
2454         AVCodecContext *dec_ctx = NULL;
2455         ost = output_streams[i];
2456         oc  = output_files[ost->file_index]->ctx;
2457         ist = get_input_stream(ost);
2458
2459         if (ost->attachment_filename)
2460             continue;
2461
2462         enc_ctx = ost->st->codec;
2463
2464         if (ist) {
2465             dec_ctx = ist->st->codec;
2466
2467             ost->st->disposition          = ist->st->disposition;
2468             enc_ctx->bits_per_raw_sample    = dec_ctx->bits_per_raw_sample;
2469             enc_ctx->chroma_sample_location = dec_ctx->chroma_sample_location;
2470         } else {
2471             for (j=0; j<oc->nb_streams; j++) {
2472                 AVStream *st = oc->streams[j];
2473                 if (st != ost->st && st->codec->codec_type == enc_ctx->codec_type)
2474                     break;
2475             }
2476             if (j == oc->nb_streams)
2477                 if (enc_ctx->codec_type == AVMEDIA_TYPE_AUDIO || enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO)
2478                     ost->st->disposition = AV_DISPOSITION_DEFAULT;
2479         }
2480
2481         if (ost->stream_copy) {
2482             AVRational sar;
2483             uint64_t extra_size;
2484
2485             av_assert0(ist && !ost->filter);
2486
2487             extra_size = (uint64_t)dec_ctx->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE;
2488
2489             if (extra_size > INT_MAX) {
2490                 return AVERROR(EINVAL);
2491             }
2492
2493             /* if stream_copy is selected, no need to decode or encode */
2494             enc_ctx->codec_id   = dec_ctx->codec_id;
2495             enc_ctx->codec_type = dec_ctx->codec_type;
2496
2497             if (!enc_ctx->codec_tag) {
2498                 unsigned int codec_tag;
2499                 if (!oc->oformat->codec_tag ||
2500                      av_codec_get_id (oc->oformat->codec_tag, dec_ctx->codec_tag) == enc_ctx->codec_id ||
2501                      !av_codec_get_tag2(oc->oformat->codec_tag, dec_ctx->codec_id, &codec_tag))
2502                     enc_ctx->codec_tag = dec_ctx->codec_tag;
2503             }
2504
2505             enc_ctx->bit_rate       = dec_ctx->bit_rate;
2506             enc_ctx->rc_max_rate    = dec_ctx->rc_max_rate;
2507             enc_ctx->rc_buffer_size = dec_ctx->rc_buffer_size;
2508             enc_ctx->field_order    = dec_ctx->field_order;
2509             enc_ctx->extradata      = av_mallocz(extra_size);
2510             if (!enc_ctx->extradata) {
2511                 return AVERROR(ENOMEM);
2512             }
2513             memcpy(enc_ctx->extradata, dec_ctx->extradata, dec_ctx->extradata_size);
2514             enc_ctx->extradata_size= dec_ctx->extradata_size;
2515             enc_ctx->bits_per_coded_sample  = dec_ctx->bits_per_coded_sample;
2516
2517             enc_ctx->time_base = ist->st->time_base;
2518             /*
2519              * Avi is a special case here because it supports variable fps but
2520              * having the fps and timebase differe significantly adds quite some
2521              * overhead
2522              */
2523             if(!strcmp(oc->oformat->name, "avi")) {
2524                 if ( copy_tb<0 && av_q2d(ist->st->r_frame_rate) >= av_q2d(ist->st->avg_frame_rate)
2525                                && 0.5/av_q2d(ist->st->r_frame_rate) > av_q2d(ist->st->time_base)
2526                                && 0.5/av_q2d(ist->st->r_frame_rate) > av_q2d(dec_ctx->time_base)
2527                                && av_q2d(ist->st->time_base) < 1.0/500 && av_q2d(dec_ctx->time_base) < 1.0/500
2528                      || copy_tb==2){
2529                     enc_ctx->time_base.num = ist->st->r_frame_rate.den;
2530                     enc_ctx->time_base.den = 2*ist->st->r_frame_rate.num;
2531                     enc_ctx->ticks_per_frame = 2;
2532                 } else if (   copy_tb<0 && av_q2d(dec_ctx->time_base)*dec_ctx->ticks_per_frame > 2*av_q2d(ist->st->time_base)
2533                                  && av_q2d(ist->st->time_base) < 1.0/500
2534                     || copy_tb==0){
2535                     enc_ctx->time_base = dec_ctx->time_base;
2536                     enc_ctx->time_base.num *= dec_ctx->ticks_per_frame;
2537                     enc_ctx->time_base.den *= 2;
2538                     enc_ctx->ticks_per_frame = 2;
2539                 }
2540             } else if(!(oc->oformat->flags & AVFMT_VARIABLE_FPS)
2541                       && strcmp(oc->oformat->name, "mov") && strcmp(oc->oformat->name, "mp4") && strcmp(oc->oformat->name, "3gp")
2542                       && strcmp(oc->oformat->name, "3g2") && strcmp(oc->oformat->name, "psp") && strcmp(oc->oformat->name, "ipod")
2543                       && strcmp(oc->oformat->name, "f4v")
2544             ) {
2545                 if(   copy_tb<0 && dec_ctx->time_base.den
2546                                 && av_q2d(dec_ctx->time_base)*dec_ctx->ticks_per_frame > av_q2d(ist->st->time_base)
2547                                 && av_q2d(ist->st->time_base) < 1.0/500
2548                    || copy_tb==0){
2549                     enc_ctx->time_base = dec_ctx->time_base;
2550                     enc_ctx->time_base.num *= dec_ctx->ticks_per_frame;
2551                 }
2552             }
2553             if (   enc_ctx->codec_tag == AV_RL32("tmcd")
2554                 && dec_ctx->time_base.num < dec_ctx->time_base.den
2555                 && dec_ctx->time_base.num > 0
2556                 && 121LL*dec_ctx->time_base.num > dec_ctx->time_base.den) {
2557                 enc_ctx->time_base = dec_ctx->time_base;
2558             }
2559
2560             if (ist && !ost->frame_rate.num)
2561                 ost->frame_rate = ist->framerate;
2562             if(ost->frame_rate.num)
2563                 enc_ctx->time_base = av_inv_q(ost->frame_rate);
2564
2565             av_reduce(&enc_ctx->time_base.num, &enc_ctx->time_base.den,
2566                         enc_ctx->time_base.num, enc_ctx->time_base.den, INT_MAX);
2567
2568             ost->parser = av_parser_init(enc_ctx->codec_id);
2569
2570             switch (enc_ctx->codec_type) {
2571             case AVMEDIA_TYPE_AUDIO:
2572                 if (audio_volume != 256) {
2573                     av_log(NULL, AV_LOG_FATAL, "-acodec copy and -vol are incompatible (frames are not decoded)\n");
2574                     exit_program(1);
2575                 }
2576                 enc_ctx->channel_layout     = dec_ctx->channel_layout;
2577                 enc_ctx->sample_rate        = dec_ctx->sample_rate;
2578                 enc_ctx->channels           = dec_ctx->channels;
2579                 enc_ctx->frame_size         = dec_ctx->frame_size;
2580                 enc_ctx->audio_service_type = dec_ctx->audio_service_type;
2581                 enc_ctx->block_align        = dec_ctx->block_align;
2582                 enc_ctx->delay              = dec_ctx->delay;
2583                 if((enc_ctx->block_align == 1 || enc_ctx->block_align == 1152 || enc_ctx->block_align == 576) && enc_ctx->codec_id == AV_CODEC_ID_MP3)
2584                     enc_ctx->block_align= 0;
2585                 if(enc_ctx->codec_id == AV_CODEC_ID_AC3)
2586                     enc_ctx->block_align= 0;
2587                 break;
2588             case AVMEDIA_TYPE_VIDEO:
2589                 enc_ctx->pix_fmt            = dec_ctx->pix_fmt;
2590                 enc_ctx->width              = dec_ctx->width;
2591                 enc_ctx->height             = dec_ctx->height;
2592                 enc_ctx->has_b_frames       = dec_ctx->has_b_frames;
2593                 if (ost->frame_aspect_ratio.num) { // overridden by the -aspect cli option
2594                     sar =
2595                         av_mul_q(ost->frame_aspect_ratio,
2596                                  (AVRational){ enc_ctx->height, enc_ctx->width });
2597                     av_log(NULL, AV_LOG_WARNING, "Overriding aspect ratio "
2598                            "with stream copy may produce invalid files\n");
2599                 }
2600                 else if (ist->st->sample_aspect_ratio.num)
2601                     sar = ist->st->sample_aspect_ratio;
2602                 else
2603                     sar = dec_ctx->sample_aspect_ratio;
2604                 ost->st->sample_aspect_ratio = enc_ctx->sample_aspect_ratio = sar;
2605                 ost->st->avg_frame_rate = ist->st->avg_frame_rate;
2606                 break;
2607             case AVMEDIA_TYPE_SUBTITLE:
2608                 enc_ctx->width  = dec_ctx->width;
2609                 enc_ctx->height = dec_ctx->height;
2610                 break;
2611             case AVMEDIA_TYPE_DATA:
2612             case AVMEDIA_TYPE_ATTACHMENT:
2613                 break;
2614             default:
2615                 abort();
2616             }
2617         } else {
2618             if (!ost->enc)
2619                 ost->enc = avcodec_find_encoder(enc_ctx->codec_id);
2620             if (!ost->enc) {
2621                 /* should only happen when a default codec is not present. */
2622                 snprintf(error, sizeof(error), "Encoder (codec %s) not found for output stream #%d:%d",
2623                          avcodec_get_name(ost->st->codec->codec_id), ost->file_index, ost->index);
2624                 ret = AVERROR(EINVAL);
2625                 goto dump_format;
2626             }
2627
2628             if (ist)
2629                 ist->decoding_needed++;
2630             ost->encoding_needed = 1;
2631
2632             set_encoder_id(output_files[ost->file_index], ost);
2633
2634             if (!ost->filter &&
2635                 (enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO ||
2636                  enc_ctx->codec_type == AVMEDIA_TYPE_AUDIO)) {
2637                     FilterGraph *fg;
2638                     fg = init_simple_filtergraph(ist, ost);
2639                     if (configure_filtergraph(fg)) {
2640                         av_log(NULL, AV_LOG_FATAL, "Error opening filters!\n");
2641                         exit_program(1);
2642                     }
2643             }
2644
2645             if (enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO) {
2646                 if (ost->filter && !ost->frame_rate.num)
2647                     ost->frame_rate = av_buffersink_get_frame_rate(ost->filter->filter);
2648                 if (ist && !ost->frame_rate.num)
2649                     ost->frame_rate = ist->framerate;
2650                 if (ist && !ost->frame_rate.num)
2651                     ost->frame_rate = ist->st->r_frame_rate;
2652                 if (ist && !ost->frame_rate.num) {
2653                     ost->frame_rate = (AVRational){25, 1};
2654                     av_log(NULL, AV_LOG_WARNING,
2655                            "No information "
2656                            "about the input framerate is available. Falling "
2657                            "back to a default value of 25fps for output stream #%d:%d. Use the -r option "
2658                            "if you want a different framerate.\n",
2659                            ost->file_index, ost->index);
2660                 }
2661 //                    ost->frame_rate = ist->st->avg_frame_rate.num ? ist->st->avg_frame_rate : (AVRational){25, 1};
2662                 if (ost->enc && ost->enc->supported_framerates && !ost->force_fps) {
2663                     int idx = av_find_nearest_q_idx(ost->frame_rate, ost->enc->supported_framerates);
2664                     ost->frame_rate = ost->enc->supported_framerates[idx];
2665                 }
2666                 if (enc_ctx->codec_id == AV_CODEC_ID_MPEG4) {
2667                     av_reduce(&ost->frame_rate.num, &ost->frame_rate.den,
2668                               ost->frame_rate.num, ost->frame_rate.den, 65535);
2669                 }
2670             }
2671
2672             switch (enc_ctx->codec_type) {
2673             case AVMEDIA_TYPE_AUDIO:
2674                 enc_ctx->sample_fmt     = ost->filter->filter->inputs[0]->format;
2675                 enc_ctx->sample_rate    = ost->filter->filter->inputs[0]->sample_rate;
2676                 enc_ctx->channel_layout = ost->filter->filter->inputs[0]->channel_layout;
2677                 enc_ctx->channels       = avfilter_link_get_channels(ost->filter->filter->inputs[0]);
2678                 enc_ctx->time_base      = (AVRational){ 1, enc_ctx->sample_rate };
2679                 break;
2680             case AVMEDIA_TYPE_VIDEO:
2681                 enc_ctx->time_base = av_inv_q(ost->frame_rate);
2682                 if (ost->filter && !(enc_ctx->time_base.num && enc_ctx->time_base.den))
2683                     enc_ctx->time_base = ost->filter->filter->inputs[0]->time_base;
2684                 if (   av_q2d(enc_ctx->time_base) < 0.001 && video_sync_method != VSYNC_PASSTHROUGH
2685                    && (video_sync_method == VSYNC_CFR || video_sync_method == VSYNC_VSCFR || (video_sync_method == VSYNC_AUTO && !(oc->oformat->flags & AVFMT_VARIABLE_FPS)))){
2686                     av_log(oc, AV_LOG_WARNING, "Frame rate very high for a muxer not efficiently supporting it.\n"
2687                                                "Please consider specifying a lower framerate, a different muxer or -vsync 2\n");
2688                 }
2689                 for (j = 0; j < ost->forced_kf_count; j++)
2690                     ost->forced_kf_pts[j] = av_rescale_q(ost->forced_kf_pts[j],
2691                                                          AV_TIME_BASE_Q,
2692                                                          enc_ctx->time_base);
2693
2694                 enc_ctx->width  = ost->filter->filter->inputs[0]->w;
2695                 enc_ctx->height = ost->filter->filter->inputs[0]->h;
2696                 enc_ctx->sample_aspect_ratio = ost->st->sample_aspect_ratio =
2697                     ost->frame_aspect_ratio.num ? // overridden by the -aspect cli option
2698                     av_mul_q(ost->frame_aspect_ratio, (AVRational){ enc_ctx->height, enc_ctx->width }) :
2699                     ost->filter->filter->inputs[0]->sample_aspect_ratio;
2700                 if (!strncmp(ost->enc->name, "libx264", 7) &&
2701                     enc_ctx->pix_fmt == AV_PIX_FMT_NONE &&
2702                     ost->filter->filter->inputs[0]->format != AV_PIX_FMT_YUV420P)
2703                     av_log(NULL, AV_LOG_WARNING,
2704                            "No pixel format specified, %s for H.264 encoding chosen.\n"
2705                            "Use -pix_fmt yuv420p for compatibility with outdated media players.\n",
2706                            av_get_pix_fmt_name(ost->filter->filter->inputs[0]->format));
2707                 if (!strncmp(ost->enc->name, "mpeg2video", 10) &&
2708                     enc_ctx->pix_fmt == AV_PIX_FMT_NONE &&
2709                     ost->filter->filter->inputs[0]->format != AV_PIX_FMT_YUV420P)
2710                     av_log(NULL, AV_LOG_WARNING,
2711                            "No pixel format specified, %s for MPEG-2 encoding chosen.\n"
2712                            "Use -pix_fmt yuv420p for compatibility with outdated media players.\n",
2713                            av_get_pix_fmt_name(ost->filter->filter->inputs[0]->format));
2714                 enc_ctx->pix_fmt = ost->filter->filter->inputs[0]->format;
2715
2716                 ost->st->avg_frame_rate = ost->frame_rate;
2717
2718                 if (!dec_ctx ||
2719                     enc_ctx->width   != dec_ctx->width  ||
2720                     enc_ctx->height  != dec_ctx->height ||
2721                     enc_ctx->pix_fmt != dec_ctx->pix_fmt) {
2722                     enc_ctx->bits_per_raw_sample = frame_bits_per_raw_sample;
2723                 }
2724
2725                 if (ost->forced_keyframes) {
2726                     if (!strncmp(ost->forced_keyframes, "expr:", 5)) {
2727                         ret = av_expr_parse(&ost->forced_keyframes_pexpr, ost->forced_keyframes+5,
2728                                             forced_keyframes_const_names, NULL, NULL, NULL, NULL, 0, NULL);
2729                         if (ret < 0) {
2730                             av_log(NULL, AV_LOG_ERROR,
2731                                    "Invalid force_key_frames expression '%s'\n", ost->forced_keyframes+5);
2732                             return ret;
2733                         }
2734                         ost->forced_keyframes_expr_const_values[FKF_N] = 0;
2735                         ost->forced_keyframes_expr_const_values[FKF_N_FORCED] = 0;
2736                         ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_N] = NAN;
2737                         ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_T] = NAN;
2738                     } else {
2739                         parse_forced_key_frames(ost->forced_keyframes, ost, ost->st->codec);
2740                     }
2741                 }
2742                 break;
2743             case AVMEDIA_TYPE_SUBTITLE:
2744                 enc_ctx->time_base = (AVRational){1, 1000};
2745                 if (!enc_ctx->width) {
2746                     enc_ctx->width     = input_streams[ost->source_index]->st->codec->width;
2747                     enc_ctx->height    = input_streams[ost->source_index]->st->codec->height;
2748                 }
2749                 break;
2750             default:
2751                 abort();
2752                 break;
2753             }
2754             /* two pass mode */
2755             if (enc_ctx->flags & (CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2)) {
2756                 char logfilename[1024];
2757                 FILE *f;
2758
2759                 snprintf(logfilename, sizeof(logfilename), "%s-%d.log",
2760                          ost->logfile_prefix ? ost->logfile_prefix :
2761                                                DEFAULT_PASS_LOGFILENAME_PREFIX,
2762                          i);
2763                 if (!strcmp(ost->enc->name, "libx264")) {
2764                     av_dict_set(&ost->encoder_opts, "stats", logfilename, AV_DICT_DONT_OVERWRITE);
2765                 } else {
2766                     if (enc_ctx->flags & CODEC_FLAG_PASS2) {
2767                         char  *logbuffer;
2768                         size_t logbuffer_size;
2769                         if (cmdutils_read_file(logfilename, &logbuffer, &logbuffer_size) < 0) {
2770                             av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n",
2771                                    logfilename);
2772                             exit_program(1);
2773                         }
2774                         enc_ctx->stats_in = logbuffer;
2775                     }
2776                     if (enc_ctx->flags & CODEC_FLAG_PASS1) {
2777                         f = av_fopen_utf8(logfilename, "wb");
2778                         if (!f) {
2779                             av_log(NULL, AV_LOG_FATAL, "Cannot write log file '%s' for pass-1 encoding: %s\n",
2780                                 logfilename, strerror(errno));
2781                             exit_program(1);
2782                         }
2783                         ost->logfile = f;
2784                     }
2785                 }
2786             }
2787         }
2788     }
2789
2790     /* open each encoder */
2791     for (i = 0; i < nb_output_streams; i++) {
2792         ost = output_streams[i];
2793         if (ost->encoding_needed) {
2794             AVCodec      *codec = ost->enc;
2795             AVCodecContext *dec = NULL;
2796
2797             if ((ist = get_input_stream(ost)))
2798                 dec = ist->st->codec;
2799             if (dec && dec->subtitle_header) {
2800                 /* ASS code assumes this buffer is null terminated so add extra byte. */
2801                 ost->st->codec->subtitle_header = av_mallocz(dec->subtitle_header_size + 1);
2802                 if (!ost->st->codec->subtitle_header) {
2803                     ret = AVERROR(ENOMEM);
2804                     goto dump_format;
2805                 }
2806                 memcpy(ost->st->codec->subtitle_header, dec->subtitle_header, dec->subtitle_header_size);
2807                 ost->st->codec->subtitle_header_size = dec->subtitle_header_size;
2808             }
2809             if (!av_dict_get(ost->encoder_opts, "threads", NULL, 0))
2810                 av_dict_set(&ost->encoder_opts, "threads", "auto", 0);
2811             if ((ret = avcodec_open2(ost->st->codec, codec, &ost->encoder_opts)) < 0) {
2812                 if (ret == AVERROR_EXPERIMENTAL)
2813                     abort_codec_experimental(codec, 1);
2814                 snprintf(error, sizeof(error), "Error while opening encoder for output stream #%d:%d - maybe incorrect parameters such as bit_rate, rate, width or height",
2815                         ost->file_index, ost->index);
2816                 goto dump_format;
2817             }
2818             if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
2819                 !(ost->enc->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE))
2820                 av_buffersink_set_frame_size(ost->filter->filter,
2821                                              ost->st->codec->frame_size);
2822             assert_avoptions(ost->encoder_opts);
2823             if (ost->st->codec->bit_rate && ost->st->codec->bit_rate < 1000)
2824                 av_log(NULL, AV_LOG_WARNING, "The bitrate parameter is set too low."
2825                                              " It takes bits/s as argument, not kbits/s\n");
2826         } else {
2827             av_opt_set_dict(ost->st->codec, &ost->encoder_opts);
2828         }
2829     }
2830
2831     /* init input streams */
2832     for (i = 0; i < nb_input_streams; i++)
2833         if ((ret = init_input_stream(i, error, sizeof(error))) < 0) {
2834             for (i = 0; i < nb_output_streams; i++) {
2835                 ost = output_streams[i];
2836                 avcodec_close(ost->st->codec);
2837             }
2838             goto dump_format;
2839         }
2840
2841     /* discard unused programs */
2842     for (i = 0; i < nb_input_files; i++) {
2843         InputFile *ifile = input_files[i];
2844         for (j = 0; j < ifile->ctx->nb_programs; j++) {
2845             AVProgram *p = ifile->ctx->programs[j];
2846             int discard  = AVDISCARD_ALL;
2847
2848             for (k = 0; k < p->nb_stream_indexes; k++)
2849                 if (!input_streams[ifile->ist_index + p->stream_index[k]]->discard) {
2850                     discard = AVDISCARD_DEFAULT;
2851                     break;
2852                 }
2853             p->discard = discard;
2854         }
2855     }
2856
2857     /* open files and write file headers */
2858     for (i = 0; i < nb_output_files; i++) {
2859         oc = output_files[i]->ctx;
2860         oc->interrupt_callback = int_cb;
2861         if ((ret = avformat_write_header(oc, &output_files[i]->opts)) < 0) {
2862             snprintf(error, sizeof(error),
2863                      "Could not write header for output file #%d "
2864                      "(incorrect codec parameters ?): %s",
2865                      i, av_err2str(ret));
2866             ret = AVERROR(EINVAL);
2867             goto dump_format;
2868         }
2869 //         assert_avoptions(output_files[i]->opts);
2870         if (strcmp(oc->oformat->name, "rtp")) {
2871             want_sdp = 0;
2872         }
2873     }
2874
2875  dump_format:
2876     /* dump the file output parameters - cannot be done before in case
2877        of stream copy */
2878     for (i = 0; i < nb_output_files; i++) {
2879         av_dump_format(output_files[i]->ctx, i, output_files[i]->ctx->filename, 1);
2880     }
2881
2882     /* dump the stream mapping */
2883     av_log(NULL, AV_LOG_INFO, "Stream mapping:\n");
2884     for (i = 0; i < nb_input_streams; i++) {
2885         ist = input_streams[i];
2886
2887         for (j = 0; j < ist->nb_filters; j++) {
2888             if (ist->filters[j]->graph->graph_desc) {
2889                 av_log(NULL, AV_LOG_INFO, "  Stream #%d:%d (%s) -> %s",
2890                        ist->file_index, ist->st->index, ist->dec ? ist->dec->name : "?",
2891                        ist->filters[j]->name);
2892                 if (nb_filtergraphs > 1)
2893                     av_log(NULL, AV_LOG_INFO, " (graph %d)", ist->filters[j]->graph->index);
2894                 av_log(NULL, AV_LOG_INFO, "\n");
2895             }
2896         }
2897     }
2898
2899     for (i = 0; i < nb_output_streams; i++) {
2900         ost = output_streams[i];
2901
2902         if (ost->attachment_filename) {
2903             /* an attached file */
2904             av_log(NULL, AV_LOG_INFO, "  File %s -> Stream #%d:%d\n",
2905                    ost->attachment_filename, ost->file_index, ost->index);
2906             continue;
2907         }
2908
2909         if (ost->filter && ost->filter->graph->graph_desc) {
2910             /* output from a complex graph */
2911             av_log(NULL, AV_LOG_INFO, "  %s", ost->filter->name);
2912             if (nb_filtergraphs > 1)
2913                 av_log(NULL, AV_LOG_INFO, " (graph %d)", ost->filter->graph->index);
2914
2915             av_log(NULL, AV_LOG_INFO, " -> Stream #%d:%d (%s)\n", ost->file_index,
2916                    ost->index, ost->enc ? ost->enc->name : "?");
2917             continue;
2918         }
2919
2920         av_log(NULL, AV_LOG_INFO, "  Stream #%d:%d -> #%d:%d",
2921                input_streams[ost->source_index]->file_index,
2922                input_streams[ost->source_index]->st->index,
2923                ost->file_index,
2924                ost->index);
2925         if (ost->sync_ist != input_streams[ost->source_index])
2926             av_log(NULL, AV_LOG_INFO, " [sync #%d:%d]",
2927                    ost->sync_ist->file_index,
2928                    ost->sync_ist->st->index);
2929         if (ost->stream_copy)
2930             av_log(NULL, AV_LOG_INFO, " (copy)");
2931         else
2932             av_log(NULL, AV_LOG_INFO, " (%s -> %s)", input_streams[ost->source_index]->dec ?
2933                    input_streams[ost->source_index]->dec->name : "?",
2934                    ost->enc ? ost->enc->name : "?");
2935         av_log(NULL, AV_LOG_INFO, "\n");
2936     }
2937
2938     if (ret) {
2939         av_log(NULL, AV_LOG_ERROR, "%s\n", error);
2940         return ret;
2941     }
2942
2943     if (want_sdp) {
2944         print_sdp();
2945     }
2946
2947     transcode_init_done = 1;
2948
2949     return 0;
2950 }
2951
2952 /* Return 1 if there remain streams where more output is wanted, 0 otherwise. */
2953 static int need_output(void)
2954 {
2955     int i;
2956
2957     for (i = 0; i < nb_output_streams; i++) {
2958         OutputStream *ost    = output_streams[i];
2959         OutputFile *of       = output_files[ost->file_index];
2960         AVFormatContext *os  = output_files[ost->file_index]->ctx;
2961
2962         if (ost->finished ||
2963             (os->pb && avio_tell(os->pb) >= of->limit_filesize))
2964             continue;
2965         if (ost->frame_number >= ost->max_frames) {
2966             int j;
2967             for (j = 0; j < of->ctx->nb_streams; j++)
2968                 close_output_stream(output_streams[of->ost_index + j]);
2969             continue;
2970         }
2971
2972         return 1;
2973     }
2974
2975     return 0;
2976 }
2977
2978 /**
2979  * Select the output stream to process.
2980  *
2981  * @return  selected output stream, or NULL if none available
2982  */
2983 static OutputStream *choose_output(void)
2984 {
2985     int i;
2986     int64_t opts_min = INT64_MAX;
2987     OutputStream *ost_min = NULL;
2988
2989     for (i = 0; i < nb_output_streams; i++) {
2990         OutputStream *ost = output_streams[i];
2991         int64_t opts = av_rescale_q(ost->st->cur_dts, ost->st->time_base,
2992                                     AV_TIME_BASE_Q);
2993         if (!ost->unavailable && !ost->finished && opts < opts_min) {
2994             opts_min = opts;
2995             ost_min  = ost;
2996         }
2997     }
2998     return ost_min;
2999 }
3000
3001 static int check_keyboard_interaction(int64_t cur_time)
3002 {
3003     int i, ret, key;
3004     static int64_t last_time;
3005     if (received_nb_signals)
3006         return AVERROR_EXIT;
3007     /* read_key() returns 0 on EOF */
3008     if(cur_time - last_time >= 100000 && !run_as_daemon){
3009         key =  read_key();
3010         last_time = cur_time;
3011     }else
3012         key = -1;
3013     if (key == 'q')
3014         return AVERROR_EXIT;
3015     if (key == '+') av_log_set_level(av_log_get_level()+10);
3016     if (key == '-') av_log_set_level(av_log_get_level()-10);
3017     if (key == 's') qp_hist     ^= 1;
3018     if (key == 'h'){
3019         if (do_hex_dump){
3020             do_hex_dump = do_pkt_dump = 0;
3021         } else if(do_pkt_dump){
3022             do_hex_dump = 1;
3023         } else
3024             do_pkt_dump = 1;
3025         av_log_set_level(AV_LOG_DEBUG);
3026     }
3027     if (key == 'c' || key == 'C'){
3028         char buf[4096], target[64], command[256], arg[256] = {0};
3029         double time;
3030         int k, n = 0;
3031         fprintf(stderr, "\nEnter command: <target>|all <time>|-1 <command>[ <argument>]\n");
3032         i = 0;
3033         while ((k = read_key()) != '\n' && k != '\r' && i < sizeof(buf)-1)
3034             if (k > 0)
3035                 buf[i++] = k;
3036         buf[i] = 0;
3037         if (k > 0 &&
3038             (n = sscanf(buf, "%63[^ ] %lf %255[^ ] %255[^\n]", target, &time, command, arg)) >= 3) {
3039             av_log(NULL, AV_LOG_DEBUG, "Processing command target:%s time:%f command:%s arg:%s",
3040                    target, time, command, arg);
3041             for (i = 0; i < nb_filtergraphs; i++) {
3042                 FilterGraph *fg = filtergraphs[i];
3043                 if (fg->graph) {
3044                     if (time < 0) {
3045                         ret = avfilter_graph_send_command(fg->graph, target, command, arg, buf, sizeof(buf),
3046                                                           key == 'c' ? AVFILTER_CMD_FLAG_ONE : 0);
3047                         fprintf(stderr, "Command reply for stream %d: ret:%d res:\n%s", i, ret, buf);
3048                     } else if (key == 'c') {
3049                         fprintf(stderr, "Queing commands only on filters supporting the specific command is unsupported\n");
3050                         ret = AVERROR_PATCHWELCOME;
3051                     } else {
3052                         ret = avfilter_graph_queue_command(fg->graph, target, command, arg, 0, time);
3053                     }
3054                 }
3055             }
3056         } else {
3057             av_log(NULL, AV_LOG_ERROR,
3058                    "Parse error, at least 3 arguments were expected, "
3059                    "only %d given in string '%s'\n", n, buf);
3060         }
3061     }
3062     if (key == 'd' || key == 'D'){
3063         int debug=0;
3064         if(key == 'D') {
3065             debug = input_streams[0]->st->codec->debug<<1;
3066             if(!debug) debug = 1;
3067             while(debug & (FF_DEBUG_DCT_COEFF|FF_DEBUG_VIS_QP|FF_DEBUG_VIS_MB_TYPE)) //unsupported, would just crash
3068                 debug += debug;
3069         }else
3070             if(scanf("%d", &debug)!=1)
3071                 fprintf(stderr,"error parsing debug value\n");
3072         for(i=0;i<nb_input_streams;i++) {
3073             input_streams[i]->st->codec->debug = debug;
3074         }
3075         for(i=0;i<nb_output_streams;i++) {
3076             OutputStream *ost = output_streams[i];
3077             ost->st->codec->debug = debug;
3078         }
3079         if(debug) av_log_set_level(AV_LOG_DEBUG);
3080         fprintf(stderr,"debug=%d\n", debug);
3081     }
3082     if (key == '?'){
3083         fprintf(stderr, "key    function\n"
3084                         "?      show this help\n"
3085                         "+      increase verbosity\n"
3086                         "-      decrease verbosity\n"
3087                         "c      Send command to first matching filter supporting it\n"
3088                         "C      Send/Que command to all matching filters\n"
3089                         "D      cycle through available debug modes\n"
3090                         "h      dump packets/hex press to cycle through the 3 states\n"
3091                         "q      quit\n"
3092                         "s      Show QP histogram\n"
3093         );
3094     }
3095     return 0;
3096 }
3097
3098 #if HAVE_PTHREADS
3099 static void *input_thread(void *arg)
3100 {
3101     InputFile *f = arg;
3102     int ret = 0;
3103
3104     while (!transcoding_finished && ret >= 0) {
3105         AVPacket pkt;
3106         ret = av_read_frame(f->ctx, &pkt);
3107
3108         if (ret == AVERROR(EAGAIN)) {
3109             av_usleep(10000);
3110             ret = 0;
3111             continue;
3112         } else if (ret < 0)
3113             break;
3114
3115         pthread_mutex_lock(&f->fifo_lock);
3116         while (!av_fifo_space(f->fifo))
3117             pthread_cond_wait(&f->fifo_cond, &f->fifo_lock);
3118
3119         av_dup_packet(&pkt);
3120         av_fifo_generic_write(f->fifo, &pkt, sizeof(pkt), NULL);
3121         pthread_cond_signal(&f->fifo_cond);
3122
3123         pthread_mutex_unlock(&f->fifo_lock);
3124     }
3125
3126     pthread_mutex_lock(&f->fifo_lock);
3127     f->finished = 1;
3128     pthread_cond_signal(&f->fifo_cond);
3129     pthread_mutex_unlock(&f->fifo_lock);
3130     return NULL;
3131 }
3132
3133 static void free_input_threads(void)
3134 {
3135     int i;
3136
3137     if (nb_input_files == 1)
3138         return;
3139
3140     transcoding_finished = 1;
3141
3142     for (i = 0; i < nb_input_files; i++) {
3143         InputFile *f = input_files[i];
3144         AVPacket pkt;
3145
3146         if (!f->fifo || f->joined)
3147             continue;
3148
3149         pthread_mutex_lock(&f->fifo_lock);
3150         while (av_fifo_size(f->fifo)) {
3151             av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL);
3152             av_free_packet(&pkt);
3153         }
3154         pthread_cond_signal(&f->fifo_cond);
3155         pthread_mutex_unlock(&f->fifo_lock);
3156
3157         pthread_join(f->thread, NULL);
3158         f->joined = 1;
3159
3160         while (av_fifo_size(f->fifo)) {
3161             av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL);
3162             av_free_packet(&pkt);
3163         }
3164         av_fifo_freep(&f->fifo);
3165     }
3166 }
3167
3168 static int init_input_threads(void)
3169 {
3170     int i, ret;
3171
3172     if (nb_input_files == 1)
3173         return 0;
3174
3175     for (i = 0; i < nb_input_files; i++) {
3176         InputFile *f = input_files[i];
3177
3178         if (!(f->fifo = av_fifo_alloc(8*sizeof(AVPacket))))
3179             return AVERROR(ENOMEM);
3180
3181         if (f->ctx->pb ? !f->ctx->pb->seekable :
3182             strcmp(f->ctx->iformat->name, "lavfi"))
3183             f->non_blocking = 1;
3184
3185         pthread_mutex_init(&f->fifo_lock, NULL);
3186         pthread_cond_init (&f->fifo_cond, NULL);
3187
3188         if ((ret = pthread_create(&f->thread, NULL, input_thread, f)))
3189             return AVERROR(ret);
3190     }
3191     return 0;
3192 }
3193
3194 static int get_input_packet_mt(InputFile *f, AVPacket *pkt)
3195 {
3196     int ret = 0;
3197
3198     pthread_mutex_lock(&f->fifo_lock);
3199
3200     while (1) {
3201     if (av_fifo_size(f->fifo)) {
3202         av_fifo_generic_read(f->fifo, pkt, sizeof(*pkt), NULL);
3203         pthread_cond_signal(&f->fifo_cond);
3204         break;
3205     } else {
3206         if (f->finished) {
3207             ret = AVERROR_EOF;
3208             break;
3209         }
3210         if (f->non_blocking) {
3211             ret = AVERROR(EAGAIN);
3212             break;
3213         }
3214         pthread_cond_wait(&f->fifo_cond, &f->fifo_lock);
3215     }
3216     }
3217
3218     pthread_mutex_unlock(&f->fifo_lock);
3219
3220     return ret;
3221 }
3222 #endif
3223
3224 static int get_input_packet(InputFile *f, AVPacket *pkt)
3225 {
3226     if (f->rate_emu) {
3227         int i;
3228         for (i = 0; i < f->nb_streams; i++) {
3229             InputStream *ist = input_streams[f->ist_index + i];
3230             int64_t pts = av_rescale(ist->dts, 1000000, AV_TIME_BASE);
3231             int64_t now = av_gettime_relative() - ist->start;
3232             if (pts > now)
3233                 return AVERROR(EAGAIN);
3234         }
3235     }
3236
3237 #if HAVE_PTHREADS
3238     if (nb_input_files > 1)
3239         return get_input_packet_mt(f, pkt);
3240 #endif
3241     return av_read_frame(f->ctx, pkt);
3242 }
3243
3244 static int got_eagain(void)
3245 {
3246     int i;
3247     for (i = 0; i < nb_output_streams; i++)
3248         if (output_streams[i]->unavailable)
3249             return 1;
3250     return 0;
3251 }
3252
3253 static void reset_eagain(void)
3254 {
3255     int i;
3256     for (i = 0; i < nb_input_files; i++)
3257         input_files[i]->eagain = 0;
3258     for (i = 0; i < nb_output_streams; i++)
3259         output_streams[i]->unavailable = 0;
3260 }
3261
3262 /*
3263  * Return
3264  * - 0 -- one packet was read and processed
3265  * - AVERROR(EAGAIN) -- no packets were available for selected file,
3266  *   this function should be called again
3267  * - AVERROR_EOF -- this function should not be called again
3268  */
3269 static int process_input(int file_index)
3270 {
3271     InputFile *ifile = input_files[file_index];
3272     AVFormatContext *is;
3273     InputStream *ist;
3274     AVPacket pkt;
3275     int ret, i, j;
3276
3277     is  = ifile->ctx;
3278     ret = get_input_packet(ifile, &pkt);
3279
3280     if (ret == AVERROR(EAGAIN)) {
3281         ifile->eagain = 1;
3282         return ret;
3283     }
3284     if (ret < 0) {
3285         if (ret != AVERROR_EOF) {
3286             print_error(is->filename, ret);
3287             if (exit_on_error)
3288                 exit_program(1);
3289         }
3290         ifile->eof_reached = 1;
3291
3292         for (i = 0; i < ifile->nb_streams; i++) {
3293             ist = input_streams[ifile->ist_index + i];
3294             if (ist->decoding_needed)
3295                 output_packet(ist, NULL);
3296
3297             /* mark all outputs that don't go through lavfi as finished */
3298             for (j = 0; j < nb_output_streams; j++) {
3299                 OutputStream *ost = output_streams[j];
3300
3301                 if (ost->source_index == ifile->ist_index + i &&
3302                     (ost->stream_copy || ost->enc->type == AVMEDIA_TYPE_SUBTITLE))
3303                     close_output_stream(ost);
3304             }
3305         }
3306
3307         return AVERROR(EAGAIN);
3308     }
3309
3310     reset_eagain();
3311
3312     if (do_pkt_dump) {
3313         av_pkt_dump_log2(NULL, AV_LOG_DEBUG, &pkt, do_hex_dump,
3314                          is->streams[pkt.stream_index]);
3315     }
3316     /* the following test is needed in case new streams appear
3317        dynamically in stream : we ignore them */
3318     if (pkt.stream_index >= ifile->nb_streams) {
3319         report_new_stream(file_index, &pkt);
3320         goto discard_packet;
3321     }
3322
3323     ist = input_streams[ifile->ist_index + pkt.stream_index];
3324
3325     ist->data_size += pkt.size;
3326     ist->nb_packets++;
3327
3328     if (ist->discard)
3329         goto discard_packet;
3330
3331     if (debug_ts) {
3332         av_log(NULL, AV_LOG_INFO, "demuxer -> ist_index:%d type:%s "
3333                "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",
3334                ifile->ist_index + pkt.stream_index, av_get_media_type_string(ist->st->codec->codec_type),
3335                av_ts2str(ist->next_dts), av_ts2timestr(ist->next_dts, &AV_TIME_BASE_Q),
3336                av_ts2str(ist->next_pts), av_ts2timestr(ist->next_pts, &AV_TIME_BASE_Q),
3337                av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ist->st->time_base),
3338                av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ist->st->time_base),
3339                av_ts2str(input_files[ist->file_index]->ts_offset),
3340                av_ts2timestr(input_files[ist->file_index]->ts_offset, &AV_TIME_BASE_Q));
3341     }
3342
3343     if(!ist->wrap_correction_done && is->start_time != AV_NOPTS_VALUE && ist->st->pts_wrap_bits < 64){
3344         int64_t stime, stime2;
3345         // Correcting starttime based on the enabled streams
3346         // 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.
3347         //       so we instead do it here as part of discontinuity handling
3348         if (   ist->next_dts == AV_NOPTS_VALUE
3349             && ifile->ts_offset == -is->start_time
3350             && (is->iformat->flags & AVFMT_TS_DISCONT)) {
3351             int64_t new_start_time = INT64_MAX;
3352             for (i=0; i<is->nb_streams; i++) {
3353                 AVStream *st = is->streams[i];
3354                 if(st->discard == AVDISCARD_ALL || st->start_time == AV_NOPTS_VALUE)
3355                     continue;
3356                 new_start_time = FFMIN(new_start_time, av_rescale_q(st->start_time, st->time_base, AV_TIME_BASE_Q));
3357             }
3358             if (new_start_time > is->start_time) {
3359                 av_log(is, AV_LOG_VERBOSE, "Correcting start time by %"PRId64"\n", new_start_time - is->start_time);
3360                 ifile->ts_offset = -new_start_time;
3361             }
3362         }
3363
3364         stime = av_rescale_q(is->start_time, AV_TIME_BASE_Q, ist->st->time_base);
3365         stime2= stime + (1ULL<<ist->st->pts_wrap_bits);
3366         ist->wrap_correction_done = 1;
3367
3368         if(stime2 > stime && pkt.dts != AV_NOPTS_VALUE && pkt.dts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
3369             pkt.dts -= 1ULL<<ist->st->pts_wrap_bits;
3370             ist->wrap_correction_done = 0;
3371         }
3372         if(stime2 > stime && pkt.pts != AV_NOPTS_VALUE && pkt.pts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
3373             pkt.pts -= 1ULL<<ist->st->pts_wrap_bits;
3374             ist->wrap_correction_done = 0;
3375         }
3376     }
3377
3378     /* add the stream-global side data to the first packet */
3379     if (ist->nb_packets == 1)
3380         if (ist->st->nb_side_data)
3381             av_packet_split_side_data(&pkt);
3382         for (i = 0; i < ist->st->nb_side_data; i++) {
3383             AVPacketSideData *src_sd = &ist->st->side_data[i];
3384             uint8_t *dst_data;
3385
3386             if (av_packet_get_side_data(&pkt, src_sd->type, NULL))
3387                 continue;
3388
3389             dst_data = av_packet_new_side_data(&pkt, src_sd->type, src_sd->size);
3390             if (!dst_data)
3391                 exit_program(1);
3392
3393             memcpy(dst_data, src_sd->data, src_sd->size);
3394         }
3395
3396     if (pkt.dts != AV_NOPTS_VALUE)
3397         pkt.dts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
3398     if (pkt.pts != AV_NOPTS_VALUE)
3399         pkt.pts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
3400
3401     if (pkt.pts != AV_NOPTS_VALUE)
3402         pkt.pts *= ist->ts_scale;
3403     if (pkt.dts != AV_NOPTS_VALUE)
3404         pkt.dts *= ist->ts_scale;
3405
3406     if (pkt.dts != AV_NOPTS_VALUE && ist->next_dts == AV_NOPTS_VALUE && !copy_ts
3407         && (is->iformat->flags & AVFMT_TS_DISCONT) && ifile->last_ts != AV_NOPTS_VALUE) {
3408         int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
3409         int64_t delta   = pkt_dts - ifile->last_ts;
3410         if(delta < -1LL*dts_delta_threshold*AV_TIME_BASE ||
3411             (delta > 1LL*dts_delta_threshold*AV_TIME_BASE &&
3412                 ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE)){
3413             ifile->ts_offset -= delta;
3414             av_log(NULL, AV_LOG_DEBUG,
3415                    "Inter stream timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",
3416                    delta, ifile->ts_offset);
3417             pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3418             if (pkt.pts != AV_NOPTS_VALUE)
3419                 pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3420         }
3421     }
3422
3423     if (pkt.dts != AV_NOPTS_VALUE && ist->next_dts != AV_NOPTS_VALUE &&
3424         !copy_ts) {
3425         int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
3426         int64_t delta   = pkt_dts - ist->next_dts;
3427         if (is->iformat->flags & AVFMT_TS_DISCONT) {
3428             if (delta < -1LL*dts_delta_threshold*AV_TIME_BASE ||
3429                 (delta > 1LL*dts_delta_threshold*AV_TIME_BASE &&
3430                  ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE) ||
3431                 pkt_dts + AV_TIME_BASE/10 < FFMAX(ist->pts, ist->dts)) {
3432                 ifile->ts_offset -= delta;
3433                 av_log(NULL, AV_LOG_DEBUG,
3434                        "timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",
3435                        delta, ifile->ts_offset);
3436                 pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3437                 if (pkt.pts != AV_NOPTS_VALUE)
3438                     pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3439             }
3440         } else {
3441             if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
3442                 (delta > 1LL*dts_error_threshold*AV_TIME_BASE && ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE)) {
3443                 av_log(NULL, AV_LOG_WARNING, "DTS %"PRId64", next:%"PRId64" st:%d invalid dropping\n", pkt.dts, ist->next_dts, pkt.stream_index);
3444                 pkt.dts = AV_NOPTS_VALUE;
3445             }
3446             if (pkt.pts != AV_NOPTS_VALUE){
3447                 int64_t pkt_pts = av_rescale_q(pkt.pts, ist->st->time_base, AV_TIME_BASE_Q);
3448                 delta   = pkt_pts - ist->next_dts;
3449                 if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
3450                     (delta > 1LL*dts_error_threshold*AV_TIME_BASE && ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE)) {
3451                     av_log(NULL, AV_LOG_WARNING, "PTS %"PRId64", next:%"PRId64" invalid dropping st:%d\n", pkt.pts, ist->next_dts, pkt.stream_index);
3452                     pkt.pts = AV_NOPTS_VALUE;
3453                 }
3454             }
3455         }
3456     }
3457
3458     if (pkt.dts != AV_NOPTS_VALUE)
3459         ifile->last_ts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
3460
3461     if (debug_ts) {
3462         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",
3463                ifile->ist_index + pkt.stream_index, av_get_media_type_string(ist->st->codec->codec_type),
3464                av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ist->st->time_base),
3465                av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ist->st->time_base),
3466                av_ts2str(input_files[ist->file_index]->ts_offset),
3467                av_ts2timestr(input_files[ist->file_index]->ts_offset, &AV_TIME_BASE_Q));
3468     }
3469
3470     sub2video_heartbeat(ist, pkt.pts);
3471
3472     ret = output_packet(ist, &pkt);
3473     if (ret < 0) {
3474         av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d: %s\n",
3475                ist->file_index, ist->st->index, av_err2str(ret));
3476         if (exit_on_error)
3477             exit_program(1);
3478     }
3479
3480 discard_packet:
3481     av_free_packet(&pkt);
3482
3483     return 0;
3484 }
3485
3486 /**
3487  * Perform a step of transcoding for the specified filter graph.
3488  *
3489  * @param[in]  graph     filter graph to consider
3490  * @param[out] best_ist  input stream where a frame would allow to continue
3491  * @return  0 for success, <0 for error
3492  */
3493 static int transcode_from_filter(FilterGraph *graph, InputStream **best_ist)
3494 {
3495     int i, ret;
3496     int nb_requests, nb_requests_max = 0;
3497     InputFilter *ifilter;
3498     InputStream *ist;
3499
3500     *best_ist = NULL;
3501     ret = avfilter_graph_request_oldest(graph->graph);
3502     if (ret >= 0)
3503         return reap_filters();
3504
3505     if (ret == AVERROR_EOF) {
3506         ret = reap_filters();
3507         for (i = 0; i < graph->nb_outputs; i++)
3508             close_output_stream(graph->outputs[i]->ost);
3509         return ret;
3510     }
3511     if (ret != AVERROR(EAGAIN))
3512         return ret;
3513
3514     for (i = 0; i < graph->nb_inputs; i++) {
3515         ifilter = graph->inputs[i];
3516         ist = ifilter->ist;
3517         if (input_files[ist->file_index]->eagain ||
3518             input_files[ist->file_index]->eof_reached)
3519             continue;
3520         nb_requests = av_buffersrc_get_nb_failed_requests(ifilter->filter);
3521         if (nb_requests > nb_requests_max) {
3522             nb_requests_max = nb_requests;
3523             *best_ist = ist;
3524         }
3525     }
3526
3527     if (!*best_ist)
3528         for (i = 0; i < graph->nb_outputs; i++)
3529             graph->outputs[i]->ost->unavailable = 1;
3530
3531     return 0;
3532 }
3533
3534 /**
3535  * Run a single step of transcoding.
3536  *
3537  * @return  0 for success, <0 for error
3538  */
3539 static int transcode_step(void)
3540 {
3541     OutputStream *ost;
3542     InputStream  *ist;
3543     int ret;
3544
3545     ost = choose_output();
3546     if (!ost) {
3547         if (got_eagain()) {
3548             reset_eagain();
3549             av_usleep(10000);
3550             return 0;
3551         }
3552         av_log(NULL, AV_LOG_VERBOSE, "No more inputs to read from, finishing.\n");
3553         return AVERROR_EOF;
3554     }
3555
3556     if (ost->filter) {
3557         if ((ret = transcode_from_filter(ost->filter->graph, &ist)) < 0)
3558             return ret;
3559         if (!ist)
3560             return 0;
3561     } else {
3562         av_assert0(ost->source_index >= 0);
3563         ist = input_streams[ost->source_index];
3564     }
3565
3566     ret = process_input(ist->file_index);
3567     if (ret == AVERROR(EAGAIN)) {
3568         if (input_files[ist->file_index]->eagain)
3569             ost->unavailable = 1;
3570         return 0;
3571     }
3572     if (ret < 0)
3573         return ret == AVERROR_EOF ? 0 : ret;
3574
3575     return reap_filters();
3576 }
3577
3578 /*
3579  * The following code is the main loop of the file converter
3580  */
3581 static int transcode(void)
3582 {
3583     int ret, i;
3584     AVFormatContext *os;
3585     OutputStream *ost;
3586     InputStream *ist;
3587     int64_t timer_start;
3588
3589     ret = transcode_init();
3590     if (ret < 0)
3591         goto fail;
3592
3593     if (stdin_interaction) {
3594         av_log(NULL, AV_LOG_INFO, "Press [q] to stop, [?] for help\n");
3595     }
3596
3597     timer_start = av_gettime_relative();
3598
3599 #if HAVE_PTHREADS
3600     if ((ret = init_input_threads()) < 0)
3601         goto fail;
3602 #endif
3603
3604     while (!received_sigterm) {
3605         int64_t cur_time= av_gettime_relative();
3606
3607         /* if 'q' pressed, exits */
3608         if (stdin_interaction)
3609             if (check_keyboard_interaction(cur_time) < 0)
3610                 break;
3611
3612         /* check if there's any stream where output is still needed */
3613         if (!need_output()) {
3614             av_log(NULL, AV_LOG_VERBOSE, "No more output streams to write to, finishing.\n");
3615             break;
3616         }
3617
3618         ret = transcode_step();
3619         if (ret < 0) {
3620             if (ret == AVERROR_EOF || ret == AVERROR(EAGAIN))
3621                 continue;
3622
3623             av_log(NULL, AV_LOG_ERROR, "Error while filtering.\n");
3624             break;
3625         }
3626
3627         /* dump report by using the output first video and audio streams */
3628         print_report(0, timer_start, cur_time);
3629     }
3630 #if HAVE_PTHREADS
3631     free_input_threads();
3632 #endif
3633
3634     /* at the end of stream, we must flush the decoder buffers */
3635     for (i = 0; i < nb_input_streams; i++) {
3636         ist = input_streams[i];
3637         if (!input_files[ist->file_index]->eof_reached && ist->decoding_needed) {
3638             output_packet(ist, NULL);
3639         }
3640     }
3641     flush_encoders();
3642
3643     term_exit();
3644
3645     /* write the trailer if needed and close file */
3646     for (i = 0; i < nb_output_files; i++) {
3647         os = output_files[i]->ctx;
3648         av_write_trailer(os);
3649     }
3650
3651     /* dump report by using the first video and audio streams */
3652     print_report(1, timer_start, av_gettime_relative());
3653
3654     /* close each encoder */
3655     for (i = 0; i < nb_output_streams; i++) {
3656         ost = output_streams[i];
3657         if (ost->encoding_needed) {
3658             av_freep(&ost->st->codec->stats_in);
3659             avcodec_close(ost->st->codec);
3660         }
3661     }
3662
3663     /* close each decoder */
3664     for (i = 0; i < nb_input_streams; i++) {
3665         ist = input_streams[i];
3666         if (ist->decoding_needed) {
3667             avcodec_close(ist->st->codec);
3668             if (ist->hwaccel_uninit)
3669                 ist->hwaccel_uninit(ist->st->codec);
3670         }
3671     }
3672
3673     /* finished ! */
3674     ret = 0;
3675
3676  fail:
3677 #if HAVE_PTHREADS
3678     free_input_threads();
3679 #endif
3680
3681     if (output_streams) {
3682         for (i = 0; i < nb_output_streams; i++) {
3683             ost = output_streams[i];
3684             if (ost) {
3685                 if (ost->stream_copy)
3686                     av_freep(&ost->st->codec->extradata);
3687                 if (ost->logfile) {
3688                     fclose(ost->logfile);
3689                     ost->logfile = NULL;
3690                 }
3691                 av_freep(&ost->st->codec->subtitle_header);
3692                 av_freep(&ost->forced_kf_pts);
3693                 av_freep(&ost->apad);
3694                 av_dict_free(&ost->encoder_opts);
3695                 av_dict_free(&ost->swr_opts);
3696                 av_dict_free(&ost->resample_opts);
3697             }
3698         }
3699     }
3700     return ret;
3701 }
3702
3703
3704 static int64_t getutime(void)
3705 {
3706 #if HAVE_GETRUSAGE
3707     struct rusage rusage;
3708
3709     getrusage(RUSAGE_SELF, &rusage);
3710     return (rusage.ru_utime.tv_sec * 1000000LL) + rusage.ru_utime.tv_usec;
3711 #elif HAVE_GETPROCESSTIMES
3712     HANDLE proc;
3713     FILETIME c, e, k, u;
3714     proc = GetCurrentProcess();
3715     GetProcessTimes(proc, &c, &e, &k, &u);
3716     return ((int64_t) u.dwHighDateTime << 32 | u.dwLowDateTime) / 10;
3717 #else
3718     return av_gettime();
3719 #endif
3720 }
3721
3722 static int64_t getmaxrss(void)
3723 {
3724 #if HAVE_GETRUSAGE && HAVE_STRUCT_RUSAGE_RU_MAXRSS
3725     struct rusage rusage;
3726     getrusage(RUSAGE_SELF, &rusage);
3727     return (int64_t)rusage.ru_maxrss * 1024;
3728 #elif HAVE_GETPROCESSMEMORYINFO
3729     HANDLE proc;
3730     PROCESS_MEMORY_COUNTERS memcounters;
3731     proc = GetCurrentProcess();
3732     memcounters.cb = sizeof(memcounters);
3733     GetProcessMemoryInfo(proc, &memcounters, sizeof(memcounters));
3734     return memcounters.PeakPagefileUsage;
3735 #else
3736     return 0;
3737 #endif
3738 }
3739
3740 static void log_callback_null(void *ptr, int level, const char *fmt, va_list vl)
3741 {
3742 }
3743
3744 int main(int argc, char **argv)
3745 {
3746     int ret;
3747     int64_t ti;
3748
3749     register_exit(ffmpeg_cleanup);
3750
3751     setvbuf(stderr,NULL,_IONBF,0); /* win32 runtime needs this */
3752
3753     av_log_set_flags(AV_LOG_SKIP_REPEATED);
3754     parse_loglevel(argc, argv, options);
3755
3756     if(argc>1 && !strcmp(argv[1], "-d")){
3757         run_as_daemon=1;
3758         av_log_set_callback(log_callback_null);
3759         argc--;
3760         argv++;
3761     }
3762
3763     avcodec_register_all();
3764 #if CONFIG_AVDEVICE
3765     avdevice_register_all();
3766 #endif
3767     avfilter_register_all();
3768     av_register_all();
3769     avformat_network_init();
3770
3771     show_banner(argc, argv, options);
3772
3773     term_init();
3774
3775     /* parse options and open all input/output files */
3776     ret = ffmpeg_parse_options(argc, argv);
3777     if (ret < 0)
3778         exit_program(1);
3779
3780     if (nb_output_files <= 0 && nb_input_files == 0) {
3781         show_usage();
3782         av_log(NULL, AV_LOG_WARNING, "Use -h to get full help or, even better, run 'man %s'\n", program_name);
3783         exit_program(1);
3784     }
3785
3786     /* file converter / grab */
3787     if (nb_output_files <= 0) {
3788         av_log(NULL, AV_LOG_FATAL, "At least one output file must be specified\n");
3789         exit_program(1);
3790     }
3791
3792 //     if (nb_input_files == 0) {
3793 //         av_log(NULL, AV_LOG_FATAL, "At least one input file must be specified\n");
3794 //         exit_program(1);
3795 //     }
3796
3797     current_time = ti = getutime();
3798     if (transcode() < 0)
3799         exit_program(1);
3800     ti = getutime() - ti;
3801     if (do_benchmark) {
3802         printf("bench: utime=%0.3fs\n", ti / 1000000.0);
3803     }
3804     av_log(NULL, AV_LOG_DEBUG, "%"PRIu64" frames successfully decoded, %"PRIu64" decoding errors\n",
3805            decode_error_stat[0], decode_error_stat[1]);
3806     if ((decode_error_stat[0] + decode_error_stat[1]) * max_error_rate < decode_error_stat[1])
3807         exit_program(69);
3808
3809     exit_program(received_nb_signals ? 255 : main_return_code);
3810     return main_return_code;
3811 }