mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avcodec/decode: log hwaccel name
Many users mistakenly think that hwaccel is an instance of a decoder, and cannot find the corresponding decoder name in the logs. Log hwaccel name so user know hwaccel has taken effect. Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
This commit is contained in:
parent
ee736ff80e
commit
c775163a8c
@ -1326,8 +1326,8 @@ int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
|
||||
goto try_again;
|
||||
}
|
||||
if (hw_config->hwaccel) {
|
||||
av_log(avctx, AV_LOG_DEBUG, "Format %s requires hwaccel "
|
||||
"initialisation.\n", desc->name);
|
||||
av_log(avctx, AV_LOG_DEBUG, "Format %s requires hwaccel %s "
|
||||
"initialisation.\n", desc->name, hw_config->hwaccel->p.name);
|
||||
err = hwaccel_init(avctx, hw_config->hwaccel);
|
||||
if (err < 0)
|
||||
goto try_again;
|
||||
|
Loading…
Reference in New Issue
Block a user