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