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