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