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