From: Jaroslav Kysela Date: Wed, 13 Sep 2017 10:26:07 +0000 (+0200) Subject: transcode: hwaccels - improve 'trying pix_fmt' log line X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aef0ba33056ba8ac2c7640c23c97411df8671ad5;p=thirdparty%2Ftvheadend.git transcode: hwaccels - improve 'trying pix_fmt' log line --- diff --git a/src/transcoding/transcode/hwaccels/hwaccels.c b/src/transcoding/transcode/hwaccels/hwaccels.c index 86c187bf1..4a8e8218d 100644 --- a/src/transcoding/transcode/hwaccels/hwaccels.c +++ b/src/transcoding/transcode/hwaccels/hwaccels.c @@ -77,7 +77,7 @@ hwaccels_decode_get_format(AVCodecContext *avctx, for (i = 0; pix_fmts[i] != AV_PIX_FMT_NONE; i++) { pix_fmt = pix_fmts[i]; if ((desc = av_pix_fmt_desc_get(pix_fmt))) { - tvhdebug(LS_TRANSCODE, "trying pix_fmt: %s", desc->name); + tvhtrace(LS_TRANSCODE, "hwaccels: [%s] trying pix_fmt: %s", avctx->codec->name, desc->name); if ((desc->flags & AV_PIX_FMT_FLAG_HWACCEL) && !hwaccels_decode_setup_context(avctx, pix_fmt)) { break;