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