X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Futils.c;h=494379a37da180f2e6dff084a3fd7449b47426ba;hb=28dcf1870660ea353ccc8e7a907712e681174228;hp=774a2ba4f3d5fc882fd96dfc03a8bcbef63fad8f;hpb=4f173d055c3ade5566db5a140676018573389f50;p=ffmpeg diff --git a/libavformat/utils.c b/libavformat/utils.c index 774a2ba4f3d..494379a37da 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2491,7 +2491,7 @@ static void update_stream_timings(AVFormatContext *ic) end_time1 = av_rescale_q_rnd(st->duration, st->time_base, AV_TIME_BASE_Q, AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX); - if (end_time1 != AV_NOPTS_VALUE) { + if (end_time1 != AV_NOPTS_VALUE && start_time1 <= INT64_MAX - end_time1) { end_time1 += start_time1; end_time = FFMAX(end_time, end_time1); } @@ -2529,7 +2529,7 @@ static void update_stream_timings(AVFormatContext *ic) if (duration != INT64_MIN && duration > 0 && ic->duration == AV_NOPTS_VALUE) { ic->duration = duration; } - if (ic->pb && (filesize = avio_size(ic->pb)) > 0 && ic->duration != AV_NOPTS_VALUE) { + if (ic->pb && (filesize = avio_size(ic->pb)) > 0 && ic->duration > 0) { /* compute the bitrate */ double bitrate = (double) filesize * 8.0 * AV_TIME_BASE / (double) ic->duration; @@ -2773,12 +2773,12 @@ static void estimate_timings(AVFormatContext *ic, int64_t old_offset) AVStream av_unused *st; for (i = 0; i < ic->nb_streams; i++) { st = ic->streams[i]; - av_log(ic, AV_LOG_TRACE, "%d: start_time: %0.3f duration: %0.3f\n", i, - (double) st->start_time / AV_TIME_BASE, - (double) st->duration / AV_TIME_BASE); + av_log(ic, AV_LOG_TRACE, "stream %d: start_time: %0.3f duration: %0.3f\n", i, + (double) st->start_time * av_q2d(st->time_base), + (double) st->duration * av_q2d(st->time_base)); } av_log(ic, AV_LOG_TRACE, - "stream: start_time: %0.3f duration: %0.3f bitrate=%"PRId64" kb/s\n", + "format: start_time: %0.3f duration: %0.3f bitrate=%"PRId64" kb/s\n", (double) ic->start_time / AV_TIME_BASE, (double) ic->duration / AV_TIME_BASE, (int64_t)ic->bit_rate / 1000); @@ -2955,7 +2955,7 @@ enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag) enum AVCodecID ff_get_pcm_codec_id(int bps, int flt, int be, int sflags) { - if (bps > 64U) + if (bps <= 0 || bps > 64) return AV_CODEC_ID_NONE; if (flt) { @@ -3041,7 +3041,7 @@ static void compute_chapters_end(AVFormatContext *s) unsigned int i, j; int64_t max_time = 0; - if (s->duration > 0) + if (s->duration > 0 && s->start_time < INT64_MAX - s->duration) max_time = s->duration + ((s->start_time == AV_NOPTS_VALUE) ? 0 : s->start_time); @@ -3265,7 +3265,7 @@ void ff_rfps_calculate(AVFormatContext *ic) int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options) { - int i, count, ret = 0, j; + int i, count = 0, ret = 0, j; int64_t read_size; AVStream *st; AVCodecContext *avctx; @@ -3297,8 +3297,8 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options) } if (ic->pb) - av_log(ic, AV_LOG_DEBUG, "Before avformat_find_stream_info() pos: %"PRId64" bytes read:%"PRId64" seeks:%d\n", - avio_tell(ic->pb), ic->pb->bytes_read, ic->pb->seek_count); + av_log(ic, AV_LOG_DEBUG, "Before avformat_find_stream_info() pos: %"PRId64" bytes read:%"PRId64" seeks:%d nb_streams:%d\n", + avio_tell(ic->pb), ic->pb->bytes_read, ic->pb->seek_count, ic->nb_streams); for (i = 0; i < ic->nb_streams; i++) { const AVCodec *codec; @@ -3384,7 +3384,6 @@ FF_ENABLE_DEPRECATION_WARNINGS ic->streams[i]->info->fps_last_dts = AV_NOPTS_VALUE; } - count = 0; read_size = 0; for (;;) { int analyzed_all_streams; @@ -3603,12 +3602,23 @@ FF_ENABLE_DEPRECATION_WARNINGS count++; } - if (eof_reached && ic->internal->packet_buffer) { + if (eof_reached) { int stream_index; for (stream_index = 0; stream_index < ic->nb_streams; stream_index++) { + st = ic->streams[stream_index]; + avctx = st->internal->avctx; + if (!has_codec_parameters(st, NULL)) { + AVCodec *codec = find_decoder(ic, st, st->codecpar->codec_id); + if (codec && !avctx->codec) { + if (avcodec_open2(avctx, codec, (options && stream_index < orig_nb_streams) ? &options[stream_index] : NULL) < 0) + av_log(ic, AV_LOG_WARNING, + "Failed to open codec in av_find_stream_info\n"); + } + } + // EOF already reached while reading the stream above. // So continue with reoordering DTS with whatever delay we have. - if (!has_decode_delay_been_guessed(st)) { + if (ic->internal->packet_buffer && !has_decode_delay_been_guessed(st)) { update_dts_from_pts(ic, stream_index, ic->internal->packet_buffer); } } @@ -3743,6 +3753,9 @@ FF_ENABLE_DEPRECATION_WARNINGS /* if no packet was ever seen, update context now for has_codec_parameters */ if (!st->internal->avctx_inited) { + if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && + st->codecpar->format == AV_SAMPLE_FMT_NONE) + st->codecpar->format = st->internal->avctx->sample_fmt; ret = avcodec_parameters_to_context(st->internal->avctx, st->codecpar); if (ret < 0) goto find_stream_info_err; @@ -3790,8 +3803,6 @@ FF_DISABLE_DEPRECATION_WARNINGS av_codec_set_lowres(st->codec, av_codec_get_lowres(st->internal->avctx)); st->codec->width = st->internal->avctx->width; st->codec->height = st->internal->avctx->height; - st->codec->coded_width = st->internal->avctx->coded_width; - st->codec->coded_height = st->internal->avctx->coded_height; } if (st->codec->codec_tag != MKTAG('t','m','c','d')) @@ -3806,6 +3817,11 @@ FF_DISABLE_DEPRECATION_WARNINGS memcpy(st->codec->subtitle_header, st->internal->avctx->subtitle_header, st->codec->subtitle_header_size); } + + // Fields unavailable in AVCodecParameters + st->codec->coded_width = st->internal->avctx->coded_width; + st->codec->coded_height = st->internal->avctx->coded_height; + st->codec->properties = st->internal->avctx->properties; FF_ENABLE_DEPRECATION_WARNINGS #endif