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