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