]> git.sesse.net Git - ffmpeg/blob - ffmpeg.c
iff demuxer: support RGB8 and RGBN
[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         if (enc->coded_frame->interlaced_frame)
850             enc->field_order = enc->coded_frame->top_field_first ? AV_FIELD_TB:AV_FIELD_BT;
851         else
852             enc->field_order = AV_FIELD_PROGRESSIVE;
853         pkt.data   = (uint8_t *)in_picture;
854         pkt.size   =  sizeof(AVPicture);
855         pkt.pts    = av_rescale_q(in_picture->pts, enc->time_base, ost->st->time_base);
856         pkt.flags |= AV_PKT_FLAG_KEY;
857
858         video_size += pkt.size;
859         write_frame(s, &pkt, ost);
860     } else {
861         int got_packet;
862         AVFrame big_picture;
863
864         big_picture = *in_picture;
865         /* better than nothing: use input picture interlaced
866            settings */
867         big_picture.interlaced_frame = in_picture->interlaced_frame;
868         if (ost->st->codec->flags & (CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_INTERLACED_ME)) {
869             if (ost->top_field_first == -1)
870                 big_picture.top_field_first = in_picture->top_field_first;
871             else
872                 big_picture.top_field_first = !!ost->top_field_first;
873         }
874
875         if (big_picture.interlaced_frame) {
876             if (enc->codec->id == AV_CODEC_ID_MJPEG)
877                 enc->field_order = big_picture.top_field_first ? AV_FIELD_TT:AV_FIELD_BB;
878             else
879                 enc->field_order = big_picture.top_field_first ? AV_FIELD_TB:AV_FIELD_BT;
880         } else
881             enc->field_order = AV_FIELD_PROGRESSIVE;
882
883         big_picture.quality = ost->st->codec->global_quality;
884         if (!enc->me_threshold)
885             big_picture.pict_type = 0;
886         if (ost->forced_kf_index < ost->forced_kf_count &&
887             big_picture.pts >= ost->forced_kf_pts[ost->forced_kf_index]) {
888             big_picture.pict_type = AV_PICTURE_TYPE_I;
889             ost->forced_kf_index++;
890         }
891         update_benchmark(NULL);
892         ret = avcodec_encode_video2(enc, &pkt, &big_picture, &got_packet);
893         update_benchmark("encode_video %d.%d", ost->file_index, ost->index);
894         if (ret < 0) {
895             av_log(NULL, AV_LOG_FATAL, "Video encoding failed\n");
896             exit(1);
897         }
898
899         if (got_packet) {
900             if (pkt.pts == AV_NOPTS_VALUE && !(enc->codec->capabilities & CODEC_CAP_DELAY))
901                 pkt.pts = ost->sync_opts;
902
903             if (pkt.pts != AV_NOPTS_VALUE)
904                 pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base);
905             if (pkt.dts != AV_NOPTS_VALUE)
906                 pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base);
907
908             if (debug_ts) {
909                 av_log(NULL, AV_LOG_INFO, "encoder -> type:video "
910                     "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
911                     av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ost->st->time_base),
912                     av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ost->st->time_base));
913             }
914
915             frame_size = pkt.size;
916             video_size += pkt.size;
917             write_frame(s, &pkt, ost);
918             av_free_packet(&pkt);
919
920             /* if two pass, output log */
921             if (ost->logfile && enc->stats_out) {
922                 fprintf(ost->logfile, "%s", enc->stats_out);
923             }
924         }
925     }
926     ost->sync_opts++;
927     /*
928      * For video, number of frames in == number of packets out.
929      * But there may be reordering, so we can't throw away frames on encoder
930      * flush, we need to limit them here, before they go into encoder.
931      */
932     ost->frame_number++;
933   }
934
935     if (vstats_filename && frame_size)
936         do_video_stats(ost, frame_size);
937 }
938
939 static double psnr(double d)
940 {
941     return -10.0 * log(d) / log(10.0);
942 }
943
944 static void do_video_stats(OutputStream *ost, int frame_size)
945 {
946     AVCodecContext *enc;
947     int frame_number;
948     double ti1, bitrate, avg_bitrate;
949
950     /* this is executed just the first time do_video_stats is called */
951     if (!vstats_file) {
952         vstats_file = fopen(vstats_filename, "w");
953         if (!vstats_file) {
954             perror("fopen");
955             exit(1);
956         }
957     }
958
959     enc = ost->st->codec;
960     if (enc->codec_type == AVMEDIA_TYPE_VIDEO) {
961         frame_number = ost->st->nb_frames;
962         fprintf(vstats_file, "frame= %5d q= %2.1f ", frame_number, enc->coded_frame->quality / (float)FF_QP2LAMBDA);
963         if (enc->flags&CODEC_FLAG_PSNR)
964             fprintf(vstats_file, "PSNR= %6.2f ", psnr(enc->coded_frame->error[0] / (enc->width * enc->height * 255.0 * 255.0)));
965
966         fprintf(vstats_file,"f_size= %6d ", frame_size);
967         /* compute pts value */
968         ti1 = ost->st->pts.val * av_q2d(enc->time_base);
969         if (ti1 < 0.01)
970             ti1 = 0.01;
971
972         bitrate     = (frame_size * 8) / av_q2d(enc->time_base) / 1000.0;
973         avg_bitrate = (double)(video_size * 8) / ti1 / 1000.0;
974         fprintf(vstats_file, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ",
975                (double)video_size / 1024, ti1, bitrate, avg_bitrate);
976         fprintf(vstats_file, "type= %c\n", av_get_picture_type_char(enc->coded_frame->pict_type));
977     }
978 }
979
980 /**
981  * Get and encode new output from any of the filtergraphs, without causing
982  * activity.
983  *
984  * @return  0 for success, <0 for severe errors
985  */
986 static int reap_filters(void)
987 {
988     AVFilterBufferRef *picref;
989     AVFrame *filtered_frame = NULL;
990     int i;
991     int64_t frame_pts;
992
993     /* Reap all buffers present in the buffer sinks */
994     for (i = 0; i < nb_output_streams; i++) {
995         OutputStream *ost = output_streams[i];
996         OutputFile    *of = output_files[ost->file_index];
997         int ret = 0;
998
999         if (!ost->filter)
1000             continue;
1001
1002         if (!ost->filtered_frame && !(ost->filtered_frame = avcodec_alloc_frame())) {
1003             return AVERROR(ENOMEM);
1004         } else
1005             avcodec_get_frame_defaults(ost->filtered_frame);
1006         filtered_frame = ost->filtered_frame;
1007
1008         while (1) {
1009             ret = av_buffersink_get_buffer_ref(ost->filter->filter, &picref,
1010                                                AV_BUFFERSINK_FLAG_NO_REQUEST);
1011             if (ret < 0) {
1012                 if (ret != AVERROR(EAGAIN) && ret != AVERROR_EOF) {
1013                     char buf[256];
1014                     av_strerror(ret, buf, sizeof(buf));
1015                     av_log(NULL, AV_LOG_WARNING,
1016                            "Error in av_buffersink_get_buffer_ref(): %s\n", buf);
1017                 }
1018                 break;
1019             }
1020             frame_pts = AV_NOPTS_VALUE;
1021             if (picref->pts != AV_NOPTS_VALUE) {
1022                 filtered_frame->pts = frame_pts = av_rescale_q(picref->pts,
1023                                                 ost->filter->filter->inputs[0]->time_base,
1024                                                 ost->st->codec->time_base) -
1025                                     av_rescale_q(of->start_time,
1026                                                 AV_TIME_BASE_Q,
1027                                                 ost->st->codec->time_base);
1028
1029                 if (of->start_time && filtered_frame->pts < 0) {
1030                     avfilter_unref_buffer(picref);
1031                     continue;
1032                 }
1033             }
1034             //if (ost->source_index >= 0)
1035             //    *filtered_frame= *input_streams[ost->source_index]->decoded_frame; //for me_threshold
1036
1037
1038             switch (ost->filter->filter->inputs[0]->type) {
1039             case AVMEDIA_TYPE_VIDEO:
1040                 avfilter_copy_buf_props(filtered_frame, picref);
1041                 filtered_frame->pts = frame_pts;
1042                 if (!ost->frame_aspect_ratio)
1043                     ost->st->codec->sample_aspect_ratio = picref->video->sample_aspect_ratio;
1044
1045                 do_video_out(of->ctx, ost, filtered_frame);
1046                 break;
1047             case AVMEDIA_TYPE_AUDIO:
1048                 avfilter_copy_buf_props(filtered_frame, picref);
1049                 filtered_frame->pts = frame_pts;
1050                 do_audio_out(of->ctx, ost, filtered_frame);
1051                 break;
1052             default:
1053                 // TODO support subtitle filters
1054                 av_assert0(0);
1055             }
1056
1057             avfilter_unref_buffer(picref);
1058         }
1059     }
1060
1061     return 0;
1062 }
1063
1064 static void print_report(int is_last_report, int64_t timer_start, int64_t cur_time)
1065 {
1066     char buf[1024];
1067     AVBPrint buf_script;
1068     OutputStream *ost;
1069     AVFormatContext *oc;
1070     int64_t total_size;
1071     AVCodecContext *enc;
1072     int frame_number, vid, i;
1073     double bitrate;
1074     int64_t pts = INT64_MIN;
1075     static int64_t last_time = -1;
1076     static int qp_histogram[52];
1077     int hours, mins, secs, us;
1078
1079     if (!print_stats && !is_last_report && !progress_avio)
1080         return;
1081
1082     if (!is_last_report) {
1083         if (last_time == -1) {
1084             last_time = cur_time;
1085             return;
1086         }
1087         if ((cur_time - last_time) < 500000)
1088             return;
1089         last_time = cur_time;
1090     }
1091
1092
1093     oc = output_files[0]->ctx;
1094
1095     total_size = avio_size(oc->pb);
1096     if (total_size <= 0) // FIXME improve avio_size() so it works with non seekable output too
1097         total_size = avio_tell(oc->pb);
1098     if (total_size < 0) {
1099         char errbuf[128];
1100         av_strerror(total_size, errbuf, sizeof(errbuf));
1101         av_log(NULL, AV_LOG_VERBOSE, "Bitrate not available, "
1102                "avio_tell() failed: %s\n", errbuf);
1103         total_size = 0;
1104     }
1105
1106     buf[0] = '\0';
1107     vid = 0;
1108     av_bprint_init(&buf_script, 0, 1);
1109     for (i = 0; i < nb_output_streams; i++) {
1110         float q = -1;
1111         ost = output_streams[i];
1112         enc = ost->st->codec;
1113         if (!ost->stream_copy && enc->coded_frame)
1114             q = enc->coded_frame->quality / (float)FF_QP2LAMBDA;
1115         if (vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1116             snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "q=%2.1f ", q);
1117             av_bprintf(&buf_script, "stream_%d_%d_q=%.1f\n",
1118                        ost->file_index, ost->index, q);
1119         }
1120         if (!vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1121             float fps, t = (cur_time-timer_start) / 1000000.0;
1122
1123             frame_number = ost->frame_number;
1124             fps = t > 1 ? frame_number / t : 0;
1125             snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "frame=%5d fps=%3.*f q=%3.1f ",
1126                      frame_number, fps < 9.95, fps, q);
1127             av_bprintf(&buf_script, "frame=%d\n", frame_number);
1128             av_bprintf(&buf_script, "fps=%.1f\n", fps);
1129             av_bprintf(&buf_script, "stream_%d_%d_q=%.1f\n",
1130                        ost->file_index, ost->index, q);
1131             if (is_last_report)
1132                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "L");
1133             if (qp_hist) {
1134                 int j;
1135                 int qp = lrintf(q);
1136                 if (qp >= 0 && qp < FF_ARRAY_ELEMS(qp_histogram))
1137                     qp_histogram[qp]++;
1138                 for (j = 0; j < 32; j++)
1139                     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%X", (int)lrintf(log2(qp_histogram[j] + 1)));
1140             }
1141             if ((enc->flags&CODEC_FLAG_PSNR) && (enc->coded_frame || is_last_report)) {
1142                 int j;
1143                 double error, error_sum = 0;
1144                 double scale, scale_sum = 0;
1145                 double p;
1146                 char type[3] = { 'Y','U','V' };
1147                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "PSNR=");
1148                 for (j = 0; j < 3; j++) {
1149                     if (is_last_report) {
1150                         error = enc->error[j];
1151                         scale = enc->width * enc->height * 255.0 * 255.0 * frame_number;
1152                     } else {
1153                         error = enc->coded_frame->error[j];
1154                         scale = enc->width * enc->height * 255.0 * 255.0;
1155                     }
1156                     if (j)
1157                         scale /= 4;
1158                     error_sum += error;
1159                     scale_sum += scale;
1160                     p = psnr(error / scale);
1161                     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%c:%2.2f ", type[j], p);
1162                     av_bprintf(&buf_script, "stream_%d_%d_psnr_%c=%2.2f\n",
1163                                ost->file_index, ost->index, type[i] | 32, p);
1164                 }
1165                 p = psnr(error_sum / scale_sum);
1166                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "*:%2.2f ", psnr(error_sum / scale_sum));
1167                 av_bprintf(&buf_script, "stream_%d_%d_psnr_all=%2.2f\n",
1168                            ost->file_index, ost->index, p);
1169             }
1170             vid = 1;
1171         }
1172         /* compute min output value */
1173         if ((is_last_report || !ost->finished) && ost->st->pts.val != AV_NOPTS_VALUE)
1174             pts = FFMAX(pts, av_rescale_q(ost->st->pts.val,
1175                                           ost->st->time_base, AV_TIME_BASE_Q));
1176     }
1177
1178     secs = pts / AV_TIME_BASE;
1179     us = pts % AV_TIME_BASE;
1180     mins = secs / 60;
1181     secs %= 60;
1182     hours = mins / 60;
1183     mins %= 60;
1184
1185     bitrate = pts ? total_size * 8 / (pts / 1000.0) : 0;
1186
1187     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1188              "size=%8.0fkB time=", total_size / 1024.0);
1189     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1190              "%02d:%02d:%02d.%02d ", hours, mins, secs,
1191              (100 * us) / AV_TIME_BASE);
1192     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1193              "bitrate=%6.1fkbits/s", bitrate);
1194     av_bprintf(&buf_script, "total_size=%"PRId64"\n", total_size);
1195     av_bprintf(&buf_script, "out_time_ms=%"PRId64"\n", pts);
1196     av_bprintf(&buf_script, "out_time=%02d:%02d:%02d.%06d\n",
1197                hours, mins, secs, us);
1198
1199     if (nb_frames_dup || nb_frames_drop)
1200         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " dup=%d drop=%d",
1201                 nb_frames_dup, nb_frames_drop);
1202     av_bprintf(&buf_script, "dup_frames=%d\n", nb_frames_dup);
1203     av_bprintf(&buf_script, "drop_frames=%d\n", nb_frames_drop);
1204
1205     if (print_stats || is_last_report) {
1206     av_log(NULL, AV_LOG_INFO, "%s    \r", buf);
1207
1208     fflush(stderr);
1209     }
1210
1211     if (progress_avio) {
1212         av_bprintf(&buf_script, "progress=%s\n",
1213                    is_last_report ? "end" : "continue");
1214         avio_write(progress_avio, buf_script.str,
1215                    FFMIN(buf_script.len, buf_script.size - 1));
1216         avio_flush(progress_avio);
1217         av_bprint_finalize(&buf_script, NULL);
1218         if (is_last_report) {
1219             avio_close(progress_avio);
1220             progress_avio = NULL;
1221         }
1222     }
1223
1224     if (is_last_report) {
1225         int64_t raw= audio_size + video_size + subtitle_size + extra_size;
1226         av_log(NULL, AV_LOG_INFO, "\n");
1227         av_log(NULL, AV_LOG_INFO, "video:%1.0fkB audio:%1.0fkB subtitle:%1.0f global headers:%1.0fkB muxing overhead %f%%\n",
1228                video_size / 1024.0,
1229                audio_size / 1024.0,
1230                subtitle_size / 1024.0,
1231                extra_size / 1024.0,
1232                100.0 * (total_size - raw) / raw
1233         );
1234         if(video_size + audio_size + subtitle_size + extra_size == 0){
1235             av_log(NULL, AV_LOG_WARNING, "Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used)\n");
1236         }
1237     }
1238 }
1239
1240 static void flush_encoders(void)
1241 {
1242     int i, ret;
1243
1244     for (i = 0; i < nb_output_streams; i++) {
1245         OutputStream   *ost = output_streams[i];
1246         AVCodecContext *enc = ost->st->codec;
1247         AVFormatContext *os = output_files[ost->file_index]->ctx;
1248         int stop_encoding = 0;
1249
1250         if (!ost->encoding_needed)
1251             continue;
1252
1253         if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && enc->frame_size <= 1)
1254             continue;
1255         if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (os->oformat->flags & AVFMT_RAWPICTURE) && enc->codec->id == AV_CODEC_ID_RAWVIDEO)
1256             continue;
1257
1258         for (;;) {
1259             int (*encode)(AVCodecContext*, AVPacket*, const AVFrame*, int*) = NULL;
1260             const char *desc;
1261             int64_t *size;
1262
1263             switch (ost->st->codec->codec_type) {
1264             case AVMEDIA_TYPE_AUDIO:
1265                 encode = avcodec_encode_audio2;
1266                 desc   = "Audio";
1267                 size   = &audio_size;
1268                 break;
1269             case AVMEDIA_TYPE_VIDEO:
1270                 encode = avcodec_encode_video2;
1271                 desc   = "Video";
1272                 size   = &video_size;
1273                 break;
1274             default:
1275                 stop_encoding = 1;
1276             }
1277
1278             if (encode) {
1279                 AVPacket pkt;
1280                 int got_packet;
1281                 av_init_packet(&pkt);
1282                 pkt.data = NULL;
1283                 pkt.size = 0;
1284
1285                 update_benchmark(NULL);
1286                 ret = encode(enc, &pkt, NULL, &got_packet);
1287                 update_benchmark("flush %s %d.%d", desc, ost->file_index, ost->index);
1288                 if (ret < 0) {
1289                     av_log(NULL, AV_LOG_FATAL, "%s encoding failed\n", desc);
1290                     exit(1);
1291                 }
1292                 *size += pkt.size;
1293                 if (ost->logfile && enc->stats_out) {
1294                     fprintf(ost->logfile, "%s", enc->stats_out);
1295                 }
1296                 if (!got_packet) {
1297                     stop_encoding = 1;
1298                     break;
1299                 }
1300                 if (pkt.pts != AV_NOPTS_VALUE)
1301                     pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base);
1302                 if (pkt.dts != AV_NOPTS_VALUE)
1303                     pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base);
1304                 if (pkt.duration > 0)
1305                     pkt.duration = av_rescale_q(pkt.duration, enc->time_base, ost->st->time_base);
1306                 write_frame(os, &pkt, ost);
1307                 if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && vstats_filename) {
1308                     do_video_stats(ost, pkt.size);
1309                 }
1310             }
1311
1312             if (stop_encoding)
1313                 break;
1314         }
1315     }
1316 }
1317
1318 /*
1319  * Check whether a packet from ist should be written into ost at this time
1320  */
1321 static int check_output_constraints(InputStream *ist, OutputStream *ost)
1322 {
1323     OutputFile *of = output_files[ost->file_index];
1324     int ist_index  = input_files[ist->file_index]->ist_index + ist->st->index;
1325
1326     if (ost->source_index != ist_index)
1327         return 0;
1328
1329     if (of->start_time && ist->pts < of->start_time)
1330         return 0;
1331
1332     return 1;
1333 }
1334
1335 static void do_streamcopy(InputStream *ist, OutputStream *ost, const AVPacket *pkt)
1336 {
1337     OutputFile *of = output_files[ost->file_index];
1338     int64_t ost_tb_start_time = av_rescale_q(of->start_time, AV_TIME_BASE_Q, ost->st->time_base);
1339     AVPicture pict;
1340     AVPacket opkt;
1341
1342     av_init_packet(&opkt);
1343
1344     if ((!ost->frame_number && !(pkt->flags & AV_PKT_FLAG_KEY)) &&
1345         !ost->copy_initial_nonkeyframes)
1346         return;
1347
1348     if (!ost->frame_number && ist->pts < of->start_time &&
1349         !ost->copy_prior_start)
1350         return;
1351
1352     if (of->recording_time != INT64_MAX &&
1353         ist->pts >= of->recording_time + of->start_time) {
1354         close_output_stream(ost);
1355         return;
1356     }
1357
1358     /* force the input stream PTS */
1359     if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO)
1360         audio_size += pkt->size;
1361     else if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
1362         video_size += pkt->size;
1363         ost->sync_opts++;
1364     } else if (ost->st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
1365         subtitle_size += pkt->size;
1366     }
1367
1368     if (pkt->pts != AV_NOPTS_VALUE)
1369         opkt.pts = av_rescale_q(pkt->pts, ist->st->time_base, ost->st->time_base) - ost_tb_start_time;
1370     else
1371         opkt.pts = AV_NOPTS_VALUE;
1372
1373     if (pkt->dts == AV_NOPTS_VALUE)
1374         opkt.dts = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ost->st->time_base);
1375     else
1376         opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base);
1377     opkt.dts -= ost_tb_start_time;
1378
1379     if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && pkt->dts != AV_NOPTS_VALUE) {
1380         int duration = av_get_audio_frame_duration(ist->st->codec, pkt->size);
1381         if(!duration)
1382             duration = ist->st->codec->frame_size;
1383         opkt.dts = opkt.pts = av_rescale_delta(ist->st->time_base, pkt->dts,
1384                                                (AVRational){1, ist->st->codec->sample_rate}, duration, &ist->filter_in_rescale_delta_last,
1385                                                ost->st->time_base) - ost_tb_start_time;
1386     }
1387
1388     opkt.duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->st->time_base);
1389     opkt.flags    = pkt->flags;
1390
1391     // FIXME remove the following 2 lines they shall be replaced by the bitstream filters
1392     if (  ost->st->codec->codec_id != AV_CODEC_ID_H264
1393        && ost->st->codec->codec_id != AV_CODEC_ID_MPEG1VIDEO
1394        && ost->st->codec->codec_id != AV_CODEC_ID_MPEG2VIDEO
1395        && ost->st->codec->codec_id != AV_CODEC_ID_VC1
1396        ) {
1397         if (av_parser_change(ist->st->parser, ost->st->codec, &opkt.data, &opkt.size, pkt->data, pkt->size, pkt->flags & AV_PKT_FLAG_KEY))
1398             opkt.destruct = av_destruct_packet;
1399     } else {
1400         opkt.data = pkt->data;
1401         opkt.size = pkt->size;
1402     }
1403
1404     if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (of->ctx->oformat->flags & AVFMT_RAWPICTURE)) {
1405         /* store AVPicture in AVPacket, as expected by the output format */
1406         avpicture_fill(&pict, opkt.data, ost->st->codec->pix_fmt, ost->st->codec->width, ost->st->codec->height);
1407         opkt.data = (uint8_t *)&pict;
1408         opkt.size = sizeof(AVPicture);
1409         opkt.flags |= AV_PKT_FLAG_KEY;
1410     }
1411
1412     write_frame(of->ctx, &opkt, ost);
1413     ost->st->codec->frame_number++;
1414 }
1415
1416 static void rate_emu_sleep(InputStream *ist)
1417 {
1418     if (input_files[ist->file_index]->rate_emu) {
1419         int64_t pts = av_rescale(ist->dts, 1000000, AV_TIME_BASE);
1420         int64_t now = av_gettime() - ist->start;
1421         if (pts > now)
1422             av_usleep(pts - now);
1423     }
1424 }
1425
1426 int guess_input_channel_layout(InputStream *ist)
1427 {
1428     AVCodecContext *dec = ist->st->codec;
1429
1430     if (!dec->channel_layout) {
1431         char layout_name[256];
1432
1433         dec->channel_layout = av_get_default_channel_layout(dec->channels);
1434         if (!dec->channel_layout)
1435             return 0;
1436         av_get_channel_layout_string(layout_name, sizeof(layout_name),
1437                                      dec->channels, dec->channel_layout);
1438         av_log(NULL, AV_LOG_WARNING, "Guessed Channel Layout for  Input Stream "
1439                "#%d.%d : %s\n", ist->file_index, ist->st->index, layout_name);
1440     }
1441     return 1;
1442 }
1443
1444 static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output)
1445 {
1446     AVFrame *decoded_frame;
1447     AVCodecContext *avctx = ist->st->codec;
1448     int i, ret, resample_changed;
1449     AVRational decoded_frame_tb;
1450
1451     if (!ist->decoded_frame && !(ist->decoded_frame = avcodec_alloc_frame()))
1452         return AVERROR(ENOMEM);
1453     decoded_frame = ist->decoded_frame;
1454
1455     update_benchmark(NULL);
1456     ret = avcodec_decode_audio4(avctx, decoded_frame, got_output, pkt);
1457     update_benchmark("decode_audio %d.%d", ist->file_index, ist->st->index);
1458
1459     if (ret >= 0 && avctx->sample_rate <= 0) {
1460         av_log(avctx, AV_LOG_ERROR, "Sample rate %d invalid\n", avctx->sample_rate);
1461         ret = AVERROR_INVALIDDATA;
1462     }
1463
1464     if (!*got_output || ret < 0) {
1465         if (!pkt->size) {
1466             for (i = 0; i < ist->nb_filters; i++)
1467                 av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
1468         }
1469         return ret;
1470     }
1471
1472 #if 1
1473     /* increment next_dts to use for the case where the input stream does not
1474        have timestamps or there are multiple frames in the packet */
1475     ist->next_pts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
1476                      avctx->sample_rate;
1477     ist->next_dts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
1478                      avctx->sample_rate;
1479 #endif
1480
1481     rate_emu_sleep(ist);
1482
1483     resample_changed = ist->resample_sample_fmt     != decoded_frame->format         ||
1484                        ist->resample_channels       != avctx->channels               ||
1485                        ist->resample_channel_layout != decoded_frame->channel_layout ||
1486                        ist->resample_sample_rate    != decoded_frame->sample_rate;
1487     if (resample_changed) {
1488         char layout1[64], layout2[64];
1489
1490         if (!guess_input_channel_layout(ist)) {
1491             av_log(NULL, AV_LOG_FATAL, "Unable to find default channel "
1492                    "layout for Input Stream #%d.%d\n", ist->file_index,
1493                    ist->st->index);
1494             exit(1);
1495         }
1496         decoded_frame->channel_layout = avctx->channel_layout;
1497
1498         av_get_channel_layout_string(layout1, sizeof(layout1), ist->resample_channels,
1499                                      ist->resample_channel_layout);
1500         av_get_channel_layout_string(layout2, sizeof(layout2), avctx->channels,
1501                                      decoded_frame->channel_layout);
1502
1503         av_log(NULL, AV_LOG_INFO,
1504                "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",
1505                ist->file_index, ist->st->index,
1506                ist->resample_sample_rate,  av_get_sample_fmt_name(ist->resample_sample_fmt),
1507                ist->resample_channels, layout1,
1508                decoded_frame->sample_rate, av_get_sample_fmt_name(decoded_frame->format),
1509                avctx->channels, layout2);
1510
1511         ist->resample_sample_fmt     = decoded_frame->format;
1512         ist->resample_sample_rate    = decoded_frame->sample_rate;
1513         ist->resample_channel_layout = decoded_frame->channel_layout;
1514         ist->resample_channels       = avctx->channels;
1515
1516         for (i = 0; i < nb_filtergraphs; i++)
1517             if (ist_in_filtergraph(filtergraphs[i], ist)) {
1518                 FilterGraph *fg = filtergraphs[i];
1519                 int j;
1520                 if (configure_filtergraph(fg) < 0) {
1521                     av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
1522                     exit(1);
1523                 }
1524                 for (j = 0; j < fg->nb_outputs; j++) {
1525                     OutputStream *ost = fg->outputs[j]->ost;
1526                     if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
1527                         !(ost->enc->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE))
1528                         av_buffersink_set_frame_size(ost->filter->filter,
1529                                                      ost->st->codec->frame_size);
1530                 }
1531             }
1532     }
1533
1534     /* if the decoder provides a pts, use it instead of the last packet pts.
1535        the decoder could be delaying output by a packet or more. */
1536     if (decoded_frame->pts != AV_NOPTS_VALUE) {
1537         ist->dts = ist->next_dts = ist->pts = ist->next_pts = av_rescale_q(decoded_frame->pts, avctx->time_base, AV_TIME_BASE_Q);
1538         decoded_frame_tb   = avctx->time_base;
1539     } else if (decoded_frame->pkt_pts != AV_NOPTS_VALUE) {
1540         decoded_frame->pts = decoded_frame->pkt_pts;
1541         pkt->pts           = AV_NOPTS_VALUE;
1542         decoded_frame_tb   = ist->st->time_base;
1543     } else if (pkt->pts != AV_NOPTS_VALUE) {
1544         decoded_frame->pts = pkt->pts;
1545         pkt->pts           = AV_NOPTS_VALUE;
1546         decoded_frame_tb   = ist->st->time_base;
1547     }else {
1548         decoded_frame->pts = ist->dts;
1549         decoded_frame_tb   = AV_TIME_BASE_Q;
1550     }
1551     if (decoded_frame->pts != AV_NOPTS_VALUE)
1552         decoded_frame->pts = av_rescale_delta(decoded_frame_tb, decoded_frame->pts,
1553                                               (AVRational){1, ist->st->codec->sample_rate}, decoded_frame->nb_samples, &ist->filter_in_rescale_delta_last,
1554                                               (AVRational){1, ist->st->codec->sample_rate});
1555     for (i = 0; i < ist->nb_filters; i++)
1556         av_buffersrc_add_frame(ist->filters[i]->filter, decoded_frame,
1557                                AV_BUFFERSRC_FLAG_PUSH);
1558
1559     decoded_frame->pts = AV_NOPTS_VALUE;
1560
1561     return ret;
1562 }
1563
1564 static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output)
1565 {
1566     AVFrame *decoded_frame;
1567     void *buffer_to_free = NULL;
1568     int i, ret = 0, resample_changed;
1569     int64_t best_effort_timestamp;
1570     AVRational *frame_sample_aspect;
1571
1572     if (!ist->decoded_frame && !(ist->decoded_frame = avcodec_alloc_frame()))
1573         return AVERROR(ENOMEM);
1574     decoded_frame = ist->decoded_frame;
1575     pkt->dts  = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ist->st->time_base);
1576
1577     update_benchmark(NULL);
1578     ret = avcodec_decode_video2(ist->st->codec,
1579                                 decoded_frame, got_output, pkt);
1580     update_benchmark("decode_video %d.%d", ist->file_index, ist->st->index);
1581     if (!*got_output || ret < 0) {
1582         if (!pkt->size) {
1583             for (i = 0; i < ist->nb_filters; i++)
1584                 av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
1585         }
1586         return ret;
1587     }
1588
1589     if(ist->top_field_first>=0)
1590         decoded_frame->top_field_first = ist->top_field_first;
1591
1592     best_effort_timestamp= av_frame_get_best_effort_timestamp(decoded_frame);
1593     if(best_effort_timestamp != AV_NOPTS_VALUE)
1594         ist->next_pts = ist->pts = av_rescale_q(decoded_frame->pts = best_effort_timestamp, ist->st->time_base, AV_TIME_BASE_Q);
1595
1596     if (debug_ts) {
1597         av_log(NULL, AV_LOG_INFO, "decoder -> ist_index:%d type:video "
1598                 "frame_pts:%s frame_pts_time:%s best_effort_ts:%"PRId64" best_effort_ts_time:%s keyframe:%d frame_type:%d \n",
1599                 ist->st->index, av_ts2str(decoded_frame->pts),
1600                 av_ts2timestr(decoded_frame->pts, &ist->st->time_base),
1601                 best_effort_timestamp,
1602                 av_ts2timestr(best_effort_timestamp, &ist->st->time_base),
1603                 decoded_frame->key_frame, decoded_frame->pict_type);
1604     }
1605
1606     pkt->size = 0;
1607     pre_process_video_frame(ist, (AVPicture *)decoded_frame, &buffer_to_free);
1608
1609     rate_emu_sleep(ist);
1610
1611     if (ist->st->sample_aspect_ratio.num)
1612         decoded_frame->sample_aspect_ratio = ist->st->sample_aspect_ratio;
1613
1614     resample_changed = ist->resample_width   != decoded_frame->width  ||
1615                        ist->resample_height  != decoded_frame->height ||
1616                        ist->resample_pix_fmt != decoded_frame->format;
1617     if (resample_changed) {
1618         av_log(NULL, AV_LOG_INFO,
1619                "Input stream #%d:%d frame changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s\n",
1620                ist->file_index, ist->st->index,
1621                ist->resample_width,  ist->resample_height,  av_get_pix_fmt_name(ist->resample_pix_fmt),
1622                decoded_frame->width, decoded_frame->height, av_get_pix_fmt_name(decoded_frame->format));
1623
1624         ist->resample_width   = decoded_frame->width;
1625         ist->resample_height  = decoded_frame->height;
1626         ist->resample_pix_fmt = decoded_frame->format;
1627
1628         for (i = 0; i < nb_filtergraphs; i++) {
1629             if (ist_in_filtergraph(filtergraphs[i], ist) && ist->reinit_filters &&
1630                 configure_filtergraph(filtergraphs[i]) < 0) {
1631                 av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
1632                 exit(1);
1633             }
1634         }
1635     }
1636
1637     frame_sample_aspect= av_opt_ptr(avcodec_get_frame_class(), decoded_frame, "sample_aspect_ratio");
1638     for (i = 0; i < ist->nb_filters; i++) {
1639         int changed =      ist->st->codec->width   != ist->filters[i]->filter->outputs[0]->w
1640                         || ist->st->codec->height  != ist->filters[i]->filter->outputs[0]->h
1641                         || ist->st->codec->pix_fmt != ist->filters[i]->filter->outputs[0]->format;
1642
1643         if (!frame_sample_aspect->num)
1644             *frame_sample_aspect = ist->st->sample_aspect_ratio;
1645         if (ist->dr1 && decoded_frame->type==FF_BUFFER_TYPE_USER && !changed) {
1646             FrameBuffer      *buf = decoded_frame->opaque;
1647             AVFilterBufferRef *fb = avfilter_get_video_buffer_ref_from_arrays(
1648                                         decoded_frame->data, decoded_frame->linesize,
1649                                         AV_PERM_READ | AV_PERM_PRESERVE,
1650                                         ist->st->codec->width, ist->st->codec->height,
1651                                         ist->st->codec->pix_fmt);
1652
1653             avfilter_copy_frame_props(fb, decoded_frame);
1654             fb->buf->priv           = buf;
1655             fb->buf->free           = filter_release_buffer;
1656
1657             av_assert0(buf->refcount>0);
1658             buf->refcount++;
1659             av_buffersrc_add_ref(ist->filters[i]->filter, fb,
1660                                  AV_BUFFERSRC_FLAG_NO_CHECK_FORMAT |
1661                                  AV_BUFFERSRC_FLAG_NO_COPY |
1662                                  AV_BUFFERSRC_FLAG_PUSH);
1663         } else
1664         if(av_buffersrc_add_frame(ist->filters[i]->filter, decoded_frame, AV_BUFFERSRC_FLAG_PUSH)<0) {
1665             av_log(NULL, AV_LOG_FATAL, "Failed to inject frame into filter network\n");
1666             exit(1);
1667         }
1668
1669     }
1670
1671     av_free(buffer_to_free);
1672     return ret;
1673 }
1674
1675 static int transcode_subtitles(InputStream *ist, AVPacket *pkt, int *got_output)
1676 {
1677     AVSubtitle subtitle;
1678     int i, ret = avcodec_decode_subtitle2(ist->st->codec,
1679                                           &subtitle, got_output, pkt);
1680     if (ret < 0 || !*got_output) {
1681         if (!pkt->size)
1682             sub2video_flush(ist);
1683         return ret;
1684     }
1685
1686     if (ist->fix_sub_duration) {
1687         if (ist->prev_sub.got_output) {
1688             int end = av_rescale(subtitle.pts - ist->prev_sub.subtitle.pts,
1689                                  1000, AV_TIME_BASE);
1690             if (end < ist->prev_sub.subtitle.end_display_time) {
1691                 av_log(ist->st->codec, AV_LOG_DEBUG,
1692                        "Subtitle duration reduced from %d to %d\n",
1693                        ist->prev_sub.subtitle.end_display_time, end);
1694                 ist->prev_sub.subtitle.end_display_time = end;
1695             }
1696         }
1697         FFSWAP(int,        *got_output, ist->prev_sub.got_output);
1698         FFSWAP(int,        ret,         ist->prev_sub.ret);
1699         FFSWAP(AVSubtitle, subtitle,    ist->prev_sub.subtitle);
1700     }
1701
1702     sub2video_update(ist, &subtitle);
1703
1704     if (!*got_output || !subtitle.num_rects)
1705         return ret;
1706
1707     rate_emu_sleep(ist);
1708
1709     for (i = 0; i < nb_output_streams; i++) {
1710         OutputStream *ost = output_streams[i];
1711
1712         if (!check_output_constraints(ist, ost) || !ost->encoding_needed)
1713             continue;
1714
1715         do_subtitle_out(output_files[ost->file_index]->ctx, ost, ist, &subtitle);
1716     }
1717
1718     avsubtitle_free(&subtitle);
1719     return ret;
1720 }
1721
1722 /* pkt = NULL means EOF (needed to flush decoder buffers) */
1723 static int output_packet(InputStream *ist, const AVPacket *pkt)
1724 {
1725     int ret = 0, i;
1726     int got_output;
1727
1728     AVPacket avpkt;
1729     if (!ist->saw_first_ts) {
1730         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;
1731         ist->pts = 0;
1732         if (pkt != NULL && pkt->pts != AV_NOPTS_VALUE && !ist->decoding_needed) {
1733             ist->dts += av_rescale_q(pkt->pts, ist->st->time_base, AV_TIME_BASE_Q);
1734             ist->pts = ist->dts; //unused but better to set it to a value thats not totally wrong
1735         }
1736         ist->saw_first_ts = 1;
1737     }
1738
1739     if (ist->next_dts == AV_NOPTS_VALUE)
1740         ist->next_dts = ist->dts;
1741     if (ist->next_pts == AV_NOPTS_VALUE)
1742         ist->next_pts = ist->pts;
1743
1744     if (pkt == NULL) {
1745         /* EOF handling */
1746         av_init_packet(&avpkt);
1747         avpkt.data = NULL;
1748         avpkt.size = 0;
1749         goto handle_eof;
1750     } else {
1751         avpkt = *pkt;
1752     }
1753
1754     if (pkt->dts != AV_NOPTS_VALUE) {
1755         ist->next_dts = ist->dts = av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q);
1756         if (ist->st->codec->codec_type != AVMEDIA_TYPE_VIDEO || !ist->decoding_needed)
1757             ist->next_pts = ist->pts = ist->dts;
1758     }
1759
1760     // while we have more to decode or while the decoder did output something on EOF
1761     while (ist->decoding_needed && (avpkt.size > 0 || (!pkt && got_output))) {
1762         int duration;
1763     handle_eof:
1764
1765         ist->pts = ist->next_pts;
1766         ist->dts = ist->next_dts;
1767
1768         if (avpkt.size && avpkt.size != pkt->size) {
1769             av_log(NULL, ist->showed_multi_packet_warning ? AV_LOG_VERBOSE : AV_LOG_WARNING,
1770                    "Multiple frames in a packet from stream %d\n", pkt->stream_index);
1771             ist->showed_multi_packet_warning = 1;
1772         }
1773
1774         switch (ist->st->codec->codec_type) {
1775         case AVMEDIA_TYPE_AUDIO:
1776             ret = decode_audio    (ist, &avpkt, &got_output);
1777             break;
1778         case AVMEDIA_TYPE_VIDEO:
1779             ret = decode_video    (ist, &avpkt, &got_output);
1780             if (avpkt.duration) {
1781                 duration = av_rescale_q(avpkt.duration, ist->st->time_base, AV_TIME_BASE_Q);
1782             } else if(ist->st->codec->time_base.num != 0 && ist->st->codec->time_base.den != 0) {
1783                 int ticks= ist->st->parser ? ist->st->parser->repeat_pict+1 : ist->st->codec->ticks_per_frame;
1784                 duration = ((int64_t)AV_TIME_BASE *
1785                                 ist->st->codec->time_base.num * ticks) /
1786                                 ist->st->codec->time_base.den;
1787             } else
1788                 duration = 0;
1789
1790             if(ist->dts != AV_NOPTS_VALUE && duration) {
1791                 ist->next_dts += duration;
1792             }else
1793                 ist->next_dts = AV_NOPTS_VALUE;
1794
1795             if (got_output)
1796                 ist->next_pts += duration; //FIXME the duration is not correct in some cases
1797             break;
1798         case AVMEDIA_TYPE_SUBTITLE:
1799             ret = transcode_subtitles(ist, &avpkt, &got_output);
1800             break;
1801         default:
1802             return -1;
1803         }
1804
1805         if (ret < 0)
1806             return ret;
1807
1808         avpkt.dts=
1809         avpkt.pts= AV_NOPTS_VALUE;
1810
1811         // touch data and size only if not EOF
1812         if (pkt) {
1813             if(ist->st->codec->codec_type != AVMEDIA_TYPE_AUDIO)
1814                 ret = avpkt.size;
1815             avpkt.data += ret;
1816             avpkt.size -= ret;
1817         }
1818         if (!got_output) {
1819             continue;
1820         }
1821     }
1822
1823     /* handle stream copy */
1824     if (!ist->decoding_needed) {
1825         rate_emu_sleep(ist);
1826         ist->dts = ist->next_dts;
1827         switch (ist->st->codec->codec_type) {
1828         case AVMEDIA_TYPE_AUDIO:
1829             ist->next_dts += ((int64_t)AV_TIME_BASE * ist->st->codec->frame_size) /
1830                              ist->st->codec->sample_rate;
1831             break;
1832         case AVMEDIA_TYPE_VIDEO:
1833             if (pkt->duration) {
1834                 ist->next_dts += av_rescale_q(pkt->duration, ist->st->time_base, AV_TIME_BASE_Q);
1835             } else if(ist->st->codec->time_base.num != 0) {
1836                 int ticks= ist->st->parser ? ist->st->parser->repeat_pict + 1 : ist->st->codec->ticks_per_frame;
1837                 ist->next_dts += ((int64_t)AV_TIME_BASE *
1838                                   ist->st->codec->time_base.num * ticks) /
1839                                   ist->st->codec->time_base.den;
1840             }
1841             break;
1842         }
1843         ist->pts = ist->dts;
1844         ist->next_pts = ist->next_dts;
1845     }
1846     for (i = 0; pkt && i < nb_output_streams; i++) {
1847         OutputStream *ost = output_streams[i];
1848
1849         if (!check_output_constraints(ist, ost) || ost->encoding_needed)
1850             continue;
1851
1852         do_streamcopy(ist, ost, pkt);
1853     }
1854
1855     return 0;
1856 }
1857
1858 static void print_sdp(void)
1859 {
1860     char sdp[2048];
1861     int i;
1862     AVFormatContext **avc = av_malloc(sizeof(*avc) * nb_output_files);
1863
1864     if (!avc)
1865         exit(1);
1866     for (i = 0; i < nb_output_files; i++)
1867         avc[i] = output_files[i]->ctx;
1868
1869     av_sdp_create(avc, nb_output_files, sdp, sizeof(sdp));
1870     printf("SDP:\n%s\n", sdp);
1871     fflush(stdout);
1872     av_freep(&avc);
1873 }
1874
1875 static int init_input_stream(int ist_index, char *error, int error_len)
1876 {
1877     int ret;
1878     InputStream *ist = input_streams[ist_index];
1879
1880     if (ist->decoding_needed) {
1881         AVCodec *codec = ist->dec;
1882         if (!codec) {
1883             snprintf(error, error_len, "Decoder (codec %s) not found for input stream #%d:%d",
1884                     avcodec_get_name(ist->st->codec->codec_id), ist->file_index, ist->st->index);
1885             return AVERROR(EINVAL);
1886         }
1887
1888         ist->dr1 = (codec->capabilities & CODEC_CAP_DR1) && !do_deinterlace;
1889         if (codec->type == AVMEDIA_TYPE_VIDEO && ist->dr1) {
1890             ist->st->codec->get_buffer     = codec_get_buffer;
1891             ist->st->codec->release_buffer = codec_release_buffer;
1892             ist->st->codec->opaque         = &ist->buffer_pool;
1893         }
1894
1895         if (!av_dict_get(ist->opts, "threads", NULL, 0))
1896             av_dict_set(&ist->opts, "threads", "auto", 0);
1897         if ((ret = avcodec_open2(ist->st->codec, codec, &ist->opts)) < 0) {
1898             if (ret == AVERROR_EXPERIMENTAL)
1899                 abort_codec_experimental(codec, 0);
1900             snprintf(error, error_len, "Error while opening decoder for input stream #%d:%d",
1901                     ist->file_index, ist->st->index);
1902             return ret;
1903         }
1904         assert_avoptions(ist->opts);
1905     }
1906
1907     ist->next_pts = AV_NOPTS_VALUE;
1908     ist->next_dts = AV_NOPTS_VALUE;
1909     ist->is_start = 1;
1910
1911     return 0;
1912 }
1913
1914 static InputStream *get_input_stream(OutputStream *ost)
1915 {
1916     if (ost->source_index >= 0)
1917         return input_streams[ost->source_index];
1918     return NULL;
1919 }
1920
1921 static void parse_forced_key_frames(char *kf, OutputStream *ost,
1922                                     AVCodecContext *avctx)
1923 {
1924     char *p;
1925     int n = 1, i;
1926     int64_t t;
1927
1928     for (p = kf; *p; p++)
1929         if (*p == ',')
1930             n++;
1931     ost->forced_kf_count = n;
1932     ost->forced_kf_pts   = av_malloc(sizeof(*ost->forced_kf_pts) * n);
1933     if (!ost->forced_kf_pts) {
1934         av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
1935         exit(1);
1936     }
1937
1938     p = kf;
1939     for (i = 0; i < n; i++) {
1940         char *next = strchr(p, ',');
1941
1942         if (next)
1943             *next++ = 0;
1944
1945         t = parse_time_or_die("force_key_frames", p, 1);
1946         ost->forced_kf_pts[i] = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base);
1947
1948         p = next;
1949     }
1950 }
1951
1952 static void report_new_stream(int input_index, AVPacket *pkt)
1953 {
1954     InputFile *file = input_files[input_index];
1955     AVStream *st = file->ctx->streams[pkt->stream_index];
1956
1957     if (pkt->stream_index < file->nb_streams_warn)
1958         return;
1959     av_log(file->ctx, AV_LOG_WARNING,
1960            "New %s stream %d:%d at pos:%"PRId64" and DTS:%ss\n",
1961            av_get_media_type_string(st->codec->codec_type),
1962            input_index, pkt->stream_index,
1963            pkt->pos, av_ts2timestr(pkt->dts, &st->time_base));
1964     file->nb_streams_warn = pkt->stream_index + 1;
1965 }
1966
1967 static int transcode_init(void)
1968 {
1969     int ret = 0, i, j, k;
1970     AVFormatContext *oc;
1971     AVCodecContext *codec;
1972     OutputStream *ost;
1973     InputStream *ist;
1974     char error[1024];
1975     int want_sdp = 1;
1976
1977     /* init framerate emulation */
1978     for (i = 0; i < nb_input_files; i++) {
1979         InputFile *ifile = input_files[i];
1980         if (ifile->rate_emu)
1981             for (j = 0; j < ifile->nb_streams; j++)
1982                 input_streams[j + ifile->ist_index]->start = av_gettime();
1983     }
1984
1985     /* output stream init */
1986     for (i = 0; i < nb_output_files; i++) {
1987         oc = output_files[i]->ctx;
1988         if (!oc->nb_streams && !(oc->oformat->flags & AVFMT_NOSTREAMS)) {
1989             av_dump_format(oc, i, oc->filename, 1);
1990             av_log(NULL, AV_LOG_ERROR, "Output file #%d does not contain any stream\n", i);
1991             return AVERROR(EINVAL);
1992         }
1993     }
1994
1995     /* init complex filtergraphs */
1996     for (i = 0; i < nb_filtergraphs; i++)
1997         if ((ret = avfilter_graph_config(filtergraphs[i]->graph, NULL)) < 0)
1998             return ret;
1999
2000     /* for each output stream, we compute the right encoding parameters */
2001     for (i = 0; i < nb_output_streams; i++) {
2002         AVCodecContext *icodec = NULL;
2003         ost = output_streams[i];
2004         oc  = output_files[ost->file_index]->ctx;
2005         ist = get_input_stream(ost);
2006
2007         if (ost->attachment_filename)
2008             continue;
2009
2010         codec  = ost->st->codec;
2011
2012         if (ist) {
2013             icodec = ist->st->codec;
2014
2015             ost->st->disposition          = ist->st->disposition;
2016             codec->bits_per_raw_sample    = icodec->bits_per_raw_sample;
2017             codec->chroma_sample_location = icodec->chroma_sample_location;
2018         }
2019
2020         if (ost->stream_copy) {
2021             uint64_t extra_size;
2022
2023             av_assert0(ist && !ost->filter);
2024
2025             extra_size = (uint64_t)icodec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE;
2026
2027             if (extra_size > INT_MAX) {
2028                 return AVERROR(EINVAL);
2029             }
2030
2031             /* if stream_copy is selected, no need to decode or encode */
2032             codec->codec_id   = icodec->codec_id;
2033             codec->codec_type = icodec->codec_type;
2034
2035             if (!codec->codec_tag) {
2036                 if (!oc->oformat->codec_tag ||
2037                      av_codec_get_id (oc->oformat->codec_tag, icodec->codec_tag) == codec->codec_id ||
2038                      av_codec_get_tag(oc->oformat->codec_tag, icodec->codec_id) <= 0)
2039                     codec->codec_tag = icodec->codec_tag;
2040             }
2041
2042             codec->bit_rate       = icodec->bit_rate;
2043             codec->rc_max_rate    = icodec->rc_max_rate;
2044             codec->rc_buffer_size = icodec->rc_buffer_size;
2045             codec->field_order    = icodec->field_order;
2046             codec->extradata      = av_mallocz(extra_size);
2047             if (!codec->extradata) {
2048                 return AVERROR(ENOMEM);
2049             }
2050             memcpy(codec->extradata, icodec->extradata, icodec->extradata_size);
2051             codec->extradata_size= icodec->extradata_size;
2052             codec->bits_per_coded_sample  = icodec->bits_per_coded_sample;
2053
2054             codec->time_base = ist->st->time_base;
2055             /*
2056              * Avi is a special case here because it supports variable fps but
2057              * having the fps and timebase differe significantly adds quite some
2058              * overhead
2059              */
2060             if(!strcmp(oc->oformat->name, "avi")) {
2061                 if ( copy_tb<0 && av_q2d(ist->st->r_frame_rate) >= av_q2d(ist->st->avg_frame_rate)
2062                                && 0.5/av_q2d(ist->st->r_frame_rate) > av_q2d(ist->st->time_base)
2063                                && 0.5/av_q2d(ist->st->r_frame_rate) > av_q2d(icodec->time_base)
2064                                && av_q2d(ist->st->time_base) < 1.0/500 && av_q2d(icodec->time_base) < 1.0/500
2065                      || copy_tb==2){
2066                     codec->time_base.num = ist->st->r_frame_rate.den;
2067                     codec->time_base.den = 2*ist->st->r_frame_rate.num;
2068                     codec->ticks_per_frame = 2;
2069                 } else if (   copy_tb<0 && av_q2d(icodec->time_base)*icodec->ticks_per_frame > 2*av_q2d(ist->st->time_base)
2070                                  && av_q2d(ist->st->time_base) < 1.0/500
2071                     || copy_tb==0){
2072                     codec->time_base = icodec->time_base;
2073                     codec->time_base.num *= icodec->ticks_per_frame;
2074                     codec->time_base.den *= 2;
2075                     codec->ticks_per_frame = 2;
2076                 }
2077             } else if(!(oc->oformat->flags & AVFMT_VARIABLE_FPS)
2078                       && strcmp(oc->oformat->name, "mov") && strcmp(oc->oformat->name, "mp4") && strcmp(oc->oformat->name, "3gp")
2079                       && strcmp(oc->oformat->name, "3g2") && strcmp(oc->oformat->name, "psp") && strcmp(oc->oformat->name, "ipod")
2080                       && strcmp(oc->oformat->name, "f4v")
2081             ) {
2082                 if(   copy_tb<0 && icodec->time_base.den
2083                                 && av_q2d(icodec->time_base)*icodec->ticks_per_frame > av_q2d(ist->st->time_base)
2084                                 && av_q2d(ist->st->time_base) < 1.0/500
2085                    || copy_tb==0){
2086                     codec->time_base = icodec->time_base;
2087                     codec->time_base.num *= icodec->ticks_per_frame;
2088                 }
2089             }
2090
2091             if(ost->frame_rate.num)
2092                 codec->time_base = av_inv_q(ost->frame_rate);
2093
2094             av_reduce(&codec->time_base.num, &codec->time_base.den,
2095                         codec->time_base.num, codec->time_base.den, INT_MAX);
2096
2097             switch (codec->codec_type) {
2098             case AVMEDIA_TYPE_AUDIO:
2099                 if (audio_volume != 256) {
2100                     av_log(NULL, AV_LOG_FATAL, "-acodec copy and -vol are incompatible (frames are not decoded)\n");
2101                     exit(1);
2102                 }
2103                 codec->channel_layout     = icodec->channel_layout;
2104                 codec->sample_rate        = icodec->sample_rate;
2105                 codec->channels           = icodec->channels;
2106                 codec->frame_size         = icodec->frame_size;
2107                 codec->audio_service_type = icodec->audio_service_type;
2108                 codec->block_align        = icodec->block_align;
2109                 if((codec->block_align == 1 || codec->block_align == 1152) && codec->codec_id == AV_CODEC_ID_MP3)
2110                     codec->block_align= 0;
2111                 if(codec->codec_id == AV_CODEC_ID_AC3)
2112                     codec->block_align= 0;
2113                 break;
2114             case AVMEDIA_TYPE_VIDEO:
2115                 codec->pix_fmt            = icodec->pix_fmt;
2116                 codec->width              = icodec->width;
2117                 codec->height             = icodec->height;
2118                 codec->has_b_frames       = icodec->has_b_frames;
2119                 if (!codec->sample_aspect_ratio.num) {
2120                     codec->sample_aspect_ratio   =
2121                     ost->st->sample_aspect_ratio =
2122                         ist->st->sample_aspect_ratio.num ? ist->st->sample_aspect_ratio :
2123                         ist->st->codec->sample_aspect_ratio.num ?
2124                         ist->st->codec->sample_aspect_ratio : (AVRational){0, 1};
2125                 }
2126                 ost->st->avg_frame_rate = ist->st->avg_frame_rate;
2127                 break;
2128             case AVMEDIA_TYPE_SUBTITLE:
2129                 codec->width  = icodec->width;
2130                 codec->height = icodec->height;
2131                 break;
2132             case AVMEDIA_TYPE_DATA:
2133             case AVMEDIA_TYPE_ATTACHMENT:
2134                 break;
2135             default:
2136                 abort();
2137             }
2138         } else {
2139             if (!ost->enc)
2140                 ost->enc = avcodec_find_encoder(codec->codec_id);
2141             if (!ost->enc) {
2142                 /* should only happen when a default codec is not present. */
2143                 snprintf(error, sizeof(error), "Encoder (codec %s) not found for output stream #%d:%d",
2144                          avcodec_get_name(ost->st->codec->codec_id), ost->file_index, ost->index);
2145                 ret = AVERROR(EINVAL);
2146                 goto dump_format;
2147             }
2148
2149             if (ist)
2150                 ist->decoding_needed++;
2151             ost->encoding_needed = 1;
2152
2153             if (!ost->filter &&
2154                 (codec->codec_type == AVMEDIA_TYPE_VIDEO ||
2155                  codec->codec_type == AVMEDIA_TYPE_AUDIO)) {
2156                     FilterGraph *fg;
2157                     fg = init_simple_filtergraph(ist, ost);
2158                     if (configure_filtergraph(fg)) {
2159                         av_log(NULL, AV_LOG_FATAL, "Error opening filters!\n");
2160                         exit(1);
2161                     }
2162             }
2163
2164             if (codec->codec_type == AVMEDIA_TYPE_VIDEO) {
2165                 if (ost->filter && !ost->frame_rate.num)
2166                     ost->frame_rate = av_buffersink_get_frame_rate(ost->filter->filter);
2167                 if (ist && !ost->frame_rate.num)
2168                     ost->frame_rate = ist->framerate;
2169                 if (ist && !ost->frame_rate.num)
2170                     ost->frame_rate = ist->st->r_frame_rate.num ? ist->st->r_frame_rate : (AVRational){25, 1};
2171 //                    ost->frame_rate = ist->st->avg_frame_rate.num ? ist->st->avg_frame_rate : (AVRational){25, 1};
2172                 if (ost->enc && ost->enc->supported_framerates && !ost->force_fps) {
2173                     int idx = av_find_nearest_q_idx(ost->frame_rate, ost->enc->supported_framerates);
2174                     ost->frame_rate = ost->enc->supported_framerates[idx];
2175                 }
2176             }
2177
2178             switch (codec->codec_type) {
2179             case AVMEDIA_TYPE_AUDIO:
2180                 codec->sample_fmt     = ost->filter->filter->inputs[0]->format;
2181                 codec->sample_rate    = ost->filter->filter->inputs[0]->sample_rate;
2182                 codec->channel_layout = ost->filter->filter->inputs[0]->channel_layout;
2183                 codec->channels       = av_get_channel_layout_nb_channels(codec->channel_layout);
2184                 codec->time_base      = (AVRational){ 1, codec->sample_rate };
2185                 break;
2186             case AVMEDIA_TYPE_VIDEO:
2187                 codec->time_base = av_inv_q(ost->frame_rate);
2188                 if (ost->filter && !(codec->time_base.num && codec->time_base.den))
2189                     codec->time_base = ost->filter->filter->inputs[0]->time_base;
2190                 if (   av_q2d(codec->time_base) < 0.001 && video_sync_method != VSYNC_PASSTHROUGH
2191                    && (video_sync_method == VSYNC_CFR || (video_sync_method == VSYNC_AUTO && !(oc->oformat->flags & AVFMT_VARIABLE_FPS)))){
2192                     av_log(oc, AV_LOG_WARNING, "Frame rate very high for a muxer not efficiently supporting it.\n"
2193                                                "Please consider specifying a lower framerate, a different muxer or -vsync 2\n");
2194                 }
2195                 for (j = 0; j < ost->forced_kf_count; j++)
2196                     ost->forced_kf_pts[j] = av_rescale_q(ost->forced_kf_pts[j],
2197                                                          AV_TIME_BASE_Q,
2198                                                          codec->time_base);
2199
2200                 codec->width  = ost->filter->filter->inputs[0]->w;
2201                 codec->height = ost->filter->filter->inputs[0]->h;
2202                 codec->sample_aspect_ratio = ost->st->sample_aspect_ratio =
2203                     ost->frame_aspect_ratio ? // overridden by the -aspect cli option
2204                     av_d2q(ost->frame_aspect_ratio * codec->height/codec->width, 255) :
2205                     ost->filter->filter->inputs[0]->sample_aspect_ratio;
2206                 codec->pix_fmt = ost->filter->filter->inputs[0]->format;
2207
2208                 if (!icodec ||
2209                     codec->width   != icodec->width  ||
2210                     codec->height  != icodec->height ||
2211                     codec->pix_fmt != icodec->pix_fmt) {
2212                     codec->bits_per_raw_sample = frame_bits_per_raw_sample;
2213                 }
2214
2215                 if (ost->forced_keyframes)
2216                     parse_forced_key_frames(ost->forced_keyframes, ost,
2217                                             ost->st->codec);
2218                 break;
2219             case AVMEDIA_TYPE_SUBTITLE:
2220                 codec->time_base = (AVRational){1, 1000};
2221                 if (!codec->width) {
2222                     codec->width     = input_streams[ost->source_index]->st->codec->width;
2223                     codec->height    = input_streams[ost->source_index]->st->codec->height;
2224                 }
2225                 break;
2226             default:
2227                 abort();
2228                 break;
2229             }
2230             /* two pass mode */
2231             if (codec->flags & (CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2)) {
2232                 char logfilename[1024];
2233                 FILE *f;
2234
2235                 snprintf(logfilename, sizeof(logfilename), "%s-%d.log",
2236                          ost->logfile_prefix ? ost->logfile_prefix :
2237                                                DEFAULT_PASS_LOGFILENAME_PREFIX,
2238                          i);
2239                 if (!strcmp(ost->enc->name, "libx264")) {
2240                     av_dict_set(&ost->opts, "stats", logfilename, AV_DICT_DONT_OVERWRITE);
2241                 } else {
2242                     if (codec->flags & CODEC_FLAG_PASS2) {
2243                         char  *logbuffer;
2244                         size_t logbuffer_size;
2245                         if (cmdutils_read_file(logfilename, &logbuffer, &logbuffer_size) < 0) {
2246                             av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n",
2247                                    logfilename);
2248                             exit(1);
2249                         }
2250                         codec->stats_in = logbuffer;
2251                     }
2252                     if (codec->flags & CODEC_FLAG_PASS1) {
2253                         f = fopen(logfilename, "wb");
2254                         if (!f) {
2255                             av_log(NULL, AV_LOG_FATAL, "Cannot write log file '%s' for pass-1 encoding: %s\n",
2256                                 logfilename, strerror(errno));
2257                             exit(1);
2258                         }
2259                         ost->logfile = f;
2260                     }
2261                 }
2262             }
2263         }
2264     }
2265
2266     /* open each encoder */
2267     for (i = 0; i < nb_output_streams; i++) {
2268         ost = output_streams[i];
2269         if (ost->encoding_needed) {
2270             AVCodec      *codec = ost->enc;
2271             AVCodecContext *dec = NULL;
2272
2273             if ((ist = get_input_stream(ost)))
2274                 dec = ist->st->codec;
2275             if (dec && dec->subtitle_header) {
2276                 /* ASS code assumes this buffer is null terminated so add extra byte. */
2277                 ost->st->codec->subtitle_header = av_mallocz(dec->subtitle_header_size + 1);
2278                 if (!ost->st->codec->subtitle_header) {
2279                     ret = AVERROR(ENOMEM);
2280                     goto dump_format;
2281                 }
2282                 memcpy(ost->st->codec->subtitle_header, dec->subtitle_header, dec->subtitle_header_size);
2283                 ost->st->codec->subtitle_header_size = dec->subtitle_header_size;
2284             }
2285             if (!av_dict_get(ost->opts, "threads", NULL, 0))
2286                 av_dict_set(&ost->opts, "threads", "auto", 0);
2287             if ((ret = avcodec_open2(ost->st->codec, codec, &ost->opts)) < 0) {
2288                 if (ret == AVERROR_EXPERIMENTAL)
2289                     abort_codec_experimental(codec, 1);
2290                 snprintf(error, sizeof(error), "Error while opening encoder for output stream #%d:%d - maybe incorrect parameters such as bit_rate, rate, width or height",
2291                         ost->file_index, ost->index);
2292                 goto dump_format;
2293             }
2294             if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
2295                 !(ost->enc->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE))
2296                 av_buffersink_set_frame_size(ost->filter->filter,
2297                                              ost->st->codec->frame_size);
2298             assert_avoptions(ost->opts);
2299             if (ost->st->codec->bit_rate && ost->st->codec->bit_rate < 1000)
2300                 av_log(NULL, AV_LOG_WARNING, "The bitrate parameter is set too low."
2301                                              " It takes bits/s as argument, not kbits/s\n");
2302             extra_size += ost->st->codec->extradata_size;
2303
2304             if (ost->st->codec->me_threshold)
2305                 input_streams[ost->source_index]->st->codec->debug |= FF_DEBUG_MV;
2306         }
2307     }
2308
2309     /* init input streams */
2310     for (i = 0; i < nb_input_streams; i++)
2311         if ((ret = init_input_stream(i, error, sizeof(error))) < 0)
2312             goto dump_format;
2313
2314     /* discard unused programs */
2315     for (i = 0; i < nb_input_files; i++) {
2316         InputFile *ifile = input_files[i];
2317         for (j = 0; j < ifile->ctx->nb_programs; j++) {
2318             AVProgram *p = ifile->ctx->programs[j];
2319             int discard  = AVDISCARD_ALL;
2320
2321             for (k = 0; k < p->nb_stream_indexes; k++)
2322                 if (!input_streams[ifile->ist_index + p->stream_index[k]]->discard) {
2323                     discard = AVDISCARD_DEFAULT;
2324                     break;
2325                 }
2326             p->discard = discard;
2327         }
2328     }
2329
2330     /* open files and write file headers */
2331     for (i = 0; i < nb_output_files; i++) {
2332         oc = output_files[i]->ctx;
2333         oc->interrupt_callback = int_cb;
2334         if ((ret = avformat_write_header(oc, &output_files[i]->opts)) < 0) {
2335             char errbuf[128];
2336             const char *errbuf_ptr = errbuf;
2337             if (av_strerror(ret, errbuf, sizeof(errbuf)) < 0)
2338                 errbuf_ptr = strerror(AVUNERROR(ret));
2339             snprintf(error, sizeof(error), "Could not write header for output file #%d (incorrect codec parameters ?): %s", i, errbuf_ptr);
2340             ret = AVERROR(EINVAL);
2341             goto dump_format;
2342         }
2343 //         assert_avoptions(output_files[i]->opts);
2344         if (strcmp(oc->oformat->name, "rtp")) {
2345             want_sdp = 0;
2346         }
2347     }
2348
2349  dump_format:
2350     /* dump the file output parameters - cannot be done before in case
2351        of stream copy */
2352     for (i = 0; i < nb_output_files; i++) {
2353         av_dump_format(output_files[i]->ctx, i, output_files[i]->ctx->filename, 1);
2354     }
2355
2356     /* dump the stream mapping */
2357     av_log(NULL, AV_LOG_INFO, "Stream mapping:\n");
2358     for (i = 0; i < nb_input_streams; i++) {
2359         ist = input_streams[i];
2360
2361         for (j = 0; j < ist->nb_filters; j++) {
2362             if (ist->filters[j]->graph->graph_desc) {
2363                 av_log(NULL, AV_LOG_INFO, "  Stream #%d:%d (%s) -> %s",
2364                        ist->file_index, ist->st->index, ist->dec ? ist->dec->name : "?",
2365                        ist->filters[j]->name);
2366                 if (nb_filtergraphs > 1)
2367                     av_log(NULL, AV_LOG_INFO, " (graph %d)", ist->filters[j]->graph->index);
2368                 av_log(NULL, AV_LOG_INFO, "\n");
2369             }
2370         }
2371     }
2372
2373     for (i = 0; i < nb_output_streams; i++) {
2374         ost = output_streams[i];
2375
2376         if (ost->attachment_filename) {
2377             /* an attached file */
2378             av_log(NULL, AV_LOG_INFO, "  File %s -> Stream #%d:%d\n",
2379                    ost->attachment_filename, ost->file_index, ost->index);
2380             continue;
2381         }
2382
2383         if (ost->filter && ost->filter->graph->graph_desc) {
2384             /* output from a complex graph */
2385             av_log(NULL, AV_LOG_INFO, "  %s", ost->filter->name);
2386             if (nb_filtergraphs > 1)
2387                 av_log(NULL, AV_LOG_INFO, " (graph %d)", ost->filter->graph->index);
2388
2389             av_log(NULL, AV_LOG_INFO, " -> Stream #%d:%d (%s)\n", ost->file_index,
2390                    ost->index, ost->enc ? ost->enc->name : "?");
2391             continue;
2392         }
2393
2394         av_log(NULL, AV_LOG_INFO, "  Stream #%d:%d -> #%d:%d",
2395                input_streams[ost->source_index]->file_index,
2396                input_streams[ost->source_index]->st->index,
2397                ost->file_index,
2398                ost->index);
2399         if (ost->sync_ist != input_streams[ost->source_index])
2400             av_log(NULL, AV_LOG_INFO, " [sync #%d:%d]",
2401                    ost->sync_ist->file_index,
2402                    ost->sync_ist->st->index);
2403         if (ost->stream_copy)
2404             av_log(NULL, AV_LOG_INFO, " (copy)");
2405         else
2406             av_log(NULL, AV_LOG_INFO, " (%s -> %s)", input_streams[ost->source_index]->dec ?
2407                    input_streams[ost->source_index]->dec->name : "?",
2408                    ost->enc ? ost->enc->name : "?");
2409         av_log(NULL, AV_LOG_INFO, "\n");
2410     }
2411
2412     if (ret) {
2413         av_log(NULL, AV_LOG_ERROR, "%s\n", error);
2414         return ret;
2415     }
2416
2417     if (want_sdp) {
2418         print_sdp();
2419     }
2420
2421     return 0;
2422 }
2423
2424 /* Return 1 if there remain streams where more output is wanted, 0 otherwise. */
2425 static int need_output(void)
2426 {
2427     int i;
2428
2429     for (i = 0; i < nb_output_streams; i++) {
2430         OutputStream *ost    = output_streams[i];
2431         OutputFile *of       = output_files[ost->file_index];
2432         AVFormatContext *os  = output_files[ost->file_index]->ctx;
2433
2434         if (ost->finished ||
2435             (os->pb && avio_tell(os->pb) >= of->limit_filesize))
2436             continue;
2437         if (ost->frame_number >= ost->max_frames) {
2438             int j;
2439             for (j = 0; j < of->ctx->nb_streams; j++)
2440                 close_output_stream(output_streams[of->ost_index + j]);
2441             continue;
2442         }
2443
2444         return 1;
2445     }
2446
2447     return 0;
2448 }
2449
2450 /**
2451  * Select the output stream to process.
2452  *
2453  * @return  selected output stream, or NULL if none available
2454  */
2455 static OutputStream *choose_output(void)
2456 {
2457     int i;
2458     int64_t opts_min = INT64_MAX;
2459     OutputStream *ost_min = NULL;
2460
2461     for (i = 0; i < nb_output_streams; i++) {
2462         OutputStream *ost = output_streams[i];
2463         int64_t opts = av_rescale_q(ost->st->cur_dts, ost->st->time_base,
2464                                     AV_TIME_BASE_Q);
2465         if (!ost->unavailable && !ost->finished && opts < opts_min) {
2466             opts_min = opts;
2467             ost_min  = ost;
2468         }
2469     }
2470     return ost_min;
2471 }
2472
2473 static int check_keyboard_interaction(int64_t cur_time)
2474 {
2475     int i, ret, key;
2476     static int64_t last_time;
2477     if (received_nb_signals)
2478         return AVERROR_EXIT;
2479     /* read_key() returns 0 on EOF */
2480     if(cur_time - last_time >= 100000 && !run_as_daemon){
2481         key =  read_key();
2482         last_time = cur_time;
2483     }else
2484         key = -1;
2485     if (key == 'q')
2486         return AVERROR_EXIT;
2487     if (key == '+') av_log_set_level(av_log_get_level()+10);
2488     if (key == '-') av_log_set_level(av_log_get_level()-10);
2489     if (key == 's') qp_hist     ^= 1;
2490     if (key == 'h'){
2491         if (do_hex_dump){
2492             do_hex_dump = do_pkt_dump = 0;
2493         } else if(do_pkt_dump){
2494             do_hex_dump = 1;
2495         } else
2496             do_pkt_dump = 1;
2497         av_log_set_level(AV_LOG_DEBUG);
2498     }
2499     if (key == 'c' || key == 'C'){
2500         char buf[4096], target[64], command[256], arg[256] = {0};
2501         double time;
2502         int k, n = 0;
2503         fprintf(stderr, "\nEnter command: <target> <time> <command>[ <argument>]\n");
2504         i = 0;
2505         while ((k = read_key()) != '\n' && k != '\r' && i < sizeof(buf)-1)
2506             if (k > 0)
2507                 buf[i++] = k;
2508         buf[i] = 0;
2509         if (k > 0 &&
2510             (n = sscanf(buf, "%63[^ ] %lf %255[^ ] %255[^\n]", target, &time, command, arg)) >= 3) {
2511             av_log(NULL, AV_LOG_DEBUG, "Processing command target:%s time:%f command:%s arg:%s",
2512                    target, time, command, arg);
2513             for (i = 0; i < nb_filtergraphs; i++) {
2514                 FilterGraph *fg = filtergraphs[i];
2515                 if (fg->graph) {
2516                     if (time < 0) {
2517                         ret = avfilter_graph_send_command(fg->graph, target, command, arg, buf, sizeof(buf),
2518                                                           key == 'c' ? AVFILTER_CMD_FLAG_ONE : 0);
2519                         fprintf(stderr, "Command reply for stream %d: ret:%d res:%s\n", i, ret, buf);
2520                     } else {
2521                         ret = avfilter_graph_queue_command(fg->graph, target, command, arg, 0, time);
2522                     }
2523                 }
2524             }
2525         } else {
2526             av_log(NULL, AV_LOG_ERROR,
2527                    "Parse error, at least 3 arguments were expected, "
2528                    "only %d given in string '%s'\n", n, buf);
2529         }
2530     }
2531     if (key == 'd' || key == 'D'){
2532         int debug=0;
2533         if(key == 'D') {
2534             debug = input_streams[0]->st->codec->debug<<1;
2535             if(!debug) debug = 1;
2536             while(debug & (FF_DEBUG_DCT_COEFF|FF_DEBUG_VIS_QP|FF_DEBUG_VIS_MB_TYPE)) //unsupported, would just crash
2537                 debug += debug;
2538         }else
2539             if(scanf("%d", &debug)!=1)
2540                 fprintf(stderr,"error parsing debug value\n");
2541         for(i=0;i<nb_input_streams;i++) {
2542             input_streams[i]->st->codec->debug = debug;
2543         }
2544         for(i=0;i<nb_output_streams;i++) {
2545             OutputStream *ost = output_streams[i];
2546             ost->st->codec->debug = debug;
2547         }
2548         if(debug) av_log_set_level(AV_LOG_DEBUG);
2549         fprintf(stderr,"debug=%d\n", debug);
2550     }
2551     if (key == '?'){
2552         fprintf(stderr, "key    function\n"
2553                         "?      show this help\n"
2554                         "+      increase verbosity\n"
2555                         "-      decrease verbosity\n"
2556                         "c      Send command to filtergraph\n"
2557                         "D      cycle through available debug modes\n"
2558                         "h      dump packets/hex press to cycle through the 3 states\n"
2559                         "q      quit\n"
2560                         "s      Show QP histogram\n"
2561         );
2562     }
2563     return 0;
2564 }
2565
2566 #if HAVE_PTHREADS
2567 static void *input_thread(void *arg)
2568 {
2569     InputFile *f = arg;
2570     int ret = 0;
2571
2572     while (!transcoding_finished && ret >= 0) {
2573         AVPacket pkt;
2574         ret = av_read_frame(f->ctx, &pkt);
2575
2576         if (ret == AVERROR(EAGAIN)) {
2577             av_usleep(10000);
2578             ret = 0;
2579             continue;
2580         } else if (ret < 0)
2581             break;
2582
2583         pthread_mutex_lock(&f->fifo_lock);
2584         while (!av_fifo_space(f->fifo))
2585             pthread_cond_wait(&f->fifo_cond, &f->fifo_lock);
2586
2587         av_dup_packet(&pkt);
2588         av_fifo_generic_write(f->fifo, &pkt, sizeof(pkt), NULL);
2589
2590         pthread_mutex_unlock(&f->fifo_lock);
2591     }
2592
2593     f->finished = 1;
2594     return NULL;
2595 }
2596
2597 static void free_input_threads(void)
2598 {
2599     int i;
2600
2601     if (nb_input_files == 1)
2602         return;
2603
2604     transcoding_finished = 1;
2605
2606     for (i = 0; i < nb_input_files; i++) {
2607         InputFile *f = input_files[i];
2608         AVPacket pkt;
2609
2610         if (!f->fifo || f->joined)
2611             continue;
2612
2613         pthread_mutex_lock(&f->fifo_lock);
2614         while (av_fifo_size(f->fifo)) {
2615             av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL);
2616             av_free_packet(&pkt);
2617         }
2618         pthread_cond_signal(&f->fifo_cond);
2619         pthread_mutex_unlock(&f->fifo_lock);
2620
2621         pthread_join(f->thread, NULL);
2622         f->joined = 1;
2623
2624         while (av_fifo_size(f->fifo)) {
2625             av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL);
2626             av_free_packet(&pkt);
2627         }
2628         av_fifo_free(f->fifo);
2629     }
2630 }
2631
2632 static int init_input_threads(void)
2633 {
2634     int i, ret;
2635
2636     if (nb_input_files == 1)
2637         return 0;
2638
2639     for (i = 0; i < nb_input_files; i++) {
2640         InputFile *f = input_files[i];
2641
2642         if (!(f->fifo = av_fifo_alloc(8*sizeof(AVPacket))))
2643             return AVERROR(ENOMEM);
2644
2645         pthread_mutex_init(&f->fifo_lock, NULL);
2646         pthread_cond_init (&f->fifo_cond, NULL);
2647
2648         if ((ret = pthread_create(&f->thread, NULL, input_thread, f)))
2649             return AVERROR(ret);
2650     }
2651     return 0;
2652 }
2653
2654 static int get_input_packet_mt(InputFile *f, AVPacket *pkt)
2655 {
2656     int ret = 0;
2657
2658     pthread_mutex_lock(&f->fifo_lock);
2659
2660     if (av_fifo_size(f->fifo)) {
2661         av_fifo_generic_read(f->fifo, pkt, sizeof(*pkt), NULL);
2662         pthread_cond_signal(&f->fifo_cond);
2663     } else {
2664         if (f->finished)
2665             ret = AVERROR_EOF;
2666         else
2667             ret = AVERROR(EAGAIN);
2668     }
2669
2670     pthread_mutex_unlock(&f->fifo_lock);
2671
2672     return ret;
2673 }
2674 #endif
2675
2676 static int get_input_packet(InputFile *f, AVPacket *pkt)
2677 {
2678 #if HAVE_PTHREADS
2679     if (nb_input_files > 1)
2680         return get_input_packet_mt(f, pkt);
2681 #endif
2682     return av_read_frame(f->ctx, pkt);
2683 }
2684
2685 static int got_eagain(void)
2686 {
2687     int i;
2688     for (i = 0; i < nb_output_streams; i++)
2689         if (output_streams[i]->unavailable)
2690             return 1;
2691     return 0;
2692 }
2693
2694 static void reset_eagain(void)
2695 {
2696     int i;
2697     for (i = 0; i < nb_input_files; i++)
2698         input_files[i]->eagain = 0;
2699     for (i = 0; i < nb_output_streams; i++)
2700         output_streams[i]->unavailable = 0;
2701 }
2702
2703 /*
2704  * Return
2705  * - 0 -- one packet was read and processed
2706  * - AVERROR(EAGAIN) -- no packets were available for selected file,
2707  *   this function should be called again
2708  * - AVERROR_EOF -- this function should not be called again
2709  */
2710 static int process_input(int file_index)
2711 {
2712     InputFile *ifile = input_files[file_index];
2713     AVFormatContext *is;
2714     InputStream *ist;
2715     AVPacket pkt;
2716     int ret, i, j;
2717
2718     is  = ifile->ctx;
2719     ret = get_input_packet(ifile, &pkt);
2720
2721     if (ret == AVERROR(EAGAIN)) {
2722         ifile->eagain = 1;
2723         return ret;
2724     }
2725     if (ret < 0) {
2726         if (ret != AVERROR_EOF) {
2727             print_error(is->filename, ret);
2728             if (exit_on_error)
2729                 exit(1);
2730         }
2731         ifile->eof_reached = 1;
2732
2733         for (i = 0; i < ifile->nb_streams; i++) {
2734             ist = input_streams[ifile->ist_index + i];
2735             if (ist->decoding_needed)
2736                 output_packet(ist, NULL);
2737
2738             /* mark all outputs that don't go through lavfi as finished */
2739             for (j = 0; j < nb_output_streams; j++) {
2740                 OutputStream *ost = output_streams[j];
2741
2742                 if (ost->source_index == ifile->ist_index + i &&
2743                     (ost->stream_copy || ost->enc->type == AVMEDIA_TYPE_SUBTITLE))
2744                     close_output_stream(ost);
2745             }
2746         }
2747
2748         return AVERROR(EAGAIN);
2749     }
2750
2751     reset_eagain();
2752
2753     if (do_pkt_dump) {
2754         av_pkt_dump_log2(NULL, AV_LOG_DEBUG, &pkt, do_hex_dump,
2755                          is->streams[pkt.stream_index]);
2756     }
2757     /* the following test is needed in case new streams appear
2758        dynamically in stream : we ignore them */
2759     if (pkt.stream_index >= ifile->nb_streams) {
2760         report_new_stream(file_index, &pkt);
2761         goto discard_packet;
2762     }
2763
2764     ist = input_streams[ifile->ist_index + pkt.stream_index];
2765     if (ist->discard)
2766         goto discard_packet;
2767
2768     if (debug_ts) {
2769         av_log(NULL, AV_LOG_INFO, "demuxer -> ist_index:%d type:%s "
2770                "next_dts:%s next_dts_time:%s next_pts:%s next_pts_time:%s pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s off:%s off_time:%s\n",
2771                ifile->ist_index + pkt.stream_index, av_get_media_type_string(ist->st->codec->codec_type),
2772                av_ts2str(ist->next_dts), av_ts2timestr(ist->next_dts, &AV_TIME_BASE_Q),
2773                av_ts2str(ist->next_pts), av_ts2timestr(ist->next_pts, &AV_TIME_BASE_Q),
2774                av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ist->st->time_base),
2775                av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ist->st->time_base),
2776                av_ts2str(input_files[ist->file_index]->ts_offset),
2777                av_ts2timestr(input_files[ist->file_index]->ts_offset, &AV_TIME_BASE_Q));
2778     }
2779
2780     if(!ist->wrap_correction_done && is->start_time != AV_NOPTS_VALUE && ist->st->pts_wrap_bits < 64){
2781         int64_t stime, stime2;
2782         // Correcting starttime based on the enabled streams
2783         // FIXME this ideally should be done before the first use of starttime but we do not know which are the enabled streams at that point.
2784         //       so we instead do it here as part of discontinuity handling
2785         if (   ist->next_dts == AV_NOPTS_VALUE
2786             && ifile->ts_offset == -is->start_time
2787             && (is->iformat->flags & AVFMT_TS_DISCONT)) {
2788             int64_t new_start_time = INT64_MAX;
2789             for (i=0; i<is->nb_streams; i++) {
2790                 AVStream *st = is->streams[i];
2791                 if(st->discard == AVDISCARD_ALL || st->start_time == AV_NOPTS_VALUE)
2792                     continue;
2793                 new_start_time = FFMIN(new_start_time, av_rescale_q(st->start_time, st->time_base, AV_TIME_BASE_Q));
2794             }
2795             if (new_start_time > is->start_time) {
2796                 av_log(is, AV_LOG_VERBOSE, "Correcting start time by %"PRId64"\n", new_start_time - is->start_time);
2797                 ifile->ts_offset = -new_start_time;
2798             }
2799         }
2800
2801         stime = av_rescale_q(is->start_time, AV_TIME_BASE_Q, ist->st->time_base);
2802         stime2= stime + (1ULL<<ist->st->pts_wrap_bits);
2803         ist->wrap_correction_done = 1;
2804
2805         if(stime2 > stime && pkt.dts != AV_NOPTS_VALUE && pkt.dts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
2806             pkt.dts -= 1ULL<<ist->st->pts_wrap_bits;
2807             ist->wrap_correction_done = 0;
2808         }
2809         if(stime2 > stime && pkt.pts != AV_NOPTS_VALUE && pkt.pts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
2810             pkt.pts -= 1ULL<<ist->st->pts_wrap_bits;
2811             ist->wrap_correction_done = 0;
2812         }
2813     }
2814
2815     if (pkt.dts != AV_NOPTS_VALUE)
2816         pkt.dts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
2817     if (pkt.pts != AV_NOPTS_VALUE)
2818         pkt.pts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
2819
2820     if (pkt.pts != AV_NOPTS_VALUE)
2821         pkt.pts *= ist->ts_scale;
2822     if (pkt.dts != AV_NOPTS_VALUE)
2823         pkt.dts *= ist->ts_scale;
2824
2825     if (pkt.dts != AV_NOPTS_VALUE && ist->next_dts != AV_NOPTS_VALUE &&
2826         !copy_ts) {
2827         int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
2828         int64_t delta   = pkt_dts - ist->next_dts;
2829         if (is->iformat->flags & AVFMT_TS_DISCONT) {
2830         if(delta < -1LL*dts_delta_threshold*AV_TIME_BASE ||
2831             (delta > 1LL*dts_delta_threshold*AV_TIME_BASE &&
2832                 ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE) ||
2833             pkt_dts+1<ist->pts){
2834             ifile->ts_offset -= delta;
2835             av_log(NULL, AV_LOG_DEBUG,
2836                    "timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",
2837                    delta, ifile->ts_offset);
2838             pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
2839             if (pkt.pts != AV_NOPTS_VALUE)
2840                 pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
2841         }
2842         } else {
2843             if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
2844                 (delta > 1LL*dts_error_threshold*AV_TIME_BASE && ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE)
2845                ) {
2846                 av_log(NULL, AV_LOG_WARNING, "DTS %"PRId64", next:%"PRId64" st:%d invalid dropping\n", pkt.dts, ist->next_dts, pkt.stream_index);
2847                 pkt.dts = AV_NOPTS_VALUE;
2848             }
2849             if (pkt.pts != AV_NOPTS_VALUE){
2850                 int64_t pkt_pts = av_rescale_q(pkt.pts, ist->st->time_base, AV_TIME_BASE_Q);
2851                 delta   = pkt_pts - ist->next_dts;
2852                 if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
2853                     (delta > 1LL*dts_error_threshold*AV_TIME_BASE && ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE)
2854                    ) {
2855                     av_log(NULL, AV_LOG_WARNING, "PTS %"PRId64", next:%"PRId64" invalid dropping st:%d\n", pkt.pts, ist->next_dts, pkt.stream_index);
2856                     pkt.pts = AV_NOPTS_VALUE;
2857                 }
2858             }
2859         }
2860     }
2861
2862     if (debug_ts) {
2863         av_log(NULL, AV_LOG_INFO, "demuxer+ffmpeg -> ist_index:%d type:%s pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s off:%s off_time:%s\n",
2864                ifile->ist_index + pkt.stream_index, av_get_media_type_string(ist->st->codec->codec_type),
2865                av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ist->st->time_base),
2866                av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ist->st->time_base),
2867                av_ts2str(input_files[ist->file_index]->ts_offset),
2868                av_ts2timestr(input_files[ist->file_index]->ts_offset, &AV_TIME_BASE_Q));
2869     }
2870
2871     sub2video_heartbeat(ist, pkt.pts);
2872
2873     ret = output_packet(ist, &pkt);
2874     if (ret < 0) {
2875         char buf[128];
2876         av_strerror(ret, buf, sizeof(buf));
2877         av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d: %s\n",
2878                 ist->file_index, ist->st->index, buf);
2879         if (exit_on_error)
2880             exit(1);
2881     }
2882
2883 discard_packet:
2884     av_free_packet(&pkt);
2885
2886     return 0;
2887 }
2888
2889 /**
2890  * Perform a step of transcoding for the specified filter graph.
2891  *
2892  * @param[in]  graph     filter graph to consider
2893  * @param[out] best_ist  input stream where a frame would allow to continue
2894  * @return  0 for success, <0 for error
2895  */
2896 static int transcode_from_filter(FilterGraph *graph, InputStream **best_ist)
2897 {
2898     int i, ret;
2899     int nb_requests, nb_requests_max = 0;
2900     InputFilter *ifilter;
2901     InputStream *ist;
2902
2903     *best_ist = NULL;
2904     ret = avfilter_graph_request_oldest(graph->graph);
2905     if (ret >= 0)
2906         return reap_filters();
2907
2908     if (ret == AVERROR_EOF) {
2909         ret = reap_filters();
2910         for (i = 0; i < graph->nb_outputs; i++)
2911             close_output_stream(graph->outputs[i]->ost);
2912         return ret;
2913     }
2914     if (ret != AVERROR(EAGAIN))
2915         return ret;
2916
2917     for (i = 0; i < graph->nb_inputs; i++) {
2918         ifilter = graph->inputs[i];
2919         ist = ifilter->ist;
2920         if (input_files[ist->file_index]->eagain ||
2921             input_files[ist->file_index]->eof_reached)
2922             continue;
2923         nb_requests = av_buffersrc_get_nb_failed_requests(ifilter->filter);
2924         if (nb_requests > nb_requests_max) {
2925             nb_requests_max = nb_requests;
2926             *best_ist = ist;
2927         }
2928     }
2929
2930     if (!*best_ist)
2931         for (i = 0; i < graph->nb_outputs; i++)
2932             graph->outputs[i]->ost->unavailable = 1;
2933
2934     return 0;
2935 }
2936
2937 /**
2938  * Run a single step of transcoding.
2939  *
2940  * @return  0 for success, <0 for error
2941  */
2942 static int transcode_step(void)
2943 {
2944     OutputStream *ost;
2945     InputStream  *ist;
2946     int ret;
2947
2948     ost = choose_output();
2949     if (!ost) {
2950         if (got_eagain()) {
2951             reset_eagain();
2952             av_usleep(10000);
2953             return 0;
2954         }
2955         av_log(NULL, AV_LOG_VERBOSE, "No more inputs to read from, finishing.\n");
2956         return AVERROR_EOF;
2957     }
2958
2959     if (ost->filter) {
2960         if ((ret = transcode_from_filter(ost->filter->graph, &ist)) < 0)
2961             return ret;
2962         if (!ist)
2963             return 0;
2964     } else {
2965         av_assert0(ost->source_index >= 0);
2966         ist = input_streams[ost->source_index];
2967     }
2968
2969     ret = process_input(ist->file_index);
2970     if (ret == AVERROR(EAGAIN)) {
2971         if (input_files[ist->file_index]->eagain)
2972             ost->unavailable = 1;
2973         return 0;
2974     }
2975     if (ret < 0)
2976         return ret == AVERROR_EOF ? 0 : ret;
2977
2978     return reap_filters();
2979 }
2980
2981 /*
2982  * The following code is the main loop of the file converter
2983  */
2984 static int transcode(void)
2985 {
2986     int ret, i;
2987     AVFormatContext *os;
2988     OutputStream *ost;
2989     InputStream *ist;
2990     int64_t timer_start;
2991
2992     ret = transcode_init();
2993     if (ret < 0)
2994         goto fail;
2995
2996     if (stdin_interaction) {
2997         av_log(NULL, AV_LOG_INFO, "Press [q] to stop, [?] for help\n");
2998     }
2999
3000     timer_start = av_gettime();
3001
3002 #if HAVE_PTHREADS
3003     if ((ret = init_input_threads()) < 0)
3004         goto fail;
3005 #endif
3006
3007     while (!received_sigterm) {
3008         int64_t cur_time= av_gettime();
3009
3010         /* if 'q' pressed, exits */
3011         if (stdin_interaction)
3012             if (check_keyboard_interaction(cur_time) < 0)
3013                 break;
3014
3015         /* check if there's any stream where output is still needed */
3016         if (!need_output()) {
3017             av_log(NULL, AV_LOG_VERBOSE, "No more output streams to write to, finishing.\n");
3018             break;
3019         }
3020
3021         ret = transcode_step();
3022         if (ret < 0) {
3023             if (ret == AVERROR_EOF || ret == AVERROR(EAGAIN))
3024                 continue;
3025
3026             av_log(NULL, AV_LOG_ERROR, "Error while filtering.\n");
3027             break;
3028         }
3029
3030         /* dump report by using the output first video and audio streams */
3031         print_report(0, timer_start, cur_time);
3032     }
3033 #if HAVE_PTHREADS
3034     free_input_threads();
3035 #endif
3036
3037     /* at the end of stream, we must flush the decoder buffers */
3038     for (i = 0; i < nb_input_streams; i++) {
3039         ist = input_streams[i];
3040         if (!input_files[ist->file_index]->eof_reached && ist->decoding_needed) {
3041             output_packet(ist, NULL);
3042         }
3043     }
3044     flush_encoders();
3045
3046     term_exit();
3047
3048     /* write the trailer if needed and close file */
3049     for (i = 0; i < nb_output_files; i++) {
3050         os = output_files[i]->ctx;
3051         av_write_trailer(os);
3052     }
3053
3054     /* dump report by using the first video and audio streams */
3055     print_report(1, timer_start, av_gettime());
3056
3057     /* close each encoder */
3058     for (i = 0; i < nb_output_streams; i++) {
3059         ost = output_streams[i];
3060         if (ost->encoding_needed) {
3061             av_freep(&ost->st->codec->stats_in);
3062             avcodec_close(ost->st->codec);
3063         }
3064     }
3065
3066     /* close each decoder */
3067     for (i = 0; i < nb_input_streams; i++) {
3068         ist = input_streams[i];
3069         if (ist->decoding_needed) {
3070             avcodec_close(ist->st->codec);
3071         }
3072     }
3073
3074     /* finished ! */
3075     ret = 0;
3076
3077  fail:
3078 #if HAVE_PTHREADS
3079     free_input_threads();
3080 #endif
3081
3082     if (output_streams) {
3083         for (i = 0; i < nb_output_streams; i++) {
3084             ost = output_streams[i];
3085             if (ost) {
3086                 if (ost->stream_copy)
3087                     av_freep(&ost->st->codec->extradata);
3088                 if (ost->logfile) {
3089                     fclose(ost->logfile);
3090                     ost->logfile = NULL;
3091                 }
3092                 av_freep(&ost->st->codec->subtitle_header);
3093                 av_free(ost->forced_kf_pts);
3094                 av_dict_free(&ost->opts);
3095             }
3096         }
3097     }
3098     return ret;
3099 }
3100
3101
3102 static int64_t getutime(void)
3103 {
3104 #if HAVE_GETRUSAGE
3105     struct rusage rusage;
3106
3107     getrusage(RUSAGE_SELF, &rusage);
3108     return (rusage.ru_utime.tv_sec * 1000000LL) + rusage.ru_utime.tv_usec;
3109 #elif HAVE_GETPROCESSTIMES
3110     HANDLE proc;
3111     FILETIME c, e, k, u;
3112     proc = GetCurrentProcess();
3113     GetProcessTimes(proc, &c, &e, &k, &u);
3114     return ((int64_t) u.dwHighDateTime << 32 | u.dwLowDateTime) / 10;
3115 #else
3116     return av_gettime();
3117 #endif
3118 }
3119
3120 static int64_t getmaxrss(void)
3121 {
3122 #if HAVE_GETRUSAGE && HAVE_STRUCT_RUSAGE_RU_MAXRSS
3123     struct rusage rusage;
3124     getrusage(RUSAGE_SELF, &rusage);
3125     return (int64_t)rusage.ru_maxrss * 1024;
3126 #elif HAVE_GETPROCESSMEMORYINFO
3127     HANDLE proc;
3128     PROCESS_MEMORY_COUNTERS memcounters;
3129     proc = GetCurrentProcess();
3130     memcounters.cb = sizeof(memcounters);
3131     GetProcessMemoryInfo(proc, &memcounters, sizeof(memcounters));
3132     return memcounters.PeakPagefileUsage;
3133 #else
3134     return 0;
3135 #endif
3136 }
3137
3138 static void log_callback_null(void *ptr, int level, const char *fmt, va_list vl)
3139 {
3140 }
3141
3142 static void parse_cpuflags(int argc, char **argv, const OptionDef *options)
3143 {
3144     int idx = locate_option(argc, argv, options, "cpuflags");
3145     if (idx && argv[idx + 1])
3146         opt_cpuflags(NULL, "cpuflags", argv[idx + 1]);
3147 }
3148
3149 int main(int argc, char **argv)
3150 {
3151     OptionsContext o = { 0 };
3152     int64_t ti;
3153
3154     atexit(exit_program);
3155
3156     reset_options(&o, 0);
3157
3158     setvbuf(stderr,NULL,_IONBF,0); /* win32 runtime needs this */
3159
3160     av_log_set_flags(AV_LOG_SKIP_REPEATED);
3161     parse_loglevel(argc, argv, options);
3162
3163     if(argc>1 && !strcmp(argv[1], "-d")){
3164         run_as_daemon=1;
3165         av_log_set_callback(log_callback_null);
3166         argc--;
3167         argv++;
3168     }
3169
3170     avcodec_register_all();
3171 #if CONFIG_AVDEVICE
3172     avdevice_register_all();
3173 #endif
3174     avfilter_register_all();
3175     av_register_all();
3176     avformat_network_init();
3177
3178     show_banner(argc, argv, options);
3179
3180     term_init();
3181
3182     parse_cpuflags(argc, argv, options);
3183
3184     /* parse options */
3185     parse_options(&o, argc, argv, options, opt_output_file);
3186
3187     if (nb_output_files <= 0 && nb_input_files == 0) {
3188         show_usage();
3189         av_log(NULL, AV_LOG_WARNING, "Use -h to get full help or, even better, run 'man %s'\n", program_name);
3190         exit(1);
3191     }
3192
3193     /* file converter / grab */
3194     if (nb_output_files <= 0) {
3195         av_log(NULL, AV_LOG_FATAL, "At least one output file must be specified\n");
3196         exit(1);
3197     }
3198
3199 //     if (nb_input_files == 0) {
3200 //         av_log(NULL, AV_LOG_FATAL, "At least one input file must be specified\n");
3201 //         exit(1);
3202 //     }
3203
3204     current_time = ti = getutime();
3205     if (transcode() < 0)
3206         exit(1);
3207     ti = getutime() - ti;
3208     if (do_benchmark) {
3209         int maxrss = getmaxrss() / 1024;
3210         printf("bench: utime=%0.3fs maxrss=%ikB\n", ti / 1000000.0, maxrss);
3211     }
3212
3213     exit(0);
3214     return 0;
3215 }