3 * Copyright (c) 2000-2011 The Libav developers
5 * This file is part of Libav.
7 * Libav is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * Libav is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with Libav; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
32 #include "libavformat/avformat.h"
33 #include "libavdevice/avdevice.h"
34 #include "libswscale/swscale.h"
35 #include "libavresample/avresample.h"
36 #include "libavutil/opt.h"
37 #include "libavutil/channel_layout.h"
38 #include "libavutil/parseutils.h"
39 #include "libavutil/samplefmt.h"
40 #include "libavutil/fifo.h"
41 #include "libavutil/internal.h"
42 #include "libavutil/intreadwrite.h"
43 #include "libavutil/dict.h"
44 #include "libavutil/mathematics.h"
45 #include "libavutil/pixdesc.h"
46 #include "libavutil/avstring.h"
47 #include "libavutil/libm.h"
48 #include "libavutil/imgutils.h"
49 #include "libavutil/time.h"
50 #include "libavformat/os_support.h"
52 # include "libavfilter/avfilter.h"
53 # include "libavfilter/buffersrc.h"
54 # include "libavfilter/buffersink.h"
56 #if HAVE_SYS_RESOURCE_H
58 #include <sys/types.h>
59 #include <sys/resource.h>
60 #elif HAVE_GETPROCESSTIMES
63 #if HAVE_GETPROCESSMEMORYINFO
69 #include <sys/select.h>
81 #include "libavutil/avassert.h"
83 const char program_name[] = "avconv";
84 const int program_birth_year = 2000;
86 static FILE *vstats_file;
88 static int nb_frames_drop = 0;
93 /* signal to input threads that they should exit; set by the main thread */
94 static int transcoding_finished;
97 InputStream **input_streams = NULL;
98 int nb_input_streams = 0;
99 InputFile **input_files = NULL;
100 int nb_input_files = 0;
102 OutputStream **output_streams = NULL;
103 int nb_output_streams = 0;
104 OutputFile **output_files = NULL;
105 int nb_output_files = 0;
107 FilterGraph **filtergraphs;
110 static void term_exit(void)
112 av_log(NULL, AV_LOG_QUIET, "");
115 static volatile int received_sigterm = 0;
116 static volatile int received_nb_signals = 0;
119 sigterm_handler(int sig)
121 received_sigterm = sig;
122 received_nb_signals++;
126 static void term_init(void)
128 signal(SIGINT , sigterm_handler); /* Interrupt (ANSI). */
129 signal(SIGTERM, sigterm_handler); /* Termination (ANSI). */
131 signal(SIGXCPU, sigterm_handler);
135 static int decode_interrupt_cb(void *ctx)
137 return received_nb_signals > 1;
140 const AVIOInterruptCB int_cb = { decode_interrupt_cb, NULL };
142 static void avconv_cleanup(int ret)
146 for (i = 0; i < nb_filtergraphs; i++) {
147 FilterGraph *fg = filtergraphs[i];
148 avfilter_graph_free(&fg->graph);
149 for (j = 0; j < fg->nb_inputs; j++) {
150 av_freep(&fg->inputs[j]->name);
151 av_freep(&fg->inputs[j]);
153 av_freep(&fg->inputs);
154 for (j = 0; j < fg->nb_outputs; j++) {
155 av_freep(&fg->outputs[j]->name);
156 av_freep(&fg->outputs[j]);
158 av_freep(&fg->outputs);
159 av_freep(&fg->graph_desc);
161 av_freep(&filtergraphs[i]);
163 av_freep(&filtergraphs);
166 for (i = 0; i < nb_output_files; i++) {
167 OutputFile *of = output_files[i];
168 AVFormatContext *s = of->ctx;
169 if (s && s->oformat && !(s->oformat->flags & AVFMT_NOFILE) && s->pb)
171 avformat_free_context(s);
172 av_dict_free(&of->opts);
174 av_freep(&output_files[i]);
176 for (i = 0; i < nb_output_streams; i++) {
177 OutputStream *ost = output_streams[i];
179 for (j = 0; j < ost->nb_bitstream_filters; j++)
180 av_bsf_free(&ost->bsf_ctx[j]);
181 av_freep(&ost->bsf_ctx);
182 av_freep(&ost->bitstream_filters);
184 av_frame_free(&ost->filtered_frame);
186 av_parser_close(ost->parser);
187 avcodec_free_context(&ost->parser_avctx);
189 av_freep(&ost->forced_keyframes);
190 av_freep(&ost->avfilter);
191 av_freep(&ost->logfile_prefix);
193 avcodec_free_context(&ost->enc_ctx);
195 av_freep(&output_streams[i]);
197 for (i = 0; i < nb_input_files; i++) {
198 avformat_close_input(&input_files[i]->ctx);
199 av_freep(&input_files[i]);
201 for (i = 0; i < nb_input_streams; i++) {
202 InputStream *ist = input_streams[i];
204 av_frame_free(&ist->decoded_frame);
205 av_frame_free(&ist->filter_frame);
206 av_dict_free(&ist->decoder_opts);
207 av_freep(&ist->filters);
208 av_freep(&ist->hwaccel_device);
210 avcodec_free_context(&ist->dec_ctx);
212 av_freep(&input_streams[i]);
217 av_free(vstats_filename);
219 av_freep(&input_streams);
220 av_freep(&input_files);
221 av_freep(&output_streams);
222 av_freep(&output_files);
226 avformat_network_deinit();
228 if (received_sigterm) {
229 av_log(NULL, AV_LOG_INFO, "Received signal %d: terminating.\n",
230 (int) received_sigterm);
235 void assert_avoptions(AVDictionary *m)
237 AVDictionaryEntry *t;
238 if ((t = av_dict_get(m, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
239 av_log(NULL, AV_LOG_FATAL, "Option %s not found.\n", t->key);
244 static void abort_codec_experimental(AVCodec *c, int encoder)
246 const char *codec_string = encoder ? "encoder" : "decoder";
248 av_log(NULL, AV_LOG_FATAL, "%s '%s' is experimental and might produce bad "
249 "results.\nAdd '-strict experimental' if you want to use it.\n",
250 codec_string, c->name);
251 codec = encoder ? avcodec_find_encoder(c->id) : avcodec_find_decoder(c->id);
252 if (!(codec->capabilities & AV_CODEC_CAP_EXPERIMENTAL))
253 av_log(NULL, AV_LOG_FATAL, "Or use the non experimental %s '%s'.\n",
254 codec_string, codec->name);
258 static void write_packet(AVFormatContext *s, AVPacket *pkt, OutputStream *ost)
260 AVStream *st = ost->st;
264 * Audio encoders may split the packets -- #frames in != #packets out.
265 * But there is no reordering, so we can limit the number of output packets
266 * by simply dropping them here.
267 * Counting encoded video frames needs to be done separately because of
268 * reordering, see do_video_out()
270 if (!(st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && ost->encoding_needed)) {
271 if (ost->frame_number >= ost->max_frames) {
272 av_packet_unref(pkt);
277 if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
278 uint8_t *sd = av_packet_get_side_data(pkt, AV_PKT_DATA_QUALITY_FACTOR,
280 ost->quality = sd ? *(int *)sd : -1;
282 if (ost->frame_rate.num) {
283 pkt->duration = av_rescale_q(1, av_inv_q(ost->frame_rate),
288 if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS) &&
289 ost->last_mux_dts != AV_NOPTS_VALUE &&
290 pkt->dts < ost->last_mux_dts + !(s->oformat->flags & AVFMT_TS_NONSTRICT)) {
291 av_log(NULL, AV_LOG_WARNING, "Non-monotonous DTS in output stream "
292 "%d:%d; previous: %"PRId64", current: %"PRId64"; ",
293 ost->file_index, ost->st->index, ost->last_mux_dts, pkt->dts);
295 av_log(NULL, AV_LOG_FATAL, "aborting.\n");
298 av_log(NULL, AV_LOG_WARNING, "changing to %"PRId64". This may result "
299 "in incorrect timestamps in the output file.\n",
300 ost->last_mux_dts + 1);
301 pkt->dts = ost->last_mux_dts + 1;
302 if (pkt->pts != AV_NOPTS_VALUE)
303 pkt->pts = FFMAX(pkt->pts, pkt->dts);
305 ost->last_mux_dts = pkt->dts;
307 ost->data_size += pkt->size;
308 ost->packets_written++;
310 pkt->stream_index = ost->index;
311 ret = av_interleaved_write_frame(s, pkt);
313 print_error("av_interleaved_write_frame()", ret);
318 static void output_packet(AVFormatContext *s, AVPacket *pkt, OutputStream *ost)
322 /* apply the output bitstream filters, if any */
323 if (ost->nb_bitstream_filters) {
326 ret = av_bsf_send_packet(ost->bsf_ctx[0], pkt);
332 /* get a packet from the previous filter up the chain */
333 ret = av_bsf_receive_packet(ost->bsf_ctx[idx - 1], pkt);
334 if (ret == AVERROR(EAGAIN)) {
341 /* send it to the next filter down the chain or to the muxer */
342 if (idx < ost->nb_bitstream_filters) {
343 ret = av_bsf_send_packet(ost->bsf_ctx[idx], pkt);
348 write_packet(s, pkt, ost);
351 write_packet(s, pkt, ost);
354 if (ret < 0 && ret != AVERROR_EOF) {
355 av_log(NULL, AV_LOG_FATAL, "Error applying bitstream filters to an output "
356 "packet for stream #%d:%d.\n", ost->file_index, ost->index);
361 static int check_recording_time(OutputStream *ost)
363 OutputFile *of = output_files[ost->file_index];
365 if (of->recording_time != INT64_MAX &&
366 av_compare_ts(ost->sync_opts - ost->first_pts, ost->enc_ctx->time_base, of->recording_time,
367 AV_TIME_BASE_Q) >= 0) {
374 static void do_audio_out(AVFormatContext *s, OutputStream *ost,
377 AVCodecContext *enc = ost->enc_ctx;
381 av_init_packet(&pkt);
385 if (frame->pts == AV_NOPTS_VALUE || audio_sync_method < 0)
386 frame->pts = ost->sync_opts;
387 ost->sync_opts = frame->pts + frame->nb_samples;
389 ost->samples_encoded += frame->nb_samples;
390 ost->frames_encoded++;
392 ret = avcodec_send_frame(enc, frame);
397 ret = avcodec_receive_packet(enc, &pkt);
398 if (ret == AVERROR(EAGAIN))
403 av_packet_rescale_ts(&pkt, enc->time_base, ost->st->time_base);
404 output_packet(s, &pkt, ost);
409 av_log(NULL, AV_LOG_FATAL, "Audio encoding failed\n");
413 static void do_subtitle_out(AVFormatContext *s,
419 static uint8_t *subtitle_out = NULL;
420 int subtitle_out_max_size = 1024 * 1024;
421 int subtitle_out_size, nb, i;
425 if (pts == AV_NOPTS_VALUE) {
426 av_log(NULL, AV_LOG_ERROR, "Subtitle packets must have a pts\n");
435 subtitle_out = av_malloc(subtitle_out_max_size);
438 /* Note: DVB subtitle need one packet to draw them and one other
439 packet to clear them */
440 /* XXX: signal it in the codec context ? */
441 if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE)
446 for (i = 0; i < nb; i++) {
447 ost->sync_opts = av_rescale_q(pts, ist->st->time_base, enc->time_base);
448 if (!check_recording_time(ost))
451 sub->pts = av_rescale_q(pts, ist->st->time_base, AV_TIME_BASE_Q);
452 // start_display_time is required to be 0
453 sub->pts += av_rescale_q(sub->start_display_time, (AVRational){ 1, 1000 }, AV_TIME_BASE_Q);
454 sub->end_display_time -= sub->start_display_time;
455 sub->start_display_time = 0;
457 ost->frames_encoded++;
459 subtitle_out_size = avcodec_encode_subtitle(enc, subtitle_out,
460 subtitle_out_max_size, sub);
461 if (subtitle_out_size < 0) {
462 av_log(NULL, AV_LOG_FATAL, "Subtitle encoding failed\n");
466 av_init_packet(&pkt);
467 pkt.data = subtitle_out;
468 pkt.size = subtitle_out_size;
469 pkt.pts = av_rescale_q(sub->pts, AV_TIME_BASE_Q, ost->st->time_base);
470 if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE) {
471 /* XXX: the pts correction is handled here. Maybe handling
472 it in the codec would be better */
474 pkt.pts += 90 * sub->start_display_time;
476 pkt.pts += 90 * sub->end_display_time;
478 output_packet(s, &pkt, ost);
482 static void do_video_out(AVFormatContext *s,
487 int ret, format_video_sync;
489 AVCodecContext *enc = ost->enc_ctx;
493 format_video_sync = video_sync_method;
494 if (format_video_sync == VSYNC_AUTO)
495 format_video_sync = (s->oformat->flags & AVFMT_NOTIMESTAMPS) ? VSYNC_PASSTHROUGH :
496 (s->oformat->flags & AVFMT_VARIABLE_FPS) ? VSYNC_VFR : VSYNC_CFR;
497 if (format_video_sync != VSYNC_PASSTHROUGH &&
499 in_picture->pts != AV_NOPTS_VALUE &&
500 in_picture->pts < ost->sync_opts) {
502 av_log(NULL, AV_LOG_WARNING,
503 "*** dropping frame %d from stream %d at ts %"PRId64"\n",
504 ost->frame_number, ost->st->index, in_picture->pts);
508 if (in_picture->pts == AV_NOPTS_VALUE)
509 in_picture->pts = ost->sync_opts;
510 ost->sync_opts = in_picture->pts;
513 if (!ost->frame_number)
514 ost->first_pts = in_picture->pts;
516 av_init_packet(&pkt);
520 if (ost->frame_number >= ost->max_frames)
523 if (enc->flags & (AV_CODEC_FLAG_INTERLACED_DCT | AV_CODEC_FLAG_INTERLACED_ME) &&
524 ost->top_field_first >= 0)
525 in_picture->top_field_first = !!ost->top_field_first;
527 in_picture->quality = enc->global_quality;
528 in_picture->pict_type = 0;
529 if (ost->forced_kf_index < ost->forced_kf_count &&
530 in_picture->pts >= ost->forced_kf_pts[ost->forced_kf_index]) {
531 in_picture->pict_type = AV_PICTURE_TYPE_I;
532 ost->forced_kf_index++;
535 ost->frames_encoded++;
537 ret = avcodec_send_frame(enc, in_picture);
542 * For video, there may be reordering, so we can't throw away frames on
543 * encoder flush, we need to limit them here, before they go into encoder.
548 ret = avcodec_receive_packet(enc, &pkt);
549 if (ret == AVERROR(EAGAIN))
554 av_packet_rescale_ts(&pkt, enc->time_base, ost->st->time_base);
555 output_packet(s, &pkt, ost);
556 *frame_size = pkt.size;
558 /* if two pass, output log */
559 if (ost->logfile && enc->stats_out) {
560 fprintf(ost->logfile, "%s", enc->stats_out);
568 av_assert0(ret != AVERROR(EAGAIN) && ret != AVERROR_EOF);
569 av_log(NULL, AV_LOG_FATAL, "Video encoding failed\n");
573 #if FF_API_CODED_FRAME && FF_API_ERROR_FRAME
574 static double psnr(double d)
576 return -10.0 * log(d) / log(10.0);
580 static void do_video_stats(OutputStream *ost, int frame_size)
584 double ti1, bitrate, avg_bitrate;
586 /* this is executed just the first time do_video_stats is called */
588 vstats_file = fopen(vstats_filename, "w");
596 if (enc->codec_type == AVMEDIA_TYPE_VIDEO) {
597 frame_number = ost->frame_number;
598 fprintf(vstats_file, "frame= %5d q= %2.1f ", frame_number,
599 ost->quality / (float)FF_QP2LAMBDA);
601 #if FF_API_CODED_FRAME && FF_API_ERROR_FRAME
602 FF_DISABLE_DEPRECATION_WARNINGS
603 if (enc->flags & AV_CODEC_FLAG_PSNR)
604 fprintf(vstats_file, "PSNR= %6.2f ", psnr(enc->coded_frame->error[0] / (enc->width * enc->height * 255.0 * 255.0)));
605 FF_ENABLE_DEPRECATION_WARNINGS
608 fprintf(vstats_file,"f_size= %6d ", frame_size);
609 /* compute pts value */
610 ti1 = ost->sync_opts * av_q2d(enc->time_base);
614 bitrate = (frame_size * 8) / av_q2d(enc->time_base) / 1000.0;
615 avg_bitrate = (double)(ost->data_size * 8) / ti1 / 1000.0;
616 fprintf(vstats_file, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ",
617 (double)ost->data_size / 1024, ti1, bitrate, avg_bitrate);
618 #if FF_API_CODED_FRAME
619 FF_DISABLE_DEPRECATION_WARNINGS
620 fprintf(vstats_file, "type= %c\n", av_get_picture_type_char(enc->coded_frame->pict_type));
621 FF_ENABLE_DEPRECATION_WARNINGS
627 * Read one frame for lavfi output for ost and encode it.
629 static int poll_filter(OutputStream *ost)
631 OutputFile *of = output_files[ost->file_index];
632 AVFrame *filtered_frame = NULL;
635 if (!ost->filtered_frame && !(ost->filtered_frame = av_frame_alloc())) {
636 return AVERROR(ENOMEM);
638 filtered_frame = ost->filtered_frame;
640 if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
641 !(ost->enc->capabilities & AV_CODEC_CAP_VARIABLE_FRAME_SIZE))
642 ret = av_buffersink_get_samples(ost->filter->filter, filtered_frame,
643 ost->enc_ctx->frame_size);
645 ret = av_buffersink_get_frame(ost->filter->filter, filtered_frame);
650 if (filtered_frame->pts != AV_NOPTS_VALUE) {
651 int64_t start_time = (of->start_time == AV_NOPTS_VALUE) ? 0 : of->start_time;
652 filtered_frame->pts = av_rescale_q(filtered_frame->pts,
653 ost->filter->filter->inputs[0]->time_base,
654 ost->enc_ctx->time_base) -
655 av_rescale_q(start_time,
657 ost->enc_ctx->time_base);
660 switch (ost->filter->filter->inputs[0]->type) {
661 case AVMEDIA_TYPE_VIDEO:
662 if (!ost->frame_aspect_ratio)
663 ost->enc_ctx->sample_aspect_ratio = filtered_frame->sample_aspect_ratio;
665 do_video_out(of->ctx, ost, filtered_frame, &frame_size);
666 if (vstats_filename && frame_size)
667 do_video_stats(ost, frame_size);
669 case AVMEDIA_TYPE_AUDIO:
670 do_audio_out(of->ctx, ost, filtered_frame);
673 // TODO support subtitle filters
677 av_frame_unref(filtered_frame);
682 static void finish_output_stream(OutputStream *ost)
684 OutputFile *of = output_files[ost->file_index];
690 for (i = 0; i < of->ctx->nb_streams; i++)
691 output_streams[of->ost_index + i]->finished = 1;
696 * Read as many frames from possible from lavfi and encode them.
698 * Always read from the active stream with the lowest timestamp. If no frames
699 * are available for it then return EAGAIN and wait for more input. This way we
700 * can use lavfi sources that generate unlimited amount of frames without memory
703 static int poll_filters(void)
707 while (ret >= 0 && !received_sigterm) {
708 OutputStream *ost = NULL;
709 int64_t min_pts = INT64_MAX;
711 /* choose output stream with the lowest timestamp */
712 for (i = 0; i < nb_output_streams; i++) {
713 int64_t pts = output_streams[i]->sync_opts;
715 if (!output_streams[i]->filter || output_streams[i]->finished)
718 pts = av_rescale_q(pts, output_streams[i]->enc_ctx->time_base,
722 ost = output_streams[i];
729 ret = poll_filter(ost);
731 if (ret == AVERROR_EOF) {
732 finish_output_stream(ost);
734 } else if (ret == AVERROR(EAGAIN))
741 static void print_final_stats(int64_t total_size)
743 uint64_t video_size = 0, audio_size = 0, extra_size = 0, other_size = 0;
744 uint64_t data_size = 0;
745 float percent = -1.0;
748 for (i = 0; i < nb_output_streams; i++) {
749 OutputStream *ost = output_streams[i];
750 switch (ost->enc_ctx->codec_type) {
751 case AVMEDIA_TYPE_VIDEO: video_size += ost->data_size; break;
752 case AVMEDIA_TYPE_AUDIO: audio_size += ost->data_size; break;
753 default: other_size += ost->data_size; break;
755 extra_size += ost->enc_ctx->extradata_size;
756 data_size += ost->data_size;
759 if (data_size && total_size >= data_size)
760 percent = 100.0 * (total_size - data_size) / data_size;
762 av_log(NULL, AV_LOG_INFO, "\n");
763 av_log(NULL, AV_LOG_INFO, "video:%1.0fkB audio:%1.0fkB other streams:%1.0fkB global headers:%1.0fkB muxing overhead: ",
767 extra_size / 1024.0);
769 av_log(NULL, AV_LOG_INFO, "%f%%", percent);
771 av_log(NULL, AV_LOG_INFO, "unknown");
772 av_log(NULL, AV_LOG_INFO, "\n");
774 /* print verbose per-stream stats */
775 for (i = 0; i < nb_input_files; i++) {
776 InputFile *f = input_files[i];
777 uint64_t total_packets = 0, total_size = 0;
779 av_log(NULL, AV_LOG_VERBOSE, "Input file #%d (%s):\n",
780 i, f->ctx->filename);
782 for (j = 0; j < f->nb_streams; j++) {
783 InputStream *ist = input_streams[f->ist_index + j];
784 enum AVMediaType type = ist->dec_ctx->codec_type;
786 total_size += ist->data_size;
787 total_packets += ist->nb_packets;
789 av_log(NULL, AV_LOG_VERBOSE, " Input stream #%d:%d (%s): ",
790 i, j, media_type_string(type));
791 av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" packets read (%"PRIu64" bytes); ",
792 ist->nb_packets, ist->data_size);
794 if (ist->decoding_needed) {
795 av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" frames decoded",
796 ist->frames_decoded);
797 if (type == AVMEDIA_TYPE_AUDIO)
798 av_log(NULL, AV_LOG_VERBOSE, " (%"PRIu64" samples)", ist->samples_decoded);
799 av_log(NULL, AV_LOG_VERBOSE, "; ");
802 av_log(NULL, AV_LOG_VERBOSE, "\n");
805 av_log(NULL, AV_LOG_VERBOSE, " Total: %"PRIu64" packets (%"PRIu64" bytes) demuxed\n",
806 total_packets, total_size);
809 for (i = 0; i < nb_output_files; i++) {
810 OutputFile *of = output_files[i];
811 uint64_t total_packets = 0, total_size = 0;
813 av_log(NULL, AV_LOG_VERBOSE, "Output file #%d (%s):\n",
814 i, of->ctx->filename);
816 for (j = 0; j < of->ctx->nb_streams; j++) {
817 OutputStream *ost = output_streams[of->ost_index + j];
818 enum AVMediaType type = ost->enc_ctx->codec_type;
820 total_size += ost->data_size;
821 total_packets += ost->packets_written;
823 av_log(NULL, AV_LOG_VERBOSE, " Output stream #%d:%d (%s): ",
824 i, j, media_type_string(type));
825 if (ost->encoding_needed) {
826 av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" frames encoded",
827 ost->frames_encoded);
828 if (type == AVMEDIA_TYPE_AUDIO)
829 av_log(NULL, AV_LOG_VERBOSE, " (%"PRIu64" samples)", ost->samples_encoded);
830 av_log(NULL, AV_LOG_VERBOSE, "; ");
833 av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" packets muxed (%"PRIu64" bytes); ",
834 ost->packets_written, ost->data_size);
836 av_log(NULL, AV_LOG_VERBOSE, "\n");
839 av_log(NULL, AV_LOG_VERBOSE, " Total: %"PRIu64" packets (%"PRIu64" bytes) muxed\n",
840 total_packets, total_size);
844 static void print_report(int is_last_report, int64_t timer_start)
851 int frame_number, vid, i;
852 double bitrate, ti1, pts;
853 static int64_t last_time = -1;
854 static int qp_histogram[52];
856 if (!print_stats && !is_last_report)
859 if (!is_last_report) {
861 /* display the report every 0.5 seconds */
862 cur_time = av_gettime_relative();
863 if (last_time == -1) {
864 last_time = cur_time;
867 if ((cur_time - last_time) < 500000)
869 last_time = cur_time;
873 oc = output_files[0]->ctx;
875 total_size = avio_size(oc->pb);
876 if (total_size <= 0) // FIXME improve avio_size() so it works with non seekable output too
877 total_size = avio_tell(oc->pb);
878 if (total_size < 0) {
880 av_strerror(total_size, errbuf, sizeof(errbuf));
881 av_log(NULL, AV_LOG_VERBOSE, "Bitrate not available, "
882 "avio_tell() failed: %s\n", errbuf);
889 for (i = 0; i < nb_output_streams; i++) {
891 ost = output_streams[i];
893 if (!ost->stream_copy)
894 q = ost->quality / (float) FF_QP2LAMBDA;
896 if (vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
897 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "q=%2.1f ", q);
899 if (!vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
900 float t = (av_gettime_relative() - timer_start) / 1000000.0;
902 frame_number = ost->frame_number;
903 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "frame=%5d fps=%3d q=%3.1f ",
904 frame_number, (t > 1) ? (int)(frame_number / t + 0.5) : 0, q);
906 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "L");
910 if (qp >= 0 && qp < FF_ARRAY_ELEMS(qp_histogram))
912 for (j = 0; j < 32; j++)
913 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%X", (int)lrintf(log2(qp_histogram[j] + 1)));
916 #if FF_API_CODED_FRAME && FF_API_ERROR_FRAME
917 FF_DISABLE_DEPRECATION_WARNINGS
918 if (enc->flags & AV_CODEC_FLAG_PSNR) {
920 double error, error_sum = 0;
921 double scale, scale_sum = 0;
922 char type[3] = { 'Y','U','V' };
923 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "PSNR=");
924 for (j = 0; j < 3; j++) {
925 if (is_last_report) {
926 error = enc->error[j];
927 scale = enc->width * enc->height * 255.0 * 255.0 * frame_number;
929 error = enc->coded_frame->error[j];
930 scale = enc->width * enc->height * 255.0 * 255.0;
936 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%c:%2.2f ", type[j], psnr(error / scale));
938 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "*:%2.2f ", psnr(error_sum / scale_sum));
940 FF_ENABLE_DEPRECATION_WARNINGS
944 /* compute min output value */
945 pts = (double)ost->last_mux_dts * av_q2d(ost->st->time_base);
946 if ((pts < ti1) && (pts > 0))
952 bitrate = (double)(total_size * 8) / ti1 / 1000.0;
954 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
955 "size=%8.0fkB time=%0.2f bitrate=%6.1fkbits/s",
956 (double)total_size / 1024, ti1, bitrate);
959 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " drop=%d",
962 av_log(NULL, AV_LOG_INFO, "%s \r", buf);
967 print_final_stats(total_size);
971 static void flush_encoders(void)
975 for (i = 0; i < nb_output_streams; i++) {
976 OutputStream *ost = output_streams[i];
977 AVCodecContext *enc = ost->enc_ctx;
978 AVFormatContext *os = output_files[ost->file_index]->ctx;
979 int stop_encoding = 0;
981 if (!ost->encoding_needed)
984 if (enc->codec_type == AVMEDIA_TYPE_AUDIO && enc->frame_size <= 1)
987 if (enc->codec_type != AVMEDIA_TYPE_VIDEO && enc->codec_type != AVMEDIA_TYPE_AUDIO)
990 avcodec_send_frame(enc, NULL);
993 const char *desc = NULL;
995 switch (enc->codec_type) {
996 case AVMEDIA_TYPE_AUDIO:
999 case AVMEDIA_TYPE_VIDEO:
1008 av_init_packet(&pkt);
1012 ret = avcodec_receive_packet(enc, &pkt);
1013 if (ret < 0 && ret != AVERROR_EOF) {
1014 av_log(NULL, AV_LOG_FATAL, "%s encoding failed\n", desc);
1017 if (ost->logfile && enc->stats_out) {
1018 fprintf(ost->logfile, "%s", enc->stats_out);
1020 if (ret == AVERROR_EOF) {
1024 av_packet_rescale_ts(&pkt, enc->time_base, ost->st->time_base);
1025 output_packet(os, &pkt, ost);
1035 * Check whether a packet from ist should be written into ost at this time
1037 static int check_output_constraints(InputStream *ist, OutputStream *ost)
1039 OutputFile *of = output_files[ost->file_index];
1040 int ist_index = input_files[ist->file_index]->ist_index + ist->st->index;
1042 if (ost->source_index != ist_index)
1045 if (of->start_time != AV_NOPTS_VALUE && ist->last_dts < of->start_time)
1051 static void do_streamcopy(InputStream *ist, OutputStream *ost, const AVPacket *pkt)
1053 OutputFile *of = output_files[ost->file_index];
1054 InputFile *f = input_files [ist->file_index];
1055 int64_t start_time = (of->start_time == AV_NOPTS_VALUE) ? 0 : of->start_time;
1056 int64_t ost_tb_start_time = av_rescale_q(start_time, AV_TIME_BASE_Q, ost->st->time_base);
1059 av_init_packet(&opkt);
1061 if ((!ost->frame_number && !(pkt->flags & AV_PKT_FLAG_KEY)) &&
1062 !ost->copy_initial_nonkeyframes)
1065 if (of->recording_time != INT64_MAX &&
1066 ist->last_dts >= of->recording_time + start_time) {
1071 if (f->recording_time != INT64_MAX) {
1072 start_time = f->ctx->start_time;
1073 if (f->start_time != AV_NOPTS_VALUE)
1074 start_time += f->start_time;
1075 if (ist->last_dts >= f->recording_time + start_time) {
1081 /* force the input stream PTS */
1082 if (ost->enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO)
1085 if (pkt->pts != AV_NOPTS_VALUE)
1086 opkt.pts = av_rescale_q(pkt->pts, ist->st->time_base, ost->st->time_base) - ost_tb_start_time;
1088 opkt.pts = AV_NOPTS_VALUE;
1090 if (pkt->dts == AV_NOPTS_VALUE)
1091 opkt.dts = av_rescale_q(ist->last_dts, AV_TIME_BASE_Q, ost->st->time_base);
1093 opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base);
1094 opkt.dts -= ost_tb_start_time;
1096 opkt.duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->st->time_base);
1097 opkt.flags = pkt->flags;
1099 // FIXME remove the following 2 lines they shall be replaced by the bitstream filters
1100 if ( ost->enc_ctx->codec_id != AV_CODEC_ID_H264
1101 && ost->enc_ctx->codec_id != AV_CODEC_ID_MPEG1VIDEO
1102 && ost->enc_ctx->codec_id != AV_CODEC_ID_MPEG2VIDEO
1103 && ost->enc_ctx->codec_id != AV_CODEC_ID_VC1
1105 if (av_parser_change(ost->parser, ost->parser_avctx,
1106 &opkt.data, &opkt.size,
1107 pkt->data, pkt->size,
1108 pkt->flags & AV_PKT_FLAG_KEY)) {
1109 opkt.buf = av_buffer_create(opkt.data, opkt.size, av_buffer_default_free, NULL, 0);
1114 opkt.data = pkt->data;
1115 opkt.size = pkt->size;
1118 output_packet(of->ctx, &opkt, ost);
1121 // This does not quite work like avcodec_decode_audio4/avcodec_decode_video2.
1122 // There is the following difference: if you got a frame, you must call
1123 // it again with pkt=NULL. pkt==NULL is treated differently from pkt.size==0
1124 // (pkt==NULL means get more output, pkt.size==0 is a flush/drain packet)
1125 static int decode(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *pkt)
1132 ret = avcodec_send_packet(avctx, pkt);
1133 // In particular, we don't expect AVERROR(EAGAIN), because we read all
1134 // decoded frames with avcodec_receive_frame() until done.
1136 return ret == AVERROR_EOF ? 0 : ret;
1139 ret = avcodec_receive_frame(avctx, frame);
1140 if (ret < 0 && ret != AVERROR(EAGAIN) && ret != AVERROR_EOF)
1148 int guess_input_channel_layout(InputStream *ist)
1150 AVCodecContext *dec = ist->dec_ctx;
1152 if (!dec->channel_layout) {
1153 char layout_name[256];
1155 dec->channel_layout = av_get_default_channel_layout(dec->channels);
1156 if (!dec->channel_layout)
1158 av_get_channel_layout_string(layout_name, sizeof(layout_name),
1159 dec->channels, dec->channel_layout);
1160 av_log(NULL, AV_LOG_WARNING, "Guessed Channel Layout for Input Stream "
1161 "#%d.%d : %s\n", ist->file_index, ist->st->index, layout_name);
1166 static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output)
1168 AVFrame *decoded_frame, *f;
1169 AVCodecContext *avctx = ist->dec_ctx;
1170 int i, ret, err = 0, resample_changed;
1172 if (!ist->decoded_frame && !(ist->decoded_frame = av_frame_alloc()))
1173 return AVERROR(ENOMEM);
1174 if (!ist->filter_frame && !(ist->filter_frame = av_frame_alloc()))
1175 return AVERROR(ENOMEM);
1176 decoded_frame = ist->decoded_frame;
1178 ret = decode(avctx, decoded_frame, got_output, pkt);
1179 if (!*got_output || ret < 0)
1182 ist->samples_decoded += decoded_frame->nb_samples;
1183 ist->frames_decoded++;
1185 /* if the decoder provides a pts, use it instead of the last packet pts.
1186 the decoder could be delaying output by a packet or more. */
1187 if (decoded_frame->pts != AV_NOPTS_VALUE)
1188 ist->next_dts = decoded_frame->pts;
1189 else if (pkt && pkt->pts != AV_NOPTS_VALUE) {
1190 decoded_frame->pts = pkt->pts;
1193 resample_changed = ist->resample_sample_fmt != decoded_frame->format ||
1194 ist->resample_channels != avctx->channels ||
1195 ist->resample_channel_layout != decoded_frame->channel_layout ||
1196 ist->resample_sample_rate != decoded_frame->sample_rate;
1197 if (resample_changed) {
1198 char layout1[64], layout2[64];
1200 if (!guess_input_channel_layout(ist)) {
1201 av_log(NULL, AV_LOG_FATAL, "Unable to find default channel "
1202 "layout for Input Stream #%d.%d\n", ist->file_index,
1206 decoded_frame->channel_layout = avctx->channel_layout;
1208 av_get_channel_layout_string(layout1, sizeof(layout1), ist->resample_channels,
1209 ist->resample_channel_layout);
1210 av_get_channel_layout_string(layout2, sizeof(layout2), avctx->channels,
1211 decoded_frame->channel_layout);
1213 av_log(NULL, AV_LOG_INFO,
1214 "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",
1215 ist->file_index, ist->st->index,
1216 ist->resample_sample_rate, av_get_sample_fmt_name(ist->resample_sample_fmt),
1217 ist->resample_channels, layout1,
1218 decoded_frame->sample_rate, av_get_sample_fmt_name(decoded_frame->format),
1219 avctx->channels, layout2);
1221 ist->resample_sample_fmt = decoded_frame->format;
1222 ist->resample_sample_rate = decoded_frame->sample_rate;
1223 ist->resample_channel_layout = decoded_frame->channel_layout;
1224 ist->resample_channels = avctx->channels;
1226 for (i = 0; i < nb_filtergraphs; i++)
1227 if (ist_in_filtergraph(filtergraphs[i], ist) &&
1228 configure_filtergraph(filtergraphs[i]) < 0) {
1229 av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
1234 if (decoded_frame->pts != AV_NOPTS_VALUE)
1235 decoded_frame->pts = av_rescale_q(decoded_frame->pts,
1237 (AVRational){1, avctx->sample_rate});
1238 ist->nb_samples = decoded_frame->nb_samples;
1239 for (i = 0; i < ist->nb_filters; i++) {
1240 if (i < ist->nb_filters - 1) {
1241 f = ist->filter_frame;
1242 err = av_frame_ref(f, decoded_frame);
1248 err = av_buffersrc_add_frame(ist->filters[i]->filter, f);
1253 av_frame_unref(ist->filter_frame);
1254 av_frame_unref(decoded_frame);
1255 return err < 0 ? err : ret;
1258 static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output)
1260 AVFrame *decoded_frame, *f;
1261 int i, ret = 0, err = 0, resample_changed;
1263 if (!ist->decoded_frame && !(ist->decoded_frame = av_frame_alloc()))
1264 return AVERROR(ENOMEM);
1265 if (!ist->filter_frame && !(ist->filter_frame = av_frame_alloc()))
1266 return AVERROR(ENOMEM);
1267 decoded_frame = ist->decoded_frame;
1269 ret = decode(ist->dec_ctx, decoded_frame, got_output, pkt);
1270 if (!*got_output || ret < 0)
1273 ist->frames_decoded++;
1275 if (ist->hwaccel_retrieve_data && decoded_frame->format == ist->hwaccel_pix_fmt) {
1276 err = ist->hwaccel_retrieve_data(ist->dec_ctx, decoded_frame);
1280 ist->hwaccel_retrieved_pix_fmt = decoded_frame->format;
1282 decoded_frame->pts = guess_correct_pts(&ist->pts_ctx, decoded_frame->pkt_pts,
1283 decoded_frame->pkt_dts);
1285 if (ist->st->sample_aspect_ratio.num)
1286 decoded_frame->sample_aspect_ratio = ist->st->sample_aspect_ratio;
1288 resample_changed = ist->resample_width != decoded_frame->width ||
1289 ist->resample_height != decoded_frame->height ||
1290 ist->resample_pix_fmt != decoded_frame->format;
1291 if (resample_changed) {
1292 av_log(NULL, AV_LOG_INFO,
1293 "Input stream #%d:%d frame changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s\n",
1294 ist->file_index, ist->st->index,
1295 ist->resample_width, ist->resample_height, av_get_pix_fmt_name(ist->resample_pix_fmt),
1296 decoded_frame->width, decoded_frame->height, av_get_pix_fmt_name(decoded_frame->format));
1298 ret = poll_filters();
1299 if (ret < 0 && ret != AVERROR_EOF) {
1301 av_strerror(ret, errbuf, sizeof(errbuf));
1303 av_log(NULL, AV_LOG_ERROR, "Error while filtering: %s\n", errbuf);
1306 ist->resample_width = decoded_frame->width;
1307 ist->resample_height = decoded_frame->height;
1308 ist->resample_pix_fmt = decoded_frame->format;
1310 for (i = 0; i < nb_filtergraphs; i++)
1311 if (ist_in_filtergraph(filtergraphs[i], ist) &&
1312 configure_filtergraph(filtergraphs[i]) < 0) {
1313 av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
1318 for (i = 0; i < ist->nb_filters; i++) {
1319 if (i < ist->nb_filters - 1) {
1320 f = ist->filter_frame;
1321 err = av_frame_ref(f, decoded_frame);
1327 err = av_buffersrc_add_frame(ist->filters[i]->filter, f);
1333 av_frame_unref(ist->filter_frame);
1334 av_frame_unref(decoded_frame);
1335 return err < 0 ? err : ret;
1338 static int transcode_subtitles(InputStream *ist, AVPacket *pkt, int *got_output)
1340 AVSubtitle subtitle;
1341 int i, ret = avcodec_decode_subtitle2(ist->dec_ctx,
1342 &subtitle, got_output, pkt);
1348 ist->frames_decoded++;
1350 for (i = 0; i < nb_output_streams; i++) {
1351 OutputStream *ost = output_streams[i];
1353 if (!check_output_constraints(ist, ost) || !ost->encoding_needed)
1356 do_subtitle_out(output_files[ost->file_index]->ctx, ost, ist, &subtitle, pkt->pts);
1359 avsubtitle_free(&subtitle);
1363 static int send_filter_eof(InputStream *ist)
1366 for (i = 0; i < ist->nb_filters; i++) {
1367 ret = av_buffersrc_add_frame(ist->filters[i]->filter, NULL);
1374 /* pkt = NULL means EOF (needed to flush decoder buffers) */
1375 static void process_input_packet(InputStream *ist, const AVPacket *pkt, int no_eof)
1381 if (ist->next_dts == AV_NOPTS_VALUE)
1382 ist->next_dts = ist->last_dts;
1386 av_init_packet(&avpkt);
1393 if (pkt && pkt->dts != AV_NOPTS_VALUE)
1394 ist->next_dts = ist->last_dts = av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q);
1396 // while we have more to decode or while the decoder did output something on EOF
1397 while (ist->decoding_needed && (!pkt || avpkt.size > 0)) {
1402 ist->last_dts = ist->next_dts;
1404 switch (ist->dec_ctx->codec_type) {
1405 case AVMEDIA_TYPE_AUDIO:
1406 ret = decode_audio (ist, repeating ? NULL : &avpkt, &got_output);
1408 case AVMEDIA_TYPE_VIDEO:
1409 ret = decode_video (ist, repeating ? NULL : &avpkt, &got_output);
1410 if (repeating && !got_output)
1412 else if (pkt && pkt->duration)
1413 ist->next_dts += av_rescale_q(pkt->duration, ist->st->time_base, AV_TIME_BASE_Q);
1414 else if (ist->st->avg_frame_rate.num)
1415 ist->next_dts += av_rescale_q(1, av_inv_q(ist->st->avg_frame_rate),
1417 else if (ist->dec_ctx->framerate.num != 0) {
1418 int ticks = ist->st->parser ? ist->st->parser->repeat_pict + 1 :
1419 ist->dec_ctx->ticks_per_frame;
1420 ist->next_dts += av_rescale_q(ticks, ist->dec_ctx->framerate, AV_TIME_BASE_Q);
1423 case AVMEDIA_TYPE_SUBTITLE:
1426 ret = transcode_subtitles(ist, &avpkt, &got_output);
1433 av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d\n",
1434 ist->file_index, ist->st->index);
1446 /* after flushing, send an EOF on all the filter inputs attached to the stream */
1447 /* except when looping we need to flush but not to send an EOF */
1448 if (!pkt && ist->decoding_needed && !no_eof) {
1449 int ret = send_filter_eof(ist);
1451 av_log(NULL, AV_LOG_FATAL, "Error marking filters as finished\n");
1456 /* handle stream copy */
1457 if (!ist->decoding_needed) {
1458 ist->last_dts = ist->next_dts;
1459 switch (ist->dec_ctx->codec_type) {
1460 case AVMEDIA_TYPE_AUDIO:
1461 ist->next_dts += ((int64_t)AV_TIME_BASE * ist->dec_ctx->frame_size) /
1462 ist->dec_ctx->sample_rate;
1464 case AVMEDIA_TYPE_VIDEO:
1465 if (ist->dec_ctx->framerate.num != 0) {
1466 int ticks = ist->st->parser ? ist->st->parser->repeat_pict + 1 : ist->dec_ctx->ticks_per_frame;
1467 ist->next_dts += ((int64_t)AV_TIME_BASE *
1468 ist->dec_ctx->framerate.den * ticks) /
1469 ist->dec_ctx->framerate.num;
1474 for (i = 0; pkt && i < nb_output_streams; i++) {
1475 OutputStream *ost = output_streams[i];
1477 if (!check_output_constraints(ist, ost) || ost->encoding_needed)
1480 do_streamcopy(ist, ost, pkt);
1486 static void print_sdp(void)
1490 AVFormatContext **avc = av_malloc(sizeof(*avc) * nb_output_files);
1494 for (i = 0; i < nb_output_files; i++)
1495 avc[i] = output_files[i]->ctx;
1497 av_sdp_create(avc, nb_output_files, sdp, sizeof(sdp));
1498 printf("SDP:\n%s\n", sdp);
1503 static const HWAccel *get_hwaccel(enum AVPixelFormat pix_fmt)
1506 for (i = 0; hwaccels[i].name; i++)
1507 if (hwaccels[i].pix_fmt == pix_fmt)
1508 return &hwaccels[i];
1512 static enum AVPixelFormat get_format(AVCodecContext *s, const enum AVPixelFormat *pix_fmts)
1514 InputStream *ist = s->opaque;
1515 const enum AVPixelFormat *p;
1518 for (p = pix_fmts; *p != -1; p++) {
1519 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(*p);
1520 const HWAccel *hwaccel;
1522 if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
1525 hwaccel = get_hwaccel(*p);
1527 (ist->active_hwaccel_id && ist->active_hwaccel_id != hwaccel->id) ||
1528 (ist->hwaccel_id != HWACCEL_AUTO && ist->hwaccel_id != hwaccel->id))
1531 ret = hwaccel->init(s);
1533 if (ist->hwaccel_id == hwaccel->id) {
1534 av_log(NULL, AV_LOG_FATAL,
1535 "%s hwaccel requested for input stream #%d:%d, "
1536 "but cannot be initialized.\n", hwaccel->name,
1537 ist->file_index, ist->st->index);
1538 return AV_PIX_FMT_NONE;
1542 ist->active_hwaccel_id = hwaccel->id;
1543 ist->hwaccel_pix_fmt = *p;
1550 static int get_buffer(AVCodecContext *s, AVFrame *frame, int flags)
1552 InputStream *ist = s->opaque;
1554 if (ist->hwaccel_get_buffer && frame->format == ist->hwaccel_pix_fmt)
1555 return ist->hwaccel_get_buffer(s, frame, flags);
1557 return avcodec_default_get_buffer2(s, frame, flags);
1560 static int init_input_stream(int ist_index, char *error, int error_len)
1563 InputStream *ist = input_streams[ist_index];
1564 if (ist->decoding_needed) {
1565 AVCodec *codec = ist->dec;
1567 snprintf(error, error_len, "Decoder (codec id %d) not found for input stream #%d:%d",
1568 ist->dec_ctx->codec_id, ist->file_index, ist->st->index);
1569 return AVERROR(EINVAL);
1572 ist->dec_ctx->opaque = ist;
1573 ist->dec_ctx->get_format = get_format;
1574 ist->dec_ctx->get_buffer2 = get_buffer;
1575 ist->dec_ctx->thread_safe_callbacks = 1;
1577 av_opt_set_int(ist->dec_ctx, "refcounted_frames", 1, 0);
1579 if (!av_dict_get(ist->decoder_opts, "threads", NULL, 0))
1580 av_dict_set(&ist->decoder_opts, "threads", "auto", 0);
1581 if ((ret = avcodec_open2(ist->dec_ctx, codec, &ist->decoder_opts)) < 0) {
1583 if (ret == AVERROR_EXPERIMENTAL)
1584 abort_codec_experimental(codec, 0);
1586 av_strerror(ret, errbuf, sizeof(errbuf));
1588 snprintf(error, error_len,
1589 "Error while opening decoder for input stream "
1591 ist->file_index, ist->st->index, errbuf);
1594 assert_avoptions(ist->decoder_opts);
1597 ist->last_dts = ist->st->avg_frame_rate.num ? - ist->dec_ctx->has_b_frames * AV_TIME_BASE / av_q2d(ist->st->avg_frame_rate) : 0;
1598 ist->next_dts = AV_NOPTS_VALUE;
1599 init_pts_correction(&ist->pts_ctx);
1604 static InputStream *get_input_stream(OutputStream *ost)
1606 if (ost->source_index >= 0)
1607 return input_streams[ost->source_index];
1610 FilterGraph *fg = ost->filter->graph;
1613 for (i = 0; i < fg->nb_inputs; i++)
1614 if (fg->inputs[i]->ist->dec_ctx->codec_type == ost->enc_ctx->codec_type)
1615 return fg->inputs[i]->ist;
1621 static int init_output_bsfs(OutputStream *ost)
1626 if (!ost->nb_bitstream_filters)
1629 ost->bsf_ctx = av_mallocz_array(ost->nb_bitstream_filters, sizeof(*ost->bsf_ctx));
1631 return AVERROR(ENOMEM);
1633 for (i = 0; i < ost->nb_bitstream_filters; i++) {
1634 ret = av_bsf_alloc(ost->bitstream_filters[i], &ctx);
1636 av_log(NULL, AV_LOG_ERROR, "Error allocating a bitstream filter context\n");
1639 ost->bsf_ctx[i] = ctx;
1641 ret = avcodec_parameters_copy(ctx->par_in,
1642 i ? ost->bsf_ctx[i - 1]->par_out : ost->st->codecpar);
1646 ctx->time_base_in = i ? ost->bsf_ctx[i - 1]->time_base_out : ost->st->time_base;
1648 ret = av_bsf_init(ctx);
1650 av_log(NULL, AV_LOG_ERROR, "Error initializing bitstream filter: %s\n",
1651 ost->bitstream_filters[i]->name);
1656 ctx = ost->bsf_ctx[ost->nb_bitstream_filters - 1];
1657 ret = avcodec_parameters_copy(ost->st->codecpar, ctx->par_out);
1661 ost->st->time_base = ctx->time_base_out;
1666 static int init_output_stream(OutputStream *ost, char *error, int error_len)
1670 if (ost->encoding_needed) {
1671 AVCodec *codec = ost->enc;
1672 AVCodecContext *dec = NULL;
1675 if ((ist = get_input_stream(ost)))
1677 if (dec && dec->subtitle_header) {
1678 ost->enc_ctx->subtitle_header = av_malloc(dec->subtitle_header_size);
1679 if (!ost->enc_ctx->subtitle_header)
1680 return AVERROR(ENOMEM);
1681 memcpy(ost->enc_ctx->subtitle_header, dec->subtitle_header, dec->subtitle_header_size);
1682 ost->enc_ctx->subtitle_header_size = dec->subtitle_header_size;
1684 if (!av_dict_get(ost->encoder_opts, "threads", NULL, 0))
1685 av_dict_set(&ost->encoder_opts, "threads", "auto", 0);
1687 if (ost->filter && ost->filter->filter->inputs[0]->hw_frames_ctx) {
1688 ost->enc_ctx->hw_frames_ctx = av_buffer_ref(ost->filter->filter->inputs[0]->hw_frames_ctx);
1689 if (!ost->enc_ctx->hw_frames_ctx)
1690 return AVERROR(ENOMEM);
1693 if ((ret = avcodec_open2(ost->enc_ctx, codec, &ost->encoder_opts)) < 0) {
1694 if (ret == AVERROR_EXPERIMENTAL)
1695 abort_codec_experimental(codec, 1);
1696 snprintf(error, error_len,
1697 "Error while opening encoder for output stream #%d:%d - "
1698 "maybe incorrect parameters such as bit_rate, rate, width or height",
1699 ost->file_index, ost->index);
1702 assert_avoptions(ost->encoder_opts);
1703 if (ost->enc_ctx->bit_rate && ost->enc_ctx->bit_rate < 1000)
1704 av_log(NULL, AV_LOG_WARNING, "The bitrate parameter is set too low."
1705 "It takes bits/s as argument, not kbits/s\n");
1707 ret = avcodec_parameters_from_context(ost->st->codecpar, ost->enc_ctx);
1709 av_log(NULL, AV_LOG_FATAL,
1710 "Error initializing the output stream codec context.\n");
1714 if (ost->enc_ctx->nb_coded_side_data) {
1717 ost->st->side_data = av_realloc_array(NULL, ost->enc_ctx->nb_coded_side_data,
1718 sizeof(*ost->st->side_data));
1719 if (!ost->st->side_data)
1720 return AVERROR(ENOMEM);
1722 for (i = 0; i < ost->enc_ctx->nb_coded_side_data; i++) {
1723 const AVPacketSideData *sd_src = &ost->enc_ctx->coded_side_data[i];
1724 AVPacketSideData *sd_dst = &ost->st->side_data[i];
1726 sd_dst->data = av_malloc(sd_src->size);
1728 return AVERROR(ENOMEM);
1729 memcpy(sd_dst->data, sd_src->data, sd_src->size);
1730 sd_dst->size = sd_src->size;
1731 sd_dst->type = sd_src->type;
1732 ost->st->nb_side_data++;
1736 ost->st->time_base = ost->enc_ctx->time_base;
1737 } else if (ost->stream_copy) {
1738 ret = av_opt_set_dict(ost->enc_ctx, &ost->encoder_opts);
1743 * FIXME: will the codec context used by the parser during streamcopy
1744 * This should go away with the new parser API.
1746 ret = avcodec_parameters_to_context(ost->parser_avctx, ost->st->codecpar);
1751 /* initialize bitstream filters for the output stream
1752 * needs to be done here, because the codec id for streamcopy is not
1753 * known until now */
1754 ret = init_output_bsfs(ost);
1761 static void parse_forced_key_frames(char *kf, OutputStream *ost,
1762 AVCodecContext *avctx)
1768 for (p = kf; *p; p++)
1771 ost->forced_kf_count = n;
1772 ost->forced_kf_pts = av_malloc(sizeof(*ost->forced_kf_pts) * n);
1773 if (!ost->forced_kf_pts) {
1774 av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
1779 for (i = 0; i < n; i++) {
1780 char *next = strchr(p, ',');
1785 t = parse_time_or_die("force_key_frames", p, 1);
1786 ost->forced_kf_pts[i] = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base);
1792 static void set_encoder_id(OutputFile *of, OutputStream *ost)
1794 AVDictionaryEntry *e;
1796 uint8_t *encoder_string;
1797 int encoder_string_len;
1798 int format_flags = 0;
1800 e = av_dict_get(of->opts, "fflags", NULL, 0);
1802 const AVOption *o = av_opt_find(of->ctx, "fflags", NULL, 0, 0);
1805 av_opt_eval_flags(of->ctx, o, e->value, &format_flags);
1808 encoder_string_len = sizeof(LIBAVCODEC_IDENT) + strlen(ost->enc->name) + 2;
1809 encoder_string = av_mallocz(encoder_string_len);
1810 if (!encoder_string)
1813 if (!(format_flags & AVFMT_FLAG_BITEXACT))
1814 av_strlcpy(encoder_string, LIBAVCODEC_IDENT " ", encoder_string_len);
1815 av_strlcat(encoder_string, ost->enc->name, encoder_string_len);
1816 av_dict_set(&ost->st->metadata, "encoder", encoder_string,
1817 AV_DICT_DONT_STRDUP_VAL | AV_DICT_DONT_OVERWRITE);
1820 static int transcode_init(void)
1822 int ret = 0, i, j, k;
1823 AVFormatContext *oc;
1829 /* init framerate emulation */
1830 for (i = 0; i < nb_input_files; i++) {
1831 InputFile *ifile = input_files[i];
1832 if (ifile->rate_emu)
1833 for (j = 0; j < ifile->nb_streams; j++)
1834 input_streams[j + ifile->ist_index]->start = av_gettime_relative();
1837 /* for each output stream, we compute the right encoding parameters */
1838 for (i = 0; i < nb_output_streams; i++) {
1839 ost = output_streams[i];
1840 oc = output_files[ost->file_index]->ctx;
1841 ist = get_input_stream(ost);
1843 if (ost->attachment_filename)
1847 ost->st->disposition = ist->st->disposition;
1850 if (ost->stream_copy) {
1851 AVCodecParameters *par_dst = ost->st->codecpar;
1852 AVCodecParameters *par_src = ist->st->codecpar;
1854 uint64_t extra_size;
1856 av_assert0(ist && !ost->filter);
1858 extra_size = (uint64_t)par_src->extradata_size + AV_INPUT_BUFFER_PADDING_SIZE;
1860 if (extra_size > INT_MAX) {
1861 return AVERROR(EINVAL);
1864 /* if stream_copy is selected, no need to decode or encode */
1865 par_dst->codec_id = par_src->codec_id;
1866 par_dst->codec_type = par_src->codec_type;
1868 if (!par_dst->codec_tag) {
1869 if (!oc->oformat->codec_tag ||
1870 av_codec_get_id (oc->oformat->codec_tag, par_src->codec_tag) == par_dst->codec_id ||
1871 av_codec_get_tag(oc->oformat->codec_tag, par_src->codec_id) <= 0)
1872 par_dst->codec_tag = par_src->codec_tag;
1875 par_dst->bit_rate = par_src->bit_rate;
1876 par_dst->field_order = par_src->field_order;
1877 par_dst->chroma_location = par_src->chroma_location;
1878 if (par_src->extradata != NULL) {
1879 par_dst->extradata = av_mallocz(extra_size);
1880 if (!par_dst->extradata) {
1881 return AVERROR(ENOMEM);
1883 memcpy(par_dst->extradata, par_src->extradata,
1884 par_src->extradata_size);
1885 par_dst->extradata_size = par_src->extradata_size;
1888 ost->st->time_base = ist->st->time_base;
1890 if (ist->st->nb_side_data) {
1891 ost->st->side_data = av_realloc_array(NULL, ist->st->nb_side_data,
1892 sizeof(*ist->st->side_data));
1893 if (!ost->st->side_data)
1894 return AVERROR(ENOMEM);
1896 for (j = 0; j < ist->st->nb_side_data; j++) {
1897 const AVPacketSideData *sd_src = &ist->st->side_data[j];
1898 AVPacketSideData *sd_dst = &ost->st->side_data[j];
1900 sd_dst->data = av_malloc(sd_src->size);
1902 return AVERROR(ENOMEM);
1903 memcpy(sd_dst->data, sd_src->data, sd_src->size);
1904 sd_dst->size = sd_src->size;
1905 sd_dst->type = sd_src->type;
1906 ost->st->nb_side_data++;
1910 ost->parser = av_parser_init(par_dst->codec_id);
1911 ost->parser_avctx = avcodec_alloc_context3(NULL);
1912 if (!ost->parser_avctx)
1913 return AVERROR(ENOMEM);
1915 switch (par_dst->codec_type) {
1916 case AVMEDIA_TYPE_AUDIO:
1917 if (audio_volume != 256) {
1918 av_log(NULL, AV_LOG_FATAL, "-acodec copy and -vol are incompatible (frames are not decoded)\n");
1921 par_dst->channel_layout = par_src->channel_layout;
1922 par_dst->sample_rate = par_src->sample_rate;
1923 par_dst->channels = par_src->channels;
1924 par_dst->block_align = par_src->block_align;
1926 case AVMEDIA_TYPE_VIDEO:
1927 par_dst->format = par_src->format;
1928 par_dst->width = par_src->width;
1929 par_dst->height = par_src->height;
1930 if (ost->frame_aspect_ratio)
1931 sar = av_d2q(ost->frame_aspect_ratio * par_dst->height / par_dst->width, 255);
1932 else if (ist->st->sample_aspect_ratio.num)
1933 sar = ist->st->sample_aspect_ratio;
1935 sar = par_src->sample_aspect_ratio;
1936 ost->st->sample_aspect_ratio = par_dst->sample_aspect_ratio = sar;
1938 case AVMEDIA_TYPE_SUBTITLE:
1939 par_dst->width = par_src->width;
1940 par_dst->height = par_src->height;
1942 case AVMEDIA_TYPE_DATA:
1943 case AVMEDIA_TYPE_ATTACHMENT:
1949 AVCodecContext *enc_ctx = ost->enc_ctx;
1950 AVCodecContext *dec_ctx = NULL;
1952 set_encoder_id(output_files[ost->file_index], ost);
1955 dec_ctx = ist->dec_ctx;
1957 enc_ctx->bits_per_raw_sample = dec_ctx->bits_per_raw_sample;
1958 enc_ctx->chroma_sample_location = dec_ctx->chroma_sample_location;
1962 * We want CFR output if and only if one of those is true:
1963 * 1) user specified output framerate with -r
1964 * 2) user specified -vsync cfr
1965 * 3) output format is CFR and the user didn't force vsync to
1966 * something else than CFR
1968 * in such a case, set ost->frame_rate
1970 if (enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO &&
1971 !ost->frame_rate.num && ist &&
1972 (video_sync_method == VSYNC_CFR ||
1973 (video_sync_method == VSYNC_AUTO &&
1974 !(oc->oformat->flags & (AVFMT_NOTIMESTAMPS | AVFMT_VARIABLE_FPS))))) {
1975 if (ist->framerate.num)
1976 ost->frame_rate = ist->framerate;
1977 else if (ist->st->avg_frame_rate.num)
1978 ost->frame_rate = ist->st->avg_frame_rate;
1980 av_log(NULL, AV_LOG_WARNING, "Constant framerate requested "
1981 "for the output stream #%d:%d, but no information "
1982 "about the input framerate is available. Falling "
1983 "back to a default value of 25fps. Use the -r option "
1984 "if you want a different framerate.\n",
1985 ost->file_index, ost->index);
1986 ost->frame_rate = (AVRational){ 25, 1 };
1989 if (ost->enc && ost->enc->supported_framerates && !ost->force_fps) {
1990 int idx = av_find_nearest_q_idx(ost->frame_rate, ost->enc->supported_framerates);
1991 ost->frame_rate = ost->enc->supported_framerates[idx];
1996 if (qsv_transcode_init(ost))
2000 if ((enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO ||
2001 enc_ctx->codec_type == AVMEDIA_TYPE_AUDIO) &&
2002 filtergraph_is_simple(ost->filter->graph)) {
2003 FilterGraph *fg = ost->filter->graph;
2004 if (configure_filtergraph(fg)) {
2005 av_log(NULL, AV_LOG_FATAL, "Error opening filters!\n");
2010 switch (enc_ctx->codec_type) {
2011 case AVMEDIA_TYPE_AUDIO:
2012 enc_ctx->sample_fmt = ost->filter->filter->inputs[0]->format;
2013 enc_ctx->sample_rate = ost->filter->filter->inputs[0]->sample_rate;
2014 enc_ctx->channel_layout = ost->filter->filter->inputs[0]->channel_layout;
2015 enc_ctx->channels = av_get_channel_layout_nb_channels(enc_ctx->channel_layout);
2016 enc_ctx->time_base = (AVRational){ 1, enc_ctx->sample_rate };
2018 case AVMEDIA_TYPE_VIDEO:
2019 enc_ctx->time_base = ost->filter->filter->inputs[0]->time_base;
2021 enc_ctx->width = ost->filter->filter->inputs[0]->w;
2022 enc_ctx->height = ost->filter->filter->inputs[0]->h;
2023 enc_ctx->sample_aspect_ratio = ost->st->sample_aspect_ratio =
2024 ost->frame_aspect_ratio ? // overridden by the -aspect cli option
2025 av_d2q(ost->frame_aspect_ratio * enc_ctx->height/enc_ctx->width, 255) :
2026 ost->filter->filter->inputs[0]->sample_aspect_ratio;
2027 enc_ctx->pix_fmt = ost->filter->filter->inputs[0]->format;
2029 ost->st->avg_frame_rate = ost->frame_rate;
2032 (enc_ctx->width != dec_ctx->width ||
2033 enc_ctx->height != dec_ctx->height ||
2034 enc_ctx->pix_fmt != dec_ctx->pix_fmt)) {
2035 enc_ctx->bits_per_raw_sample = 0;
2038 if (ost->forced_keyframes)
2039 parse_forced_key_frames(ost->forced_keyframes, ost,
2042 case AVMEDIA_TYPE_SUBTITLE:
2043 enc_ctx->time_base = (AVRational){1, 1000};
2052 /* init input streams */
2053 for (i = 0; i < nb_input_streams; i++)
2054 if ((ret = init_input_stream(i, error, sizeof(error))) < 0)
2057 /* open each encoder */
2058 for (i = 0; i < nb_output_streams; i++) {
2059 ret = init_output_stream(output_streams[i], error, sizeof(error));
2065 /* discard unused programs */
2066 for (i = 0; i < nb_input_files; i++) {
2067 InputFile *ifile = input_files[i];
2068 for (j = 0; j < ifile->ctx->nb_programs; j++) {
2069 AVProgram *p = ifile->ctx->programs[j];
2070 int discard = AVDISCARD_ALL;
2072 for (k = 0; k < p->nb_stream_indexes; k++)
2073 if (!input_streams[ifile->ist_index + p->stream_index[k]]->discard) {
2074 discard = AVDISCARD_DEFAULT;
2077 p->discard = discard;
2081 /* open files and write file headers */
2082 for (i = 0; i < nb_output_files; i++) {
2083 oc = output_files[i]->ctx;
2084 oc->interrupt_callback = int_cb;
2085 if ((ret = avformat_write_header(oc, &output_files[i]->opts)) < 0) {
2087 av_strerror(ret, errbuf, sizeof(errbuf));
2088 snprintf(error, sizeof(error),
2089 "Could not write header for output file #%d "
2090 "(incorrect codec parameters ?): %s",
2092 ret = AVERROR(EINVAL);
2095 assert_avoptions(output_files[i]->opts);
2096 if (strcmp(oc->oformat->name, "rtp")) {
2102 /* dump the file output parameters - cannot be done before in case
2104 for (i = 0; i < nb_output_files; i++) {
2105 av_dump_format(output_files[i]->ctx, i, output_files[i]->ctx->filename, 1);
2108 /* dump the stream mapping */
2109 av_log(NULL, AV_LOG_INFO, "Stream mapping:\n");
2110 for (i = 0; i < nb_input_streams; i++) {
2111 ist = input_streams[i];
2113 for (j = 0; j < ist->nb_filters; j++) {
2114 if (!filtergraph_is_simple(ist->filters[j]->graph)) {
2115 av_log(NULL, AV_LOG_INFO, " Stream #%d:%d (%s) -> %s",
2116 ist->file_index, ist->st->index, ist->dec ? ist->dec->name : "?",
2117 ist->filters[j]->name);
2118 if (nb_filtergraphs > 1)
2119 av_log(NULL, AV_LOG_INFO, " (graph %d)", ist->filters[j]->graph->index);
2120 av_log(NULL, AV_LOG_INFO, "\n");
2125 for (i = 0; i < nb_output_streams; i++) {
2126 ost = output_streams[i];
2128 if (ost->attachment_filename) {
2129 /* an attached file */
2130 av_log(NULL, AV_LOG_INFO, " File %s -> Stream #%d:%d\n",
2131 ost->attachment_filename, ost->file_index, ost->index);
2135 if (ost->filter && !filtergraph_is_simple(ost->filter->graph)) {
2136 /* output from a complex graph */
2137 av_log(NULL, AV_LOG_INFO, " %s", ost->filter->name);
2138 if (nb_filtergraphs > 1)
2139 av_log(NULL, AV_LOG_INFO, " (graph %d)", ost->filter->graph->index);
2141 av_log(NULL, AV_LOG_INFO, " -> Stream #%d:%d (%s)\n", ost->file_index,
2142 ost->index, ost->enc ? ost->enc->name : "?");
2146 av_log(NULL, AV_LOG_INFO, " Stream #%d:%d -> #%d:%d",
2147 input_streams[ost->source_index]->file_index,
2148 input_streams[ost->source_index]->st->index,
2151 if (ost->sync_ist != input_streams[ost->source_index])
2152 av_log(NULL, AV_LOG_INFO, " [sync #%d:%d]",
2153 ost->sync_ist->file_index,
2154 ost->sync_ist->st->index);
2155 if (ost->stream_copy)
2156 av_log(NULL, AV_LOG_INFO, " (copy)");
2158 const AVCodec *in_codec = input_streams[ost->source_index]->dec;
2159 const AVCodec *out_codec = ost->enc;
2160 const char *decoder_name = "?";
2161 const char *in_codec_name = "?";
2162 const char *encoder_name = "?";
2163 const char *out_codec_name = "?";
2164 const AVCodecDescriptor *desc;
2167 decoder_name = in_codec->name;
2168 desc = avcodec_descriptor_get(in_codec->id);
2170 in_codec_name = desc->name;
2171 if (!strcmp(decoder_name, in_codec_name))
2172 decoder_name = "native";
2176 encoder_name = out_codec->name;
2177 desc = avcodec_descriptor_get(out_codec->id);
2179 out_codec_name = desc->name;
2180 if (!strcmp(encoder_name, out_codec_name))
2181 encoder_name = "native";
2184 av_log(NULL, AV_LOG_INFO, " (%s (%s) -> %s (%s))",
2185 in_codec_name, decoder_name,
2186 out_codec_name, encoder_name);
2188 av_log(NULL, AV_LOG_INFO, "\n");
2192 av_log(NULL, AV_LOG_ERROR, "%s\n", error);
2203 /* Return 1 if there remain streams where more output is wanted, 0 otherwise. */
2204 static int need_output(void)
2208 for (i = 0; i < nb_output_streams; i++) {
2209 OutputStream *ost = output_streams[i];
2210 OutputFile *of = output_files[ost->file_index];
2211 AVFormatContext *os = output_files[ost->file_index]->ctx;
2213 if (ost->finished ||
2214 (os->pb && avio_tell(os->pb) >= of->limit_filesize))
2216 if (ost->frame_number >= ost->max_frames) {
2218 for (j = 0; j < of->ctx->nb_streams; j++)
2219 output_streams[of->ost_index + j]->finished = 1;
2229 static InputFile *select_input_file(void)
2231 InputFile *ifile = NULL;
2232 int64_t ipts_min = INT64_MAX;
2235 for (i = 0; i < nb_input_streams; i++) {
2236 InputStream *ist = input_streams[i];
2237 int64_t ipts = ist->last_dts;
2239 if (ist->discard || input_files[ist->file_index]->eagain)
2241 if (!input_files[ist->file_index]->eof_reached) {
2242 if (ipts < ipts_min) {
2244 ifile = input_files[ist->file_index];
2253 static void *input_thread(void *arg)
2258 while (!transcoding_finished && ret >= 0) {
2260 ret = av_read_frame(f->ctx, &pkt);
2262 if (ret == AVERROR(EAGAIN)) {
2269 pthread_mutex_lock(&f->fifo_lock);
2270 while (!av_fifo_space(f->fifo))
2271 pthread_cond_wait(&f->fifo_cond, &f->fifo_lock);
2273 av_fifo_generic_write(f->fifo, &pkt, sizeof(pkt), NULL);
2275 pthread_mutex_unlock(&f->fifo_lock);
2282 static void free_input_threads(void)
2286 if (nb_input_files == 1)
2289 transcoding_finished = 1;
2291 for (i = 0; i < nb_input_files; i++) {
2292 InputFile *f = input_files[i];
2295 if (!f->fifo || f->joined)
2298 pthread_mutex_lock(&f->fifo_lock);
2299 while (av_fifo_size(f->fifo)) {
2300 av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL);
2301 av_packet_unref(&pkt);
2303 pthread_cond_signal(&f->fifo_cond);
2304 pthread_mutex_unlock(&f->fifo_lock);
2306 pthread_join(f->thread, NULL);
2309 while (av_fifo_size(f->fifo)) {
2310 av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL);
2311 av_packet_unref(&pkt);
2313 av_fifo_free(f->fifo);
2317 static int init_input_threads(void)
2321 if (nb_input_files == 1)
2324 for (i = 0; i < nb_input_files; i++) {
2325 InputFile *f = input_files[i];
2327 if (!(f->fifo = av_fifo_alloc(8*sizeof(AVPacket))))
2328 return AVERROR(ENOMEM);
2330 pthread_mutex_init(&f->fifo_lock, NULL);
2331 pthread_cond_init (&f->fifo_cond, NULL);
2333 if ((ret = pthread_create(&f->thread, NULL, input_thread, f)))
2334 return AVERROR(ret);
2339 static int get_input_packet_mt(InputFile *f, AVPacket *pkt)
2343 pthread_mutex_lock(&f->fifo_lock);
2345 if (av_fifo_size(f->fifo)) {
2346 av_fifo_generic_read(f->fifo, pkt, sizeof(*pkt), NULL);
2347 pthread_cond_signal(&f->fifo_cond);
2352 ret = AVERROR(EAGAIN);
2355 pthread_mutex_unlock(&f->fifo_lock);
2361 static int get_input_packet(InputFile *f, AVPacket *pkt)
2365 for (i = 0; i < f->nb_streams; i++) {
2366 InputStream *ist = input_streams[f->ist_index + i];
2367 int64_t pts = av_rescale(ist->last_dts, 1000000, AV_TIME_BASE);
2368 int64_t now = av_gettime_relative() - ist->start;
2370 return AVERROR(EAGAIN);
2375 if (nb_input_files > 1)
2376 return get_input_packet_mt(f, pkt);
2378 return av_read_frame(f->ctx, pkt);
2381 static int got_eagain(void)
2384 for (i = 0; i < nb_input_files; i++)
2385 if (input_files[i]->eagain)
2390 static void reset_eagain(void)
2393 for (i = 0; i < nb_input_files; i++)
2394 input_files[i]->eagain = 0;
2397 // set duration to max(tmp, duration) in a proper time base and return duration's time_base
2398 static AVRational duration_max(int64_t tmp, int64_t *duration, AVRational tmp_time_base,
2399 AVRational time_base)
2405 return tmp_time_base;
2408 ret = av_compare_ts(*duration, time_base, tmp, tmp_time_base);
2411 return tmp_time_base;
2417 static int seek_to_start(InputFile *ifile, AVFormatContext *is)
2420 AVCodecContext *avctx;
2421 int i, ret, has_audio = 0;
2422 int64_t duration = 0;
2424 ret = av_seek_frame(is, -1, is->start_time, 0);
2428 for (i = 0; i < ifile->nb_streams; i++) {
2429 ist = input_streams[ifile->ist_index + i];
2430 avctx = ist->dec_ctx;
2433 if (ist->decoding_needed) {
2434 process_input_packet(ist, NULL, 1);
2435 avcodec_flush_buffers(avctx);
2438 /* duration is the length of the last frame in a stream
2439 * when audio stream is present we don't care about
2440 * last video frame length because it's not defined exactly */
2441 if (avctx->codec_type == AVMEDIA_TYPE_AUDIO && ist->nb_samples)
2445 for (i = 0; i < ifile->nb_streams; i++) {
2446 ist = input_streams[ifile->ist_index + i];
2447 avctx = ist->dec_ctx;
2450 if (avctx->codec_type == AVMEDIA_TYPE_AUDIO && ist->nb_samples) {
2451 AVRational sample_rate = {1, avctx->sample_rate};
2453 duration = av_rescale_q(ist->nb_samples, sample_rate, ist->st->time_base);
2457 if (ist->framerate.num) {
2458 duration = av_rescale_q(1, ist->framerate, ist->st->time_base);
2459 } else if (ist->st->avg_frame_rate.num) {
2460 duration = av_rescale_q(1, ist->st->avg_frame_rate, ist->st->time_base);
2461 } else duration = 1;
2463 if (!ifile->duration)
2464 ifile->time_base = ist->st->time_base;
2465 /* the total duration of the stream, max_pts - min_pts is
2466 * the duration of the stream without the last frame */
2467 duration += ist->max_pts - ist->min_pts;
2468 ifile->time_base = duration_max(duration, &ifile->duration, ist->st->time_base,
2472 if (ifile->loop > 0)
2479 * Read one packet from an input file and send it for
2480 * - decoding -> lavfi (audio/video)
2481 * - decoding -> encoding -> muxing (subtitles)
2482 * - muxing (streamcopy)
2485 * - 0 -- one packet was read and processed
2486 * - AVERROR(EAGAIN) -- no packets were available for selected file,
2487 * this function should be called again
2488 * - AVERROR_EOF -- this function should not be called again
2490 static int process_input(void)
2493 AVFormatContext *is;
2499 /* select the stream that we must read now */
2500 ifile = select_input_file();
2501 /* if none, if is finished */
2506 return AVERROR(EAGAIN);
2508 av_log(NULL, AV_LOG_VERBOSE, "No more inputs to read from.\n");
2513 ret = get_input_packet(ifile, &pkt);
2515 if (ret == AVERROR(EAGAIN)) {
2519 if (ret < 0 && ifile->loop) {
2520 if ((ret = seek_to_start(ifile, is)) < 0)
2522 ret = get_input_packet(ifile, &pkt);
2525 if (ret != AVERROR_EOF) {
2526 print_error(is->filename, ret);
2530 ifile->eof_reached = 1;
2532 for (i = 0; i < ifile->nb_streams; i++) {
2533 ist = input_streams[ifile->ist_index + i];
2534 if (ist->decoding_needed)
2535 process_input_packet(ist, NULL, 0);
2537 /* mark all outputs that don't go through lavfi as finished */
2538 for (j = 0; j < nb_output_streams; j++) {
2539 OutputStream *ost = output_streams[j];
2541 if (ost->source_index == ifile->ist_index + i &&
2542 (ost->stream_copy || ost->enc->type == AVMEDIA_TYPE_SUBTITLE))
2543 finish_output_stream(ost);
2547 return AVERROR(EAGAIN);
2553 av_pkt_dump_log2(NULL, AV_LOG_DEBUG, &pkt, do_hex_dump,
2554 is->streams[pkt.stream_index]);
2556 /* the following test is needed in case new streams appear
2557 dynamically in stream : we ignore them */
2558 if (pkt.stream_index >= ifile->nb_streams)
2559 goto discard_packet;
2561 ist = input_streams[ifile->ist_index + pkt.stream_index];
2563 ist->data_size += pkt.size;
2567 goto discard_packet;
2569 /* add the stream-global side data to the first packet */
2570 if (ist->nb_packets == 1)
2571 for (i = 0; i < ist->st->nb_side_data; i++) {
2572 AVPacketSideData *src_sd = &ist->st->side_data[i];
2575 if (av_packet_get_side_data(&pkt, src_sd->type, NULL))
2577 if (ist->autorotate && src_sd->type == AV_PKT_DATA_DISPLAYMATRIX)
2580 dst_data = av_packet_new_side_data(&pkt, src_sd->type, src_sd->size);
2584 memcpy(dst_data, src_sd->data, src_sd->size);
2587 if (pkt.dts != AV_NOPTS_VALUE)
2588 pkt.dts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
2589 if (pkt.pts != AV_NOPTS_VALUE)
2590 pkt.pts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
2592 if (pkt.pts != AV_NOPTS_VALUE)
2593 pkt.pts *= ist->ts_scale;
2594 if (pkt.dts != AV_NOPTS_VALUE)
2595 pkt.dts *= ist->ts_scale;
2597 if ((ist->dec_ctx->codec_type == AVMEDIA_TYPE_VIDEO ||
2598 ist->dec_ctx->codec_type == AVMEDIA_TYPE_AUDIO) &&
2599 pkt.dts != AV_NOPTS_VALUE && ist->next_dts != AV_NOPTS_VALUE &&
2600 (is->iformat->flags & AVFMT_TS_DISCONT)) {
2601 int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
2602 int64_t delta = pkt_dts - ist->next_dts;
2604 if ((FFABS(delta) > 1LL * dts_delta_threshold * AV_TIME_BASE || pkt_dts + 1 < ist->last_dts) && !copy_ts) {
2605 ifile->ts_offset -= delta;
2606 av_log(NULL, AV_LOG_DEBUG,
2607 "timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",
2608 delta, ifile->ts_offset);
2609 pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
2610 if (pkt.pts != AV_NOPTS_VALUE)
2611 pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
2614 duration = av_rescale_q(ifile->duration, ifile->time_base, ist->st->time_base);
2615 if (pkt.pts != AV_NOPTS_VALUE) {
2616 pkt.pts += duration;
2617 ist->max_pts = FFMAX(pkt.pts, ist->max_pts);
2618 ist->min_pts = FFMIN(pkt.pts, ist->min_pts);
2621 if (pkt.dts != AV_NOPTS_VALUE)
2622 pkt.dts += duration;
2624 process_input_packet(ist, &pkt, 0);
2627 av_packet_unref(&pkt);
2633 * The following code is the main loop of the file converter
2635 static int transcode(void)
2637 int ret, i, need_input = 1;
2638 AVFormatContext *os;
2641 int64_t timer_start;
2643 ret = transcode_init();
2647 av_log(NULL, AV_LOG_INFO, "Press ctrl-c to stop encoding\n");
2650 timer_start = av_gettime_relative();
2653 if ((ret = init_input_threads()) < 0)
2657 while (!received_sigterm) {
2658 /* check if there's any stream where output is still needed */
2659 if (!need_output()) {
2660 av_log(NULL, AV_LOG_VERBOSE, "No more output streams to write to, finishing.\n");
2664 /* read and process one input packet if needed */
2666 ret = process_input();
2667 if (ret == AVERROR_EOF)
2671 ret = poll_filters();
2672 if (ret < 0 && ret != AVERROR_EOF) {
2674 av_strerror(ret, errbuf, sizeof(errbuf));
2676 av_log(NULL, AV_LOG_ERROR, "Error while filtering: %s\n", errbuf);
2680 /* dump report by using the output first video and audio streams */
2681 print_report(0, timer_start);
2684 free_input_threads();
2687 /* at the end of stream, we must flush the decoder buffers */
2688 for (i = 0; i < nb_input_streams; i++) {
2689 ist = input_streams[i];
2690 if (!input_files[ist->file_index]->eof_reached && ist->decoding_needed) {
2691 process_input_packet(ist, NULL, 0);
2699 /* write the trailer if needed and close file */
2700 for (i = 0; i < nb_output_files; i++) {
2701 os = output_files[i]->ctx;
2702 av_write_trailer(os);
2705 /* dump report by using the first video and audio streams */
2706 print_report(1, timer_start);
2708 /* close each encoder */
2709 for (i = 0; i < nb_output_streams; i++) {
2710 ost = output_streams[i];
2711 if (ost->encoding_needed) {
2712 av_freep(&ost->enc_ctx->stats_in);
2716 /* close each decoder */
2717 for (i = 0; i < nb_input_streams; i++) {
2718 ist = input_streams[i];
2719 if (ist->decoding_needed) {
2720 avcodec_close(ist->dec_ctx);
2721 if (ist->hwaccel_uninit)
2722 ist->hwaccel_uninit(ist->dec_ctx);
2726 av_buffer_unref(&hw_device_ctx);
2733 free_input_threads();
2736 if (output_streams) {
2737 for (i = 0; i < nb_output_streams; i++) {
2738 ost = output_streams[i];
2741 fclose(ost->logfile);
2742 ost->logfile = NULL;
2744 av_free(ost->forced_kf_pts);
2745 av_dict_free(&ost->encoder_opts);
2746 av_dict_free(&ost->resample_opts);
2753 static int64_t getutime(void)
2756 struct rusage rusage;
2758 getrusage(RUSAGE_SELF, &rusage);
2759 return (rusage.ru_utime.tv_sec * 1000000LL) + rusage.ru_utime.tv_usec;
2760 #elif HAVE_GETPROCESSTIMES
2762 FILETIME c, e, k, u;
2763 proc = GetCurrentProcess();
2764 GetProcessTimes(proc, &c, &e, &k, &u);
2765 return ((int64_t) u.dwHighDateTime << 32 | u.dwLowDateTime) / 10;
2767 return av_gettime_relative();
2771 static int64_t getmaxrss(void)
2773 #if HAVE_GETRUSAGE && HAVE_STRUCT_RUSAGE_RU_MAXRSS
2774 struct rusage rusage;
2775 getrusage(RUSAGE_SELF, &rusage);
2776 return (int64_t)rusage.ru_maxrss * 1024;
2777 #elif HAVE_GETPROCESSMEMORYINFO
2779 PROCESS_MEMORY_COUNTERS memcounters;
2780 proc = GetCurrentProcess();
2781 memcounters.cb = sizeof(memcounters);
2782 GetProcessMemoryInfo(proc, &memcounters, sizeof(memcounters));
2783 return memcounters.PeakPagefileUsage;
2789 int main(int argc, char **argv)
2794 register_exit(avconv_cleanup);
2796 av_log_set_flags(AV_LOG_SKIP_REPEATED);
2797 parse_loglevel(argc, argv, options);
2799 avcodec_register_all();
2801 avdevice_register_all();
2803 avfilter_register_all();
2805 avformat_network_init();
2809 /* parse options and open all input/output files */
2810 ret = avconv_parse_options(argc, argv);
2814 if (nb_output_files <= 0 && nb_input_files == 0) {
2816 av_log(NULL, AV_LOG_WARNING, "Use -h to get full help or, even better, run 'man %s'\n", program_name);
2820 /* file converter / grab */
2821 if (nb_output_files <= 0) {
2822 fprintf(stderr, "At least one output file must be specified\n");
2827 if (transcode() < 0)
2829 ti = getutime() - ti;
2831 int maxrss = getmaxrss() / 1024;
2832 printf("bench: utime=%0.3fs maxrss=%ikB\n", ti / 1000000.0, maxrss);