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 "libavutil/threadmessage.h"
63 #include "libavformat/os_support.h"
65 #include "libavformat/ffm.h" // not public API
67 # include "libavfilter/avcodec.h"
68 # include "libavfilter/avfilter.h"
69 # include "libavfilter/buffersrc.h"
70 # include "libavfilter/buffersink.h"
72 #if HAVE_SYS_RESOURCE_H
74 #include <sys/types.h>
75 #include <sys/resource.h>
76 #elif HAVE_GETPROCESSTIMES
79 #if HAVE_GETPROCESSMEMORYINFO
85 #include <sys/select.h>
90 #include <sys/ioctl.h>
104 #include "cmdutils.h"
106 #include "libavutil/avassert.h"
108 const char program_name[] = "ffmpeg";
109 const int program_birth_year = 2000;
111 static FILE *vstats_file;
113 const char *const forced_keyframes_const_names[] = {
122 static void do_video_stats(OutputStream *ost, int frame_size);
123 static int64_t getutime(void);
124 static int64_t getmaxrss(void);
126 static int run_as_daemon = 0;
127 static int nb_frames_dup = 0;
128 static int nb_frames_drop = 0;
129 static int64_t decode_error_stat[2];
131 static int current_time;
132 AVIOContext *progress_avio = NULL;
134 static uint8_t *subtitle_out;
136 #define DEFAULT_PASS_LOGFILENAME_PREFIX "ffmpeg2pass"
138 InputStream **input_streams = NULL;
139 int nb_input_streams = 0;
140 InputFile **input_files = NULL;
141 int nb_input_files = 0;
143 OutputStream **output_streams = NULL;
144 int nb_output_streams = 0;
145 OutputFile **output_files = NULL;
146 int nb_output_files = 0;
148 FilterGraph **filtergraphs;
153 /* init terminal so that we can grab keys */
154 static struct termios oldtty;
155 static int restore_tty;
158 static void free_input_threads(void);
162 Convert subtitles to video with alpha to insert them in filter graphs.
163 This is a temporary solution until libavfilter gets real subtitles support.
166 static int sub2video_get_blank_frame(InputStream *ist)
169 AVFrame *frame = ist->sub2video.frame;
171 av_frame_unref(frame);
172 ist->sub2video.frame->width = ist->sub2video.w;
173 ist->sub2video.frame->height = ist->sub2video.h;
174 ist->sub2video.frame->format = AV_PIX_FMT_RGB32;
175 if ((ret = av_frame_get_buffer(frame, 32)) < 0)
177 memset(frame->data[0], 0, frame->height * frame->linesize[0]);
181 static void sub2video_copy_rect(uint8_t *dst, int dst_linesize, int w, int h,
184 uint32_t *pal, *dst2;
188 if (r->type != SUBTITLE_BITMAP) {
189 av_log(NULL, AV_LOG_WARNING, "sub2video: non-bitmap subtitle\n");
192 if (r->x < 0 || r->x + r->w > w || r->y < 0 || r->y + r->h > h) {
193 av_log(NULL, AV_LOG_WARNING, "sub2video: rectangle overflowing\n");
197 dst += r->y * dst_linesize + r->x * 4;
198 src = r->pict.data[0];
199 pal = (uint32_t *)r->pict.data[1];
200 for (y = 0; y < r->h; y++) {
201 dst2 = (uint32_t *)dst;
203 for (x = 0; x < r->w; x++)
204 *(dst2++) = pal[*(src2++)];
206 src += r->pict.linesize[0];
210 static void sub2video_push_ref(InputStream *ist, int64_t pts)
212 AVFrame *frame = ist->sub2video.frame;
215 av_assert1(frame->data[0]);
216 ist->sub2video.last_pts = frame->pts = pts;
217 for (i = 0; i < ist->nb_filters; i++)
218 av_buffersrc_add_frame_flags(ist->filters[i]->filter, frame,
219 AV_BUFFERSRC_FLAG_KEEP_REF |
220 AV_BUFFERSRC_FLAG_PUSH);
223 static void sub2video_update(InputStream *ist, AVSubtitle *sub)
225 int w = ist->sub2video.w, h = ist->sub2video.h;
226 AVFrame *frame = ist->sub2video.frame;
230 int64_t pts, end_pts;
235 pts = av_rescale_q(sub->pts + sub->start_display_time * 1000LL,
236 AV_TIME_BASE_Q, ist->st->time_base);
237 end_pts = av_rescale_q(sub->pts + sub->end_display_time * 1000LL,
238 AV_TIME_BASE_Q, ist->st->time_base);
239 num_rects = sub->num_rects;
241 pts = ist->sub2video.end_pts;
245 if (sub2video_get_blank_frame(ist) < 0) {
246 av_log(ist->dec_ctx, AV_LOG_ERROR,
247 "Impossible to get a blank canvas.\n");
250 dst = frame->data [0];
251 dst_linesize = frame->linesize[0];
252 for (i = 0; i < num_rects; i++)
253 sub2video_copy_rect(dst, dst_linesize, w, h, sub->rects[i]);
254 sub2video_push_ref(ist, pts);
255 ist->sub2video.end_pts = end_pts;
258 static void sub2video_heartbeat(InputStream *ist, int64_t pts)
260 InputFile *infile = input_files[ist->file_index];
264 /* When a frame is read from a file, examine all sub2video streams in
265 the same file and send the sub2video frame again. Otherwise, decoded
266 video frames could be accumulating in the filter graph while a filter
267 (possibly overlay) is desperately waiting for a subtitle frame. */
268 for (i = 0; i < infile->nb_streams; i++) {
269 InputStream *ist2 = input_streams[infile->ist_index + i];
270 if (!ist2->sub2video.frame)
272 /* subtitles seem to be usually muxed ahead of other streams;
273 if not, subtracting a larger time here is necessary */
274 pts2 = av_rescale_q(pts, ist->st->time_base, ist2->st->time_base) - 1;
275 /* do not send the heartbeat frame if the subtitle is already ahead */
276 if (pts2 <= ist2->sub2video.last_pts)
278 if (pts2 >= ist2->sub2video.end_pts || !ist2->sub2video.frame->data[0])
279 sub2video_update(ist2, NULL);
280 for (j = 0, nb_reqs = 0; j < ist2->nb_filters; j++)
281 nb_reqs += av_buffersrc_get_nb_failed_requests(ist2->filters[j]->filter);
283 sub2video_push_ref(ist2, pts2);
287 static void sub2video_flush(InputStream *ist)
291 if (ist->sub2video.end_pts < INT64_MAX)
292 sub2video_update(ist, NULL);
293 for (i = 0; i < ist->nb_filters; i++)
294 av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
297 /* end of sub2video hack */
299 static void term_exit_sigsafe(void)
303 tcsetattr (0, TCSANOW, &oldtty);
309 av_log(NULL, AV_LOG_QUIET, "%s", "");
313 static volatile int received_sigterm = 0;
314 static volatile int received_nb_signals = 0;
315 static volatile int transcode_init_done = 0;
316 static int main_return_code = 0;
319 sigterm_handler(int sig)
321 received_sigterm = sig;
322 received_nb_signals++;
324 if(received_nb_signals > 3)
335 istty = isatty(0) && isatty(2);
337 if (istty && tcgetattr (0, &tty) == 0) {
341 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
342 |INLCR|IGNCR|ICRNL|IXON);
343 tty.c_oflag |= OPOST;
344 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
345 tty.c_cflag &= ~(CSIZE|PARENB);
350 tcsetattr (0, TCSANOW, &tty);
352 signal(SIGQUIT, sigterm_handler); /* Quit (POSIX). */
355 avformat_network_deinit();
357 signal(SIGINT , sigterm_handler); /* Interrupt (ANSI). */
358 signal(SIGTERM, sigterm_handler); /* Termination (ANSI). */
360 signal(SIGXCPU, sigterm_handler);
364 /* read a key without blocking */
365 static int read_key(void)
377 n = select(1, &rfds, NULL, NULL, &tv);
386 # if HAVE_PEEKNAMEDPIPE
388 static HANDLE input_handle;
391 input_handle = GetStdHandle(STD_INPUT_HANDLE);
392 is_pipe = !GetConsoleMode(input_handle, &dw);
395 if (stdin->_cnt > 0) {
400 /* When running under a GUI, you will end here. */
401 if (!PeekNamedPipe(input_handle, NULL, 0, NULL, &nchars, NULL)) {
402 // input pipe may have been closed by the program that ran ffmpeg
420 static int decode_interrupt_cb(void *ctx)
422 return received_nb_signals > transcode_init_done;
425 const AVIOInterruptCB int_cb = { decode_interrupt_cb, NULL };
427 static void ffmpeg_cleanup(int ret)
432 int maxrss = getmaxrss() / 1024;
433 printf("bench: maxrss=%ikB\n", maxrss);
436 for (i = 0; i < nb_filtergraphs; i++) {
437 FilterGraph *fg = filtergraphs[i];
438 avfilter_graph_free(&fg->graph);
439 for (j = 0; j < fg->nb_inputs; j++) {
440 av_freep(&fg->inputs[j]->name);
441 av_freep(&fg->inputs[j]);
443 av_freep(&fg->inputs);
444 for (j = 0; j < fg->nb_outputs; j++) {
445 av_freep(&fg->outputs[j]->name);
446 av_freep(&fg->outputs[j]);
448 av_freep(&fg->outputs);
449 av_freep(&fg->graph_desc);
451 av_freep(&filtergraphs[i]);
453 av_freep(&filtergraphs);
455 av_freep(&subtitle_out);
458 for (i = 0; i < nb_output_files; i++) {
459 OutputFile *of = output_files[i];
460 AVFormatContext *s = of->ctx;
461 if (s && s->oformat && !(s->oformat->flags & AVFMT_NOFILE))
463 avformat_free_context(s);
464 av_dict_free(&of->opts);
466 av_freep(&output_files[i]);
468 for (i = 0; i < nb_output_streams; i++) {
469 OutputStream *ost = output_streams[i];
470 AVBitStreamFilterContext *bsfc = ost->bitstream_filters;
472 AVBitStreamFilterContext *next = bsfc->next;
473 av_bitstream_filter_close(bsfc);
476 ost->bitstream_filters = NULL;
477 av_frame_free(&ost->filtered_frame);
478 av_frame_free(&ost->last_frame);
480 av_parser_close(ost->parser);
482 av_freep(&ost->forced_keyframes);
483 av_expr_free(ost->forced_keyframes_pexpr);
484 av_freep(&ost->avfilter);
485 av_freep(&ost->logfile_prefix);
487 av_freep(&ost->audio_channels_map);
488 ost->audio_channels_mapped = 0;
490 avcodec_free_context(&ost->enc_ctx);
492 av_freep(&output_streams[i]);
495 free_input_threads();
497 for (i = 0; i < nb_input_files; i++) {
498 avformat_close_input(&input_files[i]->ctx);
499 av_freep(&input_files[i]);
501 for (i = 0; i < nb_input_streams; i++) {
502 InputStream *ist = input_streams[i];
504 av_frame_free(&ist->decoded_frame);
505 av_frame_free(&ist->filter_frame);
506 av_dict_free(&ist->decoder_opts);
507 avsubtitle_free(&ist->prev_sub.subtitle);
508 av_frame_free(&ist->sub2video.frame);
509 av_freep(&ist->filters);
510 av_freep(&ist->hwaccel_device);
512 avcodec_free_context(&ist->dec_ctx);
514 av_freep(&input_streams[i]);
519 av_freep(&vstats_filename);
521 av_freep(&input_streams);
522 av_freep(&input_files);
523 av_freep(&output_streams);
524 av_freep(&output_files);
528 avformat_network_deinit();
530 if (received_sigterm) {
531 av_log(NULL, AV_LOG_INFO, "Received signal %d: terminating.\n",
532 (int) received_sigterm);
533 } else if (ret && transcode_init_done) {
534 av_log(NULL, AV_LOG_INFO, "Conversion failed!\n");
539 void remove_avoptions(AVDictionary **a, AVDictionary *b)
541 AVDictionaryEntry *t = NULL;
543 while ((t = av_dict_get(b, "", t, AV_DICT_IGNORE_SUFFIX))) {
544 av_dict_set(a, t->key, NULL, AV_DICT_MATCH_CASE);
548 void assert_avoptions(AVDictionary *m)
550 AVDictionaryEntry *t;
551 if ((t = av_dict_get(m, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
552 av_log(NULL, AV_LOG_FATAL, "Option %s not found.\n", t->key);
557 static void abort_codec_experimental(AVCodec *c, int encoder)
562 static void update_benchmark(const char *fmt, ...)
564 if (do_benchmark_all) {
565 int64_t t = getutime();
571 vsnprintf(buf, sizeof(buf), fmt, va);
573 printf("bench: %8"PRIu64" %s \n", t - current_time, buf);
579 static void close_all_output_streams(OutputStream *ost, OSTFinished this_stream, OSTFinished others)
582 for (i = 0; i < nb_output_streams; i++) {
583 OutputStream *ost2 = output_streams[i];
584 ost2->finished |= ost == ost2 ? this_stream : others;
588 static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost)
590 AVBitStreamFilterContext *bsfc = ost->bitstream_filters;
591 AVCodecContext *avctx = ost->st->codec;
594 if (!ost->st->codec->extradata_size && ost->enc_ctx->extradata_size) {
595 ost->st->codec->extradata = av_mallocz(ost->enc_ctx->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
596 if (ost->st->codec->extradata) {
597 memcpy(ost->st->codec->extradata, ost->enc_ctx->extradata, ost->enc_ctx->extradata_size);
598 ost->st->codec->extradata_size = ost->enc_ctx->extradata_size;
602 if ((avctx->codec_type == AVMEDIA_TYPE_VIDEO && video_sync_method == VSYNC_DROP) ||
603 (avctx->codec_type == AVMEDIA_TYPE_AUDIO && audio_sync_method < 0))
604 pkt->pts = pkt->dts = AV_NOPTS_VALUE;
607 * Audio encoders may split the packets -- #frames in != #packets out.
608 * But there is no reordering, so we can limit the number of output packets
609 * by simply dropping them here.
610 * Counting encoded video frames needs to be done separately because of
611 * reordering, see do_video_out()
613 if (!(avctx->codec_type == AVMEDIA_TYPE_VIDEO && avctx->codec)) {
614 if (ost->frame_number >= ost->max_frames) {
622 av_packet_split_side_data(pkt);
625 AVPacket new_pkt = *pkt;
626 AVDictionaryEntry *bsf_arg = av_dict_get(ost->bsf_args,
629 int a = av_bitstream_filter_filter(bsfc, avctx,
630 bsf_arg ? bsf_arg->value : NULL,
631 &new_pkt.data, &new_pkt.size,
632 pkt->data, pkt->size,
633 pkt->flags & AV_PKT_FLAG_KEY);
634 if(a == 0 && new_pkt.data != pkt->data && new_pkt.destruct) {
635 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
637 memcpy(t, new_pkt.data, new_pkt.size);
638 memset(t + new_pkt.size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
646 pkt->side_data = NULL;
647 pkt->side_data_elems = 0;
649 new_pkt.buf = av_buffer_create(new_pkt.data, new_pkt.size,
650 av_buffer_default_free, NULL, 0);
654 av_log(NULL, AV_LOG_ERROR, "Failed to open bitstream filter %s for stream %d with codec %s",
655 bsfc->filter->name, pkt->stream_index,
656 avctx->codec ? avctx->codec->name : "copy");
666 if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
667 if (pkt->dts != AV_NOPTS_VALUE &&
668 pkt->pts != AV_NOPTS_VALUE &&
669 pkt->dts > pkt->pts) {
670 av_log(s, AV_LOG_WARNING, "Invalid DTS: %"PRId64" PTS: %"PRId64" in output stream %d:%d, replacing by guess\n",
672 ost->file_index, ost->st->index);
674 pkt->dts = pkt->pts + pkt->dts + ost->last_mux_dts + 1
675 - FFMIN3(pkt->pts, pkt->dts, ost->last_mux_dts + 1)
676 - FFMAX3(pkt->pts, pkt->dts, ost->last_mux_dts + 1);
679 (avctx->codec_type == AVMEDIA_TYPE_AUDIO || avctx->codec_type == AVMEDIA_TYPE_VIDEO) &&
680 pkt->dts != AV_NOPTS_VALUE &&
681 ost->last_mux_dts != AV_NOPTS_VALUE) {
682 int64_t max = ost->last_mux_dts + !(s->oformat->flags & AVFMT_TS_NONSTRICT);
683 if (pkt->dts < max) {
684 int loglevel = max - pkt->dts > 2 || avctx->codec_type == AVMEDIA_TYPE_VIDEO ? AV_LOG_WARNING : AV_LOG_DEBUG;
685 av_log(s, loglevel, "Non-monotonous DTS in output stream "
686 "%d:%d; previous: %"PRId64", current: %"PRId64"; ",
687 ost->file_index, ost->st->index, ost->last_mux_dts, pkt->dts);
689 av_log(NULL, AV_LOG_FATAL, "aborting.\n");
692 av_log(s, loglevel, "changing to %"PRId64". This may result "
693 "in incorrect timestamps in the output file.\n",
695 if(pkt->pts >= pkt->dts)
696 pkt->pts = FFMAX(pkt->pts, max);
701 ost->last_mux_dts = pkt->dts;
703 ost->data_size += pkt->size;
704 ost->packets_written++;
706 pkt->stream_index = ost->index;
709 av_log(NULL, AV_LOG_INFO, "muxer <- type:%s "
710 "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s size:%d\n",
711 av_get_media_type_string(ost->enc_ctx->codec_type),
712 av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &ost->st->time_base),
713 av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &ost->st->time_base),
718 ret = av_interleaved_write_frame(s, pkt);
720 print_error("av_interleaved_write_frame()", ret);
721 main_return_code = 1;
722 close_all_output_streams(ost, MUXER_FINISHED | ENCODER_FINISHED, ENCODER_FINISHED);
727 static void close_output_stream(OutputStream *ost)
729 OutputFile *of = output_files[ost->file_index];
731 ost->finished |= ENCODER_FINISHED;
733 int64_t end = av_rescale_q(ost->sync_opts - ost->first_pts, ost->enc_ctx->time_base, AV_TIME_BASE_Q);
734 of->recording_time = FFMIN(of->recording_time, end);
738 static int check_recording_time(OutputStream *ost)
740 OutputFile *of = output_files[ost->file_index];
742 if (of->recording_time != INT64_MAX &&
743 av_compare_ts(ost->sync_opts - ost->first_pts, ost->enc_ctx->time_base, of->recording_time,
744 AV_TIME_BASE_Q) >= 0) {
745 close_output_stream(ost);
751 static void do_audio_out(AVFormatContext *s, OutputStream *ost,
754 AVCodecContext *enc = ost->enc_ctx;
758 av_init_packet(&pkt);
762 if (!check_recording_time(ost))
765 if (frame->pts == AV_NOPTS_VALUE || audio_sync_method < 0)
766 frame->pts = ost->sync_opts;
767 ost->sync_opts = frame->pts + frame->nb_samples;
768 ost->samples_encoded += frame->nb_samples;
769 ost->frames_encoded++;
771 av_assert0(pkt.size || !pkt.data);
772 update_benchmark(NULL);
774 av_log(NULL, AV_LOG_INFO, "encoder <- type:audio "
775 "frame_pts:%s frame_pts_time:%s time_base:%d/%d\n",
776 av_ts2str(frame->pts), av_ts2timestr(frame->pts, &enc->time_base),
777 enc->time_base.num, enc->time_base.den);
780 if (avcodec_encode_audio2(enc, &pkt, frame, &got_packet) < 0) {
781 av_log(NULL, AV_LOG_FATAL, "Audio encoding failed (avcodec_encode_audio2)\n");
784 update_benchmark("encode_audio %d.%d", ost->file_index, ost->index);
787 av_packet_rescale_ts(&pkt, enc->time_base, ost->st->time_base);
790 av_log(NULL, AV_LOG_INFO, "encoder -> type:audio "
791 "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
792 av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ost->st->time_base),
793 av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ost->st->time_base));
796 write_frame(s, &pkt, ost);
800 static void do_subtitle_out(AVFormatContext *s,
805 int subtitle_out_max_size = 1024 * 1024;
806 int subtitle_out_size, nb, i;
811 if (sub->pts == AV_NOPTS_VALUE) {
812 av_log(NULL, AV_LOG_ERROR, "Subtitle packets must have a pts\n");
821 subtitle_out = av_malloc(subtitle_out_max_size);
823 av_log(NULL, AV_LOG_FATAL, "Failed to allocate subtitle_out\n");
828 /* Note: DVB subtitle need one packet to draw them and one other
829 packet to clear them */
830 /* XXX: signal it in the codec context ? */
831 if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE)
836 /* shift timestamp to honor -ss and make check_recording_time() work with -t */
838 if (output_files[ost->file_index]->start_time != AV_NOPTS_VALUE)
839 pts -= output_files[ost->file_index]->start_time;
840 for (i = 0; i < nb; i++) {
841 unsigned save_num_rects = sub->num_rects;
843 ost->sync_opts = av_rescale_q(pts, AV_TIME_BASE_Q, enc->time_base);
844 if (!check_recording_time(ost))
848 // start_display_time is required to be 0
849 sub->pts += av_rescale_q(sub->start_display_time, (AVRational){ 1, 1000 }, AV_TIME_BASE_Q);
850 sub->end_display_time -= sub->start_display_time;
851 sub->start_display_time = 0;
855 ost->frames_encoded++;
857 subtitle_out_size = avcodec_encode_subtitle(enc, subtitle_out,
858 subtitle_out_max_size, sub);
860 sub->num_rects = save_num_rects;
861 if (subtitle_out_size < 0) {
862 av_log(NULL, AV_LOG_FATAL, "Subtitle encoding failed\n");
866 av_init_packet(&pkt);
867 pkt.data = subtitle_out;
868 pkt.size = subtitle_out_size;
869 pkt.pts = av_rescale_q(sub->pts, AV_TIME_BASE_Q, ost->st->time_base);
870 pkt.duration = av_rescale_q(sub->end_display_time, (AVRational){ 1, 1000 }, ost->st->time_base);
871 if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE) {
872 /* XXX: the pts correction is handled here. Maybe handling
873 it in the codec would be better */
875 pkt.pts += 90 * sub->start_display_time;
877 pkt.pts += 90 * sub->end_display_time;
880 write_frame(s, &pkt, ost);
884 static void do_video_out(AVFormatContext *s,
886 AVFrame *next_picture,
889 int ret, format_video_sync;
891 AVCodecContext *enc = ost->enc_ctx;
892 AVCodecContext *mux_enc = ost->st->codec;
893 int nb_frames, nb0_frames, i;
894 double delta, delta0;
897 InputStream *ist = NULL;
898 AVFilterContext *filter = ost->filter->filter;
900 if (ost->source_index >= 0)
901 ist = input_streams[ost->source_index];
903 if (filter->inputs[0]->frame_rate.num > 0 &&
904 filter->inputs[0]->frame_rate.den > 0)
905 duration = 1/(av_q2d(filter->inputs[0]->frame_rate) * av_q2d(enc->time_base));
907 if(ist && ist->st->start_time != AV_NOPTS_VALUE && ist->st->first_dts != AV_NOPTS_VALUE && ost->frame_rate.num)
908 duration = FFMIN(duration, 1/(av_q2d(ost->frame_rate) * av_q2d(enc->time_base)));
910 if (!ost->filters_script &&
914 lrintf(av_frame_get_pkt_duration(next_picture) * av_q2d(ist->st->time_base) / av_q2d(enc->time_base)) > 0) {
915 duration = lrintf(av_frame_get_pkt_duration(next_picture) * av_q2d(ist->st->time_base) / av_q2d(enc->time_base));
918 delta0 = sync_ipts - ost->sync_opts;
919 delta = delta0 + duration;
921 /* by default, we output a single frame */
925 format_video_sync = video_sync_method;
926 if (format_video_sync == VSYNC_AUTO) {
927 if(!strcmp(s->oformat->name, "avi")) {
928 format_video_sync = VSYNC_VFR;
930 format_video_sync = (s->oformat->flags & AVFMT_VARIABLE_FPS) ? ((s->oformat->flags & AVFMT_NOTIMESTAMPS) ? VSYNC_PASSTHROUGH : VSYNC_VFR) : VSYNC_CFR;
932 && format_video_sync == VSYNC_CFR
933 && input_files[ist->file_index]->ctx->nb_streams == 1
934 && input_files[ist->file_index]->input_ts_offset == 0) {
935 format_video_sync = VSYNC_VSCFR;
937 if (format_video_sync == VSYNC_CFR && copy_ts) {
938 format_video_sync = VSYNC_VSCFR;
944 format_video_sync != VSYNC_PASSTHROUGH &&
945 format_video_sync != VSYNC_DROP) {
946 double cor = FFMIN(-delta0, duration);
948 av_log(NULL, AV_LOG_WARNING, "Past duration %f too large\n", -delta0);
950 av_log(NULL, AV_LOG_DEBUG, "Cliping frame in rate conversion by %f\n", -delta0);
956 switch (format_video_sync) {
958 if (ost->frame_number == 0 && delta - duration >= 0.5) {
959 av_log(NULL, AV_LOG_DEBUG, "Not duplicating %d initial frames\n", (int)lrintf(delta - duration));
962 ost->sync_opts = lrint(sync_ipts);
965 // FIXME set to 0.5 after we fix some dts/pts bugs like in avidec.c
968 else if (delta > 1.1) {
969 nb_frames = lrintf(delta);
971 nb0_frames = lrintf(delta0 - 0.6);
977 else if (delta > 0.6)
978 ost->sync_opts = lrint(sync_ipts);
981 case VSYNC_PASSTHROUGH:
982 ost->sync_opts = lrint(sync_ipts);
988 nb_frames = FFMIN(nb_frames, ost->max_frames - ost->frame_number);
989 nb0_frames = FFMIN(nb0_frames, nb_frames);
990 if (nb0_frames == 0 && ost->last_droped) {
992 av_log(NULL, AV_LOG_VERBOSE,
993 "*** dropping frame %d from stream %d at ts %"PRId64"\n",
994 ost->frame_number, ost->st->index, ost->last_frame->pts);
996 if (nb_frames > (nb0_frames && ost->last_droped) + (nb_frames > nb0_frames)) {
997 if (nb_frames > dts_error_threshold * 30) {
998 av_log(NULL, AV_LOG_ERROR, "%d frame duplication too large, skipping\n", nb_frames - 1);
1002 nb_frames_dup += nb_frames - (nb0_frames && ost->last_droped) - (nb_frames > nb0_frames);
1003 av_log(NULL, AV_LOG_VERBOSE, "*** %d dup!\n", nb_frames - 1);
1005 ost->last_droped = nb_frames == nb0_frames;
1007 /* duplicates frame if needed */
1008 for (i = 0; i < nb_frames; i++) {
1009 AVFrame *in_picture;
1010 av_init_packet(&pkt);
1014 if (i < nb0_frames && ost->last_frame) {
1015 in_picture = ost->last_frame;
1017 in_picture = next_picture;
1019 in_picture->pts = ost->sync_opts;
1022 if (!check_recording_time(ost))
1024 if (ost->frame_number >= ost->max_frames)
1028 if (s->oformat->flags & AVFMT_RAWPICTURE &&
1029 enc->codec->id == AV_CODEC_ID_RAWVIDEO) {
1030 /* raw pictures are written as AVPicture structure to
1031 avoid any copies. We support temporarily the older
1033 if (in_picture->interlaced_frame)
1034 mux_enc->field_order = in_picture->top_field_first ? AV_FIELD_TB:AV_FIELD_BT;
1036 mux_enc->field_order = AV_FIELD_PROGRESSIVE;
1037 pkt.data = (uint8_t *)in_picture;
1038 pkt.size = sizeof(AVPicture);
1039 pkt.pts = av_rescale_q(in_picture->pts, enc->time_base, ost->st->time_base);
1040 pkt.flags |= AV_PKT_FLAG_KEY;
1042 write_frame(s, &pkt, ost);
1044 int got_packet, forced_keyframe = 0;
1047 if (enc->flags & (CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_INTERLACED_ME) &&
1048 ost->top_field_first >= 0)
1049 in_picture->top_field_first = !!ost->top_field_first;
1051 if (in_picture->interlaced_frame) {
1052 if (enc->codec->id == AV_CODEC_ID_MJPEG)
1053 mux_enc->field_order = in_picture->top_field_first ? AV_FIELD_TT:AV_FIELD_BB;
1055 mux_enc->field_order = in_picture->top_field_first ? AV_FIELD_TB:AV_FIELD_BT;
1057 mux_enc->field_order = AV_FIELD_PROGRESSIVE;
1059 in_picture->quality = enc->global_quality;
1060 in_picture->pict_type = 0;
1062 pts_time = in_picture->pts != AV_NOPTS_VALUE ?
1063 in_picture->pts * av_q2d(enc->time_base) : NAN;
1064 if (ost->forced_kf_index < ost->forced_kf_count &&
1065 in_picture->pts >= ost->forced_kf_pts[ost->forced_kf_index]) {
1066 ost->forced_kf_index++;
1067 forced_keyframe = 1;
1068 } else if (ost->forced_keyframes_pexpr) {
1070 ost->forced_keyframes_expr_const_values[FKF_T] = pts_time;
1071 res = av_expr_eval(ost->forced_keyframes_pexpr,
1072 ost->forced_keyframes_expr_const_values, NULL);
1073 av_dlog(NULL, "force_key_frame: n:%f n_forced:%f prev_forced_n:%f t:%f prev_forced_t:%f -> res:%f\n",
1074 ost->forced_keyframes_expr_const_values[FKF_N],
1075 ost->forced_keyframes_expr_const_values[FKF_N_FORCED],
1076 ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_N],
1077 ost->forced_keyframes_expr_const_values[FKF_T],
1078 ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_T],
1081 forced_keyframe = 1;
1082 ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_N] =
1083 ost->forced_keyframes_expr_const_values[FKF_N];
1084 ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_T] =
1085 ost->forced_keyframes_expr_const_values[FKF_T];
1086 ost->forced_keyframes_expr_const_values[FKF_N_FORCED] += 1;
1089 ost->forced_keyframes_expr_const_values[FKF_N] += 1;
1092 if (forced_keyframe) {
1093 in_picture->pict_type = AV_PICTURE_TYPE_I;
1094 av_log(NULL, AV_LOG_DEBUG, "Forced keyframe at time %f\n", pts_time);
1097 update_benchmark(NULL);
1099 av_log(NULL, AV_LOG_INFO, "encoder <- type:video "
1100 "frame_pts:%s frame_pts_time:%s time_base:%d/%d\n",
1101 av_ts2str(in_picture->pts), av_ts2timestr(in_picture->pts, &enc->time_base),
1102 enc->time_base.num, enc->time_base.den);
1105 ost->frames_encoded++;
1107 ret = avcodec_encode_video2(enc, &pkt, in_picture, &got_packet);
1108 update_benchmark("encode_video %d.%d", ost->file_index, ost->index);
1110 av_log(NULL, AV_LOG_FATAL, "Video encoding failed\n");
1116 av_log(NULL, AV_LOG_INFO, "encoder -> type:video "
1117 "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
1118 av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &enc->time_base),
1119 av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &enc->time_base));
1122 if (pkt.pts == AV_NOPTS_VALUE && !(enc->codec->capabilities & CODEC_CAP_DELAY))
1123 pkt.pts = ost->sync_opts;
1125 av_packet_rescale_ts(&pkt, enc->time_base, ost->st->time_base);
1128 av_log(NULL, AV_LOG_INFO, "encoder -> type:video "
1129 "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
1130 av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ost->st->time_base),
1131 av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ost->st->time_base));
1134 frame_size = pkt.size;
1135 write_frame(s, &pkt, ost);
1137 /* if two pass, output log */
1138 if (ost->logfile && enc->stats_out) {
1139 fprintf(ost->logfile, "%s", enc->stats_out);
1145 * For video, number of frames in == number of packets out.
1146 * But there may be reordering, so we can't throw away frames on encoder
1147 * flush, we need to limit them here, before they go into encoder.
1149 ost->frame_number++;
1151 if (vstats_filename && frame_size)
1152 do_video_stats(ost, frame_size);
1155 if (!ost->last_frame)
1156 ost->last_frame = av_frame_alloc();
1157 av_frame_unref(ost->last_frame);
1158 av_frame_ref(ost->last_frame, next_picture);
1161 static double psnr(double d)
1163 return -10.0 * log(d) / log(10.0);
1166 static void do_video_stats(OutputStream *ost, int frame_size)
1168 AVCodecContext *enc;
1170 double ti1, bitrate, avg_bitrate;
1172 /* this is executed just the first time do_video_stats is called */
1174 vstats_file = fopen(vstats_filename, "w");
1182 if (enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1183 frame_number = ost->st->nb_frames;
1184 fprintf(vstats_file, "frame= %5d q= %2.1f ", frame_number, enc->coded_frame->quality / (float)FF_QP2LAMBDA);
1185 if (enc->flags&CODEC_FLAG_PSNR)
1186 fprintf(vstats_file, "PSNR= %6.2f ", psnr(enc->coded_frame->error[0] / (enc->width * enc->height * 255.0 * 255.0)));
1188 fprintf(vstats_file,"f_size= %6d ", frame_size);
1189 /* compute pts value */
1190 ti1 = av_stream_get_end_pts(ost->st) * av_q2d(ost->st->time_base);
1194 bitrate = (frame_size * 8) / av_q2d(enc->time_base) / 1000.0;
1195 avg_bitrate = (double)(ost->data_size * 8) / ti1 / 1000.0;
1196 fprintf(vstats_file, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ",
1197 (double)ost->data_size / 1024, ti1, bitrate, avg_bitrate);
1198 fprintf(vstats_file, "type= %c\n", av_get_picture_type_char(enc->coded_frame->pict_type));
1202 static void finish_output_stream(OutputStream *ost)
1204 OutputFile *of = output_files[ost->file_index];
1207 ost->finished = ENCODER_FINISHED | MUXER_FINISHED;
1210 for (i = 0; i < of->ctx->nb_streams; i++)
1211 output_streams[of->ost_index + i]->finished = ENCODER_FINISHED | MUXER_FINISHED;
1216 * Get and encode new output from any of the filtergraphs, without causing
1219 * @return 0 for success, <0 for severe errors
1221 static int reap_filters(void)
1223 AVFrame *filtered_frame = NULL;
1226 /* Reap all buffers present in the buffer sinks */
1227 for (i = 0; i < nb_output_streams; i++) {
1228 OutputStream *ost = output_streams[i];
1229 OutputFile *of = output_files[ost->file_index];
1230 AVFilterContext *filter;
1231 AVCodecContext *enc = ost->enc_ctx;
1236 filter = ost->filter->filter;
1238 if (!ost->filtered_frame && !(ost->filtered_frame = av_frame_alloc())) {
1239 return AVERROR(ENOMEM);
1241 filtered_frame = ost->filtered_frame;
1244 double float_pts = AV_NOPTS_VALUE; // this is identical to filtered_frame.pts but with higher precision
1245 ret = av_buffersink_get_frame_flags(filter, filtered_frame,
1246 AV_BUFFERSINK_FLAG_NO_REQUEST);
1248 if (ret != AVERROR(EAGAIN) && ret != AVERROR_EOF) {
1249 av_log(NULL, AV_LOG_WARNING,
1250 "Error in av_buffersink_get_frame_flags(): %s\n", av_err2str(ret));
1254 if (ost->finished) {
1255 av_frame_unref(filtered_frame);
1258 if (filtered_frame->pts != AV_NOPTS_VALUE) {
1259 int64_t start_time = (of->start_time == AV_NOPTS_VALUE) ? 0 : of->start_time;
1260 AVRational tb = enc->time_base;
1261 int extra_bits = av_clip(29 - av_log2(tb.den), 0, 16);
1263 tb.den <<= extra_bits;
1265 av_rescale_q(filtered_frame->pts, filter->inputs[0]->time_base, tb) -
1266 av_rescale_q(start_time, AV_TIME_BASE_Q, tb);
1267 float_pts /= 1 << extra_bits;
1268 // avoid exact midoints to reduce the chance of rounding differences, this can be removed in case the fps code is changed to work with integers
1269 float_pts += FFSIGN(float_pts) * 1.0 / (1<<17);
1271 filtered_frame->pts =
1272 av_rescale_q(filtered_frame->pts, filter->inputs[0]->time_base, enc->time_base) -
1273 av_rescale_q(start_time, AV_TIME_BASE_Q, enc->time_base);
1275 //if (ost->source_index >= 0)
1276 // *filtered_frame= *input_streams[ost->source_index]->decoded_frame; //for me_threshold
1278 switch (filter->inputs[0]->type) {
1279 case AVMEDIA_TYPE_VIDEO:
1280 if (!ost->frame_aspect_ratio.num)
1281 enc->sample_aspect_ratio = filtered_frame->sample_aspect_ratio;
1284 av_log(NULL, AV_LOG_INFO, "filter -> pts:%s pts_time:%s exact:%f time_base:%d/%d\n",
1285 av_ts2str(filtered_frame->pts), av_ts2timestr(filtered_frame->pts, &enc->time_base),
1287 enc->time_base.num, enc->time_base.den);
1290 do_video_out(of->ctx, ost, filtered_frame, float_pts);
1292 case AVMEDIA_TYPE_AUDIO:
1293 if (!(enc->codec->capabilities & CODEC_CAP_PARAM_CHANGE) &&
1294 enc->channels != av_frame_get_channels(filtered_frame)) {
1295 av_log(NULL, AV_LOG_ERROR,
1296 "Audio filter graph output is not normalized and encoder does not support parameter changes\n");
1299 do_audio_out(of->ctx, ost, filtered_frame);
1302 // TODO support subtitle filters
1306 av_frame_unref(filtered_frame);
1313 static void print_final_stats(int64_t total_size)
1315 uint64_t video_size = 0, audio_size = 0, extra_size = 0, other_size = 0;
1316 uint64_t subtitle_size = 0;
1317 uint64_t data_size = 0;
1318 float percent = -1.0;
1321 for (i = 0; i < nb_output_streams; i++) {
1322 OutputStream *ost = output_streams[i];
1323 switch (ost->enc_ctx->codec_type) {
1324 case AVMEDIA_TYPE_VIDEO: video_size += ost->data_size; break;
1325 case AVMEDIA_TYPE_AUDIO: audio_size += ost->data_size; break;
1326 case AVMEDIA_TYPE_SUBTITLE: subtitle_size += ost->data_size; break;
1327 default: other_size += ost->data_size; break;
1329 extra_size += ost->enc_ctx->extradata_size;
1330 data_size += ost->data_size;
1333 if (data_size && total_size>0 && total_size >= data_size)
1334 percent = 100.0 * (total_size - data_size) / data_size;
1336 av_log(NULL, AV_LOG_INFO, "video:%1.0fkB audio:%1.0fkB subtitle:%1.0fkB other streams:%1.0fkB global headers:%1.0fkB muxing overhead: ",
1337 video_size / 1024.0,
1338 audio_size / 1024.0,
1339 subtitle_size / 1024.0,
1340 other_size / 1024.0,
1341 extra_size / 1024.0);
1343 av_log(NULL, AV_LOG_INFO, "%f%%", percent);
1345 av_log(NULL, AV_LOG_INFO, "unknown");
1346 av_log(NULL, AV_LOG_INFO, "\n");
1348 /* print verbose per-stream stats */
1349 for (i = 0; i < nb_input_files; i++) {
1350 InputFile *f = input_files[i];
1351 uint64_t total_packets = 0, total_size = 0;
1353 av_log(NULL, AV_LOG_VERBOSE, "Input file #%d (%s):\n",
1354 i, f->ctx->filename);
1356 for (j = 0; j < f->nb_streams; j++) {
1357 InputStream *ist = input_streams[f->ist_index + j];
1358 enum AVMediaType type = ist->dec_ctx->codec_type;
1360 total_size += ist->data_size;
1361 total_packets += ist->nb_packets;
1363 av_log(NULL, AV_LOG_VERBOSE, " Input stream #%d:%d (%s): ",
1364 i, j, media_type_string(type));
1365 av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" packets read (%"PRIu64" bytes); ",
1366 ist->nb_packets, ist->data_size);
1368 if (ist->decoding_needed) {
1369 av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" frames decoded",
1370 ist->frames_decoded);
1371 if (type == AVMEDIA_TYPE_AUDIO)
1372 av_log(NULL, AV_LOG_VERBOSE, " (%"PRIu64" samples)", ist->samples_decoded);
1373 av_log(NULL, AV_LOG_VERBOSE, "; ");
1376 av_log(NULL, AV_LOG_VERBOSE, "\n");
1379 av_log(NULL, AV_LOG_VERBOSE, " Total: %"PRIu64" packets (%"PRIu64" bytes) demuxed\n",
1380 total_packets, total_size);
1383 for (i = 0; i < nb_output_files; i++) {
1384 OutputFile *of = output_files[i];
1385 uint64_t total_packets = 0, total_size = 0;
1387 av_log(NULL, AV_LOG_VERBOSE, "Output file #%d (%s):\n",
1388 i, of->ctx->filename);
1390 for (j = 0; j < of->ctx->nb_streams; j++) {
1391 OutputStream *ost = output_streams[of->ost_index + j];
1392 enum AVMediaType type = ost->enc_ctx->codec_type;
1394 total_size += ost->data_size;
1395 total_packets += ost->packets_written;
1397 av_log(NULL, AV_LOG_VERBOSE, " Output stream #%d:%d (%s): ",
1398 i, j, media_type_string(type));
1399 if (ost->encoding_needed) {
1400 av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" frames encoded",
1401 ost->frames_encoded);
1402 if (type == AVMEDIA_TYPE_AUDIO)
1403 av_log(NULL, AV_LOG_VERBOSE, " (%"PRIu64" samples)", ost->samples_encoded);
1404 av_log(NULL, AV_LOG_VERBOSE, "; ");
1407 av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" packets muxed (%"PRIu64" bytes); ",
1408 ost->packets_written, ost->data_size);
1410 av_log(NULL, AV_LOG_VERBOSE, "\n");
1413 av_log(NULL, AV_LOG_VERBOSE, " Total: %"PRIu64" packets (%"PRIu64" bytes) muxed\n",
1414 total_packets, total_size);
1416 if(video_size + data_size + audio_size + subtitle_size + extra_size == 0){
1417 av_log(NULL, AV_LOG_WARNING, "Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used)\n");
1421 static void print_report(int is_last_report, int64_t timer_start, int64_t cur_time)
1424 AVBPrint buf_script;
1426 AVFormatContext *oc;
1428 AVCodecContext *enc;
1429 int frame_number, vid, i;
1431 int64_t pts = INT64_MIN;
1432 static int64_t last_time = -1;
1433 static int qp_histogram[52];
1434 int hours, mins, secs, us;
1436 if (!print_stats && !is_last_report && !progress_avio)
1439 if (!is_last_report) {
1440 if (last_time == -1) {
1441 last_time = cur_time;
1444 if ((cur_time - last_time) < 500000)
1446 last_time = cur_time;
1450 oc = output_files[0]->ctx;
1452 total_size = avio_size(oc->pb);
1453 if (total_size <= 0) // FIXME improve avio_size() so it works with non seekable output too
1454 total_size = avio_tell(oc->pb);
1458 av_bprint_init(&buf_script, 0, 1);
1459 for (i = 0; i < nb_output_streams; i++) {
1461 ost = output_streams[i];
1463 if (!ost->stream_copy && enc->coded_frame)
1464 q = enc->coded_frame->quality / (float)FF_QP2LAMBDA;
1465 if (vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1466 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "q=%2.1f ", q);
1467 av_bprintf(&buf_script, "stream_%d_%d_q=%.1f\n",
1468 ost->file_index, ost->index, q);
1470 if (!vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1471 float fps, t = (cur_time-timer_start) / 1000000.0;
1473 frame_number = ost->frame_number;
1474 fps = t > 1 ? frame_number / t : 0;
1475 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "frame=%5d fps=%3.*f q=%3.1f ",
1476 frame_number, fps < 9.95, fps, q);
1477 av_bprintf(&buf_script, "frame=%d\n", frame_number);
1478 av_bprintf(&buf_script, "fps=%.1f\n", fps);
1479 av_bprintf(&buf_script, "stream_%d_%d_q=%.1f\n",
1480 ost->file_index, ost->index, q);
1482 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "L");
1486 if (qp >= 0 && qp < FF_ARRAY_ELEMS(qp_histogram))
1488 for (j = 0; j < 32; j++)
1489 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%X", (int)lrintf(log2(qp_histogram[j] + 1)));
1491 if ((enc->flags&CODEC_FLAG_PSNR) && (enc->coded_frame || is_last_report)) {
1493 double error, error_sum = 0;
1494 double scale, scale_sum = 0;
1496 char type[3] = { 'Y','U','V' };
1497 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "PSNR=");
1498 for (j = 0; j < 3; j++) {
1499 if (is_last_report) {
1500 error = enc->error[j];
1501 scale = enc->width * enc->height * 255.0 * 255.0 * frame_number;
1503 error = enc->coded_frame->error[j];
1504 scale = enc->width * enc->height * 255.0 * 255.0;
1510 p = psnr(error / scale);
1511 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%c:%2.2f ", type[j], p);
1512 av_bprintf(&buf_script, "stream_%d_%d_psnr_%c=%2.2f\n",
1513 ost->file_index, ost->index, type[j] | 32, p);
1515 p = psnr(error_sum / scale_sum);
1516 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "*:%2.2f ", psnr(error_sum / scale_sum));
1517 av_bprintf(&buf_script, "stream_%d_%d_psnr_all=%2.2f\n",
1518 ost->file_index, ost->index, p);
1522 /* compute min output value */
1523 if (av_stream_get_end_pts(ost->st) != AV_NOPTS_VALUE)
1524 pts = FFMAX(pts, av_rescale_q(av_stream_get_end_pts(ost->st),
1525 ost->st->time_base, AV_TIME_BASE_Q));
1527 nb_frames_drop += ost->last_droped;
1530 secs = pts / AV_TIME_BASE;
1531 us = pts % AV_TIME_BASE;
1537 bitrate = pts && total_size >= 0 ? total_size * 8 / (pts / 1000.0) : -1;
1539 if (total_size < 0) snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1541 else snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1542 "size=%8.0fkB time=", total_size / 1024.0);
1543 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1544 "%02d:%02d:%02d.%02d ", hours, mins, secs,
1545 (100 * us) / AV_TIME_BASE);
1548 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),"bitrate=N/A");
1549 av_bprintf(&buf_script, "bitrate=N/A\n");
1551 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),"bitrate=%6.1fkbits/s", bitrate);
1552 av_bprintf(&buf_script, "bitrate=%6.1fkbits/s\n", bitrate);
1555 if (total_size < 0) av_bprintf(&buf_script, "total_size=N/A\n");
1556 else av_bprintf(&buf_script, "total_size=%"PRId64"\n", total_size);
1557 av_bprintf(&buf_script, "out_time_ms=%"PRId64"\n", pts);
1558 av_bprintf(&buf_script, "out_time=%02d:%02d:%02d.%06d\n",
1559 hours, mins, secs, us);
1561 if (nb_frames_dup || nb_frames_drop)
1562 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " dup=%d drop=%d",
1563 nb_frames_dup, nb_frames_drop);
1564 av_bprintf(&buf_script, "dup_frames=%d\n", nb_frames_dup);
1565 av_bprintf(&buf_script, "drop_frames=%d\n", nb_frames_drop);
1567 if (print_stats || is_last_report) {
1568 const char end = is_last_report ? '\n' : '\r';
1569 if (print_stats==1 && AV_LOG_INFO > av_log_get_level()) {
1570 fprintf(stderr, "%s %c", buf, end);
1572 av_log(NULL, AV_LOG_INFO, "%s %c", buf, end);
1577 if (progress_avio) {
1578 av_bprintf(&buf_script, "progress=%s\n",
1579 is_last_report ? "end" : "continue");
1580 avio_write(progress_avio, buf_script.str,
1581 FFMIN(buf_script.len, buf_script.size - 1));
1582 avio_flush(progress_avio);
1583 av_bprint_finalize(&buf_script, NULL);
1584 if (is_last_report) {
1585 avio_closep(&progress_avio);
1590 print_final_stats(total_size);
1593 static void flush_encoders(void)
1597 for (i = 0; i < nb_output_streams; i++) {
1598 OutputStream *ost = output_streams[i];
1599 AVCodecContext *enc = ost->enc_ctx;
1600 AVFormatContext *os = output_files[ost->file_index]->ctx;
1601 int stop_encoding = 0;
1603 if (!ost->encoding_needed)
1606 if (enc->codec_type == AVMEDIA_TYPE_AUDIO && enc->frame_size <= 1)
1608 if (enc->codec_type == AVMEDIA_TYPE_VIDEO && (os->oformat->flags & AVFMT_RAWPICTURE) && enc->codec->id == AV_CODEC_ID_RAWVIDEO)
1612 int (*encode)(AVCodecContext*, AVPacket*, const AVFrame*, int*) = NULL;
1615 switch (enc->codec_type) {
1616 case AVMEDIA_TYPE_AUDIO:
1617 encode = avcodec_encode_audio2;
1620 case AVMEDIA_TYPE_VIDEO:
1621 encode = avcodec_encode_video2;
1632 av_init_packet(&pkt);
1636 update_benchmark(NULL);
1637 ret = encode(enc, &pkt, NULL, &got_packet);
1638 update_benchmark("flush %s %d.%d", desc, ost->file_index, ost->index);
1640 av_log(NULL, AV_LOG_FATAL, "%s encoding failed\n", desc);
1643 if (ost->logfile && enc->stats_out) {
1644 fprintf(ost->logfile, "%s", enc->stats_out);
1650 if (ost->finished & MUXER_FINISHED) {
1651 av_free_packet(&pkt);
1654 av_packet_rescale_ts(&pkt, enc->time_base, ost->st->time_base);
1655 pkt_size = pkt.size;
1656 write_frame(os, &pkt, ost);
1657 if (ost->enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO && vstats_filename) {
1658 do_video_stats(ost, pkt_size);
1669 * Check whether a packet from ist should be written into ost at this time
1671 static int check_output_constraints(InputStream *ist, OutputStream *ost)
1673 OutputFile *of = output_files[ost->file_index];
1674 int ist_index = input_files[ist->file_index]->ist_index + ist->st->index;
1676 if (ost->source_index != ist_index)
1682 if (of->start_time != AV_NOPTS_VALUE && ist->pts < of->start_time)
1688 static void do_streamcopy(InputStream *ist, OutputStream *ost, const AVPacket *pkt)
1690 OutputFile *of = output_files[ost->file_index];
1691 InputFile *f = input_files [ist->file_index];
1692 int64_t start_time = (of->start_time == AV_NOPTS_VALUE) ? 0 : of->start_time;
1693 int64_t ost_tb_start_time = av_rescale_q(start_time, AV_TIME_BASE_Q, ost->st->time_base);
1694 int64_t ist_tb_start_time = av_rescale_q(start_time, AV_TIME_BASE_Q, ist->st->time_base);
1698 av_init_packet(&opkt);
1700 if ((!ost->frame_number && !(pkt->flags & AV_PKT_FLAG_KEY)) &&
1701 !ost->copy_initial_nonkeyframes)
1704 if (pkt->pts == AV_NOPTS_VALUE) {
1705 if (!ost->frame_number && ist->pts < start_time &&
1706 !ost->copy_prior_start)
1709 if (!ost->frame_number && pkt->pts < ist_tb_start_time &&
1710 !ost->copy_prior_start)
1714 if (of->recording_time != INT64_MAX &&
1715 ist->pts >= of->recording_time + start_time) {
1716 close_output_stream(ost);
1720 if (f->recording_time != INT64_MAX) {
1721 start_time = f->ctx->start_time;
1722 if (f->start_time != AV_NOPTS_VALUE)
1723 start_time += f->start_time;
1724 if (ist->pts >= f->recording_time + start_time) {
1725 close_output_stream(ost);
1730 /* force the input stream PTS */
1731 if (ost->enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO)
1734 if (pkt->pts != AV_NOPTS_VALUE)
1735 opkt.pts = av_rescale_q(pkt->pts, ist->st->time_base, ost->st->time_base) - ost_tb_start_time;
1737 opkt.pts = AV_NOPTS_VALUE;
1739 if (pkt->dts == AV_NOPTS_VALUE)
1740 opkt.dts = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ost->st->time_base);
1742 opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base);
1743 opkt.dts -= ost_tb_start_time;
1745 if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && pkt->dts != AV_NOPTS_VALUE) {
1746 int duration = av_get_audio_frame_duration(ist->dec_ctx, pkt->size);
1748 duration = ist->dec_ctx->frame_size;
1749 opkt.dts = opkt.pts = av_rescale_delta(ist->st->time_base, pkt->dts,
1750 (AVRational){1, ist->dec_ctx->sample_rate}, duration, &ist->filter_in_rescale_delta_last,
1751 ost->st->time_base) - ost_tb_start_time;
1754 opkt.duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->st->time_base);
1755 opkt.flags = pkt->flags;
1757 // FIXME remove the following 2 lines they shall be replaced by the bitstream filters
1758 if ( ost->enc_ctx->codec_id != AV_CODEC_ID_H264
1759 && ost->enc_ctx->codec_id != AV_CODEC_ID_MPEG1VIDEO
1760 && ost->enc_ctx->codec_id != AV_CODEC_ID_MPEG2VIDEO
1761 && ost->enc_ctx->codec_id != AV_CODEC_ID_VC1
1763 if (av_parser_change(ost->parser, ost->st->codec,
1764 &opkt.data, &opkt.size,
1765 pkt->data, pkt->size,
1766 pkt->flags & AV_PKT_FLAG_KEY)) {
1767 opkt.buf = av_buffer_create(opkt.data, opkt.size, av_buffer_default_free, NULL, 0);
1772 opkt.data = pkt->data;
1773 opkt.size = pkt->size;
1775 av_copy_packet_side_data(&opkt, pkt);
1777 if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (of->ctx->oformat->flags & AVFMT_RAWPICTURE)) {
1778 /* store AVPicture in AVPacket, as expected by the output format */
1779 avpicture_fill(&pict, opkt.data, ost->st->codec->pix_fmt, ost->st->codec->width, ost->st->codec->height);
1780 opkt.data = (uint8_t *)&pict;
1781 opkt.size = sizeof(AVPicture);
1782 opkt.flags |= AV_PKT_FLAG_KEY;
1785 write_frame(of->ctx, &opkt, ost);
1788 int guess_input_channel_layout(InputStream *ist)
1790 AVCodecContext *dec = ist->dec_ctx;
1792 if (!dec->channel_layout) {
1793 char layout_name[256];
1795 if (dec->channels > ist->guess_layout_max)
1797 dec->channel_layout = av_get_default_channel_layout(dec->channels);
1798 if (!dec->channel_layout)
1800 av_get_channel_layout_string(layout_name, sizeof(layout_name),
1801 dec->channels, dec->channel_layout);
1802 av_log(NULL, AV_LOG_WARNING, "Guessed Channel Layout for Input Stream "
1803 "#%d.%d : %s\n", ist->file_index, ist->st->index, layout_name);
1808 static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output)
1810 AVFrame *decoded_frame, *f;
1811 AVCodecContext *avctx = ist->dec_ctx;
1812 int i, ret, err = 0, resample_changed;
1813 AVRational decoded_frame_tb;
1815 if (!ist->decoded_frame && !(ist->decoded_frame = av_frame_alloc()))
1816 return AVERROR(ENOMEM);
1817 if (!ist->filter_frame && !(ist->filter_frame = av_frame_alloc()))
1818 return AVERROR(ENOMEM);
1819 decoded_frame = ist->decoded_frame;
1821 update_benchmark(NULL);
1822 ret = avcodec_decode_audio4(avctx, decoded_frame, got_output, pkt);
1823 update_benchmark("decode_audio %d.%d", ist->file_index, ist->st->index);
1825 if (ret >= 0 && avctx->sample_rate <= 0) {
1826 av_log(avctx, AV_LOG_ERROR, "Sample rate %d invalid\n", avctx->sample_rate);
1827 ret = AVERROR_INVALIDDATA;
1830 if (*got_output || ret<0 || pkt->size)
1831 decode_error_stat[ret<0] ++;
1833 if (!*got_output || ret < 0) {
1835 for (i = 0; i < ist->nb_filters; i++)
1837 av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
1839 av_buffersrc_add_frame(ist->filters[i]->filter, NULL);
1845 ist->samples_decoded += decoded_frame->nb_samples;
1846 ist->frames_decoded++;
1849 /* increment next_dts to use for the case where the input stream does not
1850 have timestamps or there are multiple frames in the packet */
1851 ist->next_pts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
1853 ist->next_dts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
1857 resample_changed = ist->resample_sample_fmt != decoded_frame->format ||
1858 ist->resample_channels != avctx->channels ||
1859 ist->resample_channel_layout != decoded_frame->channel_layout ||
1860 ist->resample_sample_rate != decoded_frame->sample_rate;
1861 if (resample_changed) {
1862 char layout1[64], layout2[64];
1864 if (!guess_input_channel_layout(ist)) {
1865 av_log(NULL, AV_LOG_FATAL, "Unable to find default channel "
1866 "layout for Input Stream #%d.%d\n", ist->file_index,
1870 decoded_frame->channel_layout = avctx->channel_layout;
1872 av_get_channel_layout_string(layout1, sizeof(layout1), ist->resample_channels,
1873 ist->resample_channel_layout);
1874 av_get_channel_layout_string(layout2, sizeof(layout2), avctx->channels,
1875 decoded_frame->channel_layout);
1877 av_log(NULL, AV_LOG_INFO,
1878 "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",
1879 ist->file_index, ist->st->index,
1880 ist->resample_sample_rate, av_get_sample_fmt_name(ist->resample_sample_fmt),
1881 ist->resample_channels, layout1,
1882 decoded_frame->sample_rate, av_get_sample_fmt_name(decoded_frame->format),
1883 avctx->channels, layout2);
1885 ist->resample_sample_fmt = decoded_frame->format;
1886 ist->resample_sample_rate = decoded_frame->sample_rate;
1887 ist->resample_channel_layout = decoded_frame->channel_layout;
1888 ist->resample_channels = avctx->channels;
1890 for (i = 0; i < nb_filtergraphs; i++)
1891 if (ist_in_filtergraph(filtergraphs[i], ist)) {
1892 FilterGraph *fg = filtergraphs[i];
1893 if (configure_filtergraph(fg) < 0) {
1894 av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
1900 /* if the decoder provides a pts, use it instead of the last packet pts.
1901 the decoder could be delaying output by a packet or more. */
1902 if (decoded_frame->pts != AV_NOPTS_VALUE) {
1903 ist->dts = ist->next_dts = ist->pts = ist->next_pts = av_rescale_q(decoded_frame->pts, avctx->time_base, AV_TIME_BASE_Q);
1904 decoded_frame_tb = avctx->time_base;
1905 } else if (decoded_frame->pkt_pts != AV_NOPTS_VALUE) {
1906 decoded_frame->pts = decoded_frame->pkt_pts;
1907 decoded_frame_tb = ist->st->time_base;
1908 } else if (pkt->pts != AV_NOPTS_VALUE) {
1909 decoded_frame->pts = pkt->pts;
1910 decoded_frame_tb = ist->st->time_base;
1912 decoded_frame->pts = ist->dts;
1913 decoded_frame_tb = AV_TIME_BASE_Q;
1915 pkt->pts = AV_NOPTS_VALUE;
1916 if (decoded_frame->pts != AV_NOPTS_VALUE)
1917 decoded_frame->pts = av_rescale_delta(decoded_frame_tb, decoded_frame->pts,
1918 (AVRational){1, avctx->sample_rate}, decoded_frame->nb_samples, &ist->filter_in_rescale_delta_last,
1919 (AVRational){1, avctx->sample_rate});
1920 for (i = 0; i < ist->nb_filters; i++) {
1921 if (i < ist->nb_filters - 1) {
1922 f = ist->filter_frame;
1923 err = av_frame_ref(f, decoded_frame);
1928 err = av_buffersrc_add_frame_flags(ist->filters[i]->filter, f,
1929 AV_BUFFERSRC_FLAG_PUSH);
1930 if (err == AVERROR_EOF)
1931 err = 0; /* ignore */
1935 decoded_frame->pts = AV_NOPTS_VALUE;
1937 av_frame_unref(ist->filter_frame);
1938 av_frame_unref(decoded_frame);
1939 return err < 0 ? err : ret;
1942 static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output)
1944 AVFrame *decoded_frame, *f;
1945 int i, ret = 0, err = 0, resample_changed;
1946 int64_t best_effort_timestamp;
1947 AVRational *frame_sample_aspect;
1949 if (!ist->decoded_frame && !(ist->decoded_frame = av_frame_alloc()))
1950 return AVERROR(ENOMEM);
1951 if (!ist->filter_frame && !(ist->filter_frame = av_frame_alloc()))
1952 return AVERROR(ENOMEM);
1953 decoded_frame = ist->decoded_frame;
1954 pkt->dts = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ist->st->time_base);
1956 update_benchmark(NULL);
1957 ret = avcodec_decode_video2(ist->dec_ctx,
1958 decoded_frame, got_output, pkt);
1959 update_benchmark("decode_video %d.%d", ist->file_index, ist->st->index);
1961 // The following line may be required in some cases where there is no parser
1962 // or the parser does not has_b_frames correctly
1963 if (ist->st->codec->has_b_frames < ist->dec_ctx->has_b_frames) {
1964 if (ist->dec_ctx->codec_id == AV_CODEC_ID_H264) {
1965 ist->st->codec->has_b_frames = ist->dec_ctx->has_b_frames;
1967 av_log_ask_for_sample(
1969 "has_b_frames is larger in decoder than demuxer %d > %d ",
1970 ist->dec_ctx->has_b_frames,
1971 ist->st->codec->has_b_frames
1975 if (*got_output || ret<0 || pkt->size)
1976 decode_error_stat[ret<0] ++;
1978 if (*got_output && ret >= 0) {
1979 if (ist->dec_ctx->width != decoded_frame->width ||
1980 ist->dec_ctx->height != decoded_frame->height ||
1981 ist->dec_ctx->pix_fmt != decoded_frame->format) {
1982 av_log(NULL, AV_LOG_DEBUG, "Frame parameters mismatch context %d,%d,%d != %d,%d,%d\n",
1983 decoded_frame->width,
1984 decoded_frame->height,
1985 decoded_frame->format,
1986 ist->dec_ctx->width,
1987 ist->dec_ctx->height,
1988 ist->dec_ctx->pix_fmt);
1992 if (!*got_output || ret < 0) {
1994 for (i = 0; i < ist->nb_filters; i++)
1996 av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
1998 av_buffersrc_add_frame(ist->filters[i]->filter, NULL);
2004 if(ist->top_field_first>=0)
2005 decoded_frame->top_field_first = ist->top_field_first;
2007 ist->frames_decoded++;
2009 if (ist->hwaccel_retrieve_data && decoded_frame->format == ist->hwaccel_pix_fmt) {
2010 err = ist->hwaccel_retrieve_data(ist->dec_ctx, decoded_frame);
2014 ist->hwaccel_retrieved_pix_fmt = decoded_frame->format;
2016 best_effort_timestamp= av_frame_get_best_effort_timestamp(decoded_frame);
2017 if(best_effort_timestamp != AV_NOPTS_VALUE)
2018 ist->next_pts = ist->pts = av_rescale_q(decoded_frame->pts = best_effort_timestamp, ist->st->time_base, AV_TIME_BASE_Q);
2021 av_log(NULL, AV_LOG_INFO, "decoder -> ist_index:%d type:video "
2022 "frame_pts:%s frame_pts_time:%s best_effort_ts:%"PRId64" best_effort_ts_time:%s keyframe:%d frame_type:%d time_base:%d/%d\n",
2023 ist->st->index, av_ts2str(decoded_frame->pts),
2024 av_ts2timestr(decoded_frame->pts, &ist->st->time_base),
2025 best_effort_timestamp,
2026 av_ts2timestr(best_effort_timestamp, &ist->st->time_base),
2027 decoded_frame->key_frame, decoded_frame->pict_type,
2028 ist->st->time_base.num, ist->st->time_base.den);
2033 if (ist->st->sample_aspect_ratio.num)
2034 decoded_frame->sample_aspect_ratio = ist->st->sample_aspect_ratio;
2036 resample_changed = ist->resample_width != decoded_frame->width ||
2037 ist->resample_height != decoded_frame->height ||
2038 ist->resample_pix_fmt != decoded_frame->format;
2039 if (resample_changed) {
2040 av_log(NULL, AV_LOG_INFO,
2041 "Input stream #%d:%d frame changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s\n",
2042 ist->file_index, ist->st->index,
2043 ist->resample_width, ist->resample_height, av_get_pix_fmt_name(ist->resample_pix_fmt),
2044 decoded_frame->width, decoded_frame->height, av_get_pix_fmt_name(decoded_frame->format));
2046 ist->resample_width = decoded_frame->width;
2047 ist->resample_height = decoded_frame->height;
2048 ist->resample_pix_fmt = decoded_frame->format;
2050 for (i = 0; i < nb_filtergraphs; i++) {
2051 if (ist_in_filtergraph(filtergraphs[i], ist) && ist->reinit_filters &&
2052 configure_filtergraph(filtergraphs[i]) < 0) {
2053 av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
2059 frame_sample_aspect= av_opt_ptr(avcodec_get_frame_class(), decoded_frame, "sample_aspect_ratio");
2060 for (i = 0; i < ist->nb_filters; i++) {
2061 if (!frame_sample_aspect->num)
2062 *frame_sample_aspect = ist->st->sample_aspect_ratio;
2064 if (i < ist->nb_filters - 1) {
2065 f = ist->filter_frame;
2066 err = av_frame_ref(f, decoded_frame);
2071 ret = av_buffersrc_add_frame_flags(ist->filters[i]->filter, f, AV_BUFFERSRC_FLAG_PUSH);
2072 if (ret == AVERROR_EOF) {
2073 ret = 0; /* ignore */
2074 } else if (ret < 0) {
2075 av_log(NULL, AV_LOG_FATAL,
2076 "Failed to inject frame into filter network: %s\n", av_err2str(ret));
2082 av_frame_unref(ist->filter_frame);
2083 av_frame_unref(decoded_frame);
2084 return err < 0 ? err : ret;
2087 static int transcode_subtitles(InputStream *ist, AVPacket *pkt, int *got_output)
2089 AVSubtitle subtitle;
2090 int i, ret = avcodec_decode_subtitle2(ist->dec_ctx,
2091 &subtitle, got_output, pkt);
2093 if (*got_output || ret<0 || pkt->size)
2094 decode_error_stat[ret<0] ++;
2096 if (ret < 0 || !*got_output) {
2098 sub2video_flush(ist);
2102 if (ist->fix_sub_duration) {
2104 if (ist->prev_sub.got_output) {
2105 end = av_rescale(subtitle.pts - ist->prev_sub.subtitle.pts,
2106 1000, AV_TIME_BASE);
2107 if (end < ist->prev_sub.subtitle.end_display_time) {
2108 av_log(ist->dec_ctx, AV_LOG_DEBUG,
2109 "Subtitle duration reduced from %d to %d%s\n",
2110 ist->prev_sub.subtitle.end_display_time, end,
2111 end <= 0 ? ", dropping it" : "");
2112 ist->prev_sub.subtitle.end_display_time = end;
2115 FFSWAP(int, *got_output, ist->prev_sub.got_output);
2116 FFSWAP(int, ret, ist->prev_sub.ret);
2117 FFSWAP(AVSubtitle, subtitle, ist->prev_sub.subtitle);
2125 sub2video_update(ist, &subtitle);
2127 if (!subtitle.num_rects)
2130 ist->frames_decoded++;
2132 for (i = 0; i < nb_output_streams; i++) {
2133 OutputStream *ost = output_streams[i];
2135 if (!check_output_constraints(ist, ost) || !ost->encoding_needed
2136 || ost->enc->type != AVMEDIA_TYPE_SUBTITLE)
2139 do_subtitle_out(output_files[ost->file_index]->ctx, ost, ist, &subtitle);
2143 avsubtitle_free(&subtitle);
2147 /* pkt = NULL means EOF (needed to flush decoder buffers) */
2148 static int process_input_packet(InputStream *ist, const AVPacket *pkt)
2154 if (!ist->saw_first_ts) {
2155 ist->dts = ist->st->avg_frame_rate.num ? - ist->dec_ctx->has_b_frames * AV_TIME_BASE / av_q2d(ist->st->avg_frame_rate) : 0;
2157 if (pkt && pkt->pts != AV_NOPTS_VALUE && !ist->decoding_needed) {
2158 ist->dts += av_rescale_q(pkt->pts, ist->st->time_base, AV_TIME_BASE_Q);
2159 ist->pts = ist->dts; //unused but better to set it to a value thats not totally wrong
2161 ist->saw_first_ts = 1;
2164 if (ist->next_dts == AV_NOPTS_VALUE)
2165 ist->next_dts = ist->dts;
2166 if (ist->next_pts == AV_NOPTS_VALUE)
2167 ist->next_pts = ist->pts;
2171 av_init_packet(&avpkt);
2179 if (pkt->dts != AV_NOPTS_VALUE) {
2180 ist->next_dts = ist->dts = av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q);
2181 if (ist->dec_ctx->codec_type != AVMEDIA_TYPE_VIDEO || !ist->decoding_needed)
2182 ist->next_pts = ist->pts = ist->dts;
2185 // while we have more to decode or while the decoder did output something on EOF
2186 while (ist->decoding_needed && (avpkt.size > 0 || (!pkt && got_output))) {
2190 ist->pts = ist->next_pts;
2191 ist->dts = ist->next_dts;
2193 if (avpkt.size && avpkt.size != pkt->size &&
2194 !(ist->dec->capabilities & CODEC_CAP_SUBFRAMES)) {
2195 av_log(NULL, ist->showed_multi_packet_warning ? AV_LOG_VERBOSE : AV_LOG_WARNING,
2196 "Multiple frames in a packet from stream %d\n", pkt->stream_index);
2197 ist->showed_multi_packet_warning = 1;
2200 switch (ist->dec_ctx->codec_type) {
2201 case AVMEDIA_TYPE_AUDIO:
2202 ret = decode_audio (ist, &avpkt, &got_output);
2204 case AVMEDIA_TYPE_VIDEO:
2205 ret = decode_video (ist, &avpkt, &got_output);
2206 if (avpkt.duration) {
2207 duration = av_rescale_q(avpkt.duration, ist->st->time_base, AV_TIME_BASE_Q);
2208 } else if(ist->dec_ctx->framerate.num != 0 && ist->dec_ctx->framerate.den != 0) {
2209 int ticks= av_stream_get_parser(ist->st) ? av_stream_get_parser(ist->st)->repeat_pict+1 : ist->dec_ctx->ticks_per_frame;
2210 duration = ((int64_t)AV_TIME_BASE *
2211 ist->dec_ctx->framerate.den * ticks) /
2212 ist->dec_ctx->framerate.num / ist->dec_ctx->ticks_per_frame;
2216 if(ist->dts != AV_NOPTS_VALUE && duration) {
2217 ist->next_dts += duration;
2219 ist->next_dts = AV_NOPTS_VALUE;
2222 ist->next_pts += duration; //FIXME the duration is not correct in some cases
2224 case AVMEDIA_TYPE_SUBTITLE:
2225 ret = transcode_subtitles(ist, &avpkt, &got_output);
2235 avpkt.pts= AV_NOPTS_VALUE;
2237 // touch data and size only if not EOF
2239 if(ist->dec_ctx->codec_type != AVMEDIA_TYPE_AUDIO)
2247 if (got_output && !pkt)
2251 /* handle stream copy */
2252 if (!ist->decoding_needed) {
2253 ist->dts = ist->next_dts;
2254 switch (ist->dec_ctx->codec_type) {
2255 case AVMEDIA_TYPE_AUDIO:
2256 ist->next_dts += ((int64_t)AV_TIME_BASE * ist->dec_ctx->frame_size) /
2257 ist->dec_ctx->sample_rate;
2259 case AVMEDIA_TYPE_VIDEO:
2260 if (ist->framerate.num) {
2261 // TODO: Remove work-around for c99-to-c89 issue 7
2262 AVRational time_base_q = AV_TIME_BASE_Q;
2263 int64_t next_dts = av_rescale_q(ist->next_dts, time_base_q, av_inv_q(ist->framerate));
2264 ist->next_dts = av_rescale_q(next_dts + 1, av_inv_q(ist->framerate), time_base_q);
2265 } else if (pkt->duration) {
2266 ist->next_dts += av_rescale_q(pkt->duration, ist->st->time_base, AV_TIME_BASE_Q);
2267 } else if(ist->dec_ctx->framerate.num != 0) {
2268 int ticks= av_stream_get_parser(ist->st) ? av_stream_get_parser(ist->st)->repeat_pict + 1 : ist->dec_ctx->ticks_per_frame;
2269 ist->next_dts += ((int64_t)AV_TIME_BASE *
2270 ist->dec_ctx->framerate.den * ticks) /
2271 ist->dec_ctx->framerate.num / ist->dec_ctx->ticks_per_frame;
2275 ist->pts = ist->dts;
2276 ist->next_pts = ist->next_dts;
2278 for (i = 0; pkt && i < nb_output_streams; i++) {
2279 OutputStream *ost = output_streams[i];
2281 if (!check_output_constraints(ist, ost) || ost->encoding_needed)
2284 do_streamcopy(ist, ost, pkt);
2290 static void print_sdp(void)
2295 AVIOContext *sdp_pb;
2296 AVFormatContext **avc = av_malloc_array(nb_output_files, sizeof(*avc));
2300 for (i = 0, j = 0; i < nb_output_files; i++) {
2301 if (!strcmp(output_files[i]->ctx->oformat->name, "rtp")) {
2302 avc[j] = output_files[i]->ctx;
2307 av_sdp_create(avc, j, sdp, sizeof(sdp));
2309 if (!sdp_filename) {
2310 printf("SDP:\n%s\n", sdp);
2313 if (avio_open2(&sdp_pb, sdp_filename, AVIO_FLAG_WRITE, &int_cb, NULL) < 0) {
2314 av_log(NULL, AV_LOG_ERROR, "Failed to open sdp file '%s'\n", sdp_filename);
2316 avio_printf(sdp_pb, "SDP:\n%s", sdp);
2317 avio_closep(&sdp_pb);
2318 av_freep(&sdp_filename);
2325 static const HWAccel *get_hwaccel(enum AVPixelFormat pix_fmt)
2328 for (i = 0; hwaccels[i].name; i++)
2329 if (hwaccels[i].pix_fmt == pix_fmt)
2330 return &hwaccels[i];
2334 static enum AVPixelFormat get_format(AVCodecContext *s, const enum AVPixelFormat *pix_fmts)
2336 InputStream *ist = s->opaque;
2337 const enum AVPixelFormat *p;
2340 for (p = pix_fmts; *p != -1; p++) {
2341 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(*p);
2342 const HWAccel *hwaccel;
2344 if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
2347 hwaccel = get_hwaccel(*p);
2349 (ist->active_hwaccel_id && ist->active_hwaccel_id != hwaccel->id) ||
2350 (ist->hwaccel_id != HWACCEL_AUTO && ist->hwaccel_id != hwaccel->id))
2353 ret = hwaccel->init(s);
2355 if (ist->hwaccel_id == hwaccel->id) {
2356 av_log(NULL, AV_LOG_FATAL,
2357 "%s hwaccel requested for input stream #%d:%d, "
2358 "but cannot be initialized.\n", hwaccel->name,
2359 ist->file_index, ist->st->index);
2364 ist->active_hwaccel_id = hwaccel->id;
2365 ist->hwaccel_pix_fmt = *p;
2372 static int get_buffer(AVCodecContext *s, AVFrame *frame, int flags)
2374 InputStream *ist = s->opaque;
2376 if (ist->hwaccel_get_buffer && frame->format == ist->hwaccel_pix_fmt)
2377 return ist->hwaccel_get_buffer(s, frame, flags);
2379 return avcodec_default_get_buffer2(s, frame, flags);
2382 static int init_input_stream(int ist_index, char *error, int error_len)
2385 InputStream *ist = input_streams[ist_index];
2387 if (ist->decoding_needed) {
2388 AVCodec *codec = ist->dec;
2390 snprintf(error, error_len, "Decoder (codec %s) not found for input stream #%d:%d",
2391 avcodec_get_name(ist->dec_ctx->codec_id), ist->file_index, ist->st->index);
2392 return AVERROR(EINVAL);
2395 ist->dec_ctx->opaque = ist;
2396 ist->dec_ctx->get_format = get_format;
2397 ist->dec_ctx->get_buffer2 = get_buffer;
2398 ist->dec_ctx->thread_safe_callbacks = 1;
2400 av_opt_set_int(ist->dec_ctx, "refcounted_frames", 1, 0);
2401 if (ist->dec_ctx->codec_id == AV_CODEC_ID_DVB_SUBTITLE &&
2402 (ist->decoding_needed & DECODING_FOR_OST)) {
2403 av_dict_set(&ist->decoder_opts, "compute_edt", "1", AV_DICT_DONT_OVERWRITE);
2404 if (ist->decoding_needed & DECODING_FOR_FILTER)
2405 av_log(NULL, AV_LOG_WARNING, "Warning using DVB subtitles for filtering and output at the same time is not fully supported, also see -compute_edt [0|1]\n");
2408 if (!av_dict_get(ist->decoder_opts, "threads", NULL, 0))
2409 av_dict_set(&ist->decoder_opts, "threads", "auto", 0);
2410 if ((ret = avcodec_open2(ist->dec_ctx, codec, &ist->decoder_opts)) < 0) {
2411 if (ret == AVERROR_EXPERIMENTAL)
2412 abort_codec_experimental(codec, 0);
2414 snprintf(error, error_len,
2415 "Error while opening decoder for input stream "
2417 ist->file_index, ist->st->index, av_err2str(ret));
2420 assert_avoptions(ist->decoder_opts);
2423 ist->next_pts = AV_NOPTS_VALUE;
2424 ist->next_dts = AV_NOPTS_VALUE;
2429 static InputStream *get_input_stream(OutputStream *ost)
2431 if (ost->source_index >= 0)
2432 return input_streams[ost->source_index];
2436 static int compare_int64(const void *a, const void *b)
2438 int64_t va = *(int64_t *)a, vb = *(int64_t *)b;
2439 return va < vb ? -1 : va > vb ? +1 : 0;
2442 static void parse_forced_key_frames(char *kf, OutputStream *ost,
2443 AVCodecContext *avctx)
2446 int n = 1, i, size, index = 0;
2449 for (p = kf; *p; p++)
2453 pts = av_malloc_array(size, sizeof(*pts));
2455 av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
2460 for (i = 0; i < n; i++) {
2461 char *next = strchr(p, ',');
2466 if (!memcmp(p, "chapters", 8)) {
2468 AVFormatContext *avf = output_files[ost->file_index]->ctx;
2471 if (avf->nb_chapters > INT_MAX - size ||
2472 !(pts = av_realloc_f(pts, size += avf->nb_chapters - 1,
2474 av_log(NULL, AV_LOG_FATAL,
2475 "Could not allocate forced key frames array.\n");
2478 t = p[8] ? parse_time_or_die("force_key_frames", p + 8, 1) : 0;
2479 t = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base);
2481 for (j = 0; j < avf->nb_chapters; j++) {
2482 AVChapter *c = avf->chapters[j];
2483 av_assert1(index < size);
2484 pts[index++] = av_rescale_q(c->start, c->time_base,
2485 avctx->time_base) + t;
2490 t = parse_time_or_die("force_key_frames", p, 1);
2491 av_assert1(index < size);
2492 pts[index++] = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base);
2499 av_assert0(index == size);
2500 qsort(pts, size, sizeof(*pts), compare_int64);
2501 ost->forced_kf_count = size;
2502 ost->forced_kf_pts = pts;
2505 static void report_new_stream(int input_index, AVPacket *pkt)
2507 InputFile *file = input_files[input_index];
2508 AVStream *st = file->ctx->streams[pkt->stream_index];
2510 if (pkt->stream_index < file->nb_streams_warn)
2512 av_log(file->ctx, AV_LOG_WARNING,
2513 "New %s stream %d:%d at pos:%"PRId64" and DTS:%ss\n",
2514 av_get_media_type_string(st->codec->codec_type),
2515 input_index, pkt->stream_index,
2516 pkt->pos, av_ts2timestr(pkt->dts, &st->time_base));
2517 file->nb_streams_warn = pkt->stream_index + 1;
2520 static void set_encoder_id(OutputFile *of, OutputStream *ost)
2522 AVDictionaryEntry *e;
2524 uint8_t *encoder_string;
2525 int encoder_string_len;
2526 int format_flags = 0;
2527 int codec_flags = 0;
2529 if (av_dict_get(ost->st->metadata, "encoder", NULL, 0))
2532 e = av_dict_get(of->opts, "fflags", NULL, 0);
2534 const AVOption *o = av_opt_find(of->ctx, "fflags", NULL, 0, 0);
2537 av_opt_eval_flags(of->ctx, o, e->value, &format_flags);
2539 e = av_dict_get(ost->encoder_opts, "flags", NULL, 0);
2541 const AVOption *o = av_opt_find(ost->enc_ctx, "flags", NULL, 0, 0);
2544 av_opt_eval_flags(ost->enc_ctx, o, e->value, &codec_flags);
2547 encoder_string_len = sizeof(LIBAVCODEC_IDENT) + strlen(ost->enc->name) + 2;
2548 encoder_string = av_mallocz(encoder_string_len);
2549 if (!encoder_string)
2552 if (!(format_flags & AVFMT_FLAG_BITEXACT) && !(codec_flags & CODEC_FLAG_BITEXACT))
2553 av_strlcpy(encoder_string, LIBAVCODEC_IDENT " ", encoder_string_len);
2555 av_strlcpy(encoder_string, "Lavc ", encoder_string_len);
2556 av_strlcat(encoder_string, ost->enc->name, encoder_string_len);
2557 av_dict_set(&ost->st->metadata, "encoder", encoder_string,
2558 AV_DICT_DONT_STRDUP_VAL | AV_DICT_DONT_OVERWRITE);
2561 static int transcode_init(void)
2563 int ret = 0, i, j, k;
2564 AVFormatContext *oc;
2567 char error[1024] = {0};
2570 for (i = 0; i < nb_filtergraphs; i++) {
2571 FilterGraph *fg = filtergraphs[i];
2572 for (j = 0; j < fg->nb_outputs; j++) {
2573 OutputFilter *ofilter = fg->outputs[j];
2574 if (!ofilter->ost || ofilter->ost->source_index >= 0)
2576 if (fg->nb_inputs != 1)
2578 for (k = nb_input_streams-1; k >= 0 ; k--)
2579 if (fg->inputs[0]->ist == input_streams[k])
2581 ofilter->ost->source_index = k;
2585 /* init framerate emulation */
2586 for (i = 0; i < nb_input_files; i++) {
2587 InputFile *ifile = input_files[i];
2588 if (ifile->rate_emu)
2589 for (j = 0; j < ifile->nb_streams; j++)
2590 input_streams[j + ifile->ist_index]->start = av_gettime_relative();
2593 /* output stream init */
2594 for (i = 0; i < nb_output_files; i++) {
2595 oc = output_files[i]->ctx;
2596 if (!oc->nb_streams && !(oc->oformat->flags & AVFMT_NOSTREAMS)) {
2597 av_dump_format(oc, i, oc->filename, 1);
2598 av_log(NULL, AV_LOG_ERROR, "Output file #%d does not contain any stream\n", i);
2599 return AVERROR(EINVAL);
2603 /* init complex filtergraphs */
2604 for (i = 0; i < nb_filtergraphs; i++)
2605 if ((ret = avfilter_graph_config(filtergraphs[i]->graph, NULL)) < 0)
2608 /* for each output stream, we compute the right encoding parameters */
2609 for (i = 0; i < nb_output_streams; i++) {
2610 AVCodecContext *enc_ctx;
2611 AVCodecContext *dec_ctx = NULL;
2612 ost = output_streams[i];
2613 oc = output_files[ost->file_index]->ctx;
2614 ist = get_input_stream(ost);
2616 if (ost->attachment_filename)
2619 enc_ctx = ost->enc_ctx;
2622 dec_ctx = ist->dec_ctx;
2624 ost->st->disposition = ist->st->disposition;
2625 enc_ctx->bits_per_raw_sample = dec_ctx->bits_per_raw_sample;
2626 enc_ctx->chroma_sample_location = dec_ctx->chroma_sample_location;
2628 for (j=0; j<oc->nb_streams; j++) {
2629 AVStream *st = oc->streams[j];
2630 if (st != ost->st && st->codec->codec_type == enc_ctx->codec_type)
2633 if (j == oc->nb_streams)
2634 if (enc_ctx->codec_type == AVMEDIA_TYPE_AUDIO || enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO)
2635 ost->st->disposition = AV_DISPOSITION_DEFAULT;
2638 if (ost->stream_copy) {
2640 uint64_t extra_size;
2642 av_assert0(ist && !ost->filter);
2644 extra_size = (uint64_t)dec_ctx->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE;
2646 if (extra_size > INT_MAX) {
2647 return AVERROR(EINVAL);
2650 /* if stream_copy is selected, no need to decode or encode */
2651 enc_ctx->codec_id = dec_ctx->codec_id;
2652 enc_ctx->codec_type = dec_ctx->codec_type;
2654 if (!enc_ctx->codec_tag) {
2655 unsigned int codec_tag;
2656 if (!oc->oformat->codec_tag ||
2657 av_codec_get_id (oc->oformat->codec_tag, dec_ctx->codec_tag) == enc_ctx->codec_id ||
2658 !av_codec_get_tag2(oc->oformat->codec_tag, dec_ctx->codec_id, &codec_tag))
2659 enc_ctx->codec_tag = dec_ctx->codec_tag;
2662 enc_ctx->bit_rate = dec_ctx->bit_rate;
2663 enc_ctx->rc_max_rate = dec_ctx->rc_max_rate;
2664 enc_ctx->rc_buffer_size = dec_ctx->rc_buffer_size;
2665 enc_ctx->field_order = dec_ctx->field_order;
2666 enc_ctx->extradata = av_mallocz(extra_size);
2667 if (!enc_ctx->extradata) {
2668 return AVERROR(ENOMEM);
2670 memcpy(enc_ctx->extradata, dec_ctx->extradata, dec_ctx->extradata_size);
2671 enc_ctx->extradata_size= dec_ctx->extradata_size;
2672 enc_ctx->bits_per_coded_sample = dec_ctx->bits_per_coded_sample;
2674 enc_ctx->time_base = ist->st->time_base;
2676 * Avi is a special case here because it supports variable fps but
2677 * having the fps and timebase differe significantly adds quite some
2680 if(!strcmp(oc->oformat->name, "avi")) {
2681 if ( copy_tb<0 && av_q2d(ist->st->r_frame_rate) >= av_q2d(ist->st->avg_frame_rate)
2682 && 0.5/av_q2d(ist->st->r_frame_rate) > av_q2d(ist->st->time_base)
2683 && 0.5/av_q2d(ist->st->r_frame_rate) > av_q2d(dec_ctx->time_base)
2684 && av_q2d(ist->st->time_base) < 1.0/500 && av_q2d(dec_ctx->time_base) < 1.0/500
2686 enc_ctx->time_base.num = ist->st->r_frame_rate.den;
2687 enc_ctx->time_base.den = 2*ist->st->r_frame_rate.num;
2688 enc_ctx->ticks_per_frame = 2;
2689 } else if ( copy_tb<0 && av_q2d(dec_ctx->time_base)*dec_ctx->ticks_per_frame > 2*av_q2d(ist->st->time_base)
2690 && av_q2d(ist->st->time_base) < 1.0/500
2692 enc_ctx->time_base = dec_ctx->time_base;
2693 enc_ctx->time_base.num *= dec_ctx->ticks_per_frame;
2694 enc_ctx->time_base.den *= 2;
2695 enc_ctx->ticks_per_frame = 2;
2697 } else if(!(oc->oformat->flags & AVFMT_VARIABLE_FPS)
2698 && strcmp(oc->oformat->name, "mov") && strcmp(oc->oformat->name, "mp4") && strcmp(oc->oformat->name, "3gp")
2699 && strcmp(oc->oformat->name, "3g2") && strcmp(oc->oformat->name, "psp") && strcmp(oc->oformat->name, "ipod")
2700 && strcmp(oc->oformat->name, "f4v")
2702 if( copy_tb<0 && dec_ctx->time_base.den
2703 && av_q2d(dec_ctx->time_base)*dec_ctx->ticks_per_frame > av_q2d(ist->st->time_base)
2704 && av_q2d(ist->st->time_base) < 1.0/500
2706 enc_ctx->time_base = dec_ctx->time_base;
2707 enc_ctx->time_base.num *= dec_ctx->ticks_per_frame;
2710 if ( enc_ctx->codec_tag == AV_RL32("tmcd")
2711 && dec_ctx->time_base.num < dec_ctx->time_base.den
2712 && dec_ctx->time_base.num > 0
2713 && 121LL*dec_ctx->time_base.num > dec_ctx->time_base.den) {
2714 enc_ctx->time_base = dec_ctx->time_base;
2717 if (ist && !ost->frame_rate.num)
2718 ost->frame_rate = ist->framerate;
2719 if(ost->frame_rate.num)
2720 enc_ctx->time_base = av_inv_q(ost->frame_rate);
2722 av_reduce(&enc_ctx->time_base.num, &enc_ctx->time_base.den,
2723 enc_ctx->time_base.num, enc_ctx->time_base.den, INT_MAX);
2725 if (ist->st->nb_side_data) {
2726 ost->st->side_data = av_realloc_array(NULL, ist->st->nb_side_data,
2727 sizeof(*ist->st->side_data));
2728 if (!ost->st->side_data)
2729 return AVERROR(ENOMEM);
2731 for (j = 0; j < ist->st->nb_side_data; j++) {
2732 const AVPacketSideData *sd_src = &ist->st->side_data[j];
2733 AVPacketSideData *sd_dst = &ost->st->side_data[j];
2735 sd_dst->data = av_malloc(sd_src->size);
2737 return AVERROR(ENOMEM);
2738 memcpy(sd_dst->data, sd_src->data, sd_src->size);
2739 sd_dst->size = sd_src->size;
2740 sd_dst->type = sd_src->type;
2741 ost->st->nb_side_data++;
2745 ost->parser = av_parser_init(enc_ctx->codec_id);
2747 switch (enc_ctx->codec_type) {
2748 case AVMEDIA_TYPE_AUDIO:
2749 if (audio_volume != 256) {
2750 av_log(NULL, AV_LOG_FATAL, "-acodec copy and -vol are incompatible (frames are not decoded)\n");
2753 enc_ctx->channel_layout = dec_ctx->channel_layout;
2754 enc_ctx->sample_rate = dec_ctx->sample_rate;
2755 enc_ctx->channels = dec_ctx->channels;
2756 enc_ctx->frame_size = dec_ctx->frame_size;
2757 enc_ctx->audio_service_type = dec_ctx->audio_service_type;
2758 enc_ctx->block_align = dec_ctx->block_align;
2759 enc_ctx->initial_padding = dec_ctx->delay;
2760 #if FF_API_AUDIOENC_DELAY
2761 enc_ctx->delay = dec_ctx->delay;
2763 if((enc_ctx->block_align == 1 || enc_ctx->block_align == 1152 || enc_ctx->block_align == 576) && enc_ctx->codec_id == AV_CODEC_ID_MP3)
2764 enc_ctx->block_align= 0;
2765 if(enc_ctx->codec_id == AV_CODEC_ID_AC3)
2766 enc_ctx->block_align= 0;
2768 case AVMEDIA_TYPE_VIDEO:
2769 enc_ctx->pix_fmt = dec_ctx->pix_fmt;
2770 enc_ctx->width = dec_ctx->width;
2771 enc_ctx->height = dec_ctx->height;
2772 enc_ctx->has_b_frames = dec_ctx->has_b_frames;
2773 if (ost->frame_aspect_ratio.num) { // overridden by the -aspect cli option
2775 av_mul_q(ost->frame_aspect_ratio,
2776 (AVRational){ enc_ctx->height, enc_ctx->width });
2777 av_log(NULL, AV_LOG_WARNING, "Overriding aspect ratio "
2778 "with stream copy may produce invalid files\n");
2780 else if (ist->st->sample_aspect_ratio.num)
2781 sar = ist->st->sample_aspect_ratio;
2783 sar = dec_ctx->sample_aspect_ratio;
2784 ost->st->sample_aspect_ratio = enc_ctx->sample_aspect_ratio = sar;
2785 ost->st->avg_frame_rate = ist->st->avg_frame_rate;
2786 ost->st->r_frame_rate = ist->st->r_frame_rate;
2788 case AVMEDIA_TYPE_SUBTITLE:
2789 enc_ctx->width = dec_ctx->width;
2790 enc_ctx->height = dec_ctx->height;
2792 case AVMEDIA_TYPE_DATA:
2793 case AVMEDIA_TYPE_ATTACHMENT:
2800 ost->enc = avcodec_find_encoder(enc_ctx->codec_id);
2802 /* should only happen when a default codec is not present. */
2803 snprintf(error, sizeof(error), "Encoder (codec %s) not found for output stream #%d:%d",
2804 avcodec_get_name(ost->st->codec->codec_id), ost->file_index, ost->index);
2805 ret = AVERROR(EINVAL);
2810 ist->decoding_needed |= DECODING_FOR_OST;
2811 ost->encoding_needed = 1;
2813 set_encoder_id(output_files[ost->file_index], ost);
2816 (enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO ||
2817 enc_ctx->codec_type == AVMEDIA_TYPE_AUDIO)) {
2819 fg = init_simple_filtergraph(ist, ost);
2820 if (configure_filtergraph(fg)) {
2821 av_log(NULL, AV_LOG_FATAL, "Error opening filters!\n");
2826 if (enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO) {
2827 if (ost->filter && !ost->frame_rate.num)
2828 ost->frame_rate = av_buffersink_get_frame_rate(ost->filter->filter);
2829 if (ist && !ost->frame_rate.num)
2830 ost->frame_rate = ist->framerate;
2831 if (ist && !ost->frame_rate.num)
2832 ost->frame_rate = ist->st->r_frame_rate;
2833 if (ist && !ost->frame_rate.num) {
2834 ost->frame_rate = (AVRational){25, 1};
2835 av_log(NULL, AV_LOG_WARNING,
2837 "about the input framerate is available. Falling "
2838 "back to a default value of 25fps for output stream #%d:%d. Use the -r option "
2839 "if you want a different framerate.\n",
2840 ost->file_index, ost->index);
2842 // ost->frame_rate = ist->st->avg_frame_rate.num ? ist->st->avg_frame_rate : (AVRational){25, 1};
2843 if (ost->enc && ost->enc->supported_framerates && !ost->force_fps) {
2844 int idx = av_find_nearest_q_idx(ost->frame_rate, ost->enc->supported_framerates);
2845 ost->frame_rate = ost->enc->supported_framerates[idx];
2847 if (enc_ctx->codec_id == AV_CODEC_ID_MPEG4) {
2848 av_reduce(&ost->frame_rate.num, &ost->frame_rate.den,
2849 ost->frame_rate.num, ost->frame_rate.den, 65535);
2853 switch (enc_ctx->codec_type) {
2854 case AVMEDIA_TYPE_AUDIO:
2855 enc_ctx->sample_fmt = ost->filter->filter->inputs[0]->format;
2856 enc_ctx->sample_rate = ost->filter->filter->inputs[0]->sample_rate;
2857 enc_ctx->channel_layout = ost->filter->filter->inputs[0]->channel_layout;
2858 enc_ctx->channels = avfilter_link_get_channels(ost->filter->filter->inputs[0]);
2859 enc_ctx->time_base = (AVRational){ 1, enc_ctx->sample_rate };
2861 case AVMEDIA_TYPE_VIDEO:
2862 enc_ctx->time_base = av_inv_q(ost->frame_rate);
2863 if (ost->filter && !(enc_ctx->time_base.num && enc_ctx->time_base.den))
2864 enc_ctx->time_base = ost->filter->filter->inputs[0]->time_base;
2865 if ( av_q2d(enc_ctx->time_base) < 0.001 && video_sync_method != VSYNC_PASSTHROUGH
2866 && (video_sync_method == VSYNC_CFR || video_sync_method == VSYNC_VSCFR || (video_sync_method == VSYNC_AUTO && !(oc->oformat->flags & AVFMT_VARIABLE_FPS)))){
2867 av_log(oc, AV_LOG_WARNING, "Frame rate very high for a muxer not efficiently supporting it.\n"
2868 "Please consider specifying a lower framerate, a different muxer or -vsync 2\n");
2870 for (j = 0; j < ost->forced_kf_count; j++)
2871 ost->forced_kf_pts[j] = av_rescale_q(ost->forced_kf_pts[j],
2873 enc_ctx->time_base);
2875 enc_ctx->width = ost->filter->filter->inputs[0]->w;
2876 enc_ctx->height = ost->filter->filter->inputs[0]->h;
2877 enc_ctx->sample_aspect_ratio = ost->st->sample_aspect_ratio =
2878 ost->frame_aspect_ratio.num ? // overridden by the -aspect cli option
2879 av_mul_q(ost->frame_aspect_ratio, (AVRational){ enc_ctx->height, enc_ctx->width }) :
2880 ost->filter->filter->inputs[0]->sample_aspect_ratio;
2881 if (!strncmp(ost->enc->name, "libx264", 7) &&
2882 enc_ctx->pix_fmt == AV_PIX_FMT_NONE &&
2883 ost->filter->filter->inputs[0]->format != AV_PIX_FMT_YUV420P)
2884 av_log(NULL, AV_LOG_WARNING,
2885 "No pixel format specified, %s for H.264 encoding chosen.\n"
2886 "Use -pix_fmt yuv420p for compatibility with outdated media players.\n",
2887 av_get_pix_fmt_name(ost->filter->filter->inputs[0]->format));
2888 if (!strncmp(ost->enc->name, "mpeg2video", 10) &&
2889 enc_ctx->pix_fmt == AV_PIX_FMT_NONE &&
2890 ost->filter->filter->inputs[0]->format != AV_PIX_FMT_YUV420P)
2891 av_log(NULL, AV_LOG_WARNING,
2892 "No pixel format specified, %s for MPEG-2 encoding chosen.\n"
2893 "Use -pix_fmt yuv420p for compatibility with outdated media players.\n",
2894 av_get_pix_fmt_name(ost->filter->filter->inputs[0]->format));
2895 enc_ctx->pix_fmt = ost->filter->filter->inputs[0]->format;
2897 ost->st->avg_frame_rate = ost->frame_rate;
2900 enc_ctx->width != dec_ctx->width ||
2901 enc_ctx->height != dec_ctx->height ||
2902 enc_ctx->pix_fmt != dec_ctx->pix_fmt) {
2903 enc_ctx->bits_per_raw_sample = frame_bits_per_raw_sample;
2906 if (ost->forced_keyframes) {
2907 if (!strncmp(ost->forced_keyframes, "expr:", 5)) {
2908 ret = av_expr_parse(&ost->forced_keyframes_pexpr, ost->forced_keyframes+5,
2909 forced_keyframes_const_names, NULL, NULL, NULL, NULL, 0, NULL);
2911 av_log(NULL, AV_LOG_ERROR,
2912 "Invalid force_key_frames expression '%s'\n", ost->forced_keyframes+5);
2915 ost->forced_keyframes_expr_const_values[FKF_N] = 0;
2916 ost->forced_keyframes_expr_const_values[FKF_N_FORCED] = 0;
2917 ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_N] = NAN;
2918 ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_T] = NAN;
2920 parse_forced_key_frames(ost->forced_keyframes, ost, ost->enc_ctx);
2924 case AVMEDIA_TYPE_SUBTITLE:
2925 enc_ctx->time_base = (AVRational){1, 1000};
2926 if (!enc_ctx->width) {
2927 enc_ctx->width = input_streams[ost->source_index]->st->codec->width;
2928 enc_ctx->height = input_streams[ost->source_index]->st->codec->height;
2931 case AVMEDIA_TYPE_DATA:
2938 if (enc_ctx->flags & (CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2)) {
2939 char logfilename[1024];
2942 snprintf(logfilename, sizeof(logfilename), "%s-%d.log",
2943 ost->logfile_prefix ? ost->logfile_prefix :
2944 DEFAULT_PASS_LOGFILENAME_PREFIX,
2946 if (!strcmp(ost->enc->name, "libx264")) {
2947 av_dict_set(&ost->encoder_opts, "stats", logfilename, AV_DICT_DONT_OVERWRITE);
2949 if (enc_ctx->flags & CODEC_FLAG_PASS2) {
2951 size_t logbuffer_size;
2952 if (cmdutils_read_file(logfilename, &logbuffer, &logbuffer_size) < 0) {
2953 av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n",
2957 enc_ctx->stats_in = logbuffer;
2959 if (enc_ctx->flags & CODEC_FLAG_PASS1) {
2960 f = av_fopen_utf8(logfilename, "wb");
2962 av_log(NULL, AV_LOG_FATAL, "Cannot write log file '%s' for pass-1 encoding: %s\n",
2963 logfilename, strerror(errno));
2972 if (ost->disposition) {
2973 static const AVOption opts[] = {
2974 { "disposition" , NULL, 0, AV_OPT_TYPE_FLAGS, { .i64 = 0 }, INT64_MIN, INT64_MAX, .unit = "flags" },
2975 { "default" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_DEFAULT }, .unit = "flags" },
2976 { "dub" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_DUB }, .unit = "flags" },
2977 { "original" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_ORIGINAL }, .unit = "flags" },
2978 { "comment" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_COMMENT }, .unit = "flags" },
2979 { "lyrics" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_LYRICS }, .unit = "flags" },
2980 { "karaoke" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_KARAOKE }, .unit = "flags" },
2981 { "forced" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_FORCED }, .unit = "flags" },
2982 { "hearing_impaired" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_HEARING_IMPAIRED }, .unit = "flags" },
2983 { "visual_impaired" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_VISUAL_IMPAIRED }, .unit = "flags" },
2984 { "clean_effects" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_CLEAN_EFFECTS }, .unit = "flags" },
2985 { "captions" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_CAPTIONS }, .unit = "flags" },
2986 { "descriptions" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_DESCRIPTIONS }, .unit = "flags" },
2987 { "metadata" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_METADATA }, .unit = "flags" },
2990 static const AVClass class = {
2992 .item_name = av_default_item_name,
2994 .version = LIBAVUTIL_VERSION_INT,
2996 const AVClass *pclass = &class;
2998 ret = av_opt_eval_flags(&pclass, &opts[0], ost->disposition, &ost->st->disposition);
3004 /* open each encoder */
3005 for (i = 0; i < nb_output_streams; i++) {
3006 ost = output_streams[i];
3007 if (ost->encoding_needed) {
3008 AVCodec *codec = ost->enc;
3009 AVCodecContext *dec = NULL;
3011 if ((ist = get_input_stream(ost)))
3013 if (dec && dec->subtitle_header) {
3014 /* ASS code assumes this buffer is null terminated so add extra byte. */
3015 ost->enc_ctx->subtitle_header = av_mallocz(dec->subtitle_header_size + 1);
3016 if (!ost->enc_ctx->subtitle_header) {
3017 ret = AVERROR(ENOMEM);
3020 memcpy(ost->enc_ctx->subtitle_header, dec->subtitle_header, dec->subtitle_header_size);
3021 ost->enc_ctx->subtitle_header_size = dec->subtitle_header_size;
3023 if (!av_dict_get(ost->encoder_opts, "threads", NULL, 0))
3024 av_dict_set(&ost->encoder_opts, "threads", "auto", 0);
3025 av_dict_set(&ost->encoder_opts, "side_data_only_packets", "1", 0);
3027 if ((ret = avcodec_open2(ost->enc_ctx, codec, &ost->encoder_opts)) < 0) {
3028 if (ret == AVERROR_EXPERIMENTAL)
3029 abort_codec_experimental(codec, 1);
3030 snprintf(error, sizeof(error), "Error while opening encoder for output stream #%d:%d - maybe incorrect parameters such as bit_rate, rate, width or height",
3031 ost->file_index, ost->index);
3034 if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
3035 !(ost->enc->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE))
3036 av_buffersink_set_frame_size(ost->filter->filter,
3037 ost->enc_ctx->frame_size);
3038 assert_avoptions(ost->encoder_opts);
3039 if (ost->enc_ctx->bit_rate && ost->enc_ctx->bit_rate < 1000)
3040 av_log(NULL, AV_LOG_WARNING, "The bitrate parameter is set too low."
3041 " It takes bits/s as argument, not kbits/s\n");
3043 ret = av_opt_set_dict(ost->enc_ctx, &ost->encoder_opts);
3045 av_log(NULL, AV_LOG_FATAL,
3046 "Error setting up codec context options.\n");
3051 ret = avcodec_copy_context(ost->st->codec, ost->enc_ctx);
3053 av_log(NULL, AV_LOG_FATAL,
3054 "Error initializing the output stream codec context.\n");
3057 ost->st->codec->codec= ost->enc_ctx->codec;
3059 // copy timebase while removing common factors
3060 ost->st->time_base = av_add_q(ost->enc_ctx->time_base, (AVRational){0, 1});
3063 /* init input streams */
3064 for (i = 0; i < nb_input_streams; i++)
3065 if ((ret = init_input_stream(i, error, sizeof(error))) < 0) {
3066 for (i = 0; i < nb_output_streams; i++) {
3067 ost = output_streams[i];
3068 avcodec_close(ost->enc_ctx);
3073 /* discard unused programs */
3074 for (i = 0; i < nb_input_files; i++) {
3075 InputFile *ifile = input_files[i];
3076 for (j = 0; j < ifile->ctx->nb_programs; j++) {
3077 AVProgram *p = ifile->ctx->programs[j];
3078 int discard = AVDISCARD_ALL;
3080 for (k = 0; k < p->nb_stream_indexes; k++)
3081 if (!input_streams[ifile->ist_index + p->stream_index[k]]->discard) {
3082 discard = AVDISCARD_DEFAULT;
3085 p->discard = discard;
3089 /* open files and write file headers */
3090 for (i = 0; i < nb_output_files; i++) {
3091 oc = output_files[i]->ctx;
3092 oc->interrupt_callback = int_cb;
3093 if ((ret = avformat_write_header(oc, &output_files[i]->opts)) < 0) {
3094 snprintf(error, sizeof(error),
3095 "Could not write header for output file #%d "
3096 "(incorrect codec parameters ?): %s",
3097 i, av_err2str(ret));
3098 ret = AVERROR(EINVAL);
3101 // assert_avoptions(output_files[i]->opts);
3102 if (strcmp(oc->oformat->name, "rtp")) {
3108 /* dump the file output parameters - cannot be done before in case
3110 for (i = 0; i < nb_output_files; i++) {
3111 av_dump_format(output_files[i]->ctx, i, output_files[i]->ctx->filename, 1);
3114 /* dump the stream mapping */
3115 av_log(NULL, AV_LOG_INFO, "Stream mapping:\n");
3116 for (i = 0; i < nb_input_streams; i++) {
3117 ist = input_streams[i];
3119 for (j = 0; j < ist->nb_filters; j++) {
3120 if (ist->filters[j]->graph->graph_desc) {
3121 av_log(NULL, AV_LOG_INFO, " Stream #%d:%d (%s) -> %s",
3122 ist->file_index, ist->st->index, ist->dec ? ist->dec->name : "?",
3123 ist->filters[j]->name);
3124 if (nb_filtergraphs > 1)
3125 av_log(NULL, AV_LOG_INFO, " (graph %d)", ist->filters[j]->graph->index);
3126 av_log(NULL, AV_LOG_INFO, "\n");
3131 for (i = 0; i < nb_output_streams; i++) {
3132 ost = output_streams[i];
3134 if (ost->attachment_filename) {
3135 /* an attached file */
3136 av_log(NULL, AV_LOG_INFO, " File %s -> Stream #%d:%d\n",
3137 ost->attachment_filename, ost->file_index, ost->index);
3141 if (ost->filter && ost->filter->graph->graph_desc) {
3142 /* output from a complex graph */
3143 av_log(NULL, AV_LOG_INFO, " %s", ost->filter->name);
3144 if (nb_filtergraphs > 1)
3145 av_log(NULL, AV_LOG_INFO, " (graph %d)", ost->filter->graph->index);
3147 av_log(NULL, AV_LOG_INFO, " -> Stream #%d:%d (%s)\n", ost->file_index,
3148 ost->index, ost->enc ? ost->enc->name : "?");
3152 av_log(NULL, AV_LOG_INFO, " Stream #%d:%d -> #%d:%d",
3153 input_streams[ost->source_index]->file_index,
3154 input_streams[ost->source_index]->st->index,
3157 if (ost->sync_ist != input_streams[ost->source_index])
3158 av_log(NULL, AV_LOG_INFO, " [sync #%d:%d]",
3159 ost->sync_ist->file_index,
3160 ost->sync_ist->st->index);
3161 if (ost->stream_copy)
3162 av_log(NULL, AV_LOG_INFO, " (copy)");
3164 const AVCodec *in_codec = input_streams[ost->source_index]->dec;
3165 const AVCodec *out_codec = ost->enc;
3166 const char *decoder_name = "?";
3167 const char *in_codec_name = "?";
3168 const char *encoder_name = "?";
3169 const char *out_codec_name = "?";
3172 decoder_name = in_codec->name;
3173 in_codec_name = avcodec_descriptor_get(in_codec->id)->name;
3174 if (!strcmp(decoder_name, in_codec_name))
3175 decoder_name = "native";
3179 encoder_name = out_codec->name;
3180 out_codec_name = avcodec_descriptor_get(out_codec->id)->name;
3181 if (!strcmp(encoder_name, out_codec_name))
3182 encoder_name = "native";
3185 av_log(NULL, AV_LOG_INFO, " (%s (%s) -> %s (%s))",
3186 in_codec_name, decoder_name,
3187 out_codec_name, encoder_name);
3189 av_log(NULL, AV_LOG_INFO, "\n");
3193 av_log(NULL, AV_LOG_ERROR, "%s\n", error);
3197 if (sdp_filename || want_sdp) {
3201 transcode_init_done = 1;
3206 /* Return 1 if there remain streams where more output is wanted, 0 otherwise. */
3207 static int need_output(void)
3211 for (i = 0; i < nb_output_streams; i++) {
3212 OutputStream *ost = output_streams[i];
3213 OutputFile *of = output_files[ost->file_index];
3214 AVFormatContext *os = output_files[ost->file_index]->ctx;
3216 if (ost->finished ||
3217 (os->pb && avio_tell(os->pb) >= of->limit_filesize))
3219 if (ost->frame_number >= ost->max_frames) {
3221 for (j = 0; j < of->ctx->nb_streams; j++)
3222 close_output_stream(output_streams[of->ost_index + j]);
3233 * Select the output stream to process.
3235 * @return selected output stream, or NULL if none available
3237 static OutputStream *choose_output(void)
3240 int64_t opts_min = INT64_MAX;
3241 OutputStream *ost_min = NULL;
3243 for (i = 0; i < nb_output_streams; i++) {
3244 OutputStream *ost = output_streams[i];
3245 int64_t opts = av_rescale_q(ost->st->cur_dts, ost->st->time_base,
3247 if (!ost->finished && opts < opts_min) {
3249 ost_min = ost->unavailable ? NULL : ost;
3255 static int check_keyboard_interaction(int64_t cur_time)
3258 static int64_t last_time;
3259 if (received_nb_signals)
3260 return AVERROR_EXIT;
3261 /* read_key() returns 0 on EOF */
3262 if(cur_time - last_time >= 100000 && !run_as_daemon){
3264 last_time = cur_time;
3268 return AVERROR_EXIT;
3269 if (key == '+') av_log_set_level(av_log_get_level()+10);
3270 if (key == '-') av_log_set_level(av_log_get_level()-10);
3271 if (key == 's') qp_hist ^= 1;
3274 do_hex_dump = do_pkt_dump = 0;
3275 } else if(do_pkt_dump){
3279 av_log_set_level(AV_LOG_DEBUG);
3281 if (key == 'c' || key == 'C'){
3282 char buf[4096], target[64], command[256], arg[256] = {0};
3285 fprintf(stderr, "\nEnter command: <target>|all <time>|-1 <command>[ <argument>]\n");
3287 while ((k = read_key()) != '\n' && k != '\r' && i < sizeof(buf)-1)
3292 (n = sscanf(buf, "%63[^ ] %lf %255[^ ] %255[^\n]", target, &time, command, arg)) >= 3) {
3293 av_log(NULL, AV_LOG_DEBUG, "Processing command target:%s time:%f command:%s arg:%s",
3294 target, time, command, arg);
3295 for (i = 0; i < nb_filtergraphs; i++) {
3296 FilterGraph *fg = filtergraphs[i];
3299 ret = avfilter_graph_send_command(fg->graph, target, command, arg, buf, sizeof(buf),
3300 key == 'c' ? AVFILTER_CMD_FLAG_ONE : 0);
3301 fprintf(stderr, "Command reply for stream %d: ret:%d res:\n%s", i, ret, buf);
3302 } else if (key == 'c') {
3303 fprintf(stderr, "Queing commands only on filters supporting the specific command is unsupported\n");
3304 ret = AVERROR_PATCHWELCOME;
3306 ret = avfilter_graph_queue_command(fg->graph, target, command, arg, 0, time);
3311 av_log(NULL, AV_LOG_ERROR,
3312 "Parse error, at least 3 arguments were expected, "
3313 "only %d given in string '%s'\n", n, buf);
3316 if (key == 'd' || key == 'D'){
3319 debug = input_streams[0]->st->codec->debug<<1;
3320 if(!debug) debug = 1;
3321 while(debug & (FF_DEBUG_DCT_COEFF|FF_DEBUG_VIS_QP|FF_DEBUG_VIS_MB_TYPE)) //unsupported, would just crash
3324 if(scanf("%d", &debug)!=1)
3325 fprintf(stderr,"error parsing debug value\n");
3326 for(i=0;i<nb_input_streams;i++) {
3327 input_streams[i]->st->codec->debug = debug;
3329 for(i=0;i<nb_output_streams;i++) {
3330 OutputStream *ost = output_streams[i];
3331 ost->enc_ctx->debug = debug;
3333 if(debug) av_log_set_level(AV_LOG_DEBUG);
3334 fprintf(stderr,"debug=%d\n", debug);
3337 fprintf(stderr, "key function\n"
3338 "? show this help\n"
3339 "+ increase verbosity\n"
3340 "- decrease verbosity\n"
3341 "c Send command to first matching filter supporting it\n"
3342 "C Send/Que command to all matching filters\n"
3343 "D cycle through available debug modes\n"
3344 "h dump packets/hex press to cycle through the 3 states\n"
3346 "s Show QP histogram\n"
3353 static void *input_thread(void *arg)
3360 ret = av_read_frame(f->ctx, &pkt);
3362 if (ret == AVERROR(EAGAIN)) {
3367 av_thread_message_queue_set_err_recv(f->in_thread_queue, ret);
3370 av_dup_packet(&pkt);
3371 ret = av_thread_message_queue_send(f->in_thread_queue, &pkt, 0);
3373 if (ret != AVERROR_EOF)
3374 av_log(f->ctx, AV_LOG_ERROR,
3375 "Unable to send packet to main thread: %s\n",
3377 av_free_packet(&pkt);
3378 av_thread_message_queue_set_err_recv(f->in_thread_queue, ret);
3386 static void free_input_threads(void)
3390 for (i = 0; i < nb_input_files; i++) {
3391 InputFile *f = input_files[i];
3394 if (!f->in_thread_queue)
3396 av_thread_message_queue_set_err_send(f->in_thread_queue, AVERROR_EOF);
3397 while (av_thread_message_queue_recv(f->in_thread_queue, &pkt, 0) >= 0)
3398 av_free_packet(&pkt);
3400 pthread_join(f->thread, NULL);
3402 av_thread_message_queue_free(&f->in_thread_queue);
3406 static int init_input_threads(void)
3410 if (nb_input_files == 1)
3413 for (i = 0; i < nb_input_files; i++) {
3414 InputFile *f = input_files[i];
3416 if (f->ctx->pb ? !f->ctx->pb->seekable :
3417 strcmp(f->ctx->iformat->name, "lavfi"))
3418 f->non_blocking = 1;
3419 ret = av_thread_message_queue_alloc(&f->in_thread_queue,
3420 8, sizeof(AVPacket));
3424 if ((ret = pthread_create(&f->thread, NULL, input_thread, f))) {
3425 av_log(NULL, AV_LOG_ERROR, "pthread_create failed: %s. Try to increase `ulimit -v` or decrease `ulimit -s`.\n", strerror(ret));
3426 av_thread_message_queue_free(&f->in_thread_queue);
3427 return AVERROR(ret);
3433 static int get_input_packet_mt(InputFile *f, AVPacket *pkt)
3435 return av_thread_message_queue_recv(f->in_thread_queue, pkt,
3437 AV_THREAD_MESSAGE_NONBLOCK : 0);
3441 static int get_input_packet(InputFile *f, AVPacket *pkt)
3445 for (i = 0; i < f->nb_streams; i++) {
3446 InputStream *ist = input_streams[f->ist_index + i];
3447 int64_t pts = av_rescale(ist->dts, 1000000, AV_TIME_BASE);
3448 int64_t now = av_gettime_relative() - ist->start;
3450 return AVERROR(EAGAIN);
3455 if (nb_input_files > 1)
3456 return get_input_packet_mt(f, pkt);
3458 return av_read_frame(f->ctx, pkt);
3461 static int got_eagain(void)
3464 for (i = 0; i < nb_output_streams; i++)
3465 if (output_streams[i]->unavailable)
3470 static void reset_eagain(void)
3473 for (i = 0; i < nb_input_files; i++)
3474 input_files[i]->eagain = 0;
3475 for (i = 0; i < nb_output_streams; i++)
3476 output_streams[i]->unavailable = 0;
3481 * - 0 -- one packet was read and processed
3482 * - AVERROR(EAGAIN) -- no packets were available for selected file,
3483 * this function should be called again
3484 * - AVERROR_EOF -- this function should not be called again
3486 static int process_input(int file_index)
3488 InputFile *ifile = input_files[file_index];
3489 AVFormatContext *is;
3495 ret = get_input_packet(ifile, &pkt);
3497 if (ret == AVERROR(EAGAIN)) {
3502 if (ret != AVERROR_EOF) {
3503 print_error(is->filename, ret);
3508 for (i = 0; i < ifile->nb_streams; i++) {
3509 ist = input_streams[ifile->ist_index + i];
3510 if (ist->decoding_needed) {
3511 ret = process_input_packet(ist, NULL);
3516 /* mark all outputs that don't go through lavfi as finished */
3517 for (j = 0; j < nb_output_streams; j++) {
3518 OutputStream *ost = output_streams[j];
3520 if (ost->source_index == ifile->ist_index + i &&
3521 (ost->stream_copy || ost->enc->type == AVMEDIA_TYPE_SUBTITLE))
3522 finish_output_stream(ost);
3526 ifile->eof_reached = 1;
3527 return AVERROR(EAGAIN);
3533 av_pkt_dump_log2(NULL, AV_LOG_DEBUG, &pkt, do_hex_dump,
3534 is->streams[pkt.stream_index]);
3536 /* the following test is needed in case new streams appear
3537 dynamically in stream : we ignore them */
3538 if (pkt.stream_index >= ifile->nb_streams) {
3539 report_new_stream(file_index, &pkt);
3540 goto discard_packet;
3543 ist = input_streams[ifile->ist_index + pkt.stream_index];
3545 ist->data_size += pkt.size;
3549 goto discard_packet;
3552 av_log(NULL, AV_LOG_INFO, "demuxer -> ist_index:%d type:%s "
3553 "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",
3554 ifile->ist_index + pkt.stream_index, av_get_media_type_string(ist->dec_ctx->codec_type),
3555 av_ts2str(ist->next_dts), av_ts2timestr(ist->next_dts, &AV_TIME_BASE_Q),
3556 av_ts2str(ist->next_pts), av_ts2timestr(ist->next_pts, &AV_TIME_BASE_Q),
3557 av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ist->st->time_base),
3558 av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ist->st->time_base),
3559 av_ts2str(input_files[ist->file_index]->ts_offset),
3560 av_ts2timestr(input_files[ist->file_index]->ts_offset, &AV_TIME_BASE_Q));
3563 if(!ist->wrap_correction_done && is->start_time != AV_NOPTS_VALUE && ist->st->pts_wrap_bits < 64){
3564 int64_t stime, stime2;
3565 // Correcting starttime based on the enabled streams
3566 // 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.
3567 // so we instead do it here as part of discontinuity handling
3568 if ( ist->next_dts == AV_NOPTS_VALUE
3569 && ifile->ts_offset == -is->start_time
3570 && (is->iformat->flags & AVFMT_TS_DISCONT)) {
3571 int64_t new_start_time = INT64_MAX;
3572 for (i=0; i<is->nb_streams; i++) {
3573 AVStream *st = is->streams[i];
3574 if(st->discard == AVDISCARD_ALL || st->start_time == AV_NOPTS_VALUE)
3576 new_start_time = FFMIN(new_start_time, av_rescale_q(st->start_time, st->time_base, AV_TIME_BASE_Q));
3578 if (new_start_time > is->start_time) {
3579 av_log(is, AV_LOG_VERBOSE, "Correcting start time by %"PRId64"\n", new_start_time - is->start_time);
3580 ifile->ts_offset = -new_start_time;
3584 stime = av_rescale_q(is->start_time, AV_TIME_BASE_Q, ist->st->time_base);
3585 stime2= stime + (1ULL<<ist->st->pts_wrap_bits);
3586 ist->wrap_correction_done = 1;
3588 if(stime2 > stime && pkt.dts != AV_NOPTS_VALUE && pkt.dts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
3589 pkt.dts -= 1ULL<<ist->st->pts_wrap_bits;
3590 ist->wrap_correction_done = 0;
3592 if(stime2 > stime && pkt.pts != AV_NOPTS_VALUE && pkt.pts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
3593 pkt.pts -= 1ULL<<ist->st->pts_wrap_bits;
3594 ist->wrap_correction_done = 0;
3598 /* add the stream-global side data to the first packet */
3599 if (ist->nb_packets == 1) {
3600 if (ist->st->nb_side_data)
3601 av_packet_split_side_data(&pkt);
3602 for (i = 0; i < ist->st->nb_side_data; i++) {
3603 AVPacketSideData *src_sd = &ist->st->side_data[i];
3606 if (av_packet_get_side_data(&pkt, src_sd->type, NULL))
3609 dst_data = av_packet_new_side_data(&pkt, src_sd->type, src_sd->size);
3613 memcpy(dst_data, src_sd->data, src_sd->size);
3617 if (pkt.dts != AV_NOPTS_VALUE)
3618 pkt.dts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
3619 if (pkt.pts != AV_NOPTS_VALUE)
3620 pkt.pts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
3622 if (pkt.pts != AV_NOPTS_VALUE)
3623 pkt.pts *= ist->ts_scale;
3624 if (pkt.dts != AV_NOPTS_VALUE)
3625 pkt.dts *= ist->ts_scale;
3627 if ((ist->dec_ctx->codec_type == AVMEDIA_TYPE_VIDEO ||
3628 ist->dec_ctx->codec_type == AVMEDIA_TYPE_AUDIO) &&
3629 pkt.dts != AV_NOPTS_VALUE && ist->next_dts == AV_NOPTS_VALUE && !copy_ts
3630 && (is->iformat->flags & AVFMT_TS_DISCONT) && ifile->last_ts != AV_NOPTS_VALUE) {
3631 int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
3632 int64_t delta = pkt_dts - ifile->last_ts;
3633 if (delta < -1LL*dts_delta_threshold*AV_TIME_BASE ||
3634 delta > 1LL*dts_delta_threshold*AV_TIME_BASE){
3635 ifile->ts_offset -= delta;
3636 av_log(NULL, AV_LOG_DEBUG,
3637 "Inter stream timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",
3638 delta, ifile->ts_offset);
3639 pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3640 if (pkt.pts != AV_NOPTS_VALUE)
3641 pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3645 if ((ist->dec_ctx->codec_type == AVMEDIA_TYPE_VIDEO ||
3646 ist->dec_ctx->codec_type == AVMEDIA_TYPE_AUDIO) &&
3647 pkt.dts != AV_NOPTS_VALUE && ist->next_dts != AV_NOPTS_VALUE &&
3649 int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
3650 int64_t delta = pkt_dts - ist->next_dts;
3651 if (is->iformat->flags & AVFMT_TS_DISCONT) {
3652 if (delta < -1LL*dts_delta_threshold*AV_TIME_BASE ||
3653 delta > 1LL*dts_delta_threshold*AV_TIME_BASE ||
3654 pkt_dts + AV_TIME_BASE/10 < FFMAX(ist->pts, ist->dts)) {
3655 ifile->ts_offset -= delta;
3656 av_log(NULL, AV_LOG_DEBUG,
3657 "timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",
3658 delta, ifile->ts_offset);
3659 pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3660 if (pkt.pts != AV_NOPTS_VALUE)
3661 pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3664 if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
3665 delta > 1LL*dts_error_threshold*AV_TIME_BASE) {
3666 av_log(NULL, AV_LOG_WARNING, "DTS %"PRId64", next:%"PRId64" st:%d invalid dropping\n", pkt.dts, ist->next_dts, pkt.stream_index);
3667 pkt.dts = AV_NOPTS_VALUE;
3669 if (pkt.pts != AV_NOPTS_VALUE){
3670 int64_t pkt_pts = av_rescale_q(pkt.pts, ist->st->time_base, AV_TIME_BASE_Q);
3671 delta = pkt_pts - ist->next_dts;
3672 if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
3673 delta > 1LL*dts_error_threshold*AV_TIME_BASE) {
3674 av_log(NULL, AV_LOG_WARNING, "PTS %"PRId64", next:%"PRId64" invalid dropping st:%d\n", pkt.pts, ist->next_dts, pkt.stream_index);
3675 pkt.pts = AV_NOPTS_VALUE;
3681 if (pkt.dts != AV_NOPTS_VALUE)
3682 ifile->last_ts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
3685 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",
3686 ifile->ist_index + pkt.stream_index, av_get_media_type_string(ist->dec_ctx->codec_type),
3687 av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ist->st->time_base),
3688 av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ist->st->time_base),
3689 av_ts2str(input_files[ist->file_index]->ts_offset),
3690 av_ts2timestr(input_files[ist->file_index]->ts_offset, &AV_TIME_BASE_Q));
3693 sub2video_heartbeat(ist, pkt.pts);
3695 ret = process_input_packet(ist, &pkt);
3697 av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d: %s\n",
3698 ist->file_index, ist->st->index, av_err2str(ret));
3704 av_free_packet(&pkt);
3710 * Perform a step of transcoding for the specified filter graph.
3712 * @param[in] graph filter graph to consider
3713 * @param[out] best_ist input stream where a frame would allow to continue
3714 * @return 0 for success, <0 for error
3716 static int transcode_from_filter(FilterGraph *graph, InputStream **best_ist)
3719 int nb_requests, nb_requests_max = 0;
3720 InputFilter *ifilter;
3724 ret = avfilter_graph_request_oldest(graph->graph);
3726 return reap_filters();
3728 if (ret == AVERROR_EOF) {
3729 ret = reap_filters();
3730 for (i = 0; i < graph->nb_outputs; i++)
3731 close_output_stream(graph->outputs[i]->ost);
3734 if (ret != AVERROR(EAGAIN))
3737 for (i = 0; i < graph->nb_inputs; i++) {
3738 ifilter = graph->inputs[i];
3740 if (input_files[ist->file_index]->eagain ||
3741 input_files[ist->file_index]->eof_reached)
3743 nb_requests = av_buffersrc_get_nb_failed_requests(ifilter->filter);
3744 if (nb_requests > nb_requests_max) {
3745 nb_requests_max = nb_requests;
3751 for (i = 0; i < graph->nb_outputs; i++)
3752 graph->outputs[i]->ost->unavailable = 1;
3758 * Run a single step of transcoding.
3760 * @return 0 for success, <0 for error
3762 static int transcode_step(void)
3768 ost = choose_output();
3775 av_log(NULL, AV_LOG_VERBOSE, "No more inputs to read from, finishing.\n");
3780 if ((ret = transcode_from_filter(ost->filter->graph, &ist)) < 0)
3785 av_assert0(ost->source_index >= 0);
3786 ist = input_streams[ost->source_index];
3789 ret = process_input(ist->file_index);
3790 if (ret == AVERROR(EAGAIN)) {
3791 if (input_files[ist->file_index]->eagain)
3792 ost->unavailable = 1;
3796 return ret == AVERROR_EOF ? 0 : ret;
3798 return reap_filters();
3802 * The following code is the main loop of the file converter
3804 static int transcode(void)
3807 AVFormatContext *os;
3810 int64_t timer_start;
3812 ret = transcode_init();
3816 if (stdin_interaction) {
3817 av_log(NULL, AV_LOG_INFO, "Press [q] to stop, [?] for help\n");
3820 timer_start = av_gettime_relative();
3823 if ((ret = init_input_threads()) < 0)
3827 while (!received_sigterm) {
3828 int64_t cur_time= av_gettime_relative();
3830 /* if 'q' pressed, exits */
3831 if (stdin_interaction)
3832 if (check_keyboard_interaction(cur_time) < 0)
3835 /* check if there's any stream where output is still needed */
3836 if (!need_output()) {
3837 av_log(NULL, AV_LOG_VERBOSE, "No more output streams to write to, finishing.\n");
3841 ret = transcode_step();
3843 if (ret == AVERROR_EOF || ret == AVERROR(EAGAIN))
3846 av_log(NULL, AV_LOG_ERROR, "Error while filtering.\n");
3850 /* dump report by using the output first video and audio streams */
3851 print_report(0, timer_start, cur_time);
3854 free_input_threads();
3857 /* at the end of stream, we must flush the decoder buffers */
3858 for (i = 0; i < nb_input_streams; i++) {
3859 ist = input_streams[i];
3860 if (!input_files[ist->file_index]->eof_reached && ist->decoding_needed) {
3861 process_input_packet(ist, NULL);
3868 /* write the trailer if needed and close file */
3869 for (i = 0; i < nb_output_files; i++) {
3870 os = output_files[i]->ctx;
3871 av_write_trailer(os);
3874 /* dump report by using the first video and audio streams */
3875 print_report(1, timer_start, av_gettime_relative());
3877 /* close each encoder */
3878 for (i = 0; i < nb_output_streams; i++) {
3879 ost = output_streams[i];
3880 if (ost->encoding_needed) {
3881 av_freep(&ost->enc_ctx->stats_in);
3885 /* close each decoder */
3886 for (i = 0; i < nb_input_streams; i++) {
3887 ist = input_streams[i];
3888 if (ist->decoding_needed) {
3889 avcodec_close(ist->dec_ctx);
3890 if (ist->hwaccel_uninit)
3891 ist->hwaccel_uninit(ist->dec_ctx);
3900 free_input_threads();
3903 if (output_streams) {
3904 for (i = 0; i < nb_output_streams; i++) {
3905 ost = output_streams[i];
3908 fclose(ost->logfile);
3909 ost->logfile = NULL;
3911 av_freep(&ost->forced_kf_pts);
3912 av_freep(&ost->apad);
3913 av_freep(&ost->disposition);
3914 av_dict_free(&ost->encoder_opts);
3915 av_dict_free(&ost->swr_opts);
3916 av_dict_free(&ost->resample_opts);
3917 av_dict_free(&ost->bsf_args);
3925 static int64_t getutime(void)
3928 struct rusage rusage;
3930 getrusage(RUSAGE_SELF, &rusage);
3931 return (rusage.ru_utime.tv_sec * 1000000LL) + rusage.ru_utime.tv_usec;
3932 #elif HAVE_GETPROCESSTIMES
3934 FILETIME c, e, k, u;
3935 proc = GetCurrentProcess();
3936 GetProcessTimes(proc, &c, &e, &k, &u);
3937 return ((int64_t) u.dwHighDateTime << 32 | u.dwLowDateTime) / 10;
3939 return av_gettime_relative();
3943 static int64_t getmaxrss(void)
3945 #if HAVE_GETRUSAGE && HAVE_STRUCT_RUSAGE_RU_MAXRSS
3946 struct rusage rusage;
3947 getrusage(RUSAGE_SELF, &rusage);
3948 return (int64_t)rusage.ru_maxrss * 1024;
3949 #elif HAVE_GETPROCESSMEMORYINFO
3951 PROCESS_MEMORY_COUNTERS memcounters;
3952 proc = GetCurrentProcess();
3953 memcounters.cb = sizeof(memcounters);
3954 GetProcessMemoryInfo(proc, &memcounters, sizeof(memcounters));
3955 return memcounters.PeakPagefileUsage;
3961 static void log_callback_null(void *ptr, int level, const char *fmt, va_list vl)
3965 int main(int argc, char **argv)
3970 register_exit(ffmpeg_cleanup);
3972 setvbuf(stderr,NULL,_IONBF,0); /* win32 runtime needs this */
3974 av_log_set_flags(AV_LOG_SKIP_REPEATED);
3975 parse_loglevel(argc, argv, options);
3977 if(argc>1 && !strcmp(argv[1], "-d")){
3979 av_log_set_callback(log_callback_null);
3984 avcodec_register_all();
3986 avdevice_register_all();
3988 avfilter_register_all();
3990 avformat_network_init();
3992 show_banner(argc, argv, options);
3996 /* parse options and open all input/output files */
3997 ret = ffmpeg_parse_options(argc, argv);
4001 if (nb_output_files <= 0 && nb_input_files == 0) {
4003 av_log(NULL, AV_LOG_WARNING, "Use -h to get full help or, even better, run 'man %s'\n", program_name);
4007 /* file converter / grab */
4008 if (nb_output_files <= 0) {
4009 av_log(NULL, AV_LOG_FATAL, "At least one output file must be specified\n");
4013 // if (nb_input_files == 0) {
4014 // av_log(NULL, AV_LOG_FATAL, "At least one input file must be specified\n");
4018 current_time = ti = getutime();
4019 if (transcode() < 0)
4021 ti = getutime() - ti;
4023 printf("bench: utime=%0.3fs\n", ti / 1000000.0);
4025 av_log(NULL, AV_LOG_DEBUG, "%"PRIu64" frames successfully decoded, %"PRIu64" decoding errors\n",
4026 decode_error_stat[0], decode_error_stat[1]);
4027 if ((decode_error_stat[0] + decode_error_stat[1]) * max_error_rate < decode_error_stat[1])
4030 exit_program(received_nb_signals ? 255 : main_return_code);
4031 return main_return_code;