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