diff options
author | Jun Zhao <jun.zhao@intel.com> | 2016-12-05 15:17:13 +0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-12-05 21:30:12 +0100 |
commit | f17eea883a6fc8dbae71fe445ab0c7e925ac2953 (patch) | |
tree | e127ab5ca266b6d85c348d20647a1d010268850a /libavformat/utils.c | |
parent | a5d25faa3f4b18dac737fdb35d0dd68eb0dc2156 (diff) | |
download | ffmpeg-f17eea883a6fc8dbae71fe445ab0c7e925ac2953.tar.gz |
lavf: fix the wrong warning msg and comments about av_find_stream_info
av_find_stream_info() was deprecated by avformat_find_stream_info(),
correct the warning message in the avformat_find_stream_info() and
comments in the avformat.h
Signed-off-by: Jun Zhao <jun.zhao@intel.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 482ff15a26..5f69b6bce9 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -3449,7 +3449,7 @@ FF_ENABLE_DEPRECATION_WARNINGS && codec && !avctx->codec) { if (avcodec_open2(avctx, codec, options ? &options[i] : &thread_opt) < 0) av_log(ic, AV_LOG_WARNING, - "Failed to open codec in av_find_stream_info\n"); + "Failed to open codec in %s\n",__FUNCTION__); } // Try to just open decoders, in case this is enough to get parameters. @@ -3457,7 +3457,7 @@ FF_ENABLE_DEPRECATION_WARNINGS if (codec && !avctx->codec) if (avcodec_open2(avctx, codec, options ? &options[i] : &thread_opt) < 0) av_log(ic, AV_LOG_WARNING, - "Failed to open codec in av_find_stream_info\n"); + "Failed to open codec in %s\n",__FUNCTION__); } if (!options) av_dict_free(&thread_opt); @@ -3703,7 +3703,7 @@ FF_ENABLE_DEPRECATION_WARNINGS av_dict_set(&opts, "codec_whitelist", ic->codec_whitelist, 0); if (avcodec_open2(avctx, codec, (options && stream_index < orig_nb_streams) ? &options[stream_index] : &opts) < 0) av_log(ic, AV_LOG_WARNING, - "Failed to open codec in av_find_stream_info\n"); + "Failed to open codec in %s\n",__FUNCTION__); av_dict_free(&opts); } } |