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