X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Futils.c;h=fb6c5f450e4b27129c03cca37bb9540d751002d2;hb=cde57eee98d2e26daeeb1ba0cdd1f3d3acb3eb8a;hp=63439bb89248d227a56fda5e77927d8dc983f38d;hpb=774c5357dbe62ba6017ecbe6738a73644cd5bb5d;p=ffmpeg diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 63439bb8924..fb6c5f450e4 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -1234,7 +1234,7 @@ int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *code goto free_and_end; if (avctx->codec_whitelist && av_match_list(codec->name, avctx->codec_whitelist, ',') <= 0) { - av_log(avctx, AV_LOG_ERROR, "Codec (%s) not on whitelist\n", codec->name); + av_log(avctx, AV_LOG_ERROR, "Codec (%s) not on whitelist \'%s\'\n", codec->name, avctx->codec_whitelist); ret = AVERROR(EINVAL); goto free_and_end; }