OSDN Git Service

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