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