X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Fmux.c;h=eab58aa225f219ca864620f0ab7d9aac9633d775;hb=3749eede66c3774799766b1f246afae8a6ffc9bb;hp=1c08c74b90b350e02e346bb5b2719204ba957289;hpb=e5af9203098a889f36b759652615046254d45102;p=ffmpeg diff --git a/libavformat/mux.c b/libavformat/mux.c index 1c08c74b90b..eab58aa225f 100644 --- a/libavformat/mux.c +++ b/libavformat/mux.c @@ -247,19 +247,6 @@ static int init_muxer(AVFormatContext *s, AVDictionary **options) goto fail; } -#if FF_API_LAVF_AVCTX -FF_DISABLE_DEPRECATION_WARNINGS - if (s->nb_streams && s->streams[0]->codec->flags & AV_CODEC_FLAG_BITEXACT) { - if (!(s->flags & AVFMT_FLAG_BITEXACT)) { - av_log(s, AV_LOG_WARNING, - "The AVFormatContext is not in set to bitexact mode, only " - "the AVCodecContext. If this is not intended, set " - "AVFormatContext.flags |= AVFMT_FLAG_BITEXACT.\n"); - } - } -FF_ENABLE_DEPRECATION_WARNINGS -#endif - // some sanity checks if (s->nb_streams == 0 && !(of->flags & AVFMT_NOSTREAMS)) { av_log(s, AV_LOG_ERROR, "No streams to mux were specified\n"); @@ -271,20 +258,6 @@ FF_ENABLE_DEPRECATION_WARNINGS st = s->streams[i]; par = st->codecpar; -#if FF_API_LAVF_AVCTX -FF_DISABLE_DEPRECATION_WARNINGS - if (st->codecpar->codec_type == AVMEDIA_TYPE_UNKNOWN && - st->codec->codec_type != AVMEDIA_TYPE_UNKNOWN) { - av_log(s, AV_LOG_WARNING, "Using AVStream.codec to pass codec " - "parameters to muxers is deprecated, use AVStream.codecpar " - "instead.\n"); - ret = avcodec_parameters_from_context(st->codecpar, st->codec); - if (ret < 0) - goto fail; - } -FF_ENABLE_DEPRECATION_WARNINGS -#endif - if (!st->time_base.num) { /* fall back on the default timebase values */ if (par->codec_type == AVMEDIA_TYPE_AUDIO && par->sample_rate)