2 * Copyright (c) 2000-2003 Fabrice Bellard
4 * This file is part of FFmpeg.
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.
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.
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
23 * multimedia converter based on the FFmpeg libraries
44 #include "libavformat/avformat.h"
45 #include "libavdevice/avdevice.h"
46 #include "libswresample/swresample.h"
47 #include "libavutil/opt.h"
48 #include "libavutil/channel_layout.h"
49 #include "libavutil/parseutils.h"
50 #include "libavutil/samplefmt.h"
51 #include "libavutil/fifo.h"
52 #include "libavutil/intreadwrite.h"
53 #include "libavutil/dict.h"
54 #include "libavutil/mathematics.h"
55 #include "libavutil/pixdesc.h"
56 #include "libavutil/avstring.h"
57 #include "libavutil/libm.h"
58 #include "libavutil/imgutils.h"
59 #include "libavutil/timestamp.h"
60 #include "libavutil/bprint.h"
61 #include "libavutil/time.h"
62 #include "libavformat/os_support.h"
64 #include "libavformat/ffm.h" // not public API
66 # include "libavfilter/avcodec.h"
67 # include "libavfilter/avfilter.h"
68 # include "libavfilter/buffersrc.h"
69 # include "libavfilter/buffersink.h"
71 #if HAVE_SYS_RESOURCE_H
73 #include <sys/types.h>
74 #include <sys/resource.h>
75 #elif HAVE_GETPROCESSTIMES
78 #if HAVE_GETPROCESSMEMORYINFO
84 #include <sys/select.h>
89 #include <sys/ioctl.h>
103 #include "cmdutils.h"
105 #include "libavutil/avassert.h"
107 const char program_name[] = "ffmpeg";
108 const int program_birth_year = 2000;
110 static FILE *vstats_file;
112 const char *const forced_keyframes_const_names[] = {
121 static void do_video_stats(OutputStream *ost, int frame_size);
122 static int64_t getutime(void);
123 static int64_t getmaxrss(void);
125 static int run_as_daemon = 0;
126 static int64_t video_size = 0;
127 static int64_t audio_size = 0;
128 static int64_t subtitle_size = 0;
129 static int64_t extra_size = 0;
130 static int nb_frames_dup = 0;
131 static int nb_frames_drop = 0;
132 static int64_t decode_error_stat[2];
134 static int current_time;
135 AVIOContext *progress_avio = NULL;
137 static uint8_t *subtitle_out;
140 /* signal to input threads that they should exit; set by the main thread */
141 static int transcoding_finished;
144 #define DEFAULT_PASS_LOGFILENAME_PREFIX "ffmpeg2pass"
146 InputStream **input_streams = NULL;
147 int nb_input_streams = 0;
148 InputFile **input_files = NULL;
149 int nb_input_files = 0;
151 OutputStream **output_streams = NULL;
152 int nb_output_streams = 0;
153 OutputFile **output_files = NULL;
154 int nb_output_files = 0;
156 FilterGraph **filtergraphs;
161 /* init terminal so that we can grab keys */
162 static struct termios oldtty;
163 static int restore_tty;
166 static void free_input_threads(void);
170 Convert subtitles to video with alpha to insert them in filter graphs.
171 This is a temporary solution until libavfilter gets real subtitles support.
174 static int sub2video_get_blank_frame(InputStream *ist)
177 AVFrame *frame = ist->sub2video.frame;
179 av_frame_unref(frame);
180 ist->sub2video.frame->width = ist->sub2video.w;
181 ist->sub2video.frame->height = ist->sub2video.h;
182 ist->sub2video.frame->format = AV_PIX_FMT_RGB32;
183 if ((ret = av_frame_get_buffer(frame, 32)) < 0)
185 memset(frame->data[0], 0, frame->height * frame->linesize[0]);
189 static void sub2video_copy_rect(uint8_t *dst, int dst_linesize, int w, int h,
192 uint32_t *pal, *dst2;
196 if (r->type != SUBTITLE_BITMAP) {
197 av_log(NULL, AV_LOG_WARNING, "sub2video: non-bitmap subtitle\n");
200 if (r->x < 0 || r->x + r->w > w || r->y < 0 || r->y + r->h > h) {
201 av_log(NULL, AV_LOG_WARNING, "sub2video: rectangle overflowing\n");
205 dst += r->y * dst_linesize + r->x * 4;
206 src = r->pict.data[0];
207 pal = (uint32_t *)r->pict.data[1];
208 for (y = 0; y < r->h; y++) {
209 dst2 = (uint32_t *)dst;
211 for (x = 0; x < r->w; x++)
212 *(dst2++) = pal[*(src2++)];
214 src += r->pict.linesize[0];
218 static void sub2video_push_ref(InputStream *ist, int64_t pts)
220 AVFrame *frame = ist->sub2video.frame;
223 av_assert1(frame->data[0]);
224 ist->sub2video.last_pts = frame->pts = pts;
225 for (i = 0; i < ist->nb_filters; i++)
226 av_buffersrc_add_frame_flags(ist->filters[i]->filter, frame,
227 AV_BUFFERSRC_FLAG_KEEP_REF |
228 AV_BUFFERSRC_FLAG_PUSH);
231 static void sub2video_update(InputStream *ist, AVSubtitle *sub)
233 int w = ist->sub2video.w, h = ist->sub2video.h;
234 AVFrame *frame = ist->sub2video.frame;
238 int64_t pts, end_pts;
243 pts = av_rescale_q(sub->pts + sub->start_display_time * 1000,
244 AV_TIME_BASE_Q, ist->st->time_base);
245 end_pts = av_rescale_q(sub->pts + sub->end_display_time * 1000,
246 AV_TIME_BASE_Q, ist->st->time_base);
247 num_rects = sub->num_rects;
249 pts = ist->sub2video.end_pts;
253 if (sub2video_get_blank_frame(ist) < 0) {
254 av_log(ist->st->codec, AV_LOG_ERROR,
255 "Impossible to get a blank canvas.\n");
258 dst = frame->data [0];
259 dst_linesize = frame->linesize[0];
260 for (i = 0; i < num_rects; i++)
261 sub2video_copy_rect(dst, dst_linesize, w, h, sub->rects[i]);
262 sub2video_push_ref(ist, pts);
263 ist->sub2video.end_pts = end_pts;
266 static void sub2video_heartbeat(InputStream *ist, int64_t pts)
268 InputFile *infile = input_files[ist->file_index];
272 /* When a frame is read from a file, examine all sub2video streams in
273 the same file and send the sub2video frame again. Otherwise, decoded
274 video frames could be accumulating in the filter graph while a filter
275 (possibly overlay) is desperately waiting for a subtitle frame. */
276 for (i = 0; i < infile->nb_streams; i++) {
277 InputStream *ist2 = input_streams[infile->ist_index + i];
278 if (!ist2->sub2video.frame)
280 /* subtitles seem to be usually muxed ahead of other streams;
281 if not, substracting a larger time here is necessary */
282 pts2 = av_rescale_q(pts, ist->st->time_base, ist2->st->time_base) - 1;
283 /* do not send the heartbeat frame if the subtitle is already ahead */
284 if (pts2 <= ist2->sub2video.last_pts)
286 if (pts2 >= ist2->sub2video.end_pts || !ist2->sub2video.frame->data[0])
287 sub2video_update(ist2, NULL);
288 for (j = 0, nb_reqs = 0; j < ist2->nb_filters; j++)
289 nb_reqs += av_buffersrc_get_nb_failed_requests(ist2->filters[j]->filter);
291 sub2video_push_ref(ist2, pts2);
295 static void sub2video_flush(InputStream *ist)
299 for (i = 0; i < ist->nb_filters; i++)
300 av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
303 /* end of sub2video hack */
307 av_log(NULL, AV_LOG_QUIET, "%s", "");
310 tcsetattr (0, TCSANOW, &oldtty);
314 static volatile int received_sigterm = 0;
315 static volatile int received_nb_signals = 0;
318 sigterm_handler(int sig)
320 received_sigterm = sig;
321 received_nb_signals++;
323 if(received_nb_signals > 3)
334 istty = isatty(0) && isatty(2);
336 if (istty && tcgetattr (0, &tty) == 0) {
340 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
341 |INLCR|IGNCR|ICRNL|IXON);
342 tty.c_oflag |= OPOST;
343 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
344 tty.c_cflag &= ~(CSIZE|PARENB);
349 tcsetattr (0, TCSANOW, &tty);
351 signal(SIGQUIT, sigterm_handler); /* Quit (POSIX). */
354 avformat_network_deinit();
356 signal(SIGINT , sigterm_handler); /* Interrupt (ANSI). */
357 signal(SIGTERM, sigterm_handler); /* Termination (ANSI). */
359 signal(SIGXCPU, sigterm_handler);
363 /* read a key without blocking */
364 static int read_key(void)
376 n = select(1, &rfds, NULL, NULL, &tv);
385 # if HAVE_PEEKNAMEDPIPE
387 static HANDLE input_handle;
390 input_handle = GetStdHandle(STD_INPUT_HANDLE);
391 is_pipe = !GetConsoleMode(input_handle, &dw);
394 if (stdin->_cnt > 0) {
399 /* When running under a GUI, you will end here. */
400 if (!PeekNamedPipe(input_handle, NULL, 0, NULL, &nchars, NULL)) {
401 // input pipe may have been closed by the program that ran ffmpeg
419 static int decode_interrupt_cb(void *ctx)
421 return received_nb_signals > 1;
424 const AVIOInterruptCB int_cb = { decode_interrupt_cb, NULL };
426 static void ffmpeg_cleanup(int ret)
431 int maxrss = getmaxrss() / 1024;
432 printf("bench: maxrss=%ikB\n", maxrss);
435 for (i = 0; i < nb_filtergraphs; i++) {
436 avfilter_graph_free(&filtergraphs[i]->graph);
437 for (j = 0; j < filtergraphs[i]->nb_inputs; j++) {
438 av_freep(&filtergraphs[i]->inputs[j]->name);
439 av_freep(&filtergraphs[i]->inputs[j]);
441 av_freep(&filtergraphs[i]->inputs);
442 for (j = 0; j < filtergraphs[i]->nb_outputs; j++) {
443 av_freep(&filtergraphs[i]->outputs[j]->name);
444 av_freep(&filtergraphs[i]->outputs[j]);
446 av_freep(&filtergraphs[i]->outputs);
447 av_freep(&filtergraphs[i]->graph_desc);
448 av_freep(&filtergraphs[i]);
450 av_freep(&filtergraphs);
452 av_freep(&subtitle_out);
455 for (i = 0; i < nb_output_files; i++) {
456 AVFormatContext *s = output_files[i]->ctx;
457 if (s && s->oformat && !(s->oformat->flags & AVFMT_NOFILE) && s->pb)
459 avformat_free_context(s);
460 av_dict_free(&output_files[i]->opts);
461 av_freep(&output_files[i]);
463 for (i = 0; i < nb_output_streams; i++) {
464 AVBitStreamFilterContext *bsfc = output_streams[i]->bitstream_filters;
466 AVBitStreamFilterContext *next = bsfc->next;
467 av_bitstream_filter_close(bsfc);
470 output_streams[i]->bitstream_filters = NULL;
471 avcodec_free_frame(&output_streams[i]->filtered_frame);
473 av_parser_close(output_streams[i]->parser);
475 av_freep(&output_streams[i]->forced_keyframes);
476 av_expr_free(output_streams[i]->forced_keyframes_pexpr);
477 av_freep(&output_streams[i]->avfilter);
478 av_freep(&output_streams[i]->logfile_prefix);
479 av_freep(&output_streams[i]);
482 free_input_threads();
484 for (i = 0; i < nb_input_files; i++) {
485 avformat_close_input(&input_files[i]->ctx);
486 av_freep(&input_files[i]);
488 for (i = 0; i < nb_input_streams; i++) {
489 av_frame_free(&input_streams[i]->decoded_frame);
490 av_frame_free(&input_streams[i]->filter_frame);
491 av_dict_free(&input_streams[i]->opts);
492 avsubtitle_free(&input_streams[i]->prev_sub.subtitle);
493 av_frame_free(&input_streams[i]->sub2video.frame);
494 av_freep(&input_streams[i]->filters);
495 av_freep(&input_streams[i]->hwaccel_device);
496 av_freep(&input_streams[i]);
501 av_free(vstats_filename);
503 av_freep(&input_streams);
504 av_freep(&input_files);
505 av_freep(&output_streams);
506 av_freep(&output_files);
510 avformat_network_deinit();
512 if (received_sigterm) {
513 av_log(NULL, AV_LOG_INFO, "Received signal %d: terminating.\n",
514 (int) received_sigterm);
519 void assert_avoptions(AVDictionary *m)
521 AVDictionaryEntry *t;
522 if ((t = av_dict_get(m, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
523 av_log(NULL, AV_LOG_FATAL, "Option %s not found.\n", t->key);
528 static void abort_codec_experimental(AVCodec *c, int encoder)
533 static void update_benchmark(const char *fmt, ...)
535 if (do_benchmark_all) {
536 int64_t t = getutime();
542 vsnprintf(buf, sizeof(buf), fmt, va);
544 printf("bench: %8"PRIu64" %s \n", t - current_time, buf);
550 static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost)
552 AVBitStreamFilterContext *bsfc = ost->bitstream_filters;
553 AVCodecContext *avctx = ost->st->codec;
556 if ((avctx->codec_type == AVMEDIA_TYPE_VIDEO && video_sync_method == VSYNC_DROP) ||
557 (avctx->codec_type == AVMEDIA_TYPE_AUDIO && audio_sync_method < 0))
558 pkt->pts = pkt->dts = AV_NOPTS_VALUE;
561 * Audio encoders may split the packets -- #frames in != #packets out.
562 * But there is no reordering, so we can limit the number of output packets
563 * by simply dropping them here.
564 * Counting encoded video frames needs to be done separately because of
565 * reordering, see do_video_out()
567 if (!(avctx->codec_type == AVMEDIA_TYPE_VIDEO && avctx->codec)) {
568 if (ost->frame_number >= ost->max_frames) {
576 AVPacket new_pkt = *pkt;
577 int a = av_bitstream_filter_filter(bsfc, avctx, NULL,
578 &new_pkt.data, &new_pkt.size,
579 pkt->data, pkt->size,
580 pkt->flags & AV_PKT_FLAG_KEY);
581 if(a == 0 && new_pkt.data != pkt->data && new_pkt.destruct) {
582 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
584 memcpy(t, new_pkt.data, new_pkt.size);
585 memset(t + new_pkt.size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
594 new_pkt.buf = av_buffer_create(new_pkt.data, new_pkt.size,
595 av_buffer_default_free, NULL, 0);
599 av_log(NULL, AV_LOG_ERROR, "Failed to open bitstream filter %s for stream %d with codec %s",
600 bsfc->filter->name, pkt->stream_index,
601 avctx->codec ? avctx->codec->name : "copy");
611 if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS) &&
612 (avctx->codec_type == AVMEDIA_TYPE_AUDIO || avctx->codec_type == AVMEDIA_TYPE_VIDEO) &&
613 pkt->dts != AV_NOPTS_VALUE &&
614 ost->last_mux_dts != AV_NOPTS_VALUE) {
615 int64_t max = ost->last_mux_dts + !(s->oformat->flags & AVFMT_TS_NONSTRICT);
616 if (pkt->dts < max) {
617 int loglevel = max - pkt->dts > 2 || avctx->codec_type == AVMEDIA_TYPE_VIDEO ? AV_LOG_WARNING : AV_LOG_DEBUG;
618 av_log(s, loglevel, "Non-monotonous DTS in output stream "
619 "%d:%d; previous: %"PRId64", current: %"PRId64"; ",
620 ost->file_index, ost->st->index, ost->last_mux_dts, pkt->dts);
622 av_log(NULL, AV_LOG_FATAL, "aborting.\n");
625 av_log(s, loglevel, "changing to %"PRId64". This may result "
626 "in incorrect timestamps in the output file.\n",
628 if(pkt->pts >= pkt->dts)
629 pkt->pts = FFMAX(pkt->pts, max);
633 ost->last_mux_dts = pkt->dts;
635 pkt->stream_index = ost->index;
638 av_log(NULL, AV_LOG_INFO, "muxer <- type:%s "
639 "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s size:%d\n",
640 av_get_media_type_string(ost->st->codec->codec_type),
641 av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &ost->st->time_base),
642 av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &ost->st->time_base),
647 ret = av_interleaved_write_frame(s, pkt);
649 print_error("av_interleaved_write_frame()", ret);
654 static void close_output_stream(OutputStream *ost)
656 OutputFile *of = output_files[ost->file_index];
660 int64_t end = av_rescale_q(ost->sync_opts - ost->first_pts, ost->st->codec->time_base, AV_TIME_BASE_Q);
661 of->recording_time = FFMIN(of->recording_time, end);
665 static int check_recording_time(OutputStream *ost)
667 OutputFile *of = output_files[ost->file_index];
669 if (of->recording_time != INT64_MAX &&
670 av_compare_ts(ost->sync_opts - ost->first_pts, ost->st->codec->time_base, of->recording_time,
671 AV_TIME_BASE_Q) >= 0) {
672 close_output_stream(ost);
678 static void do_audio_out(AVFormatContext *s, OutputStream *ost,
681 AVCodecContext *enc = ost->st->codec;
685 av_init_packet(&pkt);
689 if (!check_recording_time(ost))
692 if (frame->pts == AV_NOPTS_VALUE || audio_sync_method < 0)
693 frame->pts = ost->sync_opts;
694 ost->sync_opts = frame->pts + frame->nb_samples;
696 av_assert0(pkt.size || !pkt.data);
697 update_benchmark(NULL);
698 if (avcodec_encode_audio2(enc, &pkt, frame, &got_packet) < 0) {
699 av_log(NULL, AV_LOG_FATAL, "Audio encoding failed (avcodec_encode_audio2)\n");
702 update_benchmark("encode_audio %d.%d", ost->file_index, ost->index);
705 if (pkt.pts != AV_NOPTS_VALUE)
706 pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base);
707 if (pkt.dts != AV_NOPTS_VALUE)
708 pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base);
709 if (pkt.duration > 0)
710 pkt.duration = av_rescale_q(pkt.duration, enc->time_base, ost->st->time_base);
713 av_log(NULL, AV_LOG_INFO, "encoder -> type:audio "
714 "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
715 av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ost->st->time_base),
716 av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ost->st->time_base));
719 audio_size += pkt.size;
720 write_frame(s, &pkt, ost);
722 av_free_packet(&pkt);
726 static void do_subtitle_out(AVFormatContext *s,
731 int subtitle_out_max_size = 1024 * 1024;
732 int subtitle_out_size, nb, i;
737 if (sub->pts == AV_NOPTS_VALUE) {
738 av_log(NULL, AV_LOG_ERROR, "Subtitle packets must have a pts\n");
744 enc = ost->st->codec;
747 subtitle_out = av_malloc(subtitle_out_max_size);
750 /* Note: DVB subtitle need one packet to draw them and one other
751 packet to clear them */
752 /* XXX: signal it in the codec context ? */
753 if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE)
758 /* shift timestamp to honor -ss and make check_recording_time() work with -t */
760 if (output_files[ost->file_index]->start_time != AV_NOPTS_VALUE)
761 pts -= output_files[ost->file_index]->start_time;
762 for (i = 0; i < nb; i++) {
763 ost->sync_opts = av_rescale_q(pts, AV_TIME_BASE_Q, enc->time_base);
764 if (!check_recording_time(ost))
768 // start_display_time is required to be 0
769 sub->pts += av_rescale_q(sub->start_display_time, (AVRational){ 1, 1000 }, AV_TIME_BASE_Q);
770 sub->end_display_time -= sub->start_display_time;
771 sub->start_display_time = 0;
774 subtitle_out_size = avcodec_encode_subtitle(enc, subtitle_out,
775 subtitle_out_max_size, sub);
776 if (subtitle_out_size < 0) {
777 av_log(NULL, AV_LOG_FATAL, "Subtitle encoding failed\n");
781 av_init_packet(&pkt);
782 pkt.data = subtitle_out;
783 pkt.size = subtitle_out_size;
784 pkt.pts = av_rescale_q(sub->pts, AV_TIME_BASE_Q, ost->st->time_base);
785 pkt.duration = av_rescale_q(sub->end_display_time, (AVRational){ 1, 1000 }, ost->st->time_base);
786 if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE) {
787 /* XXX: the pts correction is handled here. Maybe handling
788 it in the codec would be better */
790 pkt.pts += 90 * sub->start_display_time;
792 pkt.pts += 90 * sub->end_display_time;
794 subtitle_size += pkt.size;
795 write_frame(s, &pkt, ost);
799 static void do_video_out(AVFormatContext *s,
803 int ret, format_video_sync;
805 AVCodecContext *enc = ost->st->codec;
807 double sync_ipts, delta;
810 InputStream *ist = NULL;
812 if (ost->source_index >= 0)
813 ist = input_streams[ost->source_index];
815 if(ist && ist->st->start_time != AV_NOPTS_VALUE && ist->st->first_dts != AV_NOPTS_VALUE && ost->frame_rate.num)
816 duration = 1/(av_q2d(ost->frame_rate) * av_q2d(enc->time_base));
818 sync_ipts = in_picture->pts;
819 delta = sync_ipts - ost->sync_opts + duration;
821 /* by default, we output a single frame */
824 format_video_sync = video_sync_method;
825 if (format_video_sync == VSYNC_AUTO) {
826 if(!strcmp(s->oformat->name, "avi")) {
827 format_video_sync = VSYNC_VFR;
829 format_video_sync = (s->oformat->flags & AVFMT_VARIABLE_FPS) ? ((s->oformat->flags & AVFMT_NOTIMESTAMPS) ? VSYNC_PASSTHROUGH : VSYNC_VFR) : VSYNC_CFR;
831 && format_video_sync == VSYNC_CFR
832 && input_files[ist->file_index]->ctx->nb_streams == 1
833 && input_files[ist->file_index]->input_ts_offset == 0) {
834 format_video_sync = VSYNC_VSCFR;
836 if (format_video_sync == VSYNC_CFR && copy_ts) {
837 format_video_sync = VSYNC_VSCFR;
841 switch (format_video_sync) {
843 if (ost->frame_number == 0 && delta - duration >= 0.5) {
844 av_log(NULL, AV_LOG_DEBUG, "Not duplicating %d initial frames\n", (int)lrintf(delta - duration));
846 ost->sync_opts = lrint(sync_ipts);
849 // FIXME set to 0.5 after we fix some dts/pts bugs like in avidec.c
852 else if (delta > 1.1)
853 nb_frames = lrintf(delta);
858 else if (delta > 0.6)
859 ost->sync_opts = lrint(sync_ipts);
862 case VSYNC_PASSTHROUGH:
863 ost->sync_opts = lrint(sync_ipts);
869 nb_frames = FFMIN(nb_frames, ost->max_frames - ost->frame_number);
870 if (nb_frames == 0) {
872 av_log(NULL, AV_LOG_VERBOSE, "*** drop!\n");
874 } else if (nb_frames > 1) {
875 if (nb_frames > dts_error_threshold * 30) {
876 av_log(NULL, AV_LOG_ERROR, "%d frame duplication too large, skipping\n", nb_frames - 1);
880 nb_frames_dup += nb_frames - 1;
881 av_log(NULL, AV_LOG_VERBOSE, "*** %d dup!\n", nb_frames - 1);
884 /* duplicates frame if needed */
885 for (i = 0; i < nb_frames; i++) {
886 av_init_packet(&pkt);
890 in_picture->pts = ost->sync_opts;
893 if (!check_recording_time(ost))
895 if (ost->frame_number >= ost->max_frames)
899 if (s->oformat->flags & AVFMT_RAWPICTURE &&
900 enc->codec->id == AV_CODEC_ID_RAWVIDEO) {
901 /* raw pictures are written as AVPicture structure to
902 avoid any copies. We support temporarily the older
904 enc->coded_frame->interlaced_frame = in_picture->interlaced_frame;
905 enc->coded_frame->top_field_first = in_picture->top_field_first;
906 if (enc->coded_frame->interlaced_frame)
907 enc->field_order = enc->coded_frame->top_field_first ? AV_FIELD_TB:AV_FIELD_BT;
909 enc->field_order = AV_FIELD_PROGRESSIVE;
910 pkt.data = (uint8_t *)in_picture;
911 pkt.size = sizeof(AVPicture);
912 pkt.pts = av_rescale_q(in_picture->pts, enc->time_base, ost->st->time_base);
913 pkt.flags |= AV_PKT_FLAG_KEY;
915 video_size += pkt.size;
916 write_frame(s, &pkt, ost);
918 int got_packet, forced_keyframe = 0;
921 if (ost->st->codec->flags & (CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_INTERLACED_ME) &&
922 ost->top_field_first >= 0)
923 in_picture->top_field_first = !!ost->top_field_first;
925 if (in_picture->interlaced_frame) {
926 if (enc->codec->id == AV_CODEC_ID_MJPEG)
927 enc->field_order = in_picture->top_field_first ? AV_FIELD_TT:AV_FIELD_BB;
929 enc->field_order = in_picture->top_field_first ? AV_FIELD_TB:AV_FIELD_BT;
931 enc->field_order = AV_FIELD_PROGRESSIVE;
933 in_picture->quality = ost->st->codec->global_quality;
934 if (!enc->me_threshold)
935 in_picture->pict_type = 0;
937 pts_time = in_picture->pts != AV_NOPTS_VALUE ?
938 in_picture->pts * av_q2d(enc->time_base) : NAN;
939 if (ost->forced_kf_index < ost->forced_kf_count &&
940 in_picture->pts >= ost->forced_kf_pts[ost->forced_kf_index]) {
941 ost->forced_kf_index++;
943 } else if (ost->forced_keyframes_pexpr) {
945 ost->forced_keyframes_expr_const_values[FKF_T] = pts_time;
946 res = av_expr_eval(ost->forced_keyframes_pexpr,
947 ost->forced_keyframes_expr_const_values, NULL);
948 av_dlog(NULL, "force_key_frame: n:%f n_forced:%f prev_forced_n:%f t:%f prev_forced_t:%f -> res:%f\n",
949 ost->forced_keyframes_expr_const_values[FKF_N],
950 ost->forced_keyframes_expr_const_values[FKF_N_FORCED],
951 ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_N],
952 ost->forced_keyframes_expr_const_values[FKF_T],
953 ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_T],
957 ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_N] =
958 ost->forced_keyframes_expr_const_values[FKF_N];
959 ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_T] =
960 ost->forced_keyframes_expr_const_values[FKF_T];
961 ost->forced_keyframes_expr_const_values[FKF_N_FORCED] += 1;
964 ost->forced_keyframes_expr_const_values[FKF_N] += 1;
966 if (forced_keyframe) {
967 in_picture->pict_type = AV_PICTURE_TYPE_I;
968 av_log(NULL, AV_LOG_DEBUG, "Forced keyframe at time %f\n", pts_time);
971 update_benchmark(NULL);
972 ret = avcodec_encode_video2(enc, &pkt, in_picture, &got_packet);
973 update_benchmark("encode_video %d.%d", ost->file_index, ost->index);
975 av_log(NULL, AV_LOG_FATAL, "Video encoding failed\n");
980 if (pkt.pts == AV_NOPTS_VALUE && !(enc->codec->capabilities & CODEC_CAP_DELAY))
981 pkt.pts = ost->sync_opts;
983 if (pkt.pts != AV_NOPTS_VALUE)
984 pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base);
985 if (pkt.dts != AV_NOPTS_VALUE)
986 pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base);
989 av_log(NULL, AV_LOG_INFO, "encoder -> type:video "
990 "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
991 av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ost->st->time_base),
992 av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ost->st->time_base));
995 frame_size = pkt.size;
996 video_size += pkt.size;
997 write_frame(s, &pkt, ost);
998 av_free_packet(&pkt);
1000 /* if two pass, output log */
1001 if (ost->logfile && enc->stats_out) {
1002 fprintf(ost->logfile, "%s", enc->stats_out);
1008 * For video, number of frames in == number of packets out.
1009 * But there may be reordering, so we can't throw away frames on encoder
1010 * flush, we need to limit them here, before they go into encoder.
1012 ost->frame_number++;
1014 if (vstats_filename && frame_size)
1015 do_video_stats(ost, frame_size);
1019 static double psnr(double d)
1021 return -10.0 * log(d) / log(10.0);
1024 static void do_video_stats(OutputStream *ost, int frame_size)
1026 AVCodecContext *enc;
1028 double ti1, bitrate, avg_bitrate;
1030 /* this is executed just the first time do_video_stats is called */
1032 vstats_file = fopen(vstats_filename, "w");
1039 enc = ost->st->codec;
1040 if (enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1041 frame_number = ost->st->nb_frames;
1042 fprintf(vstats_file, "frame= %5d q= %2.1f ", frame_number, enc->coded_frame->quality / (float)FF_QP2LAMBDA);
1043 if (enc->flags&CODEC_FLAG_PSNR)
1044 fprintf(vstats_file, "PSNR= %6.2f ", psnr(enc->coded_frame->error[0] / (enc->width * enc->height * 255.0 * 255.0)));
1046 fprintf(vstats_file,"f_size= %6d ", frame_size);
1047 /* compute pts value */
1048 ti1 = ost->st->pts.val * av_q2d(enc->time_base);
1052 bitrate = (frame_size * 8) / av_q2d(enc->time_base) / 1000.0;
1053 avg_bitrate = (double)(video_size * 8) / ti1 / 1000.0;
1054 fprintf(vstats_file, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ",
1055 (double)video_size / 1024, ti1, bitrate, avg_bitrate);
1056 fprintf(vstats_file, "type= %c\n", av_get_picture_type_char(enc->coded_frame->pict_type));
1061 * Get and encode new output from any of the filtergraphs, without causing
1064 * @return 0 for success, <0 for severe errors
1066 static int reap_filters(void)
1068 AVFrame *filtered_frame = NULL;
1072 /* Reap all buffers present in the buffer sinks */
1073 for (i = 0; i < nb_output_streams; i++) {
1074 OutputStream *ost = output_streams[i];
1075 OutputFile *of = output_files[ost->file_index];
1081 if (!ost->filtered_frame && !(ost->filtered_frame = av_frame_alloc())) {
1082 return AVERROR(ENOMEM);
1084 avcodec_get_frame_defaults(ost->filtered_frame);
1085 filtered_frame = ost->filtered_frame;
1088 ret = av_buffersink_get_frame_flags(ost->filter->filter, filtered_frame,
1089 AV_BUFFERSINK_FLAG_NO_REQUEST);
1091 if (ret != AVERROR(EAGAIN) && ret != AVERROR_EOF) {
1092 av_log(NULL, AV_LOG_WARNING,
1093 "Error in av_buffersink_get_frame_flags(): %s\n", av_err2str(ret));
1097 frame_pts = AV_NOPTS_VALUE;
1098 if (filtered_frame->pts != AV_NOPTS_VALUE) {
1099 int64_t start_time = (of->start_time == AV_NOPTS_VALUE) ? 0 : of->start_time;
1100 filtered_frame->pts = frame_pts = av_rescale_q(filtered_frame->pts,
1101 ost->filter->filter->inputs[0]->time_base,
1102 ost->st->codec->time_base) -
1103 av_rescale_q(start_time,
1105 ost->st->codec->time_base);
1107 //if (ost->source_index >= 0)
1108 // *filtered_frame= *input_streams[ost->source_index]->decoded_frame; //for me_threshold
1111 switch (ost->filter->filter->inputs[0]->type) {
1112 case AVMEDIA_TYPE_VIDEO:
1113 filtered_frame->pts = frame_pts;
1114 if (!ost->frame_aspect_ratio.num)
1115 ost->st->codec->sample_aspect_ratio = filtered_frame->sample_aspect_ratio;
1117 do_video_out(of->ctx, ost, filtered_frame);
1119 case AVMEDIA_TYPE_AUDIO:
1120 filtered_frame->pts = frame_pts;
1121 if (!(ost->st->codec->codec->capabilities & CODEC_CAP_PARAM_CHANGE) &&
1122 ost->st->codec->channels != av_frame_get_channels(filtered_frame)) {
1123 av_log(NULL, AV_LOG_ERROR,
1124 "Audio filter graph output is not normalized and encoder does not support parameter changes\n");
1127 do_audio_out(of->ctx, ost, filtered_frame);
1130 // TODO support subtitle filters
1134 av_frame_unref(filtered_frame);
1141 static void print_report(int is_last_report, int64_t timer_start, int64_t cur_time)
1144 AVBPrint buf_script;
1146 AVFormatContext *oc;
1148 AVCodecContext *enc;
1149 int frame_number, vid, i;
1151 int64_t pts = INT64_MIN;
1152 static int64_t last_time = -1;
1153 static int qp_histogram[52];
1154 int hours, mins, secs, us;
1156 if (!print_stats && !is_last_report && !progress_avio)
1159 if (!is_last_report) {
1160 if (last_time == -1) {
1161 last_time = cur_time;
1164 if ((cur_time - last_time) < 500000)
1166 last_time = cur_time;
1170 oc = output_files[0]->ctx;
1172 total_size = avio_size(oc->pb);
1173 if (total_size <= 0) // FIXME improve avio_size() so it works with non seekable output too
1174 total_size = avio_tell(oc->pb);
1178 av_bprint_init(&buf_script, 0, 1);
1179 for (i = 0; i < nb_output_streams; i++) {
1181 ost = output_streams[i];
1182 enc = ost->st->codec;
1183 if (!ost->stream_copy && enc->coded_frame)
1184 q = enc->coded_frame->quality / (float)FF_QP2LAMBDA;
1185 if (vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1186 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "q=%2.1f ", q);
1187 av_bprintf(&buf_script, "stream_%d_%d_q=%.1f\n",
1188 ost->file_index, ost->index, q);
1190 if (!vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1191 float fps, t = (cur_time-timer_start) / 1000000.0;
1193 frame_number = ost->frame_number;
1194 fps = t > 1 ? frame_number / t : 0;
1195 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "frame=%5d fps=%3.*f q=%3.1f ",
1196 frame_number, fps < 9.95, fps, q);
1197 av_bprintf(&buf_script, "frame=%d\n", frame_number);
1198 av_bprintf(&buf_script, "fps=%.1f\n", fps);
1199 av_bprintf(&buf_script, "stream_%d_%d_q=%.1f\n",
1200 ost->file_index, ost->index, q);
1202 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "L");
1206 if (qp >= 0 && qp < FF_ARRAY_ELEMS(qp_histogram))
1208 for (j = 0; j < 32; j++)
1209 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%X", (int)lrintf(log2(qp_histogram[j] + 1)));
1211 if ((enc->flags&CODEC_FLAG_PSNR) && (enc->coded_frame || is_last_report)) {
1213 double error, error_sum = 0;
1214 double scale, scale_sum = 0;
1216 char type[3] = { 'Y','U','V' };
1217 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "PSNR=");
1218 for (j = 0; j < 3; j++) {
1219 if (is_last_report) {
1220 error = enc->error[j];
1221 scale = enc->width * enc->height * 255.0 * 255.0 * frame_number;
1223 error = enc->coded_frame->error[j];
1224 scale = enc->width * enc->height * 255.0 * 255.0;
1230 p = psnr(error / scale);
1231 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%c:%2.2f ", type[j], p);
1232 av_bprintf(&buf_script, "stream_%d_%d_psnr_%c=%2.2f\n",
1233 ost->file_index, ost->index, type[j] | 32, p);
1235 p = psnr(error_sum / scale_sum);
1236 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "*:%2.2f ", psnr(error_sum / scale_sum));
1237 av_bprintf(&buf_script, "stream_%d_%d_psnr_all=%2.2f\n",
1238 ost->file_index, ost->index, p);
1242 /* compute min output value */
1243 if ((is_last_report || !ost->finished) && ost->st->pts.val != AV_NOPTS_VALUE)
1244 pts = FFMAX(pts, av_rescale_q(ost->st->pts.val,
1245 ost->st->time_base, AV_TIME_BASE_Q));
1248 secs = pts / AV_TIME_BASE;
1249 us = pts % AV_TIME_BASE;
1255 bitrate = pts && total_size >= 0 ? total_size * 8 / (pts / 1000.0) : -1;
1257 if (total_size < 0) snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1259 else snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1260 "size=%8.0fkB time=", total_size / 1024.0);
1261 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1262 "%02d:%02d:%02d.%02d ", hours, mins, secs,
1263 (100 * us) / AV_TIME_BASE);
1264 if (bitrate < 0) snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1266 else snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1267 "bitrate=%6.1fkbits/s", bitrate);
1268 if (total_size < 0) av_bprintf(&buf_script, "total_size=N/A\n");
1269 else av_bprintf(&buf_script, "total_size=%"PRId64"\n", total_size);
1270 av_bprintf(&buf_script, "out_time_ms=%"PRId64"\n", pts);
1271 av_bprintf(&buf_script, "out_time=%02d:%02d:%02d.%06d\n",
1272 hours, mins, secs, us);
1274 if (nb_frames_dup || nb_frames_drop)
1275 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " dup=%d drop=%d",
1276 nb_frames_dup, nb_frames_drop);
1277 av_bprintf(&buf_script, "dup_frames=%d\n", nb_frames_dup);
1278 av_bprintf(&buf_script, "drop_frames=%d\n", nb_frames_drop);
1280 if (print_stats || is_last_report) {
1281 if (print_stats==1 && AV_LOG_INFO > av_log_get_level()) {
1282 fprintf(stderr, "%s \r", buf);
1284 av_log(NULL, AV_LOG_INFO, "%s \r", buf);
1289 if (progress_avio) {
1290 av_bprintf(&buf_script, "progress=%s\n",
1291 is_last_report ? "end" : "continue");
1292 avio_write(progress_avio, buf_script.str,
1293 FFMIN(buf_script.len, buf_script.size - 1));
1294 avio_flush(progress_avio);
1295 av_bprint_finalize(&buf_script, NULL);
1296 if (is_last_report) {
1297 avio_close(progress_avio);
1298 progress_avio = NULL;
1302 if (is_last_report) {
1303 int64_t raw= audio_size + video_size + subtitle_size + extra_size;
1304 av_log(NULL, AV_LOG_INFO, "\n");
1305 av_log(NULL, AV_LOG_INFO, "video:%1.0fkB audio:%1.0fkB subtitle:%1.0f global headers:%1.0fkB muxing overhead %f%%\n",
1306 video_size / 1024.0,
1307 audio_size / 1024.0,
1308 subtitle_size / 1024.0,
1309 extra_size / 1024.0,
1310 100.0 * (total_size - raw) / raw
1312 if(video_size + audio_size + subtitle_size + extra_size == 0){
1313 av_log(NULL, AV_LOG_WARNING, "Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used)\n");
1318 static void flush_encoders(void)
1322 for (i = 0; i < nb_output_streams; i++) {
1323 OutputStream *ost = output_streams[i];
1324 AVCodecContext *enc = ost->st->codec;
1325 AVFormatContext *os = output_files[ost->file_index]->ctx;
1326 int stop_encoding = 0;
1328 if (!ost->encoding_needed)
1331 if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && enc->frame_size <= 1)
1333 if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (os->oformat->flags & AVFMT_RAWPICTURE) && enc->codec->id == AV_CODEC_ID_RAWVIDEO)
1337 int (*encode)(AVCodecContext*, AVPacket*, const AVFrame*, int*) = NULL;
1341 switch (ost->st->codec->codec_type) {
1342 case AVMEDIA_TYPE_AUDIO:
1343 encode = avcodec_encode_audio2;
1347 case AVMEDIA_TYPE_VIDEO:
1348 encode = avcodec_encode_video2;
1359 av_init_packet(&pkt);
1363 update_benchmark(NULL);
1364 ret = encode(enc, &pkt, NULL, &got_packet);
1365 update_benchmark("flush %s %d.%d", desc, ost->file_index, ost->index);
1367 av_log(NULL, AV_LOG_FATAL, "%s encoding failed\n", desc);
1371 if (ost->logfile && enc->stats_out) {
1372 fprintf(ost->logfile, "%s", enc->stats_out);
1378 if (pkt.pts != AV_NOPTS_VALUE)
1379 pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base);
1380 if (pkt.dts != AV_NOPTS_VALUE)
1381 pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base);
1382 if (pkt.duration > 0)
1383 pkt.duration = av_rescale_q(pkt.duration, enc->time_base, ost->st->time_base);
1384 write_frame(os, &pkt, ost);
1385 if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && vstats_filename) {
1386 do_video_stats(ost, pkt.size);
1397 * Check whether a packet from ist should be written into ost at this time
1399 static int check_output_constraints(InputStream *ist, OutputStream *ost)
1401 OutputFile *of = output_files[ost->file_index];
1402 int ist_index = input_files[ist->file_index]->ist_index + ist->st->index;
1404 if (ost->source_index != ist_index)
1407 if (of->start_time != AV_NOPTS_VALUE && ist->pts < of->start_time)
1413 static void do_streamcopy(InputStream *ist, OutputStream *ost, const AVPacket *pkt)
1415 OutputFile *of = output_files[ost->file_index];
1416 InputFile *f = input_files [ist->file_index];
1417 int64_t start_time = (of->start_time == AV_NOPTS_VALUE) ? 0 : of->start_time;
1418 int64_t ost_tb_start_time = av_rescale_q(start_time, AV_TIME_BASE_Q, ost->st->time_base);
1419 int64_t ist_tb_start_time = av_rescale_q(start_time, AV_TIME_BASE_Q, ist->st->time_base);
1423 av_init_packet(&opkt);
1425 if ((!ost->frame_number && !(pkt->flags & AV_PKT_FLAG_KEY)) &&
1426 !ost->copy_initial_nonkeyframes)
1429 if (pkt->pts == AV_NOPTS_VALUE) {
1430 if (!ost->frame_number && ist->pts < start_time &&
1431 !ost->copy_prior_start)
1434 if (!ost->frame_number && pkt->pts < ist_tb_start_time &&
1435 !ost->copy_prior_start)
1439 if (of->recording_time != INT64_MAX &&
1440 ist->pts >= of->recording_time + start_time) {
1441 close_output_stream(ost);
1445 if (f->recording_time != INT64_MAX) {
1446 start_time = f->ctx->start_time;
1447 if (f->start_time != AV_NOPTS_VALUE)
1448 start_time += f->start_time;
1449 if (ist->pts >= f->recording_time + start_time) {
1450 close_output_stream(ost);
1455 /* force the input stream PTS */
1456 if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO)
1457 audio_size += pkt->size;
1458 else if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
1459 video_size += pkt->size;
1461 } else if (ost->st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
1462 subtitle_size += pkt->size;
1465 if (pkt->pts != AV_NOPTS_VALUE)
1466 opkt.pts = av_rescale_q(pkt->pts, ist->st->time_base, ost->st->time_base) - ost_tb_start_time;
1468 opkt.pts = AV_NOPTS_VALUE;
1470 if (pkt->dts == AV_NOPTS_VALUE)
1471 opkt.dts = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ost->st->time_base);
1473 opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base);
1474 opkt.dts -= ost_tb_start_time;
1476 if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && pkt->dts != AV_NOPTS_VALUE) {
1477 int duration = av_get_audio_frame_duration(ist->st->codec, pkt->size);
1479 duration = ist->st->codec->frame_size;
1480 opkt.dts = opkt.pts = av_rescale_delta(ist->st->time_base, pkt->dts,
1481 (AVRational){1, ist->st->codec->sample_rate}, duration, &ist->filter_in_rescale_delta_last,
1482 ost->st->time_base) - ost_tb_start_time;
1485 opkt.duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->st->time_base);
1486 opkt.flags = pkt->flags;
1488 // FIXME remove the following 2 lines they shall be replaced by the bitstream filters
1489 if ( ost->st->codec->codec_id != AV_CODEC_ID_H264
1490 && ost->st->codec->codec_id != AV_CODEC_ID_MPEG1VIDEO
1491 && ost->st->codec->codec_id != AV_CODEC_ID_MPEG2VIDEO
1492 && ost->st->codec->codec_id != AV_CODEC_ID_VC1
1494 if (av_parser_change(ost->parser, ost->st->codec,
1495 &opkt.data, &opkt.size,
1496 pkt->data, pkt->size,
1497 pkt->flags & AV_PKT_FLAG_KEY)) {
1498 opkt.buf = av_buffer_create(opkt.data, opkt.size, av_buffer_default_free, NULL, 0);
1503 opkt.data = pkt->data;
1504 opkt.size = pkt->size;
1506 av_copy_packet_side_data(&opkt, pkt);
1508 if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (of->ctx->oformat->flags & AVFMT_RAWPICTURE)) {
1509 /* store AVPicture in AVPacket, as expected by the output format */
1510 avpicture_fill(&pict, opkt.data, ost->st->codec->pix_fmt, ost->st->codec->width, ost->st->codec->height);
1511 opkt.data = (uint8_t *)&pict;
1512 opkt.size = sizeof(AVPicture);
1513 opkt.flags |= AV_PKT_FLAG_KEY;
1516 write_frame(of->ctx, &opkt, ost);
1517 ost->st->codec->frame_number++;
1520 int guess_input_channel_layout(InputStream *ist)
1522 AVCodecContext *dec = ist->st->codec;
1524 if (!dec->channel_layout) {
1525 char layout_name[256];
1527 if (dec->channels > ist->guess_layout_max)
1529 dec->channel_layout = av_get_default_channel_layout(dec->channels);
1530 if (!dec->channel_layout)
1532 av_get_channel_layout_string(layout_name, sizeof(layout_name),
1533 dec->channels, dec->channel_layout);
1534 av_log(NULL, AV_LOG_WARNING, "Guessed Channel Layout for Input Stream "
1535 "#%d.%d : %s\n", ist->file_index, ist->st->index, layout_name);
1540 static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output)
1542 AVFrame *decoded_frame, *f;
1543 AVCodecContext *avctx = ist->st->codec;
1544 int i, ret, err = 0, resample_changed;
1545 AVRational decoded_frame_tb;
1547 if (!ist->decoded_frame && !(ist->decoded_frame = av_frame_alloc()))
1548 return AVERROR(ENOMEM);
1549 if (!ist->filter_frame && !(ist->filter_frame = av_frame_alloc()))
1550 return AVERROR(ENOMEM);
1551 decoded_frame = ist->decoded_frame;
1553 update_benchmark(NULL);
1554 ret = avcodec_decode_audio4(avctx, decoded_frame, got_output, pkt);
1555 update_benchmark("decode_audio %d.%d", ist->file_index, ist->st->index);
1557 if (ret >= 0 && avctx->sample_rate <= 0) {
1558 av_log(avctx, AV_LOG_ERROR, "Sample rate %d invalid\n", avctx->sample_rate);
1559 ret = AVERROR_INVALIDDATA;
1562 if (*got_output || ret<0 || pkt->size)
1563 decode_error_stat[ret<0] ++;
1565 if (!*got_output || ret < 0) {
1567 for (i = 0; i < ist->nb_filters; i++)
1569 av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
1571 av_buffersrc_add_frame(ist->filters[i]->filter, NULL);
1578 /* increment next_dts to use for the case where the input stream does not
1579 have timestamps or there are multiple frames in the packet */
1580 ist->next_pts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
1582 ist->next_dts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
1586 resample_changed = ist->resample_sample_fmt != decoded_frame->format ||
1587 ist->resample_channels != avctx->channels ||
1588 ist->resample_channel_layout != decoded_frame->channel_layout ||
1589 ist->resample_sample_rate != decoded_frame->sample_rate;
1590 if (resample_changed) {
1591 char layout1[64], layout2[64];
1593 if (!guess_input_channel_layout(ist)) {
1594 av_log(NULL, AV_LOG_FATAL, "Unable to find default channel "
1595 "layout for Input Stream #%d.%d\n", ist->file_index,
1599 decoded_frame->channel_layout = avctx->channel_layout;
1601 av_get_channel_layout_string(layout1, sizeof(layout1), ist->resample_channels,
1602 ist->resample_channel_layout);
1603 av_get_channel_layout_string(layout2, sizeof(layout2), avctx->channels,
1604 decoded_frame->channel_layout);
1606 av_log(NULL, AV_LOG_INFO,
1607 "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",
1608 ist->file_index, ist->st->index,
1609 ist->resample_sample_rate, av_get_sample_fmt_name(ist->resample_sample_fmt),
1610 ist->resample_channels, layout1,
1611 decoded_frame->sample_rate, av_get_sample_fmt_name(decoded_frame->format),
1612 avctx->channels, layout2);
1614 ist->resample_sample_fmt = decoded_frame->format;
1615 ist->resample_sample_rate = decoded_frame->sample_rate;
1616 ist->resample_channel_layout = decoded_frame->channel_layout;
1617 ist->resample_channels = avctx->channels;
1619 for (i = 0; i < nb_filtergraphs; i++)
1620 if (ist_in_filtergraph(filtergraphs[i], ist)) {
1621 FilterGraph *fg = filtergraphs[i];
1623 if (configure_filtergraph(fg) < 0) {
1624 av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
1627 for (j = 0; j < fg->nb_outputs; j++) {
1628 OutputStream *ost = fg->outputs[j]->ost;
1629 if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
1630 !(ost->enc->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE))
1631 av_buffersink_set_frame_size(ost->filter->filter,
1632 ost->st->codec->frame_size);
1637 /* if the decoder provides a pts, use it instead of the last packet pts.
1638 the decoder could be delaying output by a packet or more. */
1639 if (decoded_frame->pts != AV_NOPTS_VALUE) {
1640 ist->dts = ist->next_dts = ist->pts = ist->next_pts = av_rescale_q(decoded_frame->pts, avctx->time_base, AV_TIME_BASE_Q);
1641 decoded_frame_tb = avctx->time_base;
1642 } else if (decoded_frame->pkt_pts != AV_NOPTS_VALUE) {
1643 decoded_frame->pts = decoded_frame->pkt_pts;
1644 pkt->pts = AV_NOPTS_VALUE;
1645 decoded_frame_tb = ist->st->time_base;
1646 } else if (pkt->pts != AV_NOPTS_VALUE) {
1647 decoded_frame->pts = pkt->pts;
1648 pkt->pts = AV_NOPTS_VALUE;
1649 decoded_frame_tb = ist->st->time_base;
1651 decoded_frame->pts = ist->dts;
1652 decoded_frame_tb = AV_TIME_BASE_Q;
1654 if (decoded_frame->pts != AV_NOPTS_VALUE)
1655 decoded_frame->pts = av_rescale_delta(decoded_frame_tb, decoded_frame->pts,
1656 (AVRational){1, ist->st->codec->sample_rate}, decoded_frame->nb_samples, &ist->filter_in_rescale_delta_last,
1657 (AVRational){1, ist->st->codec->sample_rate});
1658 for (i = 0; i < ist->nb_filters; i++) {
1659 if (i < ist->nb_filters - 1) {
1660 f = ist->filter_frame;
1661 err = av_frame_ref(f, decoded_frame);
1666 err = av_buffersrc_add_frame_flags(ist->filters[i]->filter, f,
1667 AV_BUFFERSRC_FLAG_PUSH);
1668 if (err == AVERROR_EOF)
1669 err = 0; /* ignore */
1673 decoded_frame->pts = AV_NOPTS_VALUE;
1675 av_frame_unref(ist->filter_frame);
1676 av_frame_unref(decoded_frame);
1677 return err < 0 ? err : ret;
1680 static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output)
1682 AVFrame *decoded_frame, *f;
1683 int i, ret = 0, err = 0, resample_changed;
1684 int64_t best_effort_timestamp;
1685 AVRational *frame_sample_aspect;
1687 if (!ist->decoded_frame && !(ist->decoded_frame = av_frame_alloc()))
1688 return AVERROR(ENOMEM);
1689 if (!ist->filter_frame && !(ist->filter_frame = av_frame_alloc()))
1690 return AVERROR(ENOMEM);
1691 decoded_frame = ist->decoded_frame;
1692 pkt->dts = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ist->st->time_base);
1694 update_benchmark(NULL);
1695 ret = avcodec_decode_video2(ist->st->codec,
1696 decoded_frame, got_output, pkt);
1697 update_benchmark("decode_video %d.%d", ist->file_index, ist->st->index);
1699 if (*got_output || ret<0 || pkt->size)
1700 decode_error_stat[ret<0] ++;
1702 if (!*got_output || ret < 0) {
1704 for (i = 0; i < ist->nb_filters; i++)
1706 av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
1708 av_buffersrc_add_frame(ist->filters[i]->filter, NULL);
1714 if(ist->top_field_first>=0)
1715 decoded_frame->top_field_first = ist->top_field_first;
1717 if (ist->hwaccel_retrieve_data && decoded_frame->format == ist->hwaccel_pix_fmt) {
1718 err = ist->hwaccel_retrieve_data(ist->st->codec, decoded_frame);
1722 ist->hwaccel_retrieved_pix_fmt = decoded_frame->format;
1724 best_effort_timestamp= av_frame_get_best_effort_timestamp(decoded_frame);
1725 if(best_effort_timestamp != AV_NOPTS_VALUE)
1726 ist->next_pts = ist->pts = av_rescale_q(decoded_frame->pts = best_effort_timestamp, ist->st->time_base, AV_TIME_BASE_Q);
1729 av_log(NULL, AV_LOG_INFO, "decoder -> ist_index:%d type:video "
1730 "frame_pts:%s frame_pts_time:%s best_effort_ts:%"PRId64" best_effort_ts_time:%s keyframe:%d frame_type:%d \n",
1731 ist->st->index, av_ts2str(decoded_frame->pts),
1732 av_ts2timestr(decoded_frame->pts, &ist->st->time_base),
1733 best_effort_timestamp,
1734 av_ts2timestr(best_effort_timestamp, &ist->st->time_base),
1735 decoded_frame->key_frame, decoded_frame->pict_type);
1740 if (ist->st->sample_aspect_ratio.num)
1741 decoded_frame->sample_aspect_ratio = ist->st->sample_aspect_ratio;
1743 resample_changed = ist->resample_width != decoded_frame->width ||
1744 ist->resample_height != decoded_frame->height ||
1745 ist->resample_pix_fmt != decoded_frame->format;
1746 if (resample_changed) {
1747 av_log(NULL, AV_LOG_INFO,
1748 "Input stream #%d:%d frame changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s\n",
1749 ist->file_index, ist->st->index,
1750 ist->resample_width, ist->resample_height, av_get_pix_fmt_name(ist->resample_pix_fmt),
1751 decoded_frame->width, decoded_frame->height, av_get_pix_fmt_name(decoded_frame->format));
1753 ist->resample_width = decoded_frame->width;
1754 ist->resample_height = decoded_frame->height;
1755 ist->resample_pix_fmt = decoded_frame->format;
1757 for (i = 0; i < nb_filtergraphs; i++) {
1758 if (ist_in_filtergraph(filtergraphs[i], ist) && ist->reinit_filters &&
1759 configure_filtergraph(filtergraphs[i]) < 0) {
1760 av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
1766 frame_sample_aspect= av_opt_ptr(avcodec_get_frame_class(), decoded_frame, "sample_aspect_ratio");
1767 for (i = 0; i < ist->nb_filters; i++) {
1768 if (!frame_sample_aspect->num)
1769 *frame_sample_aspect = ist->st->sample_aspect_ratio;
1771 if (i < ist->nb_filters - 1) {
1772 f = ist->filter_frame;
1773 err = av_frame_ref(f, decoded_frame);
1778 ret = av_buffersrc_add_frame_flags(ist->filters[i]->filter, f, AV_BUFFERSRC_FLAG_PUSH);
1779 if (ret == AVERROR_EOF) {
1780 ret = 0; /* ignore */
1781 } else if (ret < 0) {
1782 av_log(NULL, AV_LOG_FATAL,
1783 "Failed to inject frame into filter network: %s\n", av_err2str(ret));
1789 av_frame_unref(ist->filter_frame);
1790 av_frame_unref(decoded_frame);
1791 return err < 0 ? err : ret;
1794 static int transcode_subtitles(InputStream *ist, AVPacket *pkt, int *got_output)
1796 AVSubtitle subtitle;
1797 int i, ret = avcodec_decode_subtitle2(ist->st->codec,
1798 &subtitle, got_output, pkt);
1800 if (*got_output || ret<0 || pkt->size)
1801 decode_error_stat[ret<0] ++;
1803 if (ret < 0 || !*got_output) {
1805 sub2video_flush(ist);
1809 if (ist->fix_sub_duration) {
1810 if (ist->prev_sub.got_output) {
1811 int end = av_rescale(subtitle.pts - ist->prev_sub.subtitle.pts,
1812 1000, AV_TIME_BASE);
1813 if (end < ist->prev_sub.subtitle.end_display_time) {
1814 av_log(ist->st->codec, AV_LOG_DEBUG,
1815 "Subtitle duration reduced from %d to %d\n",
1816 ist->prev_sub.subtitle.end_display_time, end);
1817 ist->prev_sub.subtitle.end_display_time = end;
1820 FFSWAP(int, *got_output, ist->prev_sub.got_output);
1821 FFSWAP(int, ret, ist->prev_sub.ret);
1822 FFSWAP(AVSubtitle, subtitle, ist->prev_sub.subtitle);
1825 sub2video_update(ist, &subtitle);
1827 if (!*got_output || !subtitle.num_rects)
1830 for (i = 0; i < nb_output_streams; i++) {
1831 OutputStream *ost = output_streams[i];
1833 if (!check_output_constraints(ist, ost) || !ost->encoding_needed)
1836 do_subtitle_out(output_files[ost->file_index]->ctx, ost, ist, &subtitle);
1839 avsubtitle_free(&subtitle);
1843 /* pkt = NULL means EOF (needed to flush decoder buffers) */
1844 static int output_packet(InputStream *ist, const AVPacket *pkt)
1850 if (!ist->saw_first_ts) {
1851 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;
1853 if (pkt != NULL && pkt->pts != AV_NOPTS_VALUE && !ist->decoding_needed) {
1854 ist->dts += av_rescale_q(pkt->pts, ist->st->time_base, AV_TIME_BASE_Q);
1855 ist->pts = ist->dts; //unused but better to set it to a value thats not totally wrong
1857 ist->saw_first_ts = 1;
1860 if (ist->next_dts == AV_NOPTS_VALUE)
1861 ist->next_dts = ist->dts;
1862 if (ist->next_pts == AV_NOPTS_VALUE)
1863 ist->next_pts = ist->pts;
1867 av_init_packet(&avpkt);
1875 if (pkt->dts != AV_NOPTS_VALUE) {
1876 ist->next_dts = ist->dts = av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q);
1877 if (ist->st->codec->codec_type != AVMEDIA_TYPE_VIDEO || !ist->decoding_needed)
1878 ist->next_pts = ist->pts = ist->dts;
1881 // while we have more to decode or while the decoder did output something on EOF
1882 while (ist->decoding_needed && (avpkt.size > 0 || (!pkt && got_output))) {
1886 ist->pts = ist->next_pts;
1887 ist->dts = ist->next_dts;
1889 if (avpkt.size && avpkt.size != pkt->size) {
1890 av_log(NULL, ist->showed_multi_packet_warning ? AV_LOG_VERBOSE : AV_LOG_WARNING,
1891 "Multiple frames in a packet from stream %d\n", pkt->stream_index);
1892 ist->showed_multi_packet_warning = 1;
1895 switch (ist->st->codec->codec_type) {
1896 case AVMEDIA_TYPE_AUDIO:
1897 ret = decode_audio (ist, &avpkt, &got_output);
1899 case AVMEDIA_TYPE_VIDEO:
1900 ret = decode_video (ist, &avpkt, &got_output);
1901 if (avpkt.duration) {
1902 duration = av_rescale_q(avpkt.duration, ist->st->time_base, AV_TIME_BASE_Q);
1903 } else if(ist->st->codec->time_base.num != 0 && ist->st->codec->time_base.den != 0) {
1904 int ticks= ist->st->parser ? ist->st->parser->repeat_pict+1 : ist->st->codec->ticks_per_frame;
1905 duration = ((int64_t)AV_TIME_BASE *
1906 ist->st->codec->time_base.num * ticks) /
1907 ist->st->codec->time_base.den;
1911 if(ist->dts != AV_NOPTS_VALUE && duration) {
1912 ist->next_dts += duration;
1914 ist->next_dts = AV_NOPTS_VALUE;
1917 ist->next_pts += duration; //FIXME the duration is not correct in some cases
1919 case AVMEDIA_TYPE_SUBTITLE:
1920 ret = transcode_subtitles(ist, &avpkt, &got_output);
1930 avpkt.pts= AV_NOPTS_VALUE;
1932 // touch data and size only if not EOF
1934 if(ist->st->codec->codec_type != AVMEDIA_TYPE_AUDIO)
1944 /* handle stream copy */
1945 if (!ist->decoding_needed) {
1946 ist->dts = ist->next_dts;
1947 switch (ist->st->codec->codec_type) {
1948 case AVMEDIA_TYPE_AUDIO:
1949 ist->next_dts += ((int64_t)AV_TIME_BASE * ist->st->codec->frame_size) /
1950 ist->st->codec->sample_rate;
1952 case AVMEDIA_TYPE_VIDEO:
1953 if (ist->framerate.num) {
1954 // TODO: Remove work-around for c99-to-c89 issue 7
1955 AVRational time_base_q = AV_TIME_BASE_Q;
1956 int64_t next_dts = av_rescale_q(ist->next_dts, time_base_q, av_inv_q(ist->framerate));
1957 ist->next_dts = av_rescale_q(next_dts + 1, av_inv_q(ist->framerate), time_base_q);
1958 } else if (pkt->duration) {
1959 ist->next_dts += av_rescale_q(pkt->duration, ist->st->time_base, AV_TIME_BASE_Q);
1960 } else if(ist->st->codec->time_base.num != 0) {
1961 int ticks= ist->st->parser ? ist->st->parser->repeat_pict + 1 : ist->st->codec->ticks_per_frame;
1962 ist->next_dts += ((int64_t)AV_TIME_BASE *
1963 ist->st->codec->time_base.num * ticks) /
1964 ist->st->codec->time_base.den;
1968 ist->pts = ist->dts;
1969 ist->next_pts = ist->next_dts;
1971 for (i = 0; pkt && i < nb_output_streams; i++) {
1972 OutputStream *ost = output_streams[i];
1974 if (!check_output_constraints(ist, ost) || ost->encoding_needed)
1977 do_streamcopy(ist, ost, pkt);
1983 static void print_sdp(void)
1987 AVFormatContext **avc = av_malloc(sizeof(*avc) * nb_output_files);
1991 for (i = 0; i < nb_output_files; i++)
1992 avc[i] = output_files[i]->ctx;
1994 av_sdp_create(avc, nb_output_files, sdp, sizeof(sdp));
1995 printf("SDP:\n%s\n", sdp);
2000 static const HWAccel *get_hwaccel(enum AVPixelFormat pix_fmt)
2003 for (i = 0; hwaccels[i].name; i++)
2004 if (hwaccels[i].pix_fmt == pix_fmt)
2005 return &hwaccels[i];
2009 static enum AVPixelFormat get_format(AVCodecContext *s, const enum AVPixelFormat *pix_fmts)
2011 InputStream *ist = s->opaque;
2012 const enum AVPixelFormat *p;
2015 for (p = pix_fmts; *p != -1; p++) {
2016 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(*p);
2017 const HWAccel *hwaccel;
2019 if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
2022 hwaccel = get_hwaccel(*p);
2024 (ist->active_hwaccel_id && ist->active_hwaccel_id != hwaccel->id) ||
2025 (ist->hwaccel_id != HWACCEL_AUTO && ist->hwaccel_id != hwaccel->id))
2028 ret = hwaccel->init(s);
2030 if (ist->hwaccel_id == hwaccel->id) {
2031 av_log(NULL, AV_LOG_FATAL,
2032 "%s hwaccel requested for input stream #%d:%d, "
2033 "but cannot be initialized.\n", hwaccel->name,
2034 ist->file_index, ist->st->index);
2039 ist->active_hwaccel_id = hwaccel->id;
2040 ist->hwaccel_pix_fmt = *p;
2047 static int get_buffer(AVCodecContext *s, AVFrame *frame, int flags)
2049 InputStream *ist = s->opaque;
2051 if (ist->hwaccel_get_buffer && frame->format == ist->hwaccel_pix_fmt)
2052 return ist->hwaccel_get_buffer(s, frame, flags);
2054 return avcodec_default_get_buffer2(s, frame, flags);
2057 static int init_input_stream(int ist_index, char *error, int error_len)
2060 InputStream *ist = input_streams[ist_index];
2062 if (ist->decoding_needed) {
2063 AVCodec *codec = ist->dec;
2065 snprintf(error, error_len, "Decoder (codec %s) not found for input stream #%d:%d",
2066 avcodec_get_name(ist->st->codec->codec_id), ist->file_index, ist->st->index);
2067 return AVERROR(EINVAL);
2070 ist->st->codec->opaque = ist;
2071 ist->st->codec->get_format = get_format;
2072 ist->st->codec->get_buffer2 = get_buffer;
2073 ist->st->codec->thread_safe_callbacks = 1;
2075 av_opt_set_int(ist->st->codec, "refcounted_frames", 1, 0);
2077 if (!av_dict_get(ist->opts, "threads", NULL, 0))
2078 av_dict_set(&ist->opts, "threads", "auto", 0);
2079 if ((ret = avcodec_open2(ist->st->codec, codec, &ist->opts)) < 0) {
2081 if (ret == AVERROR_EXPERIMENTAL)
2082 abort_codec_experimental(codec, 0);
2084 av_strerror(ret, errbuf, sizeof(errbuf));
2086 snprintf(error, error_len,
2087 "Error while opening decoder for input stream "
2089 ist->file_index, ist->st->index, errbuf);
2092 assert_avoptions(ist->opts);
2095 ist->next_pts = AV_NOPTS_VALUE;
2096 ist->next_dts = AV_NOPTS_VALUE;
2102 static InputStream *get_input_stream(OutputStream *ost)
2104 if (ost->source_index >= 0)
2105 return input_streams[ost->source_index];
2109 static int compare_int64(const void *a, const void *b)
2111 int64_t va = *(int64_t *)a, vb = *(int64_t *)b;
2112 return va < vb ? -1 : va > vb ? +1 : 0;
2115 static void parse_forced_key_frames(char *kf, OutputStream *ost,
2116 AVCodecContext *avctx)
2119 int n = 1, i, size, index = 0;
2122 for (p = kf; *p; p++)
2126 pts = av_malloc(sizeof(*pts) * size);
2128 av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
2133 for (i = 0; i < n; i++) {
2134 char *next = strchr(p, ',');
2139 if (!memcmp(p, "chapters", 8)) {
2141 AVFormatContext *avf = output_files[ost->file_index]->ctx;
2144 if (avf->nb_chapters > INT_MAX - size ||
2145 !(pts = av_realloc_f(pts, size += avf->nb_chapters - 1,
2147 av_log(NULL, AV_LOG_FATAL,
2148 "Could not allocate forced key frames array.\n");
2151 t = p[8] ? parse_time_or_die("force_key_frames", p + 8, 1) : 0;
2152 t = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base);
2154 for (j = 0; j < avf->nb_chapters; j++) {
2155 AVChapter *c = avf->chapters[j];
2156 av_assert1(index < size);
2157 pts[index++] = av_rescale_q(c->start, c->time_base,
2158 avctx->time_base) + t;
2163 t = parse_time_or_die("force_key_frames", p, 1);
2164 av_assert1(index < size);
2165 pts[index++] = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base);
2172 av_assert0(index == size);
2173 qsort(pts, size, sizeof(*pts), compare_int64);
2174 ost->forced_kf_count = size;
2175 ost->forced_kf_pts = pts;
2178 static void report_new_stream(int input_index, AVPacket *pkt)
2180 InputFile *file = input_files[input_index];
2181 AVStream *st = file->ctx->streams[pkt->stream_index];
2183 if (pkt->stream_index < file->nb_streams_warn)
2185 av_log(file->ctx, AV_LOG_WARNING,
2186 "New %s stream %d:%d at pos:%"PRId64" and DTS:%ss\n",
2187 av_get_media_type_string(st->codec->codec_type),
2188 input_index, pkt->stream_index,
2189 pkt->pos, av_ts2timestr(pkt->dts, &st->time_base));
2190 file->nb_streams_warn = pkt->stream_index + 1;
2193 static int transcode_init(void)
2195 int ret = 0, i, j, k;
2196 AVFormatContext *oc;
2197 AVCodecContext *codec;
2203 for (i = 0; i < nb_filtergraphs; i++) {
2204 FilterGraph *fg = filtergraphs[i];
2205 for (j = 0; j < fg->nb_outputs; j++) {
2206 OutputFilter *ofilter = fg->outputs[j];
2207 if (!ofilter->ost || ofilter->ost->source_index >= 0)
2209 if (fg->nb_inputs != 1)
2211 for (k = nb_input_streams-1; k >= 0 ; k--)
2212 if (fg->inputs[0]->ist == input_streams[k])
2214 ofilter->ost->source_index = k;
2218 /* init framerate emulation */
2219 for (i = 0; i < nb_input_files; i++) {
2220 InputFile *ifile = input_files[i];
2221 if (ifile->rate_emu)
2222 for (j = 0; j < ifile->nb_streams; j++)
2223 input_streams[j + ifile->ist_index]->start = av_gettime();
2226 /* output stream init */
2227 for (i = 0; i < nb_output_files; i++) {
2228 oc = output_files[i]->ctx;
2229 if (!oc->nb_streams && !(oc->oformat->flags & AVFMT_NOSTREAMS)) {
2230 av_dump_format(oc, i, oc->filename, 1);
2231 av_log(NULL, AV_LOG_ERROR, "Output file #%d does not contain any stream\n", i);
2232 return AVERROR(EINVAL);
2236 /* init complex filtergraphs */
2237 for (i = 0; i < nb_filtergraphs; i++)
2238 if ((ret = avfilter_graph_config(filtergraphs[i]->graph, NULL)) < 0)
2241 /* for each output stream, we compute the right encoding parameters */
2242 for (i = 0; i < nb_output_streams; i++) {
2243 AVCodecContext *icodec = NULL;
2244 ost = output_streams[i];
2245 oc = output_files[ost->file_index]->ctx;
2246 ist = get_input_stream(ost);
2248 if (ost->attachment_filename)
2251 codec = ost->st->codec;
2254 icodec = ist->st->codec;
2256 ost->st->disposition = ist->st->disposition;
2257 codec->bits_per_raw_sample = icodec->bits_per_raw_sample;
2258 codec->chroma_sample_location = icodec->chroma_sample_location;
2260 for (j=0; j<oc->nb_streams; j++) {
2261 AVStream *st = oc->streams[j];
2262 if (st != ost->st && st->codec->codec_type == codec->codec_type)
2265 if (j == oc->nb_streams)
2266 if (codec->codec_type == AVMEDIA_TYPE_AUDIO || codec->codec_type == AVMEDIA_TYPE_VIDEO)
2267 ost->st->disposition = AV_DISPOSITION_DEFAULT;
2270 if (ost->stream_copy) {
2272 uint64_t extra_size;
2274 av_assert0(ist && !ost->filter);
2276 extra_size = (uint64_t)icodec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE;
2278 if (extra_size > INT_MAX) {
2279 return AVERROR(EINVAL);
2282 /* if stream_copy is selected, no need to decode or encode */
2283 codec->codec_id = icodec->codec_id;
2284 codec->codec_type = icodec->codec_type;
2286 if (!codec->codec_tag) {
2287 unsigned int codec_tag;
2288 if (!oc->oformat->codec_tag ||
2289 av_codec_get_id (oc->oformat->codec_tag, icodec->codec_tag) == codec->codec_id ||
2290 !av_codec_get_tag2(oc->oformat->codec_tag, icodec->codec_id, &codec_tag))
2291 codec->codec_tag = icodec->codec_tag;
2294 codec->bit_rate = icodec->bit_rate;
2295 codec->rc_max_rate = icodec->rc_max_rate;
2296 codec->rc_buffer_size = icodec->rc_buffer_size;
2297 codec->field_order = icodec->field_order;
2298 codec->extradata = av_mallocz(extra_size);
2299 if (!codec->extradata) {
2300 return AVERROR(ENOMEM);
2302 memcpy(codec->extradata, icodec->extradata, icodec->extradata_size);
2303 codec->extradata_size= icodec->extradata_size;
2304 codec->bits_per_coded_sample = icodec->bits_per_coded_sample;
2306 codec->time_base = ist->st->time_base;
2308 * Avi is a special case here because it supports variable fps but
2309 * having the fps and timebase differe significantly adds quite some
2312 if(!strcmp(oc->oformat->name, "avi")) {
2313 if ( copy_tb<0 && av_q2d(ist->st->r_frame_rate) >= av_q2d(ist->st->avg_frame_rate)
2314 && 0.5/av_q2d(ist->st->r_frame_rate) > av_q2d(ist->st->time_base)
2315 && 0.5/av_q2d(ist->st->r_frame_rate) > av_q2d(icodec->time_base)
2316 && av_q2d(ist->st->time_base) < 1.0/500 && av_q2d(icodec->time_base) < 1.0/500
2318 codec->time_base.num = ist->st->r_frame_rate.den;
2319 codec->time_base.den = 2*ist->st->r_frame_rate.num;
2320 codec->ticks_per_frame = 2;
2321 } else if ( copy_tb<0 && av_q2d(icodec->time_base)*icodec->ticks_per_frame > 2*av_q2d(ist->st->time_base)
2322 && av_q2d(ist->st->time_base) < 1.0/500
2324 codec->time_base = icodec->time_base;
2325 codec->time_base.num *= icodec->ticks_per_frame;
2326 codec->time_base.den *= 2;
2327 codec->ticks_per_frame = 2;
2329 } else if(!(oc->oformat->flags & AVFMT_VARIABLE_FPS)
2330 && strcmp(oc->oformat->name, "mov") && strcmp(oc->oformat->name, "mp4") && strcmp(oc->oformat->name, "3gp")
2331 && strcmp(oc->oformat->name, "3g2") && strcmp(oc->oformat->name, "psp") && strcmp(oc->oformat->name, "ipod")
2332 && strcmp(oc->oformat->name, "f4v")
2334 if( copy_tb<0 && icodec->time_base.den
2335 && av_q2d(icodec->time_base)*icodec->ticks_per_frame > av_q2d(ist->st->time_base)
2336 && av_q2d(ist->st->time_base) < 1.0/500
2338 codec->time_base = icodec->time_base;
2339 codec->time_base.num *= icodec->ticks_per_frame;
2342 if ( codec->codec_tag == AV_RL32("tmcd")
2343 && icodec->time_base.num < icodec->time_base.den
2344 && icodec->time_base.num > 0
2345 && 121LL*icodec->time_base.num > icodec->time_base.den) {
2346 codec->time_base = icodec->time_base;
2349 if (ist && !ost->frame_rate.num)
2350 ost->frame_rate = ist->framerate;
2351 if(ost->frame_rate.num)
2352 codec->time_base = av_inv_q(ost->frame_rate);
2354 av_reduce(&codec->time_base.num, &codec->time_base.den,
2355 codec->time_base.num, codec->time_base.den, INT_MAX);
2357 ost->parser = av_parser_init(codec->codec_id);
2359 switch (codec->codec_type) {
2360 case AVMEDIA_TYPE_AUDIO:
2361 if (audio_volume != 256) {
2362 av_log(NULL, AV_LOG_FATAL, "-acodec copy and -vol are incompatible (frames are not decoded)\n");
2365 codec->channel_layout = icodec->channel_layout;
2366 codec->sample_rate = icodec->sample_rate;
2367 codec->channels = icodec->channels;
2368 codec->frame_size = icodec->frame_size;
2369 codec->audio_service_type = icodec->audio_service_type;
2370 codec->block_align = icodec->block_align;
2371 if((codec->block_align == 1 || codec->block_align == 1152 || codec->block_align == 576) && codec->codec_id == AV_CODEC_ID_MP3)
2372 codec->block_align= 0;
2373 if(codec->codec_id == AV_CODEC_ID_AC3)
2374 codec->block_align= 0;
2376 case AVMEDIA_TYPE_VIDEO:
2377 codec->pix_fmt = icodec->pix_fmt;
2378 codec->width = icodec->width;
2379 codec->height = icodec->height;
2380 codec->has_b_frames = icodec->has_b_frames;
2381 if (ost->frame_aspect_ratio.num) { // overridden by the -aspect cli option
2383 av_mul_q(ost->frame_aspect_ratio,
2384 (AVRational){ codec->height, codec->width });
2385 av_log(NULL, AV_LOG_WARNING, "Overriding aspect ratio "
2386 "with stream copy may produce invalid files\n");
2388 else if (ist->st->sample_aspect_ratio.num)
2389 sar = ist->st->sample_aspect_ratio;
2391 sar = icodec->sample_aspect_ratio;
2392 ost->st->sample_aspect_ratio = codec->sample_aspect_ratio = sar;
2393 ost->st->avg_frame_rate = ist->st->avg_frame_rate;
2395 case AVMEDIA_TYPE_SUBTITLE:
2396 codec->width = icodec->width;
2397 codec->height = icodec->height;
2399 case AVMEDIA_TYPE_DATA:
2400 case AVMEDIA_TYPE_ATTACHMENT:
2407 ost->enc = avcodec_find_encoder(codec->codec_id);
2409 /* should only happen when a default codec is not present. */
2410 snprintf(error, sizeof(error), "Encoder (codec %s) not found for output stream #%d:%d",
2411 avcodec_get_name(ost->st->codec->codec_id), ost->file_index, ost->index);
2412 ret = AVERROR(EINVAL);
2417 ist->decoding_needed++;
2418 ost->encoding_needed = 1;
2421 (codec->codec_type == AVMEDIA_TYPE_VIDEO ||
2422 codec->codec_type == AVMEDIA_TYPE_AUDIO)) {
2424 fg = init_simple_filtergraph(ist, ost);
2425 if (configure_filtergraph(fg)) {
2426 av_log(NULL, AV_LOG_FATAL, "Error opening filters!\n");
2431 if (codec->codec_type == AVMEDIA_TYPE_VIDEO) {
2432 if (ost->filter && !ost->frame_rate.num)
2433 ost->frame_rate = av_buffersink_get_frame_rate(ost->filter->filter);
2434 if (ist && !ost->frame_rate.num)
2435 ost->frame_rate = ist->framerate;
2436 if (ist && !ost->frame_rate.num)
2437 ost->frame_rate = ist->st->r_frame_rate.num ? ist->st->r_frame_rate : (AVRational){25, 1};
2438 // ost->frame_rate = ist->st->avg_frame_rate.num ? ist->st->avg_frame_rate : (AVRational){25, 1};
2439 if (ost->enc && ost->enc->supported_framerates && !ost->force_fps) {
2440 int idx = av_find_nearest_q_idx(ost->frame_rate, ost->enc->supported_framerates);
2441 ost->frame_rate = ost->enc->supported_framerates[idx];
2445 switch (codec->codec_type) {
2446 case AVMEDIA_TYPE_AUDIO:
2447 codec->sample_fmt = ost->filter->filter->inputs[0]->format;
2448 codec->sample_rate = ost->filter->filter->inputs[0]->sample_rate;
2449 codec->channel_layout = ost->filter->filter->inputs[0]->channel_layout;
2450 codec->channels = avfilter_link_get_channels(ost->filter->filter->inputs[0]);
2451 codec->time_base = (AVRational){ 1, codec->sample_rate };
2453 case AVMEDIA_TYPE_VIDEO:
2454 codec->time_base = av_inv_q(ost->frame_rate);
2455 if (ost->filter && !(codec->time_base.num && codec->time_base.den))
2456 codec->time_base = ost->filter->filter->inputs[0]->time_base;
2457 if ( av_q2d(codec->time_base) < 0.001 && video_sync_method != VSYNC_PASSTHROUGH
2458 && (video_sync_method == VSYNC_CFR || video_sync_method == VSYNC_VSCFR || (video_sync_method == VSYNC_AUTO && !(oc->oformat->flags & AVFMT_VARIABLE_FPS)))){
2459 av_log(oc, AV_LOG_WARNING, "Frame rate very high for a muxer not efficiently supporting it.\n"
2460 "Please consider specifying a lower framerate, a different muxer or -vsync 2\n");
2462 for (j = 0; j < ost->forced_kf_count; j++)
2463 ost->forced_kf_pts[j] = av_rescale_q(ost->forced_kf_pts[j],
2467 codec->width = ost->filter->filter->inputs[0]->w;
2468 codec->height = ost->filter->filter->inputs[0]->h;
2469 codec->sample_aspect_ratio = ost->st->sample_aspect_ratio =
2470 ost->frame_aspect_ratio.num ? // overridden by the -aspect cli option
2471 av_mul_q(ost->frame_aspect_ratio, (AVRational){ codec->height, codec->width }) :
2472 ost->filter->filter->inputs[0]->sample_aspect_ratio;
2473 if (!strncmp(ost->enc->name, "libx264", 7) &&
2474 codec->pix_fmt == AV_PIX_FMT_NONE &&
2475 ost->filter->filter->inputs[0]->format != AV_PIX_FMT_YUV420P)
2476 av_log(NULL, AV_LOG_WARNING,
2477 "No pixel format specified, %s for H.264 encoding chosen.\n"
2478 "Use -pix_fmt yuv420p for compatibility with outdated media players.\n",
2479 av_get_pix_fmt_name(ost->filter->filter->inputs[0]->format));
2480 if (!strncmp(ost->enc->name, "mpeg2video", 10) &&
2481 codec->pix_fmt == AV_PIX_FMT_NONE &&
2482 ost->filter->filter->inputs[0]->format != AV_PIX_FMT_YUV420P)
2483 av_log(NULL, AV_LOG_WARNING,
2484 "No pixel format specified, %s for MPEG-2 encoding chosen.\n"
2485 "Use -pix_fmt yuv420p for compatibility with outdated media players.\n",
2486 av_get_pix_fmt_name(ost->filter->filter->inputs[0]->format));
2487 codec->pix_fmt = ost->filter->filter->inputs[0]->format;
2490 codec->width != icodec->width ||
2491 codec->height != icodec->height ||
2492 codec->pix_fmt != icodec->pix_fmt) {
2493 codec->bits_per_raw_sample = frame_bits_per_raw_sample;
2496 if (ost->forced_keyframes) {
2497 if (!strncmp(ost->forced_keyframes, "expr:", 5)) {
2498 ret = av_expr_parse(&ost->forced_keyframes_pexpr, ost->forced_keyframes+5,
2499 forced_keyframes_const_names, NULL, NULL, NULL, NULL, 0, NULL);
2501 av_log(NULL, AV_LOG_ERROR,
2502 "Invalid force_key_frames expression '%s'\n", ost->forced_keyframes+5);
2505 ost->forced_keyframes_expr_const_values[FKF_N] = 0;
2506 ost->forced_keyframes_expr_const_values[FKF_N_FORCED] = 0;
2507 ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_N] = NAN;
2508 ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_T] = NAN;
2510 parse_forced_key_frames(ost->forced_keyframes, ost, ost->st->codec);
2514 case AVMEDIA_TYPE_SUBTITLE:
2515 codec->time_base = (AVRational){1, 1000};
2516 if (!codec->width) {
2517 codec->width = input_streams[ost->source_index]->st->codec->width;
2518 codec->height = input_streams[ost->source_index]->st->codec->height;
2526 if (codec->flags & (CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2)) {
2527 char logfilename[1024];
2530 snprintf(logfilename, sizeof(logfilename), "%s-%d.log",
2531 ost->logfile_prefix ? ost->logfile_prefix :
2532 DEFAULT_PASS_LOGFILENAME_PREFIX,
2534 if (!strcmp(ost->enc->name, "libx264")) {
2535 av_dict_set(&ost->opts, "stats", logfilename, AV_DICT_DONT_OVERWRITE);
2537 if (codec->flags & CODEC_FLAG_PASS2) {
2539 size_t logbuffer_size;
2540 if (cmdutils_read_file(logfilename, &logbuffer, &logbuffer_size) < 0) {
2541 av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n",
2545 codec->stats_in = logbuffer;
2547 if (codec->flags & CODEC_FLAG_PASS1) {
2548 f = av_fopen_utf8(logfilename, "wb");
2550 av_log(NULL, AV_LOG_FATAL, "Cannot write log file '%s' for pass-1 encoding: %s\n",
2551 logfilename, strerror(errno));
2561 /* open each encoder */
2562 for (i = 0; i < nb_output_streams; i++) {
2563 ost = output_streams[i];
2564 if (ost->encoding_needed) {
2565 AVCodec *codec = ost->enc;
2566 AVCodecContext *dec = NULL;
2568 if ((ist = get_input_stream(ost)))
2569 dec = ist->st->codec;
2570 if (dec && dec->subtitle_header) {
2571 /* ASS code assumes this buffer is null terminated so add extra byte. */
2572 ost->st->codec->subtitle_header = av_mallocz(dec->subtitle_header_size + 1);
2573 if (!ost->st->codec->subtitle_header) {
2574 ret = AVERROR(ENOMEM);
2577 memcpy(ost->st->codec->subtitle_header, dec->subtitle_header, dec->subtitle_header_size);
2578 ost->st->codec->subtitle_header_size = dec->subtitle_header_size;
2580 if (!av_dict_get(ost->opts, "threads", NULL, 0))
2581 av_dict_set(&ost->opts, "threads", "auto", 0);
2582 if ((ret = avcodec_open2(ost->st->codec, codec, &ost->opts)) < 0) {
2583 if (ret == AVERROR_EXPERIMENTAL)
2584 abort_codec_experimental(codec, 1);
2585 snprintf(error, sizeof(error), "Error while opening encoder for output stream #%d:%d - maybe incorrect parameters such as bit_rate, rate, width or height",
2586 ost->file_index, ost->index);
2589 if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
2590 !(ost->enc->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE))
2591 av_buffersink_set_frame_size(ost->filter->filter,
2592 ost->st->codec->frame_size);
2593 assert_avoptions(ost->opts);
2594 if (ost->st->codec->bit_rate && ost->st->codec->bit_rate < 1000)
2595 av_log(NULL, AV_LOG_WARNING, "The bitrate parameter is set too low."
2596 " It takes bits/s as argument, not kbits/s\n");
2597 extra_size += ost->st->codec->extradata_size;
2599 av_opt_set_dict(ost->st->codec, &ost->opts);
2603 /* init input streams */
2604 for (i = 0; i < nb_input_streams; i++)
2605 if ((ret = init_input_stream(i, error, sizeof(error))) < 0) {
2606 for (i = 0; i < nb_output_streams; i++) {
2607 ost = output_streams[i];
2608 avcodec_close(ost->st->codec);
2613 /* discard unused programs */
2614 for (i = 0; i < nb_input_files; i++) {
2615 InputFile *ifile = input_files[i];
2616 for (j = 0; j < ifile->ctx->nb_programs; j++) {
2617 AVProgram *p = ifile->ctx->programs[j];
2618 int discard = AVDISCARD_ALL;
2620 for (k = 0; k < p->nb_stream_indexes; k++)
2621 if (!input_streams[ifile->ist_index + p->stream_index[k]]->discard) {
2622 discard = AVDISCARD_DEFAULT;
2625 p->discard = discard;
2629 /* open files and write file headers */
2630 for (i = 0; i < nb_output_files; i++) {
2631 oc = output_files[i]->ctx;
2632 oc->interrupt_callback = int_cb;
2633 if ((ret = avformat_write_header(oc, &output_files[i]->opts)) < 0) {
2635 av_strerror(ret, errbuf, sizeof(errbuf));
2636 snprintf(error, sizeof(error),
2637 "Could not write header for output file #%d "
2638 "(incorrect codec parameters ?): %s",
2640 ret = AVERROR(EINVAL);
2643 // assert_avoptions(output_files[i]->opts);
2644 if (strcmp(oc->oformat->name, "rtp")) {
2650 /* dump the file output parameters - cannot be done before in case
2652 for (i = 0; i < nb_output_files; i++) {
2653 av_dump_format(output_files[i]->ctx, i, output_files[i]->ctx->filename, 1);
2656 /* dump the stream mapping */
2657 av_log(NULL, AV_LOG_INFO, "Stream mapping:\n");
2658 for (i = 0; i < nb_input_streams; i++) {
2659 ist = input_streams[i];
2661 for (j = 0; j < ist->nb_filters; j++) {
2662 if (ist->filters[j]->graph->graph_desc) {
2663 av_log(NULL, AV_LOG_INFO, " Stream #%d:%d (%s) -> %s",
2664 ist->file_index, ist->st->index, ist->dec ? ist->dec->name : "?",
2665 ist->filters[j]->name);
2666 if (nb_filtergraphs > 1)
2667 av_log(NULL, AV_LOG_INFO, " (graph %d)", ist->filters[j]->graph->index);
2668 av_log(NULL, AV_LOG_INFO, "\n");
2673 for (i = 0; i < nb_output_streams; i++) {
2674 ost = output_streams[i];
2676 if (ost->attachment_filename) {
2677 /* an attached file */
2678 av_log(NULL, AV_LOG_INFO, " File %s -> Stream #%d:%d\n",
2679 ost->attachment_filename, ost->file_index, ost->index);
2683 if (ost->filter && ost->filter->graph->graph_desc) {
2684 /* output from a complex graph */
2685 av_log(NULL, AV_LOG_INFO, " %s", ost->filter->name);
2686 if (nb_filtergraphs > 1)
2687 av_log(NULL, AV_LOG_INFO, " (graph %d)", ost->filter->graph->index);
2689 av_log(NULL, AV_LOG_INFO, " -> Stream #%d:%d (%s)\n", ost->file_index,
2690 ost->index, ost->enc ? ost->enc->name : "?");
2694 av_log(NULL, AV_LOG_INFO, " Stream #%d:%d -> #%d:%d",
2695 input_streams[ost->source_index]->file_index,
2696 input_streams[ost->source_index]->st->index,
2699 if (ost->sync_ist != input_streams[ost->source_index])
2700 av_log(NULL, AV_LOG_INFO, " [sync #%d:%d]",
2701 ost->sync_ist->file_index,
2702 ost->sync_ist->st->index);
2703 if (ost->stream_copy)
2704 av_log(NULL, AV_LOG_INFO, " (copy)");
2706 av_log(NULL, AV_LOG_INFO, " (%s -> %s)", input_streams[ost->source_index]->dec ?
2707 input_streams[ost->source_index]->dec->name : "?",
2708 ost->enc ? ost->enc->name : "?");
2709 av_log(NULL, AV_LOG_INFO, "\n");
2713 av_log(NULL, AV_LOG_ERROR, "%s\n", error);
2724 /* Return 1 if there remain streams where more output is wanted, 0 otherwise. */
2725 static int need_output(void)
2729 for (i = 0; i < nb_output_streams; i++) {
2730 OutputStream *ost = output_streams[i];
2731 OutputFile *of = output_files[ost->file_index];
2732 AVFormatContext *os = output_files[ost->file_index]->ctx;
2734 if (ost->finished ||
2735 (os->pb && avio_tell(os->pb) >= of->limit_filesize))
2737 if (ost->frame_number >= ost->max_frames) {
2739 for (j = 0; j < of->ctx->nb_streams; j++)
2740 close_output_stream(output_streams[of->ost_index + j]);
2751 * Select the output stream to process.
2753 * @return selected output stream, or NULL if none available
2755 static OutputStream *choose_output(void)
2758 int64_t opts_min = INT64_MAX;
2759 OutputStream *ost_min = NULL;
2761 for (i = 0; i < nb_output_streams; i++) {
2762 OutputStream *ost = output_streams[i];
2763 int64_t opts = av_rescale_q(ost->st->cur_dts, ost->st->time_base,
2765 if (!ost->unavailable && !ost->finished && opts < opts_min) {
2773 static int check_keyboard_interaction(int64_t cur_time)
2776 static int64_t last_time;
2777 if (received_nb_signals)
2778 return AVERROR_EXIT;
2779 /* read_key() returns 0 on EOF */
2780 if(cur_time - last_time >= 100000 && !run_as_daemon){
2782 last_time = cur_time;
2786 return AVERROR_EXIT;
2787 if (key == '+') av_log_set_level(av_log_get_level()+10);
2788 if (key == '-') av_log_set_level(av_log_get_level()-10);
2789 if (key == 's') qp_hist ^= 1;
2792 do_hex_dump = do_pkt_dump = 0;
2793 } else if(do_pkt_dump){
2797 av_log_set_level(AV_LOG_DEBUG);
2799 if (key == 'c' || key == 'C'){
2800 char buf[4096], target[64], command[256], arg[256] = {0};
2803 fprintf(stderr, "\nEnter command: <target>|all <time>|-1 <command>[ <argument>]\n");
2805 while ((k = read_key()) != '\n' && k != '\r' && i < sizeof(buf)-1)
2810 (n = sscanf(buf, "%63[^ ] %lf %255[^ ] %255[^\n]", target, &time, command, arg)) >= 3) {
2811 av_log(NULL, AV_LOG_DEBUG, "Processing command target:%s time:%f command:%s arg:%s",
2812 target, time, command, arg);
2813 for (i = 0; i < nb_filtergraphs; i++) {
2814 FilterGraph *fg = filtergraphs[i];
2817 ret = avfilter_graph_send_command(fg->graph, target, command, arg, buf, sizeof(buf),
2818 key == 'c' ? AVFILTER_CMD_FLAG_ONE : 0);
2819 fprintf(stderr, "Command reply for stream %d: ret:%d res:\n%s", i, ret, buf);
2820 } else if (key == 'c') {
2821 fprintf(stderr, "Queing commands only on filters supporting the specific command is unsupported\n");
2822 ret = AVERROR_PATCHWELCOME;
2824 ret = avfilter_graph_queue_command(fg->graph, target, command, arg, 0, time);
2829 av_log(NULL, AV_LOG_ERROR,
2830 "Parse error, at least 3 arguments were expected, "
2831 "only %d given in string '%s'\n", n, buf);
2834 if (key == 'd' || key == 'D'){
2837 debug = input_streams[0]->st->codec->debug<<1;
2838 if(!debug) debug = 1;
2839 while(debug & (FF_DEBUG_DCT_COEFF|FF_DEBUG_VIS_QP|FF_DEBUG_VIS_MB_TYPE)) //unsupported, would just crash
2842 if(scanf("%d", &debug)!=1)
2843 fprintf(stderr,"error parsing debug value\n");
2844 for(i=0;i<nb_input_streams;i++) {
2845 input_streams[i]->st->codec->debug = debug;
2847 for(i=0;i<nb_output_streams;i++) {
2848 OutputStream *ost = output_streams[i];
2849 ost->st->codec->debug = debug;
2851 if(debug) av_log_set_level(AV_LOG_DEBUG);
2852 fprintf(stderr,"debug=%d\n", debug);
2855 fprintf(stderr, "key function\n"
2856 "? show this help\n"
2857 "+ increase verbosity\n"
2858 "- decrease verbosity\n"
2859 "c Send command to first matching filter supporting it\n"
2860 "C Send/Que command to all matching filters\n"
2861 "D cycle through available debug modes\n"
2862 "h dump packets/hex press to cycle through the 3 states\n"
2864 "s Show QP histogram\n"
2871 static void *input_thread(void *arg)
2876 while (!transcoding_finished && ret >= 0) {
2878 ret = av_read_frame(f->ctx, &pkt);
2880 if (ret == AVERROR(EAGAIN)) {
2887 pthread_mutex_lock(&f->fifo_lock);
2888 while (!av_fifo_space(f->fifo))
2889 pthread_cond_wait(&f->fifo_cond, &f->fifo_lock);
2891 av_dup_packet(&pkt);
2892 av_fifo_generic_write(f->fifo, &pkt, sizeof(pkt), NULL);
2894 pthread_mutex_unlock(&f->fifo_lock);
2901 static void free_input_threads(void)
2905 if (nb_input_files == 1)
2908 transcoding_finished = 1;
2910 for (i = 0; i < nb_input_files; i++) {
2911 InputFile *f = input_files[i];
2914 if (!f->fifo || f->joined)
2917 pthread_mutex_lock(&f->fifo_lock);
2918 while (av_fifo_size(f->fifo)) {
2919 av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL);
2920 av_free_packet(&pkt);
2922 pthread_cond_signal(&f->fifo_cond);
2923 pthread_mutex_unlock(&f->fifo_lock);
2925 pthread_join(f->thread, NULL);
2928 while (av_fifo_size(f->fifo)) {
2929 av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL);
2930 av_free_packet(&pkt);
2932 av_fifo_free(f->fifo);
2936 static int init_input_threads(void)
2940 if (nb_input_files == 1)
2943 for (i = 0; i < nb_input_files; i++) {
2944 InputFile *f = input_files[i];
2946 if (!(f->fifo = av_fifo_alloc(8*sizeof(AVPacket))))
2947 return AVERROR(ENOMEM);
2949 pthread_mutex_init(&f->fifo_lock, NULL);
2950 pthread_cond_init (&f->fifo_cond, NULL);
2952 if ((ret = pthread_create(&f->thread, NULL, input_thread, f)))
2953 return AVERROR(ret);
2958 static int get_input_packet_mt(InputFile *f, AVPacket *pkt)
2962 pthread_mutex_lock(&f->fifo_lock);
2964 if (av_fifo_size(f->fifo)) {
2965 av_fifo_generic_read(f->fifo, pkt, sizeof(*pkt), NULL);
2966 pthread_cond_signal(&f->fifo_cond);
2971 ret = AVERROR(EAGAIN);
2974 pthread_mutex_unlock(&f->fifo_lock);
2980 static int get_input_packet(InputFile *f, AVPacket *pkt)
2984 for (i = 0; i < f->nb_streams; i++) {
2985 InputStream *ist = input_streams[f->ist_index + i];
2986 int64_t pts = av_rescale(ist->dts, 1000000, AV_TIME_BASE);
2987 int64_t now = av_gettime() - ist->start;
2989 return AVERROR(EAGAIN);
2994 if (nb_input_files > 1)
2995 return get_input_packet_mt(f, pkt);
2997 return av_read_frame(f->ctx, pkt);
3000 static int got_eagain(void)
3003 for (i = 0; i < nb_output_streams; i++)
3004 if (output_streams[i]->unavailable)
3009 static void reset_eagain(void)
3012 for (i = 0; i < nb_input_files; i++)
3013 input_files[i]->eagain = 0;
3014 for (i = 0; i < nb_output_streams; i++)
3015 output_streams[i]->unavailable = 0;
3020 * - 0 -- one packet was read and processed
3021 * - AVERROR(EAGAIN) -- no packets were available for selected file,
3022 * this function should be called again
3023 * - AVERROR_EOF -- this function should not be called again
3025 static int process_input(int file_index)
3027 InputFile *ifile = input_files[file_index];
3028 AVFormatContext *is;
3034 ret = get_input_packet(ifile, &pkt);
3036 if (ret == AVERROR(EAGAIN)) {
3041 if (ret != AVERROR_EOF) {
3042 print_error(is->filename, ret);
3046 ifile->eof_reached = 1;
3048 for (i = 0; i < ifile->nb_streams; i++) {
3049 ist = input_streams[ifile->ist_index + i];
3050 if (ist->decoding_needed)
3051 output_packet(ist, NULL);
3053 /* mark all outputs that don't go through lavfi as finished */
3054 for (j = 0; j < nb_output_streams; j++) {
3055 OutputStream *ost = output_streams[j];
3057 if (ost->source_index == ifile->ist_index + i &&
3058 (ost->stream_copy || ost->enc->type == AVMEDIA_TYPE_SUBTITLE))
3059 close_output_stream(ost);
3063 return AVERROR(EAGAIN);
3069 av_pkt_dump_log2(NULL, AV_LOG_DEBUG, &pkt, do_hex_dump,
3070 is->streams[pkt.stream_index]);
3072 /* the following test is needed in case new streams appear
3073 dynamically in stream : we ignore them */
3074 if (pkt.stream_index >= ifile->nb_streams) {
3075 report_new_stream(file_index, &pkt);
3076 goto discard_packet;
3079 ist = input_streams[ifile->ist_index + pkt.stream_index];
3081 goto discard_packet;
3084 av_log(NULL, AV_LOG_INFO, "demuxer -> ist_index:%d type:%s "
3085 "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",
3086 ifile->ist_index + pkt.stream_index, av_get_media_type_string(ist->st->codec->codec_type),
3087 av_ts2str(ist->next_dts), av_ts2timestr(ist->next_dts, &AV_TIME_BASE_Q),
3088 av_ts2str(ist->next_pts), av_ts2timestr(ist->next_pts, &AV_TIME_BASE_Q),
3089 av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ist->st->time_base),
3090 av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ist->st->time_base),
3091 av_ts2str(input_files[ist->file_index]->ts_offset),
3092 av_ts2timestr(input_files[ist->file_index]->ts_offset, &AV_TIME_BASE_Q));
3095 if(!ist->wrap_correction_done && is->start_time != AV_NOPTS_VALUE && ist->st->pts_wrap_bits < 64){
3096 int64_t stime, stime2;
3097 // Correcting starttime based on the enabled streams
3098 // 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.
3099 // so we instead do it here as part of discontinuity handling
3100 if ( ist->next_dts == AV_NOPTS_VALUE
3101 && ifile->ts_offset == -is->start_time
3102 && (is->iformat->flags & AVFMT_TS_DISCONT)) {
3103 int64_t new_start_time = INT64_MAX;
3104 for (i=0; i<is->nb_streams; i++) {
3105 AVStream *st = is->streams[i];
3106 if(st->discard == AVDISCARD_ALL || st->start_time == AV_NOPTS_VALUE)
3108 new_start_time = FFMIN(new_start_time, av_rescale_q(st->start_time, st->time_base, AV_TIME_BASE_Q));
3110 if (new_start_time > is->start_time) {
3111 av_log(is, AV_LOG_VERBOSE, "Correcting start time by %"PRId64"\n", new_start_time - is->start_time);
3112 ifile->ts_offset = -new_start_time;
3116 stime = av_rescale_q(is->start_time, AV_TIME_BASE_Q, ist->st->time_base);
3117 stime2= stime + (1ULL<<ist->st->pts_wrap_bits);
3118 ist->wrap_correction_done = 1;
3120 if(stime2 > stime && pkt.dts != AV_NOPTS_VALUE && pkt.dts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
3121 pkt.dts -= 1ULL<<ist->st->pts_wrap_bits;
3122 ist->wrap_correction_done = 0;
3124 if(stime2 > stime && pkt.pts != AV_NOPTS_VALUE && pkt.pts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
3125 pkt.pts -= 1ULL<<ist->st->pts_wrap_bits;
3126 ist->wrap_correction_done = 0;
3130 if (pkt.dts != AV_NOPTS_VALUE)
3131 pkt.dts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
3132 if (pkt.pts != AV_NOPTS_VALUE)
3133 pkt.pts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
3135 if (pkt.pts != AV_NOPTS_VALUE)
3136 pkt.pts *= ist->ts_scale;
3137 if (pkt.dts != AV_NOPTS_VALUE)
3138 pkt.dts *= ist->ts_scale;
3140 if (pkt.dts != AV_NOPTS_VALUE && ist->next_dts == AV_NOPTS_VALUE && !copy_ts
3141 && (is->iformat->flags & AVFMT_TS_DISCONT) && ifile->last_ts != AV_NOPTS_VALUE) {
3142 int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
3143 int64_t delta = pkt_dts - ifile->last_ts;
3144 if(delta < -1LL*dts_delta_threshold*AV_TIME_BASE ||
3145 (delta > 1LL*dts_delta_threshold*AV_TIME_BASE &&
3146 ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE)){
3147 ifile->ts_offset -= delta;
3148 av_log(NULL, AV_LOG_DEBUG,
3149 "Inter stream timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",
3150 delta, ifile->ts_offset);
3151 pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3152 if (pkt.pts != AV_NOPTS_VALUE)
3153 pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3157 if (pkt.dts != AV_NOPTS_VALUE && ist->next_dts != AV_NOPTS_VALUE &&
3159 int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
3160 int64_t delta = pkt_dts - ist->next_dts;
3161 if (is->iformat->flags & AVFMT_TS_DISCONT) {
3162 if(delta < -1LL*dts_delta_threshold*AV_TIME_BASE ||
3163 (delta > 1LL*dts_delta_threshold*AV_TIME_BASE &&
3164 ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE) ||
3165 pkt_dts + AV_TIME_BASE/10 < ist->pts){
3166 ifile->ts_offset -= delta;
3167 av_log(NULL, AV_LOG_DEBUG,
3168 "timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",
3169 delta, ifile->ts_offset);
3170 pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3171 if (pkt.pts != AV_NOPTS_VALUE)
3172 pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3175 if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
3176 (delta > 1LL*dts_error_threshold*AV_TIME_BASE && ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE)
3178 av_log(NULL, AV_LOG_WARNING, "DTS %"PRId64", next:%"PRId64" st:%d invalid dropping\n", pkt.dts, ist->next_dts, pkt.stream_index);
3179 pkt.dts = AV_NOPTS_VALUE;
3181 if (pkt.pts != AV_NOPTS_VALUE){
3182 int64_t pkt_pts = av_rescale_q(pkt.pts, ist->st->time_base, AV_TIME_BASE_Q);
3183 delta = pkt_pts - ist->next_dts;
3184 if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
3185 (delta > 1LL*dts_error_threshold*AV_TIME_BASE && ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE)
3187 av_log(NULL, AV_LOG_WARNING, "PTS %"PRId64", next:%"PRId64" invalid dropping st:%d\n", pkt.pts, ist->next_dts, pkt.stream_index);
3188 pkt.pts = AV_NOPTS_VALUE;
3194 if (pkt.dts != AV_NOPTS_VALUE)
3195 ifile->last_ts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
3198 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",
3199 ifile->ist_index + pkt.stream_index, av_get_media_type_string(ist->st->codec->codec_type),
3200 av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ist->st->time_base),
3201 av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ist->st->time_base),
3202 av_ts2str(input_files[ist->file_index]->ts_offset),
3203 av_ts2timestr(input_files[ist->file_index]->ts_offset, &AV_TIME_BASE_Q));
3206 sub2video_heartbeat(ist, pkt.pts);
3208 ret = output_packet(ist, &pkt);
3211 av_strerror(ret, buf, sizeof(buf));
3212 av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d: %s\n",
3213 ist->file_index, ist->st->index, buf);
3219 av_free_packet(&pkt);
3225 * Perform a step of transcoding for the specified filter graph.
3227 * @param[in] graph filter graph to consider
3228 * @param[out] best_ist input stream where a frame would allow to continue
3229 * @return 0 for success, <0 for error
3231 static int transcode_from_filter(FilterGraph *graph, InputStream **best_ist)
3234 int nb_requests, nb_requests_max = 0;
3235 InputFilter *ifilter;
3239 ret = avfilter_graph_request_oldest(graph->graph);
3241 return reap_filters();
3243 if (ret == AVERROR_EOF) {
3244 ret = reap_filters();
3245 for (i = 0; i < graph->nb_outputs; i++)
3246 close_output_stream(graph->outputs[i]->ost);
3249 if (ret != AVERROR(EAGAIN))
3252 for (i = 0; i < graph->nb_inputs; i++) {
3253 ifilter = graph->inputs[i];
3255 if (input_files[ist->file_index]->eagain ||
3256 input_files[ist->file_index]->eof_reached)
3258 nb_requests = av_buffersrc_get_nb_failed_requests(ifilter->filter);
3259 if (nb_requests > nb_requests_max) {
3260 nb_requests_max = nb_requests;
3266 for (i = 0; i < graph->nb_outputs; i++)
3267 graph->outputs[i]->ost->unavailable = 1;
3273 * Run a single step of transcoding.
3275 * @return 0 for success, <0 for error
3277 static int transcode_step(void)
3283 ost = choose_output();
3290 av_log(NULL, AV_LOG_VERBOSE, "No more inputs to read from, finishing.\n");
3295 if ((ret = transcode_from_filter(ost->filter->graph, &ist)) < 0)
3300 av_assert0(ost->source_index >= 0);
3301 ist = input_streams[ost->source_index];
3304 ret = process_input(ist->file_index);
3305 if (ret == AVERROR(EAGAIN)) {
3306 if (input_files[ist->file_index]->eagain)
3307 ost->unavailable = 1;
3311 return ret == AVERROR_EOF ? 0 : ret;
3313 return reap_filters();
3317 * The following code is the main loop of the file converter
3319 static int transcode(void)
3322 AVFormatContext *os;
3325 int64_t timer_start;
3327 ret = transcode_init();
3331 if (stdin_interaction) {
3332 av_log(NULL, AV_LOG_INFO, "Press [q] to stop, [?] for help\n");
3335 timer_start = av_gettime();
3338 if ((ret = init_input_threads()) < 0)
3342 while (!received_sigterm) {
3343 int64_t cur_time= av_gettime();
3345 /* if 'q' pressed, exits */
3346 if (stdin_interaction)
3347 if (check_keyboard_interaction(cur_time) < 0)
3350 /* check if there's any stream where output is still needed */
3351 if (!need_output()) {
3352 av_log(NULL, AV_LOG_VERBOSE, "No more output streams to write to, finishing.\n");
3356 ret = transcode_step();
3358 if (ret == AVERROR_EOF || ret == AVERROR(EAGAIN))
3361 av_log(NULL, AV_LOG_ERROR, "Error while filtering.\n");
3365 /* dump report by using the output first video and audio streams */
3366 print_report(0, timer_start, cur_time);
3369 free_input_threads();
3372 /* at the end of stream, we must flush the decoder buffers */
3373 for (i = 0; i < nb_input_streams; i++) {
3374 ist = input_streams[i];
3375 if (!input_files[ist->file_index]->eof_reached && ist->decoding_needed) {
3376 output_packet(ist, NULL);
3383 /* write the trailer if needed and close file */
3384 for (i = 0; i < nb_output_files; i++) {
3385 os = output_files[i]->ctx;
3386 av_write_trailer(os);
3389 /* dump report by using the first video and audio streams */
3390 print_report(1, timer_start, av_gettime());
3392 /* close each encoder */
3393 for (i = 0; i < nb_output_streams; i++) {
3394 ost = output_streams[i];
3395 if (ost->encoding_needed) {
3396 av_freep(&ost->st->codec->stats_in);
3397 avcodec_close(ost->st->codec);
3401 /* close each decoder */
3402 for (i = 0; i < nb_input_streams; i++) {
3403 ist = input_streams[i];
3404 if (ist->decoding_needed) {
3405 avcodec_close(ist->st->codec);
3406 if (ist->hwaccel_uninit)
3407 ist->hwaccel_uninit(ist->st->codec);
3416 free_input_threads();
3419 if (output_streams) {
3420 for (i = 0; i < nb_output_streams; i++) {
3421 ost = output_streams[i];
3423 if (ost->stream_copy)
3424 av_freep(&ost->st->codec->extradata);
3426 fclose(ost->logfile);
3427 ost->logfile = NULL;
3429 av_freep(&ost->st->codec->subtitle_header);
3430 av_freep(&ost->forced_kf_pts);
3431 av_freep(&ost->apad);
3432 av_dict_free(&ost->opts);
3433 av_dict_free(&ost->swr_opts);
3434 av_dict_free(&ost->resample_opts);
3442 static int64_t getutime(void)
3445 struct rusage rusage;
3447 getrusage(RUSAGE_SELF, &rusage);
3448 return (rusage.ru_utime.tv_sec * 1000000LL) + rusage.ru_utime.tv_usec;
3449 #elif HAVE_GETPROCESSTIMES
3451 FILETIME c, e, k, u;
3452 proc = GetCurrentProcess();
3453 GetProcessTimes(proc, &c, &e, &k, &u);
3454 return ((int64_t) u.dwHighDateTime << 32 | u.dwLowDateTime) / 10;
3456 return av_gettime();
3460 static int64_t getmaxrss(void)
3462 #if HAVE_GETRUSAGE && HAVE_STRUCT_RUSAGE_RU_MAXRSS
3463 struct rusage rusage;
3464 getrusage(RUSAGE_SELF, &rusage);
3465 return (int64_t)rusage.ru_maxrss * 1024;
3466 #elif HAVE_GETPROCESSMEMORYINFO
3468 PROCESS_MEMORY_COUNTERS memcounters;
3469 proc = GetCurrentProcess();
3470 memcounters.cb = sizeof(memcounters);
3471 GetProcessMemoryInfo(proc, &memcounters, sizeof(memcounters));
3472 return memcounters.PeakPagefileUsage;
3478 static void log_callback_null(void *ptr, int level, const char *fmt, va_list vl)
3482 int main(int argc, char **argv)
3487 register_exit(ffmpeg_cleanup);
3489 setvbuf(stderr,NULL,_IONBF,0); /* win32 runtime needs this */
3491 av_log_set_flags(AV_LOG_SKIP_REPEATED);
3492 parse_loglevel(argc, argv, options);
3494 if(argc>1 && !strcmp(argv[1], "-d")){
3496 av_log_set_callback(log_callback_null);
3501 avcodec_register_all();
3503 avdevice_register_all();
3505 avfilter_register_all();
3507 avformat_network_init();
3509 show_banner(argc, argv, options);
3513 /* parse options and open all input/output files */
3514 ret = ffmpeg_parse_options(argc, argv);
3518 if (nb_output_files <= 0 && nb_input_files == 0) {
3520 av_log(NULL, AV_LOG_WARNING, "Use -h to get full help or, even better, run 'man %s'\n", program_name);
3524 /* file converter / grab */
3525 if (nb_output_files <= 0) {
3526 av_log(NULL, AV_LOG_FATAL, "At least one output file must be specified\n");
3530 // if (nb_input_files == 0) {
3531 // av_log(NULL, AV_LOG_FATAL, "At least one input file must be specified\n");
3535 current_time = ti = getutime();
3536 if (transcode() < 0)
3538 ti = getutime() - ti;
3540 printf("bench: utime=%0.3fs\n", ti / 1000000.0);
3542 av_log(NULL, AV_LOG_DEBUG, "%"PRIu64" frames successfully decoded, %"PRIu64" decoding errors\n",
3543 decode_error_stat[0], decode_error_stat[1]);
3544 if ((decode_error_stat[0] + decode_error_stat[1]) * max_error_rate < decode_error_stat[1])
3547 exit_program(received_nb_signals ? 255 : 0);