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