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