]> git.sesse.net Git - ffmpeg/blob - ffmpeg.c
Merge commit '8f5587c3d0bc4b5f075e4282215bda91a21fc12e'
[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 #if HAVE_ISATTY
34 #if HAVE_IO_H
35 #include <io.h>
36 #endif
37 #if HAVE_UNISTD_H
38 #include <unistd.h>
39 #endif
40 #endif
41 #include "libavformat/avformat.h"
42 #include "libavdevice/avdevice.h"
43 #include "libswscale/swscale.h"
44 #include "libswresample/swresample.h"
45 #include "libavutil/opt.h"
46 #include "libavutil/channel_layout.h"
47 #include "libavutil/parseutils.h"
48 #include "libavutil/samplefmt.h"
49 #include "libavutil/colorspace.h"
50 #include "libavutil/fifo.h"
51 #include "libavutil/intreadwrite.h"
52 #include "libavutil/dict.h"
53 #include "libavutil/mathematics.h"
54 #include "libavutil/pixdesc.h"
55 #include "libavutil/avstring.h"
56 #include "libavutil/libm.h"
57 #include "libavutil/imgutils.h"
58 #include "libavutil/timestamp.h"
59 #include "libavutil/bprint.h"
60 #include "libavutil/time.h"
61 #include "libavformat/os_support.h"
62
63 #include "libavformat/ffm.h" // not public API
64
65 # include "libavfilter/avcodec.h"
66 # include "libavfilter/avfilter.h"
67 # include "libavfilter/avfiltergraph.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 static void do_video_stats(OutputStream *ost, int frame_size);
113 static int64_t getutime(void);
114
115 static int run_as_daemon  = 0;
116 static int64_t video_size = 0;
117 static int64_t audio_size = 0;
118 static int64_t subtitle_size = 0;
119 static int64_t extra_size = 0;
120 static int nb_frames_dup = 0;
121 static int nb_frames_drop = 0;
122
123 static int current_time;
124 AVIOContext *progress_avio = NULL;
125
126 static uint8_t *subtitle_out;
127
128 #if HAVE_PTHREADS
129 /* signal to input threads that they should exit; set by the main thread */
130 static int transcoding_finished;
131 #endif
132
133 #define DEFAULT_PASS_LOGFILENAME_PREFIX "ffmpeg2pass"
134
135 InputStream **input_streams = NULL;
136 int        nb_input_streams = 0;
137 InputFile   **input_files   = NULL;
138 int        nb_input_files   = 0;
139
140 OutputStream **output_streams = NULL;
141 int         nb_output_streams = 0;
142 OutputFile   **output_files   = NULL;
143 int         nb_output_files   = 0;
144
145 FilterGraph **filtergraphs;
146 int        nb_filtergraphs;
147
148 #if HAVE_TERMIOS_H
149
150 /* init terminal so that we can grab keys */
151 static struct termios oldtty;
152 static int restore_tty;
153 #endif
154
155
156 /* sub2video hack:
157    Convert subtitles to video with alpha to insert them in filter graphs.
158    This is a temporary solution until libavfilter gets real subtitles support.
159  */
160
161
162
163 static void sub2video_copy_rect(uint8_t *dst, int dst_linesize, int w, int h,
164                                 AVSubtitleRect *r)
165 {
166     uint32_t *pal, *dst2;
167     uint8_t *src, *src2;
168     int x, y;
169
170     if (r->type != SUBTITLE_BITMAP) {
171         av_log(NULL, AV_LOG_WARNING, "sub2video: non-bitmap subtitle\n");
172         return;
173     }
174     if (r->x < 0 || r->x + r->w > w || r->y < 0 || r->y + r->h > h) {
175         av_log(NULL, AV_LOG_WARNING, "sub2video: rectangle overflowing\n");
176         return;
177     }
178
179     dst += r->y * dst_linesize + r->x * 4;
180     src = r->pict.data[0];
181     pal = (uint32_t *)r->pict.data[1];
182     for (y = 0; y < r->h; y++) {
183         dst2 = (uint32_t *)dst;
184         src2 = src;
185         for (x = 0; x < r->w; x++)
186             *(dst2++) = pal[*(src2++)];
187         dst += dst_linesize;
188         src += r->pict.linesize[0];
189     }
190 }
191
192 static void sub2video_push_ref(InputStream *ist, int64_t pts)
193 {
194     AVFilterBufferRef *ref = ist->sub2video.ref;
195     int i;
196
197     ist->sub2video.last_pts = ref->pts = pts;
198     for (i = 0; i < ist->nb_filters; i++)
199         av_buffersrc_add_ref(ist->filters[i]->filter,
200                              avfilter_ref_buffer(ref, ~0),
201                              AV_BUFFERSRC_FLAG_NO_CHECK_FORMAT |
202                              AV_BUFFERSRC_FLAG_NO_COPY |
203                              AV_BUFFERSRC_FLAG_PUSH);
204 }
205
206 static void sub2video_update(InputStream *ist, AVSubtitle *sub)
207 {
208     int w = ist->sub2video.w, h = ist->sub2video.h;
209     AVFilterBufferRef *ref = ist->sub2video.ref;
210     int8_t *dst;
211     int     dst_linesize;
212     int i;
213     int64_t pts = av_rescale_q(sub->pts, AV_TIME_BASE_Q, ist->st->time_base);
214
215     if (!ref)
216         return;
217     dst          = ref->data    [0];
218     dst_linesize = ref->linesize[0];
219     memset(dst, 0, h * dst_linesize);
220     for (i = 0; i < sub->num_rects; i++)
221         sub2video_copy_rect(dst, dst_linesize, w, h, sub->rects[i]);
222     sub2video_push_ref(ist, pts);
223 }
224
225 static void sub2video_heartbeat(InputStream *ist, int64_t pts)
226 {
227     InputFile *infile = input_files[ist->file_index];
228     int i, j, nb_reqs;
229     int64_t pts2;
230
231     /* When a frame is read from a file, examine all sub2video streams in
232        the same file and send the sub2video frame again. Otherwise, decoded
233        video frames could be accumulating in the filter graph while a filter
234        (possibly overlay) is desperately waiting for a subtitle frame. */
235     for (i = 0; i < infile->nb_streams; i++) {
236         InputStream *ist2 = input_streams[infile->ist_index + i];
237         if (!ist2->sub2video.ref)
238             continue;
239         /* subtitles seem to be usually muxed ahead of other streams;
240            if not, substracting a larger time here is necessary */
241         pts2 = av_rescale_q(pts, ist->st->time_base, ist2->st->time_base) - 1;
242         /* do not send the heartbeat frame if the subtitle is already ahead */
243         if (pts2 <= ist2->sub2video.last_pts)
244             continue;
245         for (j = 0, nb_reqs = 0; j < ist2->nb_filters; j++)
246             nb_reqs += av_buffersrc_get_nb_failed_requests(ist2->filters[j]->filter);
247         if (nb_reqs)
248             sub2video_push_ref(ist2, pts2);
249     }
250 }
251
252 static void sub2video_flush(InputStream *ist)
253 {
254     int i;
255
256     for (i = 0; i < ist->nb_filters; i++)
257         av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
258 }
259
260 /* end of sub2video hack */
261
262 void term_exit(void)
263 {
264     av_log(NULL, AV_LOG_QUIET, "%s", "");
265 #if HAVE_TERMIOS_H
266     if(restore_tty)
267         tcsetattr (0, TCSANOW, &oldtty);
268 #endif
269 }
270
271 static volatile int received_sigterm = 0;
272 static volatile int received_nb_signals = 0;
273
274 static void
275 sigterm_handler(int sig)
276 {
277     received_sigterm = sig;
278     received_nb_signals++;
279     term_exit();
280     if(received_nb_signals > 3)
281         exit(123);
282 }
283
284 void term_init(void)
285 {
286 #if HAVE_TERMIOS_H
287     if(!run_as_daemon){
288         struct termios tty;
289         int istty = 1;
290 #if HAVE_ISATTY
291         istty = isatty(0) && isatty(2);
292 #endif
293         if (istty && tcgetattr (0, &tty) == 0) {
294             oldtty = tty;
295             restore_tty = 1;
296             atexit(term_exit);
297
298             tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
299                              |INLCR|IGNCR|ICRNL|IXON);
300             tty.c_oflag |= OPOST;
301             tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
302             tty.c_cflag &= ~(CSIZE|PARENB);
303             tty.c_cflag |= CS8;
304             tty.c_cc[VMIN] = 1;
305             tty.c_cc[VTIME] = 0;
306
307             tcsetattr (0, TCSANOW, &tty);
308         }
309         signal(SIGQUIT, sigterm_handler); /* Quit (POSIX).  */
310     }
311 #endif
312     avformat_network_deinit();
313
314     signal(SIGINT , sigterm_handler); /* Interrupt (ANSI).    */
315     signal(SIGTERM, sigterm_handler); /* Termination (ANSI).  */
316 #ifdef SIGXCPU
317     signal(SIGXCPU, sigterm_handler);
318 #endif
319 }
320
321 /* read a key without blocking */
322 static int read_key(void)
323 {
324     unsigned char ch;
325 #if HAVE_TERMIOS_H
326     int n = 1;
327     struct timeval tv;
328     fd_set rfds;
329
330     FD_ZERO(&rfds);
331     FD_SET(0, &rfds);
332     tv.tv_sec = 0;
333     tv.tv_usec = 0;
334     n = select(1, &rfds, NULL, NULL, &tv);
335     if (n > 0) {
336         n = read(0, &ch, 1);
337         if (n == 1)
338             return ch;
339
340         return n;
341     }
342 #elif HAVE_KBHIT
343 #    if HAVE_PEEKNAMEDPIPE
344     static int is_pipe;
345     static HANDLE input_handle;
346     DWORD dw, nchars;
347     if(!input_handle){
348         input_handle = GetStdHandle(STD_INPUT_HANDLE);
349         is_pipe = !GetConsoleMode(input_handle, &dw);
350     }
351
352     if (stdin->_cnt > 0) {
353         read(0, &ch, 1);
354         return ch;
355     }
356     if (is_pipe) {
357         /* When running under a GUI, you will end here. */
358         if (!PeekNamedPipe(input_handle, NULL, 0, NULL, &nchars, NULL))
359             return -1;
360         //Read it
361         if(nchars != 0) {
362             read(0, &ch, 1);
363             return ch;
364         }else{
365             return -1;
366         }
367     }
368 #    endif
369     if(kbhit())
370         return(getch());
371 #endif
372     return -1;
373 }
374
375 static int decode_interrupt_cb(void *ctx)
376 {
377     return received_nb_signals > 1;
378 }
379
380 const AVIOInterruptCB int_cb = { decode_interrupt_cb, NULL };
381
382 static void exit_program(void)
383 {
384     int i, j;
385
386     for (i = 0; i < nb_filtergraphs; i++) {
387         avfilter_graph_free(&filtergraphs[i]->graph);
388         for (j = 0; j < filtergraphs[i]->nb_inputs; j++) {
389             av_freep(&filtergraphs[i]->inputs[j]->name);
390             av_freep(&filtergraphs[i]->inputs[j]);
391         }
392         av_freep(&filtergraphs[i]->inputs);
393         for (j = 0; j < filtergraphs[i]->nb_outputs; j++) {
394             av_freep(&filtergraphs[i]->outputs[j]->name);
395             av_freep(&filtergraphs[i]->outputs[j]);
396         }
397         av_freep(&filtergraphs[i]->outputs);
398         av_freep(&filtergraphs[i]);
399     }
400     av_freep(&filtergraphs);
401
402     av_freep(&subtitle_out);
403
404     /* close files */
405     for (i = 0; i < nb_output_files; i++) {
406         AVFormatContext *s = output_files[i]->ctx;
407         if (!(s->oformat->flags & AVFMT_NOFILE) && s->pb)
408             avio_close(s->pb);
409         avformat_free_context(s);
410         av_dict_free(&output_files[i]->opts);
411         av_freep(&output_files[i]);
412     }
413     for (i = 0; i < nb_output_streams; i++) {
414         AVBitStreamFilterContext *bsfc = output_streams[i]->bitstream_filters;
415         while (bsfc) {
416             AVBitStreamFilterContext *next = bsfc->next;
417             av_bitstream_filter_close(bsfc);
418             bsfc = next;
419         }
420         output_streams[i]->bitstream_filters = NULL;
421         avcodec_free_frame(&output_streams[i]->filtered_frame);
422
423         av_freep(&output_streams[i]->forced_keyframes);
424         av_freep(&output_streams[i]->avfilter);
425         av_freep(&output_streams[i]->logfile_prefix);
426         av_freep(&output_streams[i]);
427     }
428     for (i = 0; i < nb_input_files; i++) {
429         avformat_close_input(&input_files[i]->ctx);
430         av_freep(&input_files[i]);
431     }
432     for (i = 0; i < nb_input_streams; i++) {
433         avcodec_free_frame(&input_streams[i]->decoded_frame);
434         av_dict_free(&input_streams[i]->opts);
435         free_buffer_pool(&input_streams[i]->buffer_pool);
436         avfilter_unref_bufferp(&input_streams[i]->sub2video.ref);
437         av_freep(&input_streams[i]->filters);
438         av_freep(&input_streams[i]);
439     }
440
441     if (vstats_file)
442         fclose(vstats_file);
443     av_free(vstats_filename);
444
445     av_freep(&input_streams);
446     av_freep(&input_files);
447     av_freep(&output_streams);
448     av_freep(&output_files);
449
450     uninit_opts();
451
452     avfilter_uninit();
453     avformat_network_deinit();
454
455     if (received_sigterm) {
456         av_log(NULL, AV_LOG_INFO, "Received signal %d: terminating.\n",
457                (int) received_sigterm);
458         exit (255);
459     }
460 }
461
462 void assert_avoptions(AVDictionary *m)
463 {
464     AVDictionaryEntry *t;
465     if ((t = av_dict_get(m, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
466         av_log(NULL, AV_LOG_FATAL, "Option %s not found.\n", t->key);
467         exit(1);
468     }
469 }
470
471 static void abort_codec_experimental(AVCodec *c, int encoder)
472 {
473     exit(1);
474 }
475
476 static void update_benchmark(const char *fmt, ...)
477 {
478     if (do_benchmark_all) {
479         int64_t t = getutime();
480         va_list va;
481         char buf[1024];
482
483         if (fmt) {
484             va_start(va, fmt);
485             vsnprintf(buf, sizeof(buf), fmt, va);
486             va_end(va);
487             printf("bench: %8"PRIu64" %s \n", t - current_time, buf);
488         }
489         current_time = t;
490     }
491 }
492
493 static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost)
494 {
495     AVBitStreamFilterContext *bsfc = ost->bitstream_filters;
496     AVCodecContext          *avctx = ost->st->codec;
497     int ret;
498
499     if ((avctx->codec_type == AVMEDIA_TYPE_VIDEO && video_sync_method == VSYNC_DROP) ||
500         (avctx->codec_type == AVMEDIA_TYPE_AUDIO && audio_sync_method < 0))
501         pkt->pts = pkt->dts = AV_NOPTS_VALUE;
502
503     if ((avctx->codec_type == AVMEDIA_TYPE_AUDIO || avctx->codec_type == AVMEDIA_TYPE_VIDEO) && pkt->dts != AV_NOPTS_VALUE) {
504         int64_t max = ost->st->cur_dts + !(s->oformat->flags & AVFMT_TS_NONSTRICT);
505         if (ost->st->cur_dts && ost->st->cur_dts != AV_NOPTS_VALUE &&  max > pkt->dts) {
506             av_log(s, max - pkt->dts > 2 || avctx->codec_type == AVMEDIA_TYPE_VIDEO ? AV_LOG_WARNING : AV_LOG_DEBUG,
507                    "st:%d PTS: %"PRId64" DTS: %"PRId64" < %"PRId64" invalid, clipping\n", pkt->stream_index, pkt->pts, pkt->dts, max);
508             if(pkt->pts >= pkt->dts)
509                 pkt->pts = FFMAX(pkt->pts, max);
510             pkt->dts = max;
511         }
512     }
513
514     /*
515      * Audio encoders may split the packets --  #frames in != #packets out.
516      * But there is no reordering, so we can limit the number of output packets
517      * by simply dropping them here.
518      * Counting encoded video frames needs to be done separately because of
519      * reordering, see do_video_out()
520      */
521     if (!(avctx->codec_type == AVMEDIA_TYPE_VIDEO && avctx->codec)) {
522         if (ost->frame_number >= ost->max_frames) {
523             av_free_packet(pkt);
524             return;
525         }
526         ost->frame_number++;
527     }
528
529     while (bsfc) {
530         AVPacket new_pkt = *pkt;
531         int a = av_bitstream_filter_filter(bsfc, avctx, NULL,
532                                            &new_pkt.data, &new_pkt.size,
533                                            pkt->data, pkt->size,
534                                            pkt->flags & AV_PKT_FLAG_KEY);
535         if(a == 0 && new_pkt.data != pkt->data && new_pkt.destruct) {
536             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
537             if(t) {
538                 memcpy(t, new_pkt.data, new_pkt.size);
539                 memset(t + new_pkt.size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
540                 new_pkt.data = t;
541                 a = 1;
542             } else
543                 a = AVERROR(ENOMEM);
544         }
545         if (a > 0) {
546             av_free_packet(pkt);
547             new_pkt.destruct = av_destruct_packet;
548         } else if (a < 0) {
549             av_log(NULL, AV_LOG_ERROR, "Failed to open bitstream filter %s for stream %d with codec %s",
550                    bsfc->filter->name, pkt->stream_index,
551                    avctx->codec ? avctx->codec->name : "copy");
552             print_error("", a);
553             if (exit_on_error)
554                 exit(1);
555         }
556         *pkt = new_pkt;
557
558         bsfc = bsfc->next;
559     }
560
561     pkt->stream_index = ost->index;
562
563     if (debug_ts) {
564         av_log(NULL, AV_LOG_INFO, "muxer <- type:%s "
565                 "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s size:%d\n",
566                 av_get_media_type_string(ost->st->codec->codec_type),
567                 av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &ost->st->time_base),
568                 av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &ost->st->time_base),
569                 pkt->size
570               );
571     }
572
573     ret = av_interleaved_write_frame(s, pkt);
574     if (ret < 0) {
575         print_error("av_interleaved_write_frame()", ret);
576         exit(1);
577     }
578 }
579
580 static void close_output_stream(OutputStream *ost)
581 {
582     OutputFile *of = output_files[ost->file_index];
583
584     ost->finished = 1;
585     if (of->shortest) {
586         int i;
587         for (i = 0; i < of->ctx->nb_streams; i++)
588             output_streams[of->ost_index + i]->finished = 1;
589     }
590 }
591
592 static int check_recording_time(OutputStream *ost)
593 {
594     OutputFile *of = output_files[ost->file_index];
595
596     if (of->recording_time != INT64_MAX &&
597         av_compare_ts(ost->sync_opts - ost->first_pts, ost->st->codec->time_base, of->recording_time,
598                       AV_TIME_BASE_Q) >= 0) {
599         close_output_stream(ost);
600         return 0;
601     }
602     return 1;
603 }
604
605 static void do_audio_out(AVFormatContext *s, OutputStream *ost,
606                          AVFrame *frame)
607 {
608     AVCodecContext *enc = ost->st->codec;
609     AVPacket pkt;
610     int got_packet = 0;
611
612     av_init_packet(&pkt);
613     pkt.data = NULL;
614     pkt.size = 0;
615
616     if (!check_recording_time(ost))
617         return;
618
619     if (frame->pts == AV_NOPTS_VALUE || audio_sync_method < 0)
620         frame->pts = ost->sync_opts;
621     ost->sync_opts = frame->pts + frame->nb_samples;
622
623     av_assert0(pkt.size || !pkt.data);
624     update_benchmark(NULL);
625     if (avcodec_encode_audio2(enc, &pkt, frame, &got_packet) < 0) {
626         av_log(NULL, AV_LOG_FATAL, "Audio encoding failed (avcodec_encode_audio2)\n");
627         exit(1);
628     }
629     update_benchmark("encode_audio %d.%d", ost->file_index, ost->index);
630
631     if (got_packet) {
632         if (pkt.pts != AV_NOPTS_VALUE)
633             pkt.pts      = av_rescale_q(pkt.pts,      enc->time_base, ost->st->time_base);
634         if (pkt.dts != AV_NOPTS_VALUE)
635             pkt.dts      = av_rescale_q(pkt.dts,      enc->time_base, ost->st->time_base);
636         if (pkt.duration > 0)
637             pkt.duration = av_rescale_q(pkt.duration, enc->time_base, ost->st->time_base);
638
639         if (debug_ts) {
640             av_log(NULL, AV_LOG_INFO, "encoder -> type:audio "
641                    "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
642                    av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ost->st->time_base),
643                    av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ost->st->time_base));
644         }
645
646         audio_size += pkt.size;
647         write_frame(s, &pkt, ost);
648
649         av_free_packet(&pkt);
650     }
651 }
652
653 static void pre_process_video_frame(InputStream *ist, AVPicture *picture, void **bufp)
654 {
655     AVCodecContext *dec;
656     AVPicture *picture2;
657     AVPicture picture_tmp;
658     uint8_t *buf = 0;
659
660     dec = ist->st->codec;
661
662     /* deinterlace : must be done before any resize */
663     if (do_deinterlace) {
664         int size;
665
666         /* create temporary picture */
667         size = avpicture_get_size(dec->pix_fmt, dec->width, dec->height);
668         if (size < 0)
669             return;
670         buf  = av_malloc(size);
671         if (!buf)
672             return;
673
674         picture2 = &picture_tmp;
675         avpicture_fill(picture2, buf, dec->pix_fmt, dec->width, dec->height);
676
677         if (avpicture_deinterlace(picture2, picture,
678                                  dec->pix_fmt, dec->width, dec->height) < 0) {
679             /* if error, do not deinterlace */
680             av_log(NULL, AV_LOG_WARNING, "Deinterlacing failed\n");
681             av_free(buf);
682             buf = NULL;
683             picture2 = picture;
684         }
685     } else {
686         picture2 = picture;
687     }
688
689     if (picture != picture2)
690         *picture = *picture2;
691     *bufp = buf;
692 }
693
694 static void do_subtitle_out(AVFormatContext *s,
695                             OutputStream *ost,
696                             InputStream *ist,
697                             AVSubtitle *sub)
698 {
699     int subtitle_out_max_size = 1024 * 1024;
700     int subtitle_out_size, nb, i;
701     AVCodecContext *enc;
702     AVPacket pkt;
703     int64_t pts;
704
705     if (sub->pts == AV_NOPTS_VALUE) {
706         av_log(NULL, AV_LOG_ERROR, "Subtitle packets must have a pts\n");
707         if (exit_on_error)
708             exit(1);
709         return;
710     }
711
712     enc = ost->st->codec;
713
714     if (!subtitle_out) {
715         subtitle_out = av_malloc(subtitle_out_max_size);
716     }
717
718     /* Note: DVB subtitle need one packet to draw them and one other
719        packet to clear them */
720     /* XXX: signal it in the codec context ? */
721     if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE)
722         nb = 2;
723     else
724         nb = 1;
725
726     /* shift timestamp to honor -ss and make check_recording_time() work with -t */
727     pts = sub->pts - output_files[ost->file_index]->start_time;
728     for (i = 0; i < nb; i++) {
729         ost->sync_opts = av_rescale_q(pts, AV_TIME_BASE_Q, enc->time_base);
730         if (!check_recording_time(ost))
731             return;
732
733         sub->pts = pts;
734         // start_display_time is required to be 0
735         sub->pts               += av_rescale_q(sub->start_display_time, (AVRational){ 1, 1000 }, AV_TIME_BASE_Q);
736         sub->end_display_time  -= sub->start_display_time;
737         sub->start_display_time = 0;
738         if (i == 1)
739             sub->num_rects = 0;
740         subtitle_out_size = avcodec_encode_subtitle(enc, subtitle_out,
741                                                     subtitle_out_max_size, sub);
742         if (subtitle_out_size < 0) {
743             av_log(NULL, AV_LOG_FATAL, "Subtitle encoding failed\n");
744             exit(1);
745         }
746
747         av_init_packet(&pkt);
748         pkt.data = subtitle_out;
749         pkt.size = subtitle_out_size;
750         pkt.pts  = av_rescale_q(sub->pts, AV_TIME_BASE_Q, ost->st->time_base);
751         pkt.duration = av_rescale_q(sub->end_display_time, (AVRational){ 1, 1000 }, ost->st->time_base);
752         if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE) {
753             /* XXX: the pts correction is handled here. Maybe handling
754                it in the codec would be better */
755             if (i == 0)
756                 pkt.pts += 90 * sub->start_display_time;
757             else
758                 pkt.pts += 90 * sub->end_display_time;
759         }
760         subtitle_size += pkt.size;
761         write_frame(s, &pkt, ost);
762     }
763 }
764
765 static void do_video_out(AVFormatContext *s,
766                          OutputStream *ost,
767                          AVFrame *in_picture)
768 {
769     int ret, format_video_sync;
770     AVPacket pkt;
771     AVCodecContext *enc = ost->st->codec;
772     int nb_frames, i;
773     double sync_ipts, delta;
774     double duration = 0;
775     int frame_size = 0;
776     InputStream *ist = NULL;
777
778     if (ost->source_index >= 0)
779         ist = input_streams[ost->source_index];
780
781     if(ist && ist->st->start_time != AV_NOPTS_VALUE && ist->st->first_dts != AV_NOPTS_VALUE && ost->frame_rate.num)
782         duration = 1/(av_q2d(ost->frame_rate) * av_q2d(enc->time_base));
783
784     sync_ipts = in_picture->pts;
785     delta = sync_ipts - ost->sync_opts + duration;
786
787     /* by default, we output a single frame */
788     nb_frames = 1;
789
790     format_video_sync = video_sync_method;
791     if (format_video_sync == VSYNC_AUTO)
792         format_video_sync = (s->oformat->flags & AVFMT_VARIABLE_FPS) ? ((s->oformat->flags & AVFMT_NOTIMESTAMPS) ? VSYNC_PASSTHROUGH : VSYNC_VFR) : 1;
793
794     switch (format_video_sync) {
795     case VSYNC_CFR:
796         // FIXME set to 0.5 after we fix some dts/pts bugs like in avidec.c
797         if (delta < -1.1)
798             nb_frames = 0;
799         else if (delta > 1.1)
800             nb_frames = lrintf(delta);
801         break;
802     case VSYNC_VFR:
803         if (delta <= -0.6)
804             nb_frames = 0;
805         else if (delta > 0.6)
806             ost->sync_opts = lrint(sync_ipts);
807         break;
808     case VSYNC_DROP:
809     case VSYNC_PASSTHROUGH:
810         ost->sync_opts = lrint(sync_ipts);
811         break;
812     default:
813         av_assert0(0);
814     }
815
816     nb_frames = FFMIN(nb_frames, ost->max_frames - ost->frame_number);
817     if (nb_frames == 0) {
818         nb_frames_drop++;
819         av_log(NULL, AV_LOG_VERBOSE, "*** drop!\n");
820         return;
821     } else if (nb_frames > 1) {
822         if (nb_frames > dts_error_threshold * 30) {
823             av_log(NULL, AV_LOG_ERROR, "%d frame duplication too large, skipping\n", nb_frames - 1);
824             nb_frames_drop++;
825             return;
826         }
827         nb_frames_dup += nb_frames - 1;
828         av_log(NULL, AV_LOG_VERBOSE, "*** %d dup!\n", nb_frames - 1);
829     }
830
831   /* duplicates frame if needed */
832   for (i = 0; i < nb_frames; i++) {
833     av_init_packet(&pkt);
834     pkt.data = NULL;
835     pkt.size = 0;
836
837     in_picture->pts = ost->sync_opts;
838
839     if (!check_recording_time(ost))
840         return;
841
842     if (s->oformat->flags & AVFMT_RAWPICTURE &&
843         enc->codec->id == AV_CODEC_ID_RAWVIDEO) {
844         /* raw pictures are written as AVPicture structure to
845            avoid any copies. We support temporarily the older
846            method. */
847         enc->coded_frame->interlaced_frame = in_picture->interlaced_frame;
848         enc->coded_frame->top_field_first  = in_picture->top_field_first;
849         pkt.data   = (uint8_t *)in_picture;
850         pkt.size   =  sizeof(AVPicture);
851         pkt.pts    = av_rescale_q(in_picture->pts, enc->time_base, ost->st->time_base);
852         pkt.flags |= AV_PKT_FLAG_KEY;
853
854         video_size += pkt.size;
855         write_frame(s, &pkt, ost);
856     } else {
857         int got_packet;
858         AVFrame big_picture;
859
860         big_picture = *in_picture;
861         /* better than nothing: use input picture interlaced
862            settings */
863         big_picture.interlaced_frame = in_picture->interlaced_frame;
864         if (ost->st->codec->flags & (CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_INTERLACED_ME)) {
865             if (ost->top_field_first == -1)
866                 big_picture.top_field_first = in_picture->top_field_first;
867             else
868                 big_picture.top_field_first = !!ost->top_field_first;
869         }
870
871         big_picture.quality = ost->st->codec->global_quality;
872         if (!enc->me_threshold)
873             big_picture.pict_type = 0;
874         if (ost->forced_kf_index < ost->forced_kf_count &&
875             big_picture.pts >= ost->forced_kf_pts[ost->forced_kf_index]) {
876             big_picture.pict_type = AV_PICTURE_TYPE_I;
877             ost->forced_kf_index++;
878         }
879         update_benchmark(NULL);
880         ret = avcodec_encode_video2(enc, &pkt, &big_picture, &got_packet);
881         update_benchmark("encode_video %d.%d", ost->file_index, ost->index);
882         if (ret < 0) {
883             av_log(NULL, AV_LOG_FATAL, "Video encoding failed\n");
884             exit(1);
885         }
886
887         if (got_packet) {
888             if (pkt.pts == AV_NOPTS_VALUE && !(enc->codec->capabilities & CODEC_CAP_DELAY))
889                 pkt.pts = ost->sync_opts;
890
891             if (pkt.pts != AV_NOPTS_VALUE)
892                 pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base);
893             if (pkt.dts != AV_NOPTS_VALUE)
894                 pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base);
895
896             if (debug_ts) {
897                 av_log(NULL, AV_LOG_INFO, "encoder -> type:video "
898                     "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
899                     av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ost->st->time_base),
900                     av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ost->st->time_base));
901             }
902
903             frame_size = pkt.size;
904             video_size += pkt.size;
905             write_frame(s, &pkt, ost);
906             av_free_packet(&pkt);
907
908             /* if two pass, output log */
909             if (ost->logfile && enc->stats_out) {
910                 fprintf(ost->logfile, "%s", enc->stats_out);
911             }
912         }
913     }
914     ost->sync_opts++;
915     /*
916      * For video, number of frames in == number of packets out.
917      * But there may be reordering, so we can't throw away frames on encoder
918      * flush, we need to limit them here, before they go into encoder.
919      */
920     ost->frame_number++;
921   }
922
923     if (vstats_filename && frame_size)
924         do_video_stats(ost, frame_size);
925 }
926
927 static double psnr(double d)
928 {
929     return -10.0 * log(d) / log(10.0);
930 }
931
932 static void do_video_stats(OutputStream *ost, int frame_size)
933 {
934     AVCodecContext *enc;
935     int frame_number;
936     double ti1, bitrate, avg_bitrate;
937
938     /* this is executed just the first time do_video_stats is called */
939     if (!vstats_file) {
940         vstats_file = fopen(vstats_filename, "w");
941         if (!vstats_file) {
942             perror("fopen");
943             exit(1);
944         }
945     }
946
947     enc = ost->st->codec;
948     if (enc->codec_type == AVMEDIA_TYPE_VIDEO) {
949         frame_number = ost->frame_number;
950         fprintf(vstats_file, "frame= %5d q= %2.1f ", frame_number, enc->coded_frame->quality / (float)FF_QP2LAMBDA);
951         if (enc->flags&CODEC_FLAG_PSNR)
952             fprintf(vstats_file, "PSNR= %6.2f ", psnr(enc->coded_frame->error[0] / (enc->width * enc->height * 255.0 * 255.0)));
953
954         fprintf(vstats_file,"f_size= %6d ", frame_size);
955         /* compute pts value */
956         ti1 = ost->sync_opts * av_q2d(enc->time_base);
957         if (ti1 < 0.01)
958             ti1 = 0.01;
959
960         bitrate     = (frame_size * 8) / av_q2d(enc->time_base) / 1000.0;
961         avg_bitrate = (double)(video_size * 8) / ti1 / 1000.0;
962         fprintf(vstats_file, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ",
963                (double)video_size / 1024, ti1, bitrate, avg_bitrate);
964         fprintf(vstats_file, "type= %c\n", av_get_picture_type_char(enc->coded_frame->pict_type));
965     }
966 }
967
968 /*
969  * Get and encode new output from any of the filtergraphs, without causing
970  * activity.
971  *
972  * @return  0 for success, <0 for severe errors
973  */
974 static int reap_filters(void)
975 {
976     AVFilterBufferRef *picref;
977     AVFrame *filtered_frame = NULL;
978     int i;
979     int64_t frame_pts;
980
981     /* Reap all buffers present in the buffer sinks */
982     for (i = 0; i < nb_output_streams; i++) {
983         OutputStream *ost = output_streams[i];
984         OutputFile    *of = output_files[ost->file_index];
985         int ret = 0;
986
987         if (!ost->filter)
988             continue;
989
990         if (!ost->filtered_frame && !(ost->filtered_frame = avcodec_alloc_frame())) {
991             return AVERROR(ENOMEM);
992         } else
993             avcodec_get_frame_defaults(ost->filtered_frame);
994         filtered_frame = ost->filtered_frame;
995
996         while (1) {
997             ret = av_buffersink_get_buffer_ref(ost->filter->filter, &picref,
998                                                AV_BUFFERSINK_FLAG_NO_REQUEST);
999             if (ret < 0) {
1000                 if (ret != AVERROR(EAGAIN) && ret != AVERROR_EOF) {
1001                     char buf[256];
1002                     av_strerror(ret, buf, sizeof(buf));
1003                     av_log(NULL, AV_LOG_WARNING,
1004                            "Error in av_buffersink_get_buffer_ref(): %s\n", buf);
1005                 }
1006                 break;
1007             }
1008             frame_pts = AV_NOPTS_VALUE;
1009             if (picref->pts != AV_NOPTS_VALUE) {
1010                 filtered_frame->pts = frame_pts = av_rescale_q(picref->pts,
1011                                                 ost->filter->filter->inputs[0]->time_base,
1012                                                 ost->st->codec->time_base) -
1013                                     av_rescale_q(of->start_time,
1014                                                 AV_TIME_BASE_Q,
1015                                                 ost->st->codec->time_base);
1016
1017                 if (of->start_time && filtered_frame->pts < 0) {
1018                     avfilter_unref_buffer(picref);
1019                     continue;
1020                 }
1021             }
1022             //if (ost->source_index >= 0)
1023             //    *filtered_frame= *input_streams[ost->source_index]->decoded_frame; //for me_threshold
1024
1025
1026             switch (ost->filter->filter->inputs[0]->type) {
1027             case AVMEDIA_TYPE_VIDEO:
1028                 avfilter_copy_buf_props(filtered_frame, picref);
1029                 filtered_frame->pts = frame_pts;
1030                 if (!ost->frame_aspect_ratio)
1031                     ost->st->codec->sample_aspect_ratio = picref->video->sample_aspect_ratio;
1032
1033                 do_video_out(of->ctx, ost, filtered_frame);
1034                 break;
1035             case AVMEDIA_TYPE_AUDIO:
1036                 avfilter_copy_buf_props(filtered_frame, picref);
1037                 filtered_frame->pts = frame_pts;
1038                 do_audio_out(of->ctx, ost, filtered_frame);
1039                 break;
1040             default:
1041                 // TODO support subtitle filters
1042                 av_assert0(0);
1043             }
1044
1045             avfilter_unref_buffer(picref);
1046         }
1047     }
1048
1049     return 0;
1050 }
1051
1052 static void print_report(int is_last_report, int64_t timer_start, int64_t cur_time)
1053 {
1054     char buf[1024];
1055     AVBPrint buf_script;
1056     OutputStream *ost;
1057     AVFormatContext *oc;
1058     int64_t total_size;
1059     AVCodecContext *enc;
1060     int frame_number, vid, i;
1061     double bitrate;
1062     int64_t pts = INT64_MIN;
1063     static int64_t last_time = -1;
1064     static int qp_histogram[52];
1065     int hours, mins, secs, us;
1066
1067     if (!print_stats && !is_last_report && !progress_avio)
1068         return;
1069
1070     if (!is_last_report) {
1071         if (last_time == -1) {
1072             last_time = cur_time;
1073             return;
1074         }
1075         if ((cur_time - last_time) < 500000)
1076             return;
1077         last_time = cur_time;
1078     }
1079
1080
1081     oc = output_files[0]->ctx;
1082
1083     total_size = avio_size(oc->pb);
1084     if (total_size <= 0) // FIXME improve avio_size() so it works with non seekable output too
1085         total_size = avio_tell(oc->pb);
1086     if (total_size < 0) {
1087         char errbuf[128];
1088         av_strerror(total_size, errbuf, sizeof(errbuf));
1089         av_log(NULL, AV_LOG_VERBOSE, "Bitrate not available, "
1090                "avio_tell() failed: %s\n", errbuf);
1091         total_size = 0;
1092     }
1093
1094     buf[0] = '\0';
1095     vid = 0;
1096     av_bprint_init(&buf_script, 0, 1);
1097     for (i = 0; i < nb_output_streams; i++) {
1098         float q = -1;
1099         ost = output_streams[i];
1100         enc = ost->st->codec;
1101         if (!ost->stream_copy && enc->coded_frame)
1102             q = enc->coded_frame->quality / (float)FF_QP2LAMBDA;
1103         if (vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1104             snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "q=%2.1f ", q);
1105             av_bprintf(&buf_script, "stream_%d_%d_q=%.1f\n",
1106                        ost->file_index, ost->index, q);
1107         }
1108         if (!vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1109             float fps, t = (cur_time-timer_start) / 1000000.0;
1110
1111             frame_number = ost->frame_number;
1112             fps = t > 1 ? frame_number / t : 0;
1113             snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "frame=%5d fps=%3.*f q=%3.1f ",
1114                      frame_number, fps < 9.95, fps, q);
1115             av_bprintf(&buf_script, "frame=%d\n", frame_number);
1116             av_bprintf(&buf_script, "fps=%.1f\n", fps);
1117             av_bprintf(&buf_script, "stream_%d_%d_q=%.1f\n",
1118                        ost->file_index, ost->index, q);
1119             if (is_last_report)
1120                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "L");
1121             if (qp_hist) {
1122                 int j;
1123                 int qp = lrintf(q);
1124                 if (qp >= 0 && qp < FF_ARRAY_ELEMS(qp_histogram))
1125                     qp_histogram[qp]++;
1126                 for (j = 0; j < 32; j++)
1127                     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%X", (int)lrintf(log2(qp_histogram[j] + 1)));
1128             }
1129             if ((enc->flags&CODEC_FLAG_PSNR) && (enc->coded_frame || is_last_report)) {
1130                 int j;
1131                 double error, error_sum = 0;
1132                 double scale, scale_sum = 0;
1133                 double p;
1134                 char type[3] = { 'Y','U','V' };
1135                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "PSNR=");
1136                 for (j = 0; j < 3; j++) {
1137                     if (is_last_report) {
1138                         error = enc->error[j];
1139                         scale = enc->width * enc->height * 255.0 * 255.0 * frame_number;
1140                     } else {
1141                         error = enc->coded_frame->error[j];
1142                         scale = enc->width * enc->height * 255.0 * 255.0;
1143                     }
1144                     if (j)
1145                         scale /= 4;
1146                     error_sum += error;
1147                     scale_sum += scale;
1148                     p = psnr(error / scale);
1149                     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%c:%2.2f ", type[j], p);
1150                     av_bprintf(&buf_script, "stream_%d_%d_psnr_%c=%2.2f\n",
1151                                ost->file_index, ost->index, type[i] | 32, p);
1152                 }
1153                 p = psnr(error_sum / scale_sum);
1154                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "*:%2.2f ", psnr(error_sum / scale_sum));
1155                 av_bprintf(&buf_script, "stream_%d_%d_psnr_all=%2.2f\n",
1156                            ost->file_index, ost->index, p);
1157             }
1158             vid = 1;
1159         }
1160         /* compute min output value */
1161         if ((is_last_report || !ost->finished) && ost->st->pts.val != AV_NOPTS_VALUE)
1162             pts = FFMAX(pts, av_rescale_q(ost->st->pts.val,
1163                                           ost->st->time_base, AV_TIME_BASE_Q));
1164     }
1165
1166     secs = pts / AV_TIME_BASE;
1167     us = pts % AV_TIME_BASE;
1168     mins = secs / 60;
1169     secs %= 60;
1170     hours = mins / 60;
1171     mins %= 60;
1172
1173     bitrate = pts ? total_size * 8 / (pts / 1000.0) : 0;
1174
1175     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1176              "size=%8.0fkB time=", total_size / 1024.0);
1177     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1178              "%02d:%02d:%02d.%02d ", hours, mins, secs,
1179              (100 * us) / AV_TIME_BASE);
1180     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1181              "bitrate=%6.1fkbits/s", bitrate);
1182     av_bprintf(&buf_script, "total_size=%"PRId64"\n", total_size);
1183     av_bprintf(&buf_script, "out_time_ms=%"PRId64"\n", pts);
1184     av_bprintf(&buf_script, "out_time=%02d:%02d:%02d.%06d\n",
1185                hours, mins, secs, us);
1186
1187     if (nb_frames_dup || nb_frames_drop)
1188         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " dup=%d drop=%d",
1189                 nb_frames_dup, nb_frames_drop);
1190     av_bprintf(&buf_script, "dup_frames=%d\n", nb_frames_dup);
1191     av_bprintf(&buf_script, "drop_frames=%d\n", nb_frames_drop);
1192
1193     if (print_stats || is_last_report) {
1194     av_log(NULL, AV_LOG_INFO, "%s    \r", buf);
1195
1196     fflush(stderr);
1197     }
1198
1199     if (progress_avio) {
1200         av_bprintf(&buf_script, "progress=%s\n",
1201                    is_last_report ? "end" : "continue");
1202         avio_write(progress_avio, buf_script.str,
1203                    FFMIN(buf_script.len, buf_script.size - 1));
1204         avio_flush(progress_avio);
1205         av_bprint_finalize(&buf_script, NULL);
1206         if (is_last_report) {
1207             avio_close(progress_avio);
1208             progress_avio = NULL;
1209         }
1210     }
1211
1212     if (is_last_report) {
1213         int64_t raw= audio_size + video_size + subtitle_size + extra_size;
1214         av_log(NULL, AV_LOG_INFO, "\n");
1215         av_log(NULL, AV_LOG_INFO, "video:%1.0fkB audio:%1.0fkB subtitle:%1.0f global headers:%1.0fkB muxing overhead %f%%\n",
1216                video_size / 1024.0,
1217                audio_size / 1024.0,
1218                subtitle_size / 1024.0,
1219                extra_size / 1024.0,
1220                100.0 * (total_size - raw) / raw
1221         );
1222         if(video_size + audio_size + subtitle_size + extra_size == 0){
1223             av_log(NULL, AV_LOG_WARNING, "Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used)\n");
1224         }
1225     }
1226 }
1227
1228 static void flush_encoders(void)
1229 {
1230     int i, ret;
1231
1232     for (i = 0; i < nb_output_streams; i++) {
1233         OutputStream   *ost = output_streams[i];
1234         AVCodecContext *enc = ost->st->codec;
1235         AVFormatContext *os = output_files[ost->file_index]->ctx;
1236         int stop_encoding = 0;
1237
1238         if (!ost->encoding_needed)
1239             continue;
1240
1241         if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && enc->frame_size <= 1)
1242             continue;
1243         if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (os->oformat->flags & AVFMT_RAWPICTURE) && enc->codec->id == AV_CODEC_ID_RAWVIDEO)
1244             continue;
1245
1246         for (;;) {
1247             int (*encode)(AVCodecContext*, AVPacket*, const AVFrame*, int*) = NULL;
1248             const char *desc;
1249             int64_t *size;
1250
1251             switch (ost->st->codec->codec_type) {
1252             case AVMEDIA_TYPE_AUDIO:
1253                 encode = avcodec_encode_audio2;
1254                 desc   = "Audio";
1255                 size   = &audio_size;
1256                 break;
1257             case AVMEDIA_TYPE_VIDEO:
1258                 encode = avcodec_encode_video2;
1259                 desc   = "Video";
1260                 size   = &video_size;
1261                 break;
1262             default:
1263                 stop_encoding = 1;
1264             }
1265
1266             if (encode) {
1267                 AVPacket pkt;
1268                 int got_packet;
1269                 av_init_packet(&pkt);
1270                 pkt.data = NULL;
1271                 pkt.size = 0;
1272
1273                 update_benchmark(NULL);
1274                 ret = encode(enc, &pkt, NULL, &got_packet);
1275                 update_benchmark("flush %s %d.%d", desc, ost->file_index, ost->index);
1276                 if (ret < 0) {
1277                     av_log(NULL, AV_LOG_FATAL, "%s encoding failed\n", desc);
1278                     exit(1);
1279                 }
1280                 *size += pkt.size;
1281                 if (ost->logfile && enc->stats_out) {
1282                     fprintf(ost->logfile, "%s", enc->stats_out);
1283                 }
1284                 if (!got_packet) {
1285                     stop_encoding = 1;
1286                     break;
1287                 }
1288                 if (pkt.pts != AV_NOPTS_VALUE)
1289                     pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base);
1290                 if (pkt.dts != AV_NOPTS_VALUE)
1291                     pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base);
1292                 if (pkt.duration > 0)
1293                     pkt.duration = av_rescale_q(pkt.duration, enc->time_base, ost->st->time_base);
1294                 write_frame(os, &pkt, ost);
1295             }
1296
1297             if (stop_encoding)
1298                 break;
1299         }
1300     }
1301 }
1302
1303 /*
1304  * Check whether a packet from ist should be written into ost at this time
1305  */
1306 static int check_output_constraints(InputStream *ist, OutputStream *ost)
1307 {
1308     OutputFile *of = output_files[ost->file_index];
1309     int ist_index  = input_files[ist->file_index]->ist_index + ist->st->index;
1310
1311     if (ost->source_index != ist_index)
1312         return 0;
1313
1314     if (of->start_time && ist->pts < of->start_time)
1315         return 0;
1316
1317     return 1;
1318 }
1319
1320 static void do_streamcopy(InputStream *ist, OutputStream *ost, const AVPacket *pkt)
1321 {
1322     OutputFile *of = output_files[ost->file_index];
1323     int64_t ost_tb_start_time = av_rescale_q(of->start_time, AV_TIME_BASE_Q, ost->st->time_base);
1324     AVPicture pict;
1325     AVPacket opkt;
1326
1327     av_init_packet(&opkt);
1328
1329     if ((!ost->frame_number && !(pkt->flags & AV_PKT_FLAG_KEY)) &&
1330         !ost->copy_initial_nonkeyframes)
1331         return;
1332
1333     if (!ost->frame_number && ist->pts < of->start_time &&
1334         !ost->copy_prior_start)
1335         return;
1336
1337     if (of->recording_time != INT64_MAX &&
1338         ist->pts >= of->recording_time + of->start_time) {
1339         close_output_stream(ost);
1340         return;
1341     }
1342
1343     /* force the input stream PTS */
1344     if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO)
1345         audio_size += pkt->size;
1346     else if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
1347         video_size += pkt->size;
1348         ost->sync_opts++;
1349     } else if (ost->st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
1350         subtitle_size += pkt->size;
1351     }
1352
1353     if (pkt->pts != AV_NOPTS_VALUE)
1354         opkt.pts = av_rescale_q(pkt->pts, ist->st->time_base, ost->st->time_base) - ost_tb_start_time;
1355     else
1356         opkt.pts = AV_NOPTS_VALUE;
1357
1358     if (pkt->dts == AV_NOPTS_VALUE)
1359         opkt.dts = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ost->st->time_base);
1360     else
1361         opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base);
1362     opkt.dts -= ost_tb_start_time;
1363
1364     if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && pkt->dts != AV_NOPTS_VALUE) {
1365         int duration = av_get_audio_frame_duration(ist->st->codec, pkt->size);
1366         if(!duration)
1367             duration = ist->st->codec->frame_size;
1368         opkt.dts = opkt.pts = av_rescale_delta(ist->st->time_base, pkt->dts,
1369                                                (AVRational){1, ist->st->codec->sample_rate}, duration, &ist->filter_in_rescale_delta_last,
1370                                                ost->st->time_base) - ost_tb_start_time;
1371     }
1372
1373     opkt.duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->st->time_base);
1374     opkt.flags    = pkt->flags;
1375
1376     // FIXME remove the following 2 lines they shall be replaced by the bitstream filters
1377     if (  ost->st->codec->codec_id != AV_CODEC_ID_H264
1378        && ost->st->codec->codec_id != AV_CODEC_ID_MPEG1VIDEO
1379        && ost->st->codec->codec_id != AV_CODEC_ID_MPEG2VIDEO
1380        && ost->st->codec->codec_id != AV_CODEC_ID_VC1
1381        ) {
1382         if (av_parser_change(ist->st->parser, ost->st->codec, &opkt.data, &opkt.size, pkt->data, pkt->size, pkt->flags & AV_PKT_FLAG_KEY))
1383             opkt.destruct = av_destruct_packet;
1384     } else {
1385         opkt.data = pkt->data;
1386         opkt.size = pkt->size;
1387     }
1388
1389     if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (of->ctx->oformat->flags & AVFMT_RAWPICTURE)) {
1390         /* store AVPicture in AVPacket, as expected by the output format */
1391         avpicture_fill(&pict, opkt.data, ost->st->codec->pix_fmt, ost->st->codec->width, ost->st->codec->height);
1392         opkt.data = (uint8_t *)&pict;
1393         opkt.size = sizeof(AVPicture);
1394         opkt.flags |= AV_PKT_FLAG_KEY;
1395     }
1396
1397     write_frame(of->ctx, &opkt, ost);
1398     ost->st->codec->frame_number++;
1399 }
1400
1401 static void rate_emu_sleep(InputStream *ist)
1402 {
1403     if (input_files[ist->file_index]->rate_emu) {
1404         int64_t pts = av_rescale(ist->dts, 1000000, AV_TIME_BASE);
1405         int64_t now = av_gettime() - ist->start;
1406         if (pts > now)
1407             av_usleep(pts - now);
1408     }
1409 }
1410
1411 int guess_input_channel_layout(InputStream *ist)
1412 {
1413     AVCodecContext *dec = ist->st->codec;
1414
1415     if (!dec->channel_layout) {
1416         char layout_name[256];
1417
1418         dec->channel_layout = av_get_default_channel_layout(dec->channels);
1419         if (!dec->channel_layout)
1420             return 0;
1421         av_get_channel_layout_string(layout_name, sizeof(layout_name),
1422                                      dec->channels, dec->channel_layout);
1423         av_log(NULL, AV_LOG_WARNING, "Guessed Channel Layout for  Input Stream "
1424                "#%d.%d : %s\n", ist->file_index, ist->st->index, layout_name);
1425     }
1426     return 1;
1427 }
1428
1429 static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output)
1430 {
1431     AVFrame *decoded_frame;
1432     AVCodecContext *avctx = ist->st->codec;
1433     int i, ret, resample_changed;
1434     AVRational decoded_frame_tb;
1435
1436     if (!ist->decoded_frame && !(ist->decoded_frame = avcodec_alloc_frame()))
1437         return AVERROR(ENOMEM);
1438     decoded_frame = ist->decoded_frame;
1439
1440     update_benchmark(NULL);
1441     ret = avcodec_decode_audio4(avctx, decoded_frame, got_output, pkt);
1442     update_benchmark("decode_audio %d.%d", ist->file_index, ist->st->index);
1443
1444     if (ret >= 0 && avctx->sample_rate <= 0) {
1445         av_log(avctx, AV_LOG_ERROR, "Sample rate %d invalid\n", avctx->sample_rate);
1446         ret = AVERROR_INVALIDDATA;
1447     }
1448
1449     if (!*got_output || ret < 0) {
1450         if (!pkt->size) {
1451             for (i = 0; i < ist->nb_filters; i++)
1452                 av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
1453         }
1454         return ret;
1455     }
1456
1457 #if 1
1458     /* increment next_dts to use for the case where the input stream does not
1459        have timestamps or there are multiple frames in the packet */
1460     ist->next_pts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
1461                      avctx->sample_rate;
1462     ist->next_dts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
1463                      avctx->sample_rate;
1464 #endif
1465
1466     rate_emu_sleep(ist);
1467
1468     resample_changed = ist->resample_sample_fmt     != decoded_frame->format         ||
1469                        ist->resample_channels       != avctx->channels               ||
1470                        ist->resample_channel_layout != decoded_frame->channel_layout ||
1471                        ist->resample_sample_rate    != decoded_frame->sample_rate;
1472     if (resample_changed) {
1473         char layout1[64], layout2[64];
1474
1475         if (!guess_input_channel_layout(ist)) {
1476             av_log(NULL, AV_LOG_FATAL, "Unable to find default channel "
1477                    "layout for Input Stream #%d.%d\n", ist->file_index,
1478                    ist->st->index);
1479             exit(1);
1480         }
1481         decoded_frame->channel_layout = avctx->channel_layout;
1482
1483         av_get_channel_layout_string(layout1, sizeof(layout1), ist->resample_channels,
1484                                      ist->resample_channel_layout);
1485         av_get_channel_layout_string(layout2, sizeof(layout2), avctx->channels,
1486                                      decoded_frame->channel_layout);
1487
1488         av_log(NULL, AV_LOG_INFO,
1489                "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",
1490                ist->file_index, ist->st->index,
1491                ist->resample_sample_rate,  av_get_sample_fmt_name(ist->resample_sample_fmt),
1492                ist->resample_channels, layout1,
1493                decoded_frame->sample_rate, av_get_sample_fmt_name(decoded_frame->format),
1494                avctx->channels, layout2);
1495
1496         ist->resample_sample_fmt     = decoded_frame->format;
1497         ist->resample_sample_rate    = decoded_frame->sample_rate;
1498         ist->resample_channel_layout = decoded_frame->channel_layout;
1499         ist->resample_channels       = avctx->channels;
1500
1501         for (i = 0; i < nb_filtergraphs; i++)
1502             if (ist_in_filtergraph(filtergraphs[i], ist)) {
1503                 FilterGraph *fg = filtergraphs[i];
1504                 int j;
1505                 if (configure_filtergraph(fg) < 0) {
1506                     av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
1507                     exit(1);
1508                 }
1509                 for (j = 0; j < fg->nb_outputs; j++) {
1510                     OutputStream *ost = fg->outputs[j]->ost;
1511                     if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
1512                         !(ost->enc->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE))
1513                         av_buffersink_set_frame_size(ost->filter->filter,
1514                                                      ost->st->codec->frame_size);
1515                 }
1516             }
1517     }
1518
1519     /* if the decoder provides a pts, use it instead of the last packet pts.
1520        the decoder could be delaying output by a packet or more. */
1521     if (decoded_frame->pts != AV_NOPTS_VALUE) {
1522         ist->dts = ist->next_dts = ist->pts = ist->next_pts = av_rescale_q(decoded_frame->pts, avctx->time_base, AV_TIME_BASE_Q);
1523         decoded_frame_tb   = avctx->time_base;
1524     } else if (decoded_frame->pkt_pts != AV_NOPTS_VALUE) {
1525         decoded_frame->pts = decoded_frame->pkt_pts;
1526         pkt->pts           = AV_NOPTS_VALUE;
1527         decoded_frame_tb   = ist->st->time_base;
1528     } else if (pkt->pts != AV_NOPTS_VALUE) {
1529         decoded_frame->pts = pkt->pts;
1530         pkt->pts           = AV_NOPTS_VALUE;
1531         decoded_frame_tb   = ist->st->time_base;
1532     }else {
1533         decoded_frame->pts = ist->dts;
1534         decoded_frame_tb   = AV_TIME_BASE_Q;
1535     }
1536     if (decoded_frame->pts != AV_NOPTS_VALUE)
1537         decoded_frame->pts = av_rescale_delta(decoded_frame_tb, decoded_frame->pts,
1538                                               (AVRational){1, ist->st->codec->sample_rate}, decoded_frame->nb_samples, &ist->filter_in_rescale_delta_last,
1539                                               (AVRational){1, ist->st->codec->sample_rate});
1540     for (i = 0; i < ist->nb_filters; i++)
1541         av_buffersrc_add_frame(ist->filters[i]->filter, decoded_frame,
1542                                AV_BUFFERSRC_FLAG_PUSH);
1543
1544     decoded_frame->pts = AV_NOPTS_VALUE;
1545
1546     return ret;
1547 }
1548
1549 static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output)
1550 {
1551     AVFrame *decoded_frame;
1552     void *buffer_to_free = NULL;
1553     int i, ret = 0, resample_changed;
1554     int64_t best_effort_timestamp;
1555     AVRational *frame_sample_aspect;
1556
1557     if (!ist->decoded_frame && !(ist->decoded_frame = avcodec_alloc_frame()))
1558         return AVERROR(ENOMEM);
1559     decoded_frame = ist->decoded_frame;
1560     pkt->dts  = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ist->st->time_base);
1561
1562     update_benchmark(NULL);
1563     ret = avcodec_decode_video2(ist->st->codec,
1564                                 decoded_frame, got_output, pkt);
1565     update_benchmark("decode_video %d.%d", ist->file_index, ist->st->index);
1566     if (!*got_output || ret < 0) {
1567         if (!pkt->size) {
1568             for (i = 0; i < ist->nb_filters; i++)
1569                 av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
1570         }
1571         return ret;
1572     }
1573
1574     if(ist->top_field_first>=0)
1575         decoded_frame->top_field_first = ist->top_field_first;
1576
1577     best_effort_timestamp= av_frame_get_best_effort_timestamp(decoded_frame);
1578     if(best_effort_timestamp != AV_NOPTS_VALUE)
1579         ist->next_pts = ist->pts = av_rescale_q(decoded_frame->pts = best_effort_timestamp, ist->st->time_base, AV_TIME_BASE_Q);
1580
1581     if (debug_ts) {
1582         av_log(NULL, AV_LOG_INFO, "decoder -> ist_index:%d type:video "
1583                 "frame_pts:%s frame_pts_time:%s best_effort_ts:%"PRId64" best_effort_ts_time:%s keyframe:%d frame_type:%d \n",
1584                 ist->st->index, av_ts2str(decoded_frame->pts),
1585                 av_ts2timestr(decoded_frame->pts, &ist->st->time_base),
1586                 best_effort_timestamp,
1587                 av_ts2timestr(best_effort_timestamp, &ist->st->time_base),
1588                 decoded_frame->key_frame, decoded_frame->pict_type);
1589     }
1590
1591     pkt->size = 0;
1592     pre_process_video_frame(ist, (AVPicture *)decoded_frame, &buffer_to_free);
1593
1594     rate_emu_sleep(ist);
1595
1596     if (ist->st->sample_aspect_ratio.num)
1597         decoded_frame->sample_aspect_ratio = ist->st->sample_aspect_ratio;
1598
1599     resample_changed = ist->resample_width   != decoded_frame->width  ||
1600                        ist->resample_height  != decoded_frame->height ||
1601                        ist->resample_pix_fmt != decoded_frame->format;
1602     if (resample_changed) {
1603         av_log(NULL, AV_LOG_INFO,
1604                "Input stream #%d:%d frame changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s\n",
1605                ist->file_index, ist->st->index,
1606                ist->resample_width,  ist->resample_height,  av_get_pix_fmt_name(ist->resample_pix_fmt),
1607                decoded_frame->width, decoded_frame->height, av_get_pix_fmt_name(decoded_frame->format));
1608
1609         ist->resample_width   = decoded_frame->width;
1610         ist->resample_height  = decoded_frame->height;
1611         ist->resample_pix_fmt = decoded_frame->format;
1612
1613         for (i = 0; i < nb_filtergraphs; i++) {
1614             if (ist_in_filtergraph(filtergraphs[i], ist) && ist->reinit_filters &&
1615                 configure_filtergraph(filtergraphs[i]) < 0) {
1616                 av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
1617                 exit(1);
1618             }
1619         }
1620     }
1621
1622     frame_sample_aspect= av_opt_ptr(avcodec_get_frame_class(), decoded_frame, "sample_aspect_ratio");
1623     for (i = 0; i < ist->nb_filters; i++) {
1624         int changed =      ist->st->codec->width   != ist->filters[i]->filter->outputs[0]->w
1625                         || ist->st->codec->height  != ist->filters[i]->filter->outputs[0]->h
1626                         || ist->st->codec->pix_fmt != ist->filters[i]->filter->outputs[0]->format;
1627
1628         if (!frame_sample_aspect->num)
1629             *frame_sample_aspect = ist->st->sample_aspect_ratio;
1630         if (ist->dr1 && decoded_frame->type==FF_BUFFER_TYPE_USER && !changed) {
1631             FrameBuffer      *buf = decoded_frame->opaque;
1632             AVFilterBufferRef *fb = avfilter_get_video_buffer_ref_from_arrays(
1633                                         decoded_frame->data, decoded_frame->linesize,
1634                                         AV_PERM_READ | AV_PERM_PRESERVE,
1635                                         ist->st->codec->width, ist->st->codec->height,
1636                                         ist->st->codec->pix_fmt);
1637
1638             avfilter_copy_frame_props(fb, decoded_frame);
1639             fb->buf->priv           = buf;
1640             fb->buf->free           = filter_release_buffer;
1641
1642             av_assert0(buf->refcount>0);
1643             buf->refcount++;
1644             av_buffersrc_add_ref(ist->filters[i]->filter, fb,
1645                                  AV_BUFFERSRC_FLAG_NO_CHECK_FORMAT |
1646                                  AV_BUFFERSRC_FLAG_NO_COPY |
1647                                  AV_BUFFERSRC_FLAG_PUSH);
1648         } else
1649         if(av_buffersrc_add_frame(ist->filters[i]->filter, decoded_frame, AV_BUFFERSRC_FLAG_PUSH)<0) {
1650             av_log(NULL, AV_LOG_FATAL, "Failed to inject frame into filter network\n");
1651             exit(1);
1652         }
1653
1654     }
1655
1656     av_free(buffer_to_free);
1657     return ret;
1658 }
1659
1660 static int transcode_subtitles(InputStream *ist, AVPacket *pkt, int *got_output)
1661 {
1662     AVSubtitle subtitle;
1663     int i, ret = avcodec_decode_subtitle2(ist->st->codec,
1664                                           &subtitle, got_output, pkt);
1665     if (ret < 0 || !*got_output) {
1666         if (!pkt->size)
1667             sub2video_flush(ist);
1668         return ret;
1669     }
1670
1671     if (ist->fix_sub_duration) {
1672         if (ist->prev_sub.got_output) {
1673             int end = av_rescale(subtitle.pts - ist->prev_sub.subtitle.pts,
1674                                  1000, AV_TIME_BASE);
1675             if (end < ist->prev_sub.subtitle.end_display_time) {
1676                 av_log(ist->st->codec, AV_LOG_DEBUG,
1677                        "Subtitle duration reduced from %d to %d\n",
1678                        ist->prev_sub.subtitle.end_display_time, end);
1679                 ist->prev_sub.subtitle.end_display_time = end;
1680             }
1681         }
1682         FFSWAP(int,        *got_output, ist->prev_sub.got_output);
1683         FFSWAP(int,        ret,         ist->prev_sub.ret);
1684         FFSWAP(AVSubtitle, subtitle,    ist->prev_sub.subtitle);
1685     }
1686
1687     sub2video_update(ist, &subtitle);
1688
1689     if (!*got_output || !subtitle.num_rects)
1690         return ret;
1691
1692     rate_emu_sleep(ist);
1693
1694     for (i = 0; i < nb_output_streams; i++) {
1695         OutputStream *ost = output_streams[i];
1696
1697         if (!check_output_constraints(ist, ost) || !ost->encoding_needed)
1698             continue;
1699
1700         do_subtitle_out(output_files[ost->file_index]->ctx, ost, ist, &subtitle);
1701     }
1702
1703     avsubtitle_free(&subtitle);
1704     return ret;
1705 }
1706
1707 /* pkt = NULL means EOF (needed to flush decoder buffers) */
1708 static int output_packet(InputStream *ist, const AVPacket *pkt)
1709 {
1710     int ret = 0, i;
1711     int got_output;
1712
1713     AVPacket avpkt;
1714     if (!ist->saw_first_ts) {
1715         ist->dts = ist->st->avg_frame_rate.num ? - ist->st->codec->has_b_frames * AV_TIME_BASE / av_q2d(ist->st->avg_frame_rate) : 0;
1716         ist->pts = 0;
1717         if (pkt != NULL && pkt->pts != AV_NOPTS_VALUE && !ist->decoding_needed) {
1718             ist->dts += av_rescale_q(pkt->pts, ist->st->time_base, AV_TIME_BASE_Q);
1719             ist->pts = ist->dts; //unused but better to set it to a value thats not totally wrong
1720         }
1721         ist->saw_first_ts = 1;
1722     }
1723
1724     if (ist->next_dts == AV_NOPTS_VALUE)
1725         ist->next_dts = ist->dts;
1726     if (ist->next_pts == AV_NOPTS_VALUE)
1727         ist->next_pts = ist->pts;
1728
1729     if (pkt == NULL) {
1730         /* EOF handling */
1731         av_init_packet(&avpkt);
1732         avpkt.data = NULL;
1733         avpkt.size = 0;
1734         goto handle_eof;
1735     } else {
1736         avpkt = *pkt;
1737     }
1738
1739     if (pkt->dts != AV_NOPTS_VALUE) {
1740         ist->next_dts = ist->dts = av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q);
1741         if (ist->st->codec->codec_type != AVMEDIA_TYPE_VIDEO || !ist->decoding_needed)
1742             ist->next_pts = ist->pts = ist->dts;
1743     }
1744
1745     // while we have more to decode or while the decoder did output something on EOF
1746     while (ist->decoding_needed && (avpkt.size > 0 || (!pkt && got_output))) {
1747         int duration;
1748     handle_eof:
1749
1750         ist->pts = ist->next_pts;
1751         ist->dts = ist->next_dts;
1752
1753         if (avpkt.size && avpkt.size != pkt->size) {
1754             av_log(NULL, ist->showed_multi_packet_warning ? AV_LOG_VERBOSE : AV_LOG_WARNING,
1755                    "Multiple frames in a packet from stream %d\n", pkt->stream_index);
1756             ist->showed_multi_packet_warning = 1;
1757         }
1758
1759         switch (ist->st->codec->codec_type) {
1760         case AVMEDIA_TYPE_AUDIO:
1761             ret = decode_audio    (ist, &avpkt, &got_output);
1762             break;
1763         case AVMEDIA_TYPE_VIDEO:
1764             ret = decode_video    (ist, &avpkt, &got_output);
1765             if (avpkt.duration) {
1766                 duration = av_rescale_q(avpkt.duration, ist->st->time_base, AV_TIME_BASE_Q);
1767             } else if(ist->st->codec->time_base.num != 0 && ist->st->codec->time_base.den != 0) {
1768                 int ticks= ist->st->parser ? ist->st->parser->repeat_pict+1 : ist->st->codec->ticks_per_frame;
1769                 duration = ((int64_t)AV_TIME_BASE *
1770                                 ist->st->codec->time_base.num * ticks) /
1771                                 ist->st->codec->time_base.den;
1772             } else
1773                 duration = 0;
1774
1775             if(ist->dts != AV_NOPTS_VALUE && duration) {
1776                 ist->next_dts += duration;
1777             }else
1778                 ist->next_dts = AV_NOPTS_VALUE;
1779
1780             if (got_output)
1781                 ist->next_pts += duration; //FIXME the duration is not correct in some cases
1782             break;
1783         case AVMEDIA_TYPE_SUBTITLE:
1784             ret = transcode_subtitles(ist, &avpkt, &got_output);
1785             break;
1786         default:
1787             return -1;
1788         }
1789
1790         if (ret < 0)
1791             return ret;
1792
1793         avpkt.dts=
1794         avpkt.pts= AV_NOPTS_VALUE;
1795
1796         // touch data and size only if not EOF
1797         if (pkt) {
1798             if(ist->st->codec->codec_type != AVMEDIA_TYPE_AUDIO)
1799                 ret = avpkt.size;
1800             avpkt.data += ret;
1801             avpkt.size -= ret;
1802         }
1803         if (!got_output) {
1804             continue;
1805         }
1806     }
1807
1808     /* handle stream copy */
1809     if (!ist->decoding_needed) {
1810         rate_emu_sleep(ist);
1811         ist->dts = ist->next_dts;
1812         switch (ist->st->codec->codec_type) {
1813         case AVMEDIA_TYPE_AUDIO:
1814             ist->next_dts += ((int64_t)AV_TIME_BASE * ist->st->codec->frame_size) /
1815                              ist->st->codec->sample_rate;
1816             break;
1817         case AVMEDIA_TYPE_VIDEO:
1818             if (pkt->duration) {
1819                 ist->next_dts += av_rescale_q(pkt->duration, ist->st->time_base, AV_TIME_BASE_Q);
1820             } else if(ist->st->codec->time_base.num != 0) {
1821                 int ticks= ist->st->parser ? ist->st->parser->repeat_pict + 1 : ist->st->codec->ticks_per_frame;
1822                 ist->next_dts += ((int64_t)AV_TIME_BASE *
1823                                   ist->st->codec->time_base.num * ticks) /
1824                                   ist->st->codec->time_base.den;
1825             }
1826             break;
1827         }
1828         ist->pts = ist->dts;
1829         ist->next_pts = ist->next_dts;
1830     }
1831     for (i = 0; pkt && i < nb_output_streams; i++) {
1832         OutputStream *ost = output_streams[i];
1833
1834         if (!check_output_constraints(ist, ost) || ost->encoding_needed)
1835             continue;
1836
1837         do_streamcopy(ist, ost, pkt);
1838     }
1839
1840     return 0;
1841 }
1842
1843 static void print_sdp(void)
1844 {
1845     char sdp[2048];
1846     int i;
1847     AVFormatContext **avc = av_malloc(sizeof(*avc) * nb_output_files);
1848
1849     if (!avc)
1850         exit(1);
1851     for (i = 0; i < nb_output_files; i++)
1852         avc[i] = output_files[i]->ctx;
1853
1854     av_sdp_create(avc, nb_output_files, sdp, sizeof(sdp));
1855     printf("SDP:\n%s\n", sdp);
1856     fflush(stdout);
1857     av_freep(&avc);
1858 }
1859
1860 static int init_input_stream(int ist_index, char *error, int error_len)
1861 {
1862     int ret;
1863     InputStream *ist = input_streams[ist_index];
1864
1865     if (ist->decoding_needed) {
1866         AVCodec *codec = ist->dec;
1867         if (!codec) {
1868             snprintf(error, error_len, "Decoder (codec %s) not found for input stream #%d:%d",
1869                     avcodec_get_name(ist->st->codec->codec_id), ist->file_index, ist->st->index);
1870             return AVERROR(EINVAL);
1871         }
1872
1873         ist->dr1 = (codec->capabilities & CODEC_CAP_DR1) && !do_deinterlace;
1874         if (codec->type == AVMEDIA_TYPE_VIDEO && ist->dr1) {
1875             ist->st->codec->get_buffer     = codec_get_buffer;
1876             ist->st->codec->release_buffer = codec_release_buffer;
1877             ist->st->codec->opaque         = &ist->buffer_pool;
1878         }
1879
1880         if (!av_dict_get(ist->opts, "threads", NULL, 0))
1881             av_dict_set(&ist->opts, "threads", "auto", 0);
1882         if ((ret = avcodec_open2(ist->st->codec, codec, &ist->opts)) < 0) {
1883             if (ret == AVERROR_EXPERIMENTAL)
1884                 abort_codec_experimental(codec, 0);
1885             snprintf(error, error_len, "Error while opening decoder for input stream #%d:%d",
1886                     ist->file_index, ist->st->index);
1887             return ret;
1888         }
1889         assert_avoptions(ist->opts);
1890     }
1891
1892     ist->next_pts = AV_NOPTS_VALUE;
1893     ist->next_dts = AV_NOPTS_VALUE;
1894     ist->is_start = 1;
1895
1896     return 0;
1897 }
1898
1899 static InputStream *get_input_stream(OutputStream *ost)
1900 {
1901     if (ost->source_index >= 0)
1902         return input_streams[ost->source_index];
1903     return NULL;
1904 }
1905
1906 static void parse_forced_key_frames(char *kf, OutputStream *ost,
1907                                     AVCodecContext *avctx)
1908 {
1909     char *p;
1910     int n = 1, i;
1911     int64_t t;
1912
1913     for (p = kf; *p; p++)
1914         if (*p == ',')
1915             n++;
1916     ost->forced_kf_count = n;
1917     ost->forced_kf_pts   = av_malloc(sizeof(*ost->forced_kf_pts) * n);
1918     if (!ost->forced_kf_pts) {
1919         av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
1920         exit(1);
1921     }
1922
1923     p = kf;
1924     for (i = 0; i < n; i++) {
1925         char *next = strchr(p, ',');
1926
1927         if (next)
1928             *next++ = 0;
1929
1930         t = parse_time_or_die("force_key_frames", p, 1);
1931         ost->forced_kf_pts[i] = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base);
1932
1933         p = next;
1934     }
1935 }
1936
1937 static void report_new_stream(int input_index, AVPacket *pkt)
1938 {
1939     InputFile *file = input_files[input_index];
1940     AVStream *st = file->ctx->streams[pkt->stream_index];
1941
1942     if (pkt->stream_index < file->nb_streams_warn)
1943         return;
1944     av_log(file->ctx, AV_LOG_WARNING,
1945            "New %s stream %d:%d at pos:%"PRId64" and DTS:%ss\n",
1946            av_get_media_type_string(st->codec->codec_type),
1947            input_index, pkt->stream_index,
1948            pkt->pos, av_ts2timestr(pkt->dts, &st->time_base));
1949     file->nb_streams_warn = pkt->stream_index + 1;
1950 }
1951
1952 static int transcode_init(void)
1953 {
1954     int ret = 0, i, j, k;
1955     AVFormatContext *oc;
1956     AVCodecContext *codec;
1957     OutputStream *ost;
1958     InputStream *ist;
1959     char error[1024];
1960     int want_sdp = 1;
1961
1962     /* init framerate emulation */
1963     for (i = 0; i < nb_input_files; i++) {
1964         InputFile *ifile = input_files[i];
1965         if (ifile->rate_emu)
1966             for (j = 0; j < ifile->nb_streams; j++)
1967                 input_streams[j + ifile->ist_index]->start = av_gettime();
1968     }
1969
1970     /* output stream init */
1971     for (i = 0; i < nb_output_files; i++) {
1972         oc = output_files[i]->ctx;
1973         if (!oc->nb_streams && !(oc->oformat->flags & AVFMT_NOSTREAMS)) {
1974             av_dump_format(oc, i, oc->filename, 1);
1975             av_log(NULL, AV_LOG_ERROR, "Output file #%d does not contain any stream\n", i);
1976             return AVERROR(EINVAL);
1977         }
1978     }
1979
1980     /* init complex filtergraphs */
1981     for (i = 0; i < nb_filtergraphs; i++)
1982         if ((ret = avfilter_graph_config(filtergraphs[i]->graph, NULL)) < 0)
1983             return ret;
1984
1985     /* for each output stream, we compute the right encoding parameters */
1986     for (i = 0; i < nb_output_streams; i++) {
1987         AVCodecContext *icodec = NULL;
1988         ost = output_streams[i];
1989         oc  = output_files[ost->file_index]->ctx;
1990         ist = get_input_stream(ost);
1991
1992         if (ost->attachment_filename)
1993             continue;
1994
1995         codec  = ost->st->codec;
1996
1997         if (ist) {
1998             icodec = ist->st->codec;
1999
2000             ost->st->disposition          = ist->st->disposition;
2001             codec->bits_per_raw_sample    = icodec->bits_per_raw_sample;
2002             codec->chroma_sample_location = icodec->chroma_sample_location;
2003         }
2004
2005         if (ost->stream_copy) {
2006             uint64_t extra_size;
2007
2008             av_assert0(ist && !ost->filter);
2009
2010             extra_size = (uint64_t)icodec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE;
2011
2012             if (extra_size > INT_MAX) {
2013                 return AVERROR(EINVAL);
2014             }
2015
2016             /* if stream_copy is selected, no need to decode or encode */
2017             codec->codec_id   = icodec->codec_id;
2018             codec->codec_type = icodec->codec_type;
2019
2020             if (!codec->codec_tag) {
2021                 if (!oc->oformat->codec_tag ||
2022                      av_codec_get_id (oc->oformat->codec_tag, icodec->codec_tag) == codec->codec_id ||
2023                      av_codec_get_tag(oc->oformat->codec_tag, icodec->codec_id) <= 0)
2024                     codec->codec_tag = icodec->codec_tag;
2025             }
2026
2027             codec->bit_rate       = icodec->bit_rate;
2028             codec->rc_max_rate    = icodec->rc_max_rate;
2029             codec->rc_buffer_size = icodec->rc_buffer_size;
2030             codec->field_order    = icodec->field_order;
2031             codec->extradata      = av_mallocz(extra_size);
2032             if (!codec->extradata) {
2033                 return AVERROR(ENOMEM);
2034             }
2035             memcpy(codec->extradata, icodec->extradata, icodec->extradata_size);
2036             codec->extradata_size= icodec->extradata_size;
2037             codec->bits_per_coded_sample  = icodec->bits_per_coded_sample;
2038
2039             codec->time_base = ist->st->time_base;
2040             /*
2041              * Avi is a special case here because it supports variable fps but
2042              * having the fps and timebase differe significantly adds quite some
2043              * overhead
2044              */
2045             if(!strcmp(oc->oformat->name, "avi")) {
2046                 if ( copy_tb<0 && av_q2d(ist->st->r_frame_rate) >= av_q2d(ist->st->avg_frame_rate)
2047                                && 0.5/av_q2d(ist->st->r_frame_rate) > av_q2d(ist->st->time_base)
2048                                && 0.5/av_q2d(ist->st->r_frame_rate) > av_q2d(icodec->time_base)
2049                                && av_q2d(ist->st->time_base) < 1.0/500 && av_q2d(icodec->time_base) < 1.0/500
2050                      || copy_tb==2){
2051                     codec->time_base.num = ist->st->r_frame_rate.den;
2052                     codec->time_base.den = 2*ist->st->r_frame_rate.num;
2053                     codec->ticks_per_frame = 2;
2054                 } else if (   copy_tb<0 && av_q2d(icodec->time_base)*icodec->ticks_per_frame > 2*av_q2d(ist->st->time_base)
2055                                  && av_q2d(ist->st->time_base) < 1.0/500
2056                     || copy_tb==0){
2057                     codec->time_base = icodec->time_base;
2058                     codec->time_base.num *= icodec->ticks_per_frame;
2059                     codec->time_base.den *= 2;
2060                     codec->ticks_per_frame = 2;
2061                 }
2062             } else if(!(oc->oformat->flags & AVFMT_VARIABLE_FPS)
2063                       && strcmp(oc->oformat->name, "mov") && strcmp(oc->oformat->name, "mp4") && strcmp(oc->oformat->name, "3gp")
2064                       && strcmp(oc->oformat->name, "3g2") && strcmp(oc->oformat->name, "psp") && strcmp(oc->oformat->name, "ipod")
2065                       && strcmp(oc->oformat->name, "f4v")
2066             ) {
2067                 if(   copy_tb<0 && icodec->time_base.den
2068                                 && av_q2d(icodec->time_base)*icodec->ticks_per_frame > av_q2d(ist->st->time_base)
2069                                 && av_q2d(ist->st->time_base) < 1.0/500
2070                    || copy_tb==0){
2071                     codec->time_base = icodec->time_base;
2072                     codec->time_base.num *= icodec->ticks_per_frame;
2073                 }
2074             }
2075
2076             if(ost->frame_rate.num)
2077                 codec->time_base = av_inv_q(ost->frame_rate);
2078
2079             av_reduce(&codec->time_base.num, &codec->time_base.den,
2080                         codec->time_base.num, codec->time_base.den, INT_MAX);
2081
2082             switch (codec->codec_type) {
2083             case AVMEDIA_TYPE_AUDIO:
2084                 if (audio_volume != 256) {
2085                     av_log(NULL, AV_LOG_FATAL, "-acodec copy and -vol are incompatible (frames are not decoded)\n");
2086                     exit(1);
2087                 }
2088                 codec->channel_layout     = icodec->channel_layout;
2089                 codec->sample_rate        = icodec->sample_rate;
2090                 codec->channels           = icodec->channels;
2091                 codec->frame_size         = icodec->frame_size;
2092                 codec->audio_service_type = icodec->audio_service_type;
2093                 codec->block_align        = icodec->block_align;
2094                 if((codec->block_align == 1 || codec->block_align == 1152) && codec->codec_id == AV_CODEC_ID_MP3)
2095                     codec->block_align= 0;
2096                 if(codec->codec_id == AV_CODEC_ID_AC3)
2097                     codec->block_align= 0;
2098                 break;
2099             case AVMEDIA_TYPE_VIDEO:
2100                 codec->pix_fmt            = icodec->pix_fmt;
2101                 codec->width              = icodec->width;
2102                 codec->height             = icodec->height;
2103                 codec->has_b_frames       = icodec->has_b_frames;
2104                 if (!codec->sample_aspect_ratio.num) {
2105                     codec->sample_aspect_ratio   =
2106                     ost->st->sample_aspect_ratio =
2107                         ist->st->sample_aspect_ratio.num ? ist->st->sample_aspect_ratio :
2108                         ist->st->codec->sample_aspect_ratio.num ?
2109                         ist->st->codec->sample_aspect_ratio : (AVRational){0, 1};
2110                 }
2111                 ost->st->avg_frame_rate = ist->st->avg_frame_rate;
2112                 break;
2113             case AVMEDIA_TYPE_SUBTITLE:
2114                 codec->width  = icodec->width;
2115                 codec->height = icodec->height;
2116                 break;
2117             case AVMEDIA_TYPE_DATA:
2118             case AVMEDIA_TYPE_ATTACHMENT:
2119                 break;
2120             default:
2121                 abort();
2122             }
2123         } else {
2124             if (!ost->enc)
2125                 ost->enc = avcodec_find_encoder(codec->codec_id);
2126             if (!ost->enc) {
2127                 /* should only happen when a default codec is not present. */
2128                 snprintf(error, sizeof(error), "Encoder (codec %s) not found for output stream #%d:%d",
2129                          avcodec_get_name(ost->st->codec->codec_id), ost->file_index, ost->index);
2130                 ret = AVERROR(EINVAL);
2131                 goto dump_format;
2132             }
2133
2134             if (ist)
2135                 ist->decoding_needed++;
2136             ost->encoding_needed = 1;
2137
2138             if (!ost->filter &&
2139                 (codec->codec_type == AVMEDIA_TYPE_VIDEO ||
2140                  codec->codec_type == AVMEDIA_TYPE_AUDIO)) {
2141                     FilterGraph *fg;
2142                     fg = init_simple_filtergraph(ist, ost);
2143                     if (configure_filtergraph(fg)) {
2144                         av_log(NULL, AV_LOG_FATAL, "Error opening filters!\n");
2145                         exit(1);
2146                     }
2147             }
2148
2149             if (codec->codec_type == AVMEDIA_TYPE_VIDEO) {
2150                 if (ost->filter && !ost->frame_rate.num)
2151                     ost->frame_rate = av_buffersink_get_frame_rate(ost->filter->filter);
2152                 if (ist && !ost->frame_rate.num)
2153                     ost->frame_rate = ist->framerate;
2154                 if (ist && !ost->frame_rate.num)
2155                     ost->frame_rate = ist->st->r_frame_rate.num ? ist->st->r_frame_rate : (AVRational){25, 1};
2156 //                    ost->frame_rate = ist->st->avg_frame_rate.num ? ist->st->avg_frame_rate : (AVRational){25, 1};
2157                 if (ost->enc && ost->enc->supported_framerates && !ost->force_fps) {
2158                     int idx = av_find_nearest_q_idx(ost->frame_rate, ost->enc->supported_framerates);
2159                     ost->frame_rate = ost->enc->supported_framerates[idx];
2160                 }
2161             }
2162
2163             switch (codec->codec_type) {
2164             case AVMEDIA_TYPE_AUDIO:
2165                 codec->sample_fmt     = ost->filter->filter->inputs[0]->format;
2166                 codec->sample_rate    = ost->filter->filter->inputs[0]->sample_rate;
2167                 codec->channel_layout = ost->filter->filter->inputs[0]->channel_layout;
2168                 codec->channels       = av_get_channel_layout_nb_channels(codec->channel_layout);
2169                 codec->time_base      = (AVRational){ 1, codec->sample_rate };
2170                 break;
2171             case AVMEDIA_TYPE_VIDEO:
2172                 codec->time_base = av_inv_q(ost->frame_rate);
2173                 if (ost->filter && !(codec->time_base.num && codec->time_base.den))
2174                     codec->time_base = ost->filter->filter->inputs[0]->time_base;
2175                 if (   av_q2d(codec->time_base) < 0.001 && video_sync_method != VSYNC_PASSTHROUGH
2176                    && (video_sync_method == VSYNC_CFR || (video_sync_method == VSYNC_AUTO && !(oc->oformat->flags & AVFMT_VARIABLE_FPS)))){
2177                     av_log(oc, AV_LOG_WARNING, "Frame rate very high for a muxer not efficiently supporting it.\n"
2178                                                "Please consider specifying a lower framerate, a different muxer or -vsync 2\n");
2179                 }
2180                 for (j = 0; j < ost->forced_kf_count; j++)
2181                     ost->forced_kf_pts[j] = av_rescale_q(ost->forced_kf_pts[j],
2182                                                          AV_TIME_BASE_Q,
2183                                                          codec->time_base);
2184
2185                 codec->width  = ost->filter->filter->inputs[0]->w;
2186                 codec->height = ost->filter->filter->inputs[0]->h;
2187                 codec->sample_aspect_ratio = ost->st->sample_aspect_ratio =
2188                     ost->frame_aspect_ratio ? // overridden by the -aspect cli option
2189                     av_d2q(ost->frame_aspect_ratio * codec->height/codec->width, 255) :
2190                     ost->filter->filter->inputs[0]->sample_aspect_ratio;
2191                 codec->pix_fmt = ost->filter->filter->inputs[0]->format;
2192
2193                 if (!icodec ||
2194                     codec->width   != icodec->width  ||
2195                     codec->height  != icodec->height ||
2196                     codec->pix_fmt != icodec->pix_fmt) {
2197                     codec->bits_per_raw_sample = frame_bits_per_raw_sample;
2198                 }
2199
2200                 if (ost->forced_keyframes)
2201                     parse_forced_key_frames(ost->forced_keyframes, ost,
2202                                             ost->st->codec);
2203                 break;
2204             case AVMEDIA_TYPE_SUBTITLE:
2205                 codec->time_base = (AVRational){1, 1000};
2206                 if (!codec->width) {
2207                     codec->width     = input_streams[ost->source_index]->st->codec->width;
2208                     codec->height    = input_streams[ost->source_index]->st->codec->height;
2209                 }
2210                 break;
2211             default:
2212                 abort();
2213                 break;
2214             }
2215             /* two pass mode */
2216             if (codec->flags & (CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2)) {
2217                 char logfilename[1024];
2218                 FILE *f;
2219
2220                 snprintf(logfilename, sizeof(logfilename), "%s-%d.log",
2221                          ost->logfile_prefix ? ost->logfile_prefix :
2222                                                DEFAULT_PASS_LOGFILENAME_PREFIX,
2223                          i);
2224                 if (!strcmp(ost->enc->name, "libx264")) {
2225                     av_dict_set(&ost->opts, "stats", logfilename, AV_DICT_DONT_OVERWRITE);
2226                 } else {
2227                     if (codec->flags & CODEC_FLAG_PASS2) {
2228                         char  *logbuffer;
2229                         size_t logbuffer_size;
2230                         if (cmdutils_read_file(logfilename, &logbuffer, &logbuffer_size) < 0) {
2231                             av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n",
2232                                    logfilename);
2233                             exit(1);
2234                         }
2235                         codec->stats_in = logbuffer;
2236                     }
2237                     if (codec->flags & CODEC_FLAG_PASS1) {
2238                         f = fopen(logfilename, "wb");
2239                         if (!f) {
2240                             av_log(NULL, AV_LOG_FATAL, "Cannot write log file '%s' for pass-1 encoding: %s\n",
2241                                 logfilename, strerror(errno));
2242                             exit(1);
2243                         }
2244                         ost->logfile = f;
2245                     }
2246                 }
2247             }
2248         }
2249     }
2250
2251     /* open each encoder */
2252     for (i = 0; i < nb_output_streams; i++) {
2253         ost = output_streams[i];
2254         if (ost->encoding_needed) {
2255             AVCodec      *codec = ost->enc;
2256             AVCodecContext *dec = NULL;
2257
2258             if ((ist = get_input_stream(ost)))
2259                 dec = ist->st->codec;
2260             if (dec && dec->subtitle_header) {
2261                 /* ASS code assumes this buffer is null terminated so add extra byte. */
2262                 ost->st->codec->subtitle_header = av_mallocz(dec->subtitle_header_size + 1);
2263                 if (!ost->st->codec->subtitle_header) {
2264                     ret = AVERROR(ENOMEM);
2265                     goto dump_format;
2266                 }
2267                 memcpy(ost->st->codec->subtitle_header, dec->subtitle_header, dec->subtitle_header_size);
2268                 ost->st->codec->subtitle_header_size = dec->subtitle_header_size;
2269             }
2270             if (!av_dict_get(ost->opts, "threads", NULL, 0))
2271                 av_dict_set(&ost->opts, "threads", "auto", 0);
2272             if ((ret = avcodec_open2(ost->st->codec, codec, &ost->opts)) < 0) {
2273                 if (ret == AVERROR_EXPERIMENTAL)
2274                     abort_codec_experimental(codec, 1);
2275                 snprintf(error, sizeof(error), "Error while opening encoder for output stream #%d:%d - maybe incorrect parameters such as bit_rate, rate, width or height",
2276                         ost->file_index, ost->index);
2277                 goto dump_format;
2278             }
2279             if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
2280                 !(ost->enc->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE))
2281                 av_buffersink_set_frame_size(ost->filter->filter,
2282                                              ost->st->codec->frame_size);
2283             assert_avoptions(ost->opts);
2284             if (ost->st->codec->bit_rate && ost->st->codec->bit_rate < 1000)
2285                 av_log(NULL, AV_LOG_WARNING, "The bitrate parameter is set too low."
2286                                              " It takes bits/s as argument, not kbits/s\n");
2287             extra_size += ost->st->codec->extradata_size;
2288
2289             if (ost->st->codec->me_threshold)
2290                 input_streams[ost->source_index]->st->codec->debug |= FF_DEBUG_MV;
2291         }
2292     }
2293
2294     /* init input streams */
2295     for (i = 0; i < nb_input_streams; i++)
2296         if ((ret = init_input_stream(i, error, sizeof(error))) < 0)
2297             goto dump_format;
2298
2299     /* discard unused programs */
2300     for (i = 0; i < nb_input_files; i++) {
2301         InputFile *ifile = input_files[i];
2302         for (j = 0; j < ifile->ctx->nb_programs; j++) {
2303             AVProgram *p = ifile->ctx->programs[j];
2304             int discard  = AVDISCARD_ALL;
2305
2306             for (k = 0; k < p->nb_stream_indexes; k++)
2307                 if (!input_streams[ifile->ist_index + p->stream_index[k]]->discard) {
2308                     discard = AVDISCARD_DEFAULT;
2309                     break;
2310                 }
2311             p->discard = discard;
2312         }
2313     }
2314
2315     /* open files and write file headers */
2316     for (i = 0; i < nb_output_files; i++) {
2317         oc = output_files[i]->ctx;
2318         oc->interrupt_callback = int_cb;
2319         if ((ret = avformat_write_header(oc, &output_files[i]->opts)) < 0) {
2320             char errbuf[128];
2321             const char *errbuf_ptr = errbuf;
2322             if (av_strerror(ret, errbuf, sizeof(errbuf)) < 0)
2323                 errbuf_ptr = strerror(AVUNERROR(ret));
2324             snprintf(error, sizeof(error), "Could not write header for output file #%d (incorrect codec parameters ?): %s", i, errbuf_ptr);
2325             ret = AVERROR(EINVAL);
2326             goto dump_format;
2327         }
2328 //         assert_avoptions(output_files[i]->opts);
2329         if (strcmp(oc->oformat->name, "rtp")) {
2330             want_sdp = 0;
2331         }
2332     }
2333
2334  dump_format:
2335     /* dump the file output parameters - cannot be done before in case
2336        of stream copy */
2337     for (i = 0; i < nb_output_files; i++) {
2338         av_dump_format(output_files[i]->ctx, i, output_files[i]->ctx->filename, 1);
2339     }
2340
2341     /* dump the stream mapping */
2342     av_log(NULL, AV_LOG_INFO, "Stream mapping:\n");
2343     for (i = 0; i < nb_input_streams; i++) {
2344         ist = input_streams[i];
2345
2346         for (j = 0; j < ist->nb_filters; j++) {
2347             if (ist->filters[j]->graph->graph_desc) {
2348                 av_log(NULL, AV_LOG_INFO, "  Stream #%d:%d (%s) -> %s",
2349                        ist->file_index, ist->st->index, ist->dec ? ist->dec->name : "?",
2350                        ist->filters[j]->name);
2351                 if (nb_filtergraphs > 1)
2352                     av_log(NULL, AV_LOG_INFO, " (graph %d)", ist->filters[j]->graph->index);
2353                 av_log(NULL, AV_LOG_INFO, "\n");
2354             }
2355         }
2356     }
2357
2358     for (i = 0; i < nb_output_streams; i++) {
2359         ost = output_streams[i];
2360
2361         if (ost->attachment_filename) {
2362             /* an attached file */
2363             av_log(NULL, AV_LOG_INFO, "  File %s -> Stream #%d:%d\n",
2364                    ost->attachment_filename, ost->file_index, ost->index);
2365             continue;
2366         }
2367
2368         if (ost->filter && ost->filter->graph->graph_desc) {
2369             /* output from a complex graph */
2370             av_log(NULL, AV_LOG_INFO, "  %s", ost->filter->name);
2371             if (nb_filtergraphs > 1)
2372                 av_log(NULL, AV_LOG_INFO, " (graph %d)", ost->filter->graph->index);
2373
2374             av_log(NULL, AV_LOG_INFO, " -> Stream #%d:%d (%s)\n", ost->file_index,
2375                    ost->index, ost->enc ? ost->enc->name : "?");
2376             continue;
2377         }
2378
2379         av_log(NULL, AV_LOG_INFO, "  Stream #%d:%d -> #%d:%d",
2380                input_streams[ost->source_index]->file_index,
2381                input_streams[ost->source_index]->st->index,
2382                ost->file_index,
2383                ost->index);
2384         if (ost->sync_ist != input_streams[ost->source_index])
2385             av_log(NULL, AV_LOG_INFO, " [sync #%d:%d]",
2386                    ost->sync_ist->file_index,
2387                    ost->sync_ist->st->index);
2388         if (ost->stream_copy)
2389             av_log(NULL, AV_LOG_INFO, " (copy)");
2390         else
2391             av_log(NULL, AV_LOG_INFO, " (%s -> %s)", input_streams[ost->source_index]->dec ?
2392                    input_streams[ost->source_index]->dec->name : "?",
2393                    ost->enc ? ost->enc->name : "?");
2394         av_log(NULL, AV_LOG_INFO, "\n");
2395     }
2396
2397     if (ret) {
2398         av_log(NULL, AV_LOG_ERROR, "%s\n", error);
2399         return ret;
2400     }
2401
2402     if (want_sdp) {
2403         print_sdp();
2404     }
2405
2406     return 0;
2407 }
2408
2409 /* Return 1 if there remain streams where more output is wanted, 0 otherwise. */
2410 static int need_output(void)
2411 {
2412     int i;
2413
2414     for (i = 0; i < nb_output_streams; i++) {
2415         OutputStream *ost    = output_streams[i];
2416         OutputFile *of       = output_files[ost->file_index];
2417         AVFormatContext *os  = output_files[ost->file_index]->ctx;
2418
2419         if (ost->finished ||
2420             (os->pb && avio_tell(os->pb) >= of->limit_filesize))
2421             continue;
2422         if (ost->frame_number >= ost->max_frames) {
2423             int j;
2424             for (j = 0; j < of->ctx->nb_streams; j++)
2425                 close_output_stream(output_streams[of->ost_index + j]);
2426             continue;
2427         }
2428
2429         return 1;
2430     }
2431
2432     return 0;
2433 }
2434
2435 /**
2436  * Select the output stream to process.
2437  *
2438  * @return  selected output stream, or NULL if none available
2439  */
2440 static OutputStream *choose_output(void)
2441 {
2442     int i;
2443     int64_t opts_min = INT64_MAX;
2444     OutputStream *ost_min = NULL;
2445
2446     for (i = 0; i < nb_output_streams; i++) {
2447         OutputStream *ost = output_streams[i];
2448         int64_t opts = av_rescale_q(ost->st->cur_dts, ost->st->time_base,
2449                                     AV_TIME_BASE_Q);
2450         if (!ost->unavailable && !ost->finished && opts < opts_min) {
2451             opts_min = opts;
2452             ost_min  = ost;
2453         }
2454     }
2455     return ost_min;
2456 }
2457
2458 static int check_keyboard_interaction(int64_t cur_time)
2459 {
2460     int i, ret, key;
2461     static int64_t last_time;
2462     if (received_nb_signals)
2463         return AVERROR_EXIT;
2464     /* read_key() returns 0 on EOF */
2465     if(cur_time - last_time >= 100000 && !run_as_daemon){
2466         key =  read_key();
2467         last_time = cur_time;
2468     }else
2469         key = -1;
2470     if (key == 'q')
2471         return AVERROR_EXIT;
2472     if (key == '+') av_log_set_level(av_log_get_level()+10);
2473     if (key == '-') av_log_set_level(av_log_get_level()-10);
2474     if (key == 's') qp_hist     ^= 1;
2475     if (key == 'h'){
2476         if (do_hex_dump){
2477             do_hex_dump = do_pkt_dump = 0;
2478         } else if(do_pkt_dump){
2479             do_hex_dump = 1;
2480         } else
2481             do_pkt_dump = 1;
2482         av_log_set_level(AV_LOG_DEBUG);
2483     }
2484     if (key == 'c' || key == 'C'){
2485         char buf[4096], target[64], command[256], arg[256] = {0};
2486         double time;
2487         int k, n = 0;
2488         fprintf(stderr, "\nEnter command: <target> <time> <command>[ <argument>]\n");
2489         i = 0;
2490         while ((k = read_key()) != '\n' && k != '\r' && i < sizeof(buf)-1)
2491             if (k > 0)
2492                 buf[i++] = k;
2493         buf[i] = 0;
2494         if (k > 0 &&
2495             (n = sscanf(buf, "%63[^ ] %lf %255[^ ] %255[^\n]", target, &time, command, arg)) >= 3) {
2496             av_log(NULL, AV_LOG_DEBUG, "Processing command target:%s time:%f command:%s arg:%s",
2497                    target, time, command, arg);
2498             for (i = 0; i < nb_filtergraphs; i++) {
2499                 FilterGraph *fg = filtergraphs[i];
2500                 if (fg->graph) {
2501                     if (time < 0) {
2502                         ret = avfilter_graph_send_command(fg->graph, target, command, arg, buf, sizeof(buf),
2503                                                           key == 'c' ? AVFILTER_CMD_FLAG_ONE : 0);
2504                         fprintf(stderr, "Command reply for stream %d: ret:%d res:%s\n", i, ret, buf);
2505                     } else {
2506                         ret = avfilter_graph_queue_command(fg->graph, target, command, arg, 0, time);
2507                     }
2508                 }
2509             }
2510         } else {
2511             av_log(NULL, AV_LOG_ERROR,
2512                    "Parse error, at least 3 arguments were expected, "
2513                    "only %d given in string '%s'\n", n, buf);
2514         }
2515     }
2516     if (key == 'd' || key == 'D'){
2517         int debug=0;
2518         if(key == 'D') {
2519             debug = input_streams[0]->st->codec->debug<<1;
2520             if(!debug) debug = 1;
2521             while(debug & (FF_DEBUG_DCT_COEFF|FF_DEBUG_VIS_QP|FF_DEBUG_VIS_MB_TYPE)) //unsupported, would just crash
2522                 debug += debug;
2523         }else
2524             if(scanf("%d", &debug)!=1)
2525                 fprintf(stderr,"error parsing debug value\n");
2526         for(i=0;i<nb_input_streams;i++) {
2527             input_streams[i]->st->codec->debug = debug;
2528         }
2529         for(i=0;i<nb_output_streams;i++) {
2530             OutputStream *ost = output_streams[i];
2531             ost->st->codec->debug = debug;
2532         }
2533         if(debug) av_log_set_level(AV_LOG_DEBUG);
2534         fprintf(stderr,"debug=%d\n", debug);
2535     }
2536     if (key == '?'){
2537         fprintf(stderr, "key    function\n"
2538                         "?      show this help\n"
2539                         "+      increase verbosity\n"
2540                         "-      decrease verbosity\n"
2541                         "c      Send command to filtergraph\n"
2542                         "D      cycle through available debug modes\n"
2543                         "h      dump packets/hex press to cycle through the 3 states\n"
2544                         "q      quit\n"
2545                         "s      Show QP histogram\n"
2546         );
2547     }
2548     return 0;
2549 }
2550
2551 #if HAVE_PTHREADS
2552 static void *input_thread(void *arg)
2553 {
2554     InputFile *f = arg;
2555     int ret = 0;
2556
2557     while (!transcoding_finished && ret >= 0) {
2558         AVPacket pkt;
2559         ret = av_read_frame(f->ctx, &pkt);
2560
2561         if (ret == AVERROR(EAGAIN)) {
2562             av_usleep(10000);
2563             ret = 0;
2564             continue;
2565         } else if (ret < 0)
2566             break;
2567
2568         pthread_mutex_lock(&f->fifo_lock);
2569         while (!av_fifo_space(f->fifo))
2570             pthread_cond_wait(&f->fifo_cond, &f->fifo_lock);
2571
2572         av_dup_packet(&pkt);
2573         av_fifo_generic_write(f->fifo, &pkt, sizeof(pkt), NULL);
2574
2575         pthread_mutex_unlock(&f->fifo_lock);
2576     }
2577
2578     f->finished = 1;
2579     return NULL;
2580 }
2581
2582 static void free_input_threads(void)
2583 {
2584     int i;
2585
2586     if (nb_input_files == 1)
2587         return;
2588
2589     transcoding_finished = 1;
2590
2591     for (i = 0; i < nb_input_files; i++) {
2592         InputFile *f = input_files[i];
2593         AVPacket pkt;
2594
2595         if (!f->fifo || f->joined)
2596             continue;
2597
2598         pthread_mutex_lock(&f->fifo_lock);
2599         while (av_fifo_size(f->fifo)) {
2600             av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL);
2601             av_free_packet(&pkt);
2602         }
2603         pthread_cond_signal(&f->fifo_cond);
2604         pthread_mutex_unlock(&f->fifo_lock);
2605
2606         pthread_join(f->thread, NULL);
2607         f->joined = 1;
2608
2609         while (av_fifo_size(f->fifo)) {
2610             av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL);
2611             av_free_packet(&pkt);
2612         }
2613         av_fifo_free(f->fifo);
2614     }
2615 }
2616
2617 static int init_input_threads(void)
2618 {
2619     int i, ret;
2620
2621     if (nb_input_files == 1)
2622         return 0;
2623
2624     for (i = 0; i < nb_input_files; i++) {
2625         InputFile *f = input_files[i];
2626
2627         if (!(f->fifo = av_fifo_alloc(8*sizeof(AVPacket))))
2628             return AVERROR(ENOMEM);
2629
2630         pthread_mutex_init(&f->fifo_lock, NULL);
2631         pthread_cond_init (&f->fifo_cond, NULL);
2632
2633         if ((ret = pthread_create(&f->thread, NULL, input_thread, f)))
2634             return AVERROR(ret);
2635     }
2636     return 0;
2637 }
2638
2639 static int get_input_packet_mt(InputFile *f, AVPacket *pkt)
2640 {
2641     int ret = 0;
2642
2643     pthread_mutex_lock(&f->fifo_lock);
2644
2645     if (av_fifo_size(f->fifo)) {
2646         av_fifo_generic_read(f->fifo, pkt, sizeof(*pkt), NULL);
2647         pthread_cond_signal(&f->fifo_cond);
2648     } else {
2649         if (f->finished)
2650             ret = AVERROR_EOF;
2651         else
2652             ret = AVERROR(EAGAIN);
2653     }
2654
2655     pthread_mutex_unlock(&f->fifo_lock);
2656
2657     return ret;
2658 }
2659 #endif
2660
2661 static int get_input_packet(InputFile *f, AVPacket *pkt)
2662 {
2663 #if HAVE_PTHREADS
2664     if (nb_input_files > 1)
2665         return get_input_packet_mt(f, pkt);
2666 #endif
2667     return av_read_frame(f->ctx, pkt);
2668 }
2669
2670 static int got_eagain(void)
2671 {
2672     int i;
2673     for (i = 0; i < nb_output_streams; i++)
2674         if (output_streams[i]->unavailable)
2675             return 1;
2676     return 0;
2677 }
2678
2679 static void reset_eagain(void)
2680 {
2681     int i;
2682     for (i = 0; i < nb_input_files; i++)
2683         input_files[i]->eagain = 0;
2684     for (i = 0; i < nb_output_streams; i++)
2685         output_streams[i]->unavailable = 0;
2686 }
2687
2688 /*
2689  * Return
2690  * - 0 -- one packet was read and processed
2691  * - AVERROR(EAGAIN) -- no packets were available for selected file,
2692  *   this function should be called again
2693  * - AVERROR_EOF -- this function should not be called again
2694  */
2695 static int process_input(int file_index)
2696 {
2697     InputFile *ifile = input_files[file_index];
2698     AVFormatContext *is;
2699     InputStream *ist;
2700     AVPacket pkt;
2701     int ret, i, j;
2702
2703     is  = ifile->ctx;
2704     ret = get_input_packet(ifile, &pkt);
2705
2706     if (ret == AVERROR(EAGAIN)) {
2707         ifile->eagain = 1;
2708         return ret;
2709     }
2710     if (ret < 0) {
2711         if (ret != AVERROR_EOF) {
2712             print_error(is->filename, ret);
2713             if (exit_on_error)
2714                 exit(1);
2715         }
2716         ifile->eof_reached = 1;
2717
2718         for (i = 0; i < ifile->nb_streams; i++) {
2719             ist = input_streams[ifile->ist_index + i];
2720             if (ist->decoding_needed)
2721                 output_packet(ist, NULL);
2722
2723             /* mark all outputs that don't go through lavfi as finished */
2724             for (j = 0; j < nb_output_streams; j++) {
2725                 OutputStream *ost = output_streams[j];
2726
2727                 if (ost->source_index == ifile->ist_index + i &&
2728                     (ost->stream_copy || ost->enc->type == AVMEDIA_TYPE_SUBTITLE))
2729                     close_output_stream(ost);
2730             }
2731         }
2732
2733         return AVERROR(EAGAIN);
2734     }
2735
2736     reset_eagain();
2737
2738     if (do_pkt_dump) {
2739         av_pkt_dump_log2(NULL, AV_LOG_DEBUG, &pkt, do_hex_dump,
2740                          is->streams[pkt.stream_index]);
2741     }
2742     /* the following test is needed in case new streams appear
2743        dynamically in stream : we ignore them */
2744     if (pkt.stream_index >= ifile->nb_streams) {
2745         report_new_stream(file_index, &pkt);
2746         goto discard_packet;
2747     }
2748
2749     ist = input_streams[ifile->ist_index + pkt.stream_index];
2750     if (ist->discard)
2751         goto discard_packet;
2752
2753     if(!ist->wrap_correction_done && input_files[file_index]->ctx->start_time != AV_NOPTS_VALUE && ist->st->pts_wrap_bits < 64){
2754         int64_t stime = av_rescale_q(input_files[file_index]->ctx->start_time, AV_TIME_BASE_Q, ist->st->time_base);
2755         int64_t stime2= stime + (1ULL<<ist->st->pts_wrap_bits);
2756         ist->wrap_correction_done = 1;
2757
2758         if(stime2 > stime && pkt.dts != AV_NOPTS_VALUE && pkt.dts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
2759             pkt.dts -= 1ULL<<ist->st->pts_wrap_bits;
2760             ist->wrap_correction_done = 0;
2761         }
2762         if(stime2 > stime && pkt.pts != AV_NOPTS_VALUE && pkt.pts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
2763             pkt.pts -= 1ULL<<ist->st->pts_wrap_bits;
2764             ist->wrap_correction_done = 0;
2765         }
2766     }
2767
2768     if (pkt.dts != AV_NOPTS_VALUE)
2769         pkt.dts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
2770     if (pkt.pts != AV_NOPTS_VALUE)
2771         pkt.pts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
2772
2773     if (pkt.pts != AV_NOPTS_VALUE)
2774         pkt.pts *= ist->ts_scale;
2775     if (pkt.dts != AV_NOPTS_VALUE)
2776         pkt.dts *= ist->ts_scale;
2777
2778     if (debug_ts) {
2779         av_log(NULL, AV_LOG_INFO, "demuxer -> ist_index:%d type:%s "
2780                 "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:%"PRId64"\n",
2781                 ifile->ist_index + pkt.stream_index, av_get_media_type_string(ist->st->codec->codec_type),
2782                 av_ts2str(ist->next_dts), av_ts2timestr(ist->next_dts, &AV_TIME_BASE_Q),
2783                 av_ts2str(ist->next_pts), av_ts2timestr(ist->next_pts, &AV_TIME_BASE_Q),
2784                 av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ist->st->time_base),
2785                 av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ist->st->time_base),
2786                 input_files[ist->file_index]->ts_offset);
2787     }
2788
2789     if (pkt.dts != AV_NOPTS_VALUE && ist->next_dts != AV_NOPTS_VALUE &&
2790         !copy_ts) {
2791         int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
2792         int64_t delta   = pkt_dts - ist->next_dts;
2793         if (is->iformat->flags & AVFMT_TS_DISCONT) {
2794         if(delta < -1LL*dts_delta_threshold*AV_TIME_BASE ||
2795             (delta > 1LL*dts_delta_threshold*AV_TIME_BASE &&
2796                 ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE) ||
2797             pkt_dts+1<ist->pts){
2798             ifile->ts_offset -= delta;
2799             av_log(NULL, AV_LOG_DEBUG,
2800                    "timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",
2801                    delta, ifile->ts_offset);
2802             pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
2803             if (pkt.pts != AV_NOPTS_VALUE)
2804                 pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
2805         }
2806         } else {
2807             if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
2808                 (delta > 1LL*dts_error_threshold*AV_TIME_BASE && ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE)
2809                ) {
2810                 av_log(NULL, AV_LOG_WARNING, "DTS %"PRId64", next:%"PRId64" st:%d invalid dropping\n", pkt.dts, ist->next_dts, pkt.stream_index);
2811                 pkt.dts = AV_NOPTS_VALUE;
2812             }
2813             if (pkt.pts != AV_NOPTS_VALUE){
2814                 int64_t pkt_pts = av_rescale_q(pkt.pts, ist->st->time_base, AV_TIME_BASE_Q);
2815                 delta   = pkt_pts - ist->next_dts;
2816                 if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
2817                     (delta > 1LL*dts_error_threshold*AV_TIME_BASE && ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE)
2818                    ) {
2819                     av_log(NULL, AV_LOG_WARNING, "PTS %"PRId64", next:%"PRId64" invalid dropping st:%d\n", pkt.pts, ist->next_dts, pkt.stream_index);
2820                     pkt.pts = AV_NOPTS_VALUE;
2821                 }
2822             }
2823         }
2824     }
2825
2826     sub2video_heartbeat(ist, pkt.pts);
2827
2828     ret = output_packet(ist, &pkt);
2829     if (ret < 0) {
2830         char buf[128];
2831         av_strerror(ret, buf, sizeof(buf));
2832         av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d: %s\n",
2833                 ist->file_index, ist->st->index, buf);
2834         if (exit_on_error)
2835             exit(1);
2836     }
2837
2838 discard_packet:
2839     av_free_packet(&pkt);
2840
2841     return 0;
2842 }
2843
2844 /**
2845  * Perform a step of transcoding for the specified filter graph.
2846  *
2847  * @param[in]  graph     filter graph to consider
2848  * @param[out] best_ist  input stream where a frame would allow to continue
2849  * @return  0 for success, <0 for error
2850  */
2851 static int transcode_from_filter(FilterGraph *graph, InputStream **best_ist)
2852 {
2853     int i, ret;
2854     int nb_requests, nb_requests_max = 0;
2855     InputFilter *ifilter;
2856     InputStream *ist;
2857
2858     *best_ist = NULL;
2859     ret = avfilter_graph_request_oldest(graph->graph);
2860     if (ret >= 0)
2861         return reap_filters();
2862
2863     if (ret == AVERROR_EOF) {
2864         ret = reap_filters();
2865         for (i = 0; i < graph->nb_outputs; i++)
2866             close_output_stream(graph->outputs[i]->ost);
2867         return ret;
2868     }
2869     if (ret != AVERROR(EAGAIN))
2870         return ret;
2871
2872     for (i = 0; i < graph->nb_inputs; i++) {
2873         ifilter = graph->inputs[i];
2874         ist = ifilter->ist;
2875         if (input_files[ist->file_index]->eagain ||
2876             input_files[ist->file_index]->eof_reached)
2877             continue;
2878         nb_requests = av_buffersrc_get_nb_failed_requests(ifilter->filter);
2879         if (nb_requests > nb_requests_max) {
2880             nb_requests_max = nb_requests;
2881             *best_ist = ist;
2882         }
2883     }
2884
2885     if (!*best_ist)
2886         for (i = 0; i < graph->nb_outputs; i++)
2887             graph->outputs[i]->ost->unavailable = 1;
2888
2889     return 0;
2890 }
2891
2892 /**
2893  * Run a single step of transcoding.
2894  *
2895  * @return  0 for success, <0 for error
2896  */
2897 static int transcode_step(void)
2898 {
2899     OutputStream *ost;
2900     InputStream  *ist;
2901     int ret;
2902
2903     ost = choose_output();
2904     if (!ost) {
2905         if (got_eagain()) {
2906             reset_eagain();
2907             av_usleep(10000);
2908             return 0;
2909         }
2910         av_log(NULL, AV_LOG_VERBOSE, "No more inputs to read from, finishing.\n");
2911         return AVERROR_EOF;
2912     }
2913
2914     if (ost->filter) {
2915         if ((ret = transcode_from_filter(ost->filter->graph, &ist)) < 0)
2916             return ret;
2917         if (!ist)
2918             return 0;
2919     } else {
2920         av_assert0(ost->source_index >= 0);
2921         ist = input_streams[ost->source_index];
2922     }
2923
2924     ret = process_input(ist->file_index);
2925     if (ret == AVERROR(EAGAIN)) {
2926         if (input_files[ist->file_index]->eagain)
2927             ost->unavailable = 1;
2928         return 0;
2929     }
2930     if (ret < 0)
2931         return ret == AVERROR_EOF ? 0 : ret;
2932
2933     return reap_filters();
2934 }
2935
2936 /*
2937  * The following code is the main loop of the file converter
2938  */
2939 static int transcode(void)
2940 {
2941     int ret, i;
2942     AVFormatContext *os;
2943     OutputStream *ost;
2944     InputStream *ist;
2945     int64_t timer_start;
2946
2947     ret = transcode_init();
2948     if (ret < 0)
2949         goto fail;
2950
2951     if (stdin_interaction) {
2952         av_log(NULL, AV_LOG_INFO, "Press [q] to stop, [?] for help\n");
2953     }
2954
2955     timer_start = av_gettime();
2956
2957 #if HAVE_PTHREADS
2958     if ((ret = init_input_threads()) < 0)
2959         goto fail;
2960 #endif
2961
2962     while (!received_sigterm) {
2963         int64_t cur_time= av_gettime();
2964
2965         /* if 'q' pressed, exits */
2966         if (stdin_interaction)
2967             if (check_keyboard_interaction(cur_time) < 0)
2968                 break;
2969
2970         /* check if there's any stream where output is still needed */
2971         if (!need_output()) {
2972             av_log(NULL, AV_LOG_VERBOSE, "No more output streams to write to, finishing.\n");
2973             break;
2974         }
2975
2976         ret = transcode_step();
2977         if (ret < 0) {
2978             if (ret == AVERROR_EOF || ret == AVERROR(EAGAIN))
2979                 continue;
2980
2981             av_log(NULL, AV_LOG_ERROR, "Error while filtering.\n");
2982             break;
2983         }
2984
2985         /* dump report by using the output first video and audio streams */
2986         print_report(0, timer_start, cur_time);
2987     }
2988 #if HAVE_PTHREADS
2989     free_input_threads();
2990 #endif
2991
2992     /* at the end of stream, we must flush the decoder buffers */
2993     for (i = 0; i < nb_input_streams; i++) {
2994         ist = input_streams[i];
2995         if (!input_files[ist->file_index]->eof_reached && ist->decoding_needed) {
2996             output_packet(ist, NULL);
2997         }
2998     }
2999     flush_encoders();
3000
3001     term_exit();
3002
3003     /* write the trailer if needed and close file */
3004     for (i = 0; i < nb_output_files; i++) {
3005         os = output_files[i]->ctx;
3006         av_write_trailer(os);
3007     }
3008
3009     /* dump report by using the first video and audio streams */
3010     print_report(1, timer_start, av_gettime());
3011
3012     /* close each encoder */
3013     for (i = 0; i < nb_output_streams; i++) {
3014         ost = output_streams[i];
3015         if (ost->encoding_needed) {
3016             av_freep(&ost->st->codec->stats_in);
3017             avcodec_close(ost->st->codec);
3018         }
3019     }
3020
3021     /* close each decoder */
3022     for (i = 0; i < nb_input_streams; i++) {
3023         ist = input_streams[i];
3024         if (ist->decoding_needed) {
3025             avcodec_close(ist->st->codec);
3026         }
3027     }
3028
3029     /* finished ! */
3030     ret = 0;
3031
3032  fail:
3033 #if HAVE_PTHREADS
3034     free_input_threads();
3035 #endif
3036
3037     if (output_streams) {
3038         for (i = 0; i < nb_output_streams; i++) {
3039             ost = output_streams[i];
3040             if (ost) {
3041                 if (ost->stream_copy)
3042                     av_freep(&ost->st->codec->extradata);
3043                 if (ost->logfile) {
3044                     fclose(ost->logfile);
3045                     ost->logfile = NULL;
3046                 }
3047                 av_freep(&ost->st->codec->subtitle_header);
3048                 av_free(ost->forced_kf_pts);
3049                 av_dict_free(&ost->opts);
3050             }
3051         }
3052     }
3053     return ret;
3054 }
3055
3056
3057 static int64_t getutime(void)
3058 {
3059 #if HAVE_GETRUSAGE
3060     struct rusage rusage;
3061
3062     getrusage(RUSAGE_SELF, &rusage);
3063     return (rusage.ru_utime.tv_sec * 1000000LL) + rusage.ru_utime.tv_usec;
3064 #elif HAVE_GETPROCESSTIMES
3065     HANDLE proc;
3066     FILETIME c, e, k, u;
3067     proc = GetCurrentProcess();
3068     GetProcessTimes(proc, &c, &e, &k, &u);
3069     return ((int64_t) u.dwHighDateTime << 32 | u.dwLowDateTime) / 10;
3070 #else
3071     return av_gettime();
3072 #endif
3073 }
3074
3075 static int64_t getmaxrss(void)
3076 {
3077 #if HAVE_GETRUSAGE && HAVE_STRUCT_RUSAGE_RU_MAXRSS
3078     struct rusage rusage;
3079     getrusage(RUSAGE_SELF, &rusage);
3080     return (int64_t)rusage.ru_maxrss * 1024;
3081 #elif HAVE_GETPROCESSMEMORYINFO
3082     HANDLE proc;
3083     PROCESS_MEMORY_COUNTERS memcounters;
3084     proc = GetCurrentProcess();
3085     memcounters.cb = sizeof(memcounters);
3086     GetProcessMemoryInfo(proc, &memcounters, sizeof(memcounters));
3087     return memcounters.PeakPagefileUsage;
3088 #else
3089     return 0;
3090 #endif
3091 }
3092
3093 static void log_callback_null(void *ptr, int level, const char *fmt, va_list vl)
3094 {
3095 }
3096
3097 static void parse_cpuflags(int argc, char **argv, const OptionDef *options)
3098 {
3099     int idx = locate_option(argc, argv, options, "cpuflags");
3100     if (idx && argv[idx + 1])
3101         opt_cpuflags(NULL, "cpuflags", argv[idx + 1]);
3102 }
3103
3104 int main(int argc, char **argv)
3105 {
3106     OptionsContext o = { 0 };
3107     int64_t ti;
3108
3109     atexit(exit_program);
3110
3111     reset_options(&o, 0);
3112
3113     setvbuf(stderr,NULL,_IONBF,0); /* win32 runtime needs this */
3114
3115     av_log_set_flags(AV_LOG_SKIP_REPEATED);
3116     parse_loglevel(argc, argv, options);
3117
3118     if(argc>1 && !strcmp(argv[1], "-d")){
3119         run_as_daemon=1;
3120         av_log_set_callback(log_callback_null);
3121         argc--;
3122         argv++;
3123     }
3124
3125     avcodec_register_all();
3126 #if CONFIG_AVDEVICE
3127     avdevice_register_all();
3128 #endif
3129     avfilter_register_all();
3130     av_register_all();
3131     avformat_network_init();
3132
3133     show_banner(argc, argv, options);
3134
3135     term_init();
3136
3137     parse_cpuflags(argc, argv, options);
3138
3139     /* parse options */
3140     parse_options(&o, argc, argv, options, opt_output_file);
3141
3142     if (nb_output_files <= 0 && nb_input_files == 0) {
3143         show_usage();
3144         av_log(NULL, AV_LOG_WARNING, "Use -h to get full help or, even better, run 'man %s'\n", program_name);
3145         exit(1);
3146     }
3147
3148     /* file converter / grab */
3149     if (nb_output_files <= 0) {
3150         av_log(NULL, AV_LOG_FATAL, "At least one output file must be specified\n");
3151         exit(1);
3152     }
3153
3154 //     if (nb_input_files == 0) {
3155 //         av_log(NULL, AV_LOG_FATAL, "At least one input file must be specified\n");
3156 //         exit(1);
3157 //     }
3158
3159     current_time = ti = getutime();
3160     if (transcode() < 0)
3161         exit(1);
3162     ti = getutime() - ti;
3163     if (do_benchmark) {
3164         int maxrss = getmaxrss() / 1024;
3165         printf("bench: utime=%0.3fs maxrss=%ikB\n", ti / 1000000.0, maxrss);
3166     }
3167
3168     exit(0);
3169     return 0;
3170 }