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