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